1486
1459
  if(setuid(0) == -1){
 
1487
1460
    ret_errno = errno;
 
 
1461
    perror_plus("seteuid");
 
1489
1463
  errno = old_errno;
 
1490
1464
  return ret_errno;
 
1493
1467
/* Set effective user ID to unprivileged saved user ID */
 
1494
 
__attribute__((warn_unused_result))
 
1495
1468
error_t lower_privileges(void){
 
1496
1469
  error_t old_errno = errno;
 
1497
1470
  error_t ret_errno = 0;
 
1498
1471
  if(seteuid(uid) == -1){
 
1499
1472
    ret_errno = errno;
 
 
1473
    perror_plus("seteuid");
 
1501
1475
  errno = old_errno;
 
1502
1476
  return ret_errno;
 
1505
1479
/* Lower privileges permanently */
 
1506
 
__attribute__((warn_unused_result))
 
1507
1480
error_t lower_privileges_permanently(void){
 
1508
1481
  error_t old_errno = errno;
 
1509
1482
  error_t ret_errno = 0;
 
1510
1483
  if(setuid(uid) == -1){
 
1511
1484
    ret_errno = errno;
 
 
1485
    perror_plus("setuid");
 
1513
1487
  errno = old_errno;
 
1514
1488
  return ret_errno;
 
1517
 
__attribute__((nonnull))
 
1518
 
void run_network_hooks(const char *mode, const char *interface,
 
 
1491
bool run_network_hooks(const char *mode, const char *interface,
 
1519
1492
                       const float delay){
 
1520
 
  struct dirent **direntries = NULL;
 
1521
 
  if(hookdir_fd == -1){
 
1522
 
    hookdir_fd = open(hookdir, O_RDONLY);
 
1523
 
    if(hookdir_fd == -1){
 
1524
 
      if(errno == ENOENT){
 
1526
 
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1527
 
                       " found\n", hookdir);
 
1530
 
        perror_plus("open");
 
1536
 
#if __GLIBC_PREREQ(2, 15)
 
1537
 
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
 
1538
 
                           runnable_hook, alphasort);
 
1539
 
#else  /* not __GLIBC_PREREQ(2, 15) */
 
1540
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1542
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
1543
 
#else   /* not __GLIBC__ */
 
1544
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1546
 
#endif  /* not __GLIBC__ */
 
 
1493
  struct dirent **direntries;
 
 
1494
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1547
1496
  if(numhooks == -1){
 
1548
 
    perror_plus("scandir");
 
1551
 
  struct dirent *direntry;
 
1553
 
  int devnull = open("/dev/null", O_RDONLY);
 
1554
 
  for(int i = 0; i < numhooks; i++){
 
1555
 
    direntry = direntries[i];
 
1557
 
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
 
1497
    if(errno == ENOENT){
 
 
1499
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
 
1500
                     " found\n", hookdir);
 
 
1503
      perror_plus("scandir");
 
1560
 
    pid_t hook_pid = fork();
 
1563
 
      /* Raise privileges */
 
1564
 
      errno = raise_privileges_permanently();
 
1566
 
        perror_plus("Failed to raise privileges");
 
1573
 
        perror_plus("setgid");
 
1576
 
      /* Reset supplementary groups */
 
1578
 
      ret = setgroups(0, NULL);
 
1580
 
        perror_plus("setgroups");
 
1583
 
      ret = dup2(devnull, STDIN_FILENO);
 
1585
 
        perror_plus("dup2(devnull, STDIN_FILENO)");
 
1588
 
      ret = close(devnull);
 
1590
 
        perror_plus("close");
 
1593
 
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1595
 
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1598
 
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1600
 
        perror_plus("setenv");
 
1603
 
      ret = setenv("DEVICE", interface, 1);
 
1605
 
        perror_plus("setenv");
 
1608
 
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1610
 
        perror_plus("setenv");
 
1613
 
      ret = setenv("MODE", mode, 1);
 
1615
 
        perror_plus("setenv");
 
1619
 
      ret = asprintf(&delaystring, "%f", (double)delay);
 
 
1506
    struct dirent *direntry;
 
 
1508
    int devnull = open("/dev/null", O_RDONLY);
 
 
1509
    for(int i = 0; i < numhooks; i++){
 
 
1510
      direntry = direntries[i];
 
 
1511
      char *fullname = NULL;
 
 
1512
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1621
1514
        perror_plus("asprintf");
 
1624
 
      ret = setenv("DELAY", delaystring, 1);
 
 
1518
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
 
1521
      pid_t hook_pid = fork();
 
 
1524
        /* Raise privileges */
 
 
1525
        raise_privileges_permanently();
 
 
1530
          perror_plus("setgid");
 
 
1532
        /* Reset supplementary groups */
 
 
1534
        ret = setgroups(0, NULL);
 
 
1536
          perror_plus("setgroups");
 
 
1538
        dup2(devnull, STDIN_FILENO);
 
 
1540
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
 
1541
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
 
1543
          perror_plus("setenv");
 
 
1546
        ret = setenv("DEVICE", interface, 1);
 
 
1548
          perror_plus("setenv");
 
 
1551
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
 
1553
          perror_plus("setenv");
 
 
1556
        ret = setenv("MODE", mode, 1);
 
 
1558
          perror_plus("setenv");
 
 
1562
        ret = asprintf(&delaystring, "%f", delay);
 
 
1564
          perror_plus("asprintf");
 
 
1567
        ret = setenv("DELAY", delaystring, 1);
 
 
1570
          perror_plus("setenv");
 
1626
1573
        free(delaystring);
 
1627
 
        perror_plus("setenv");
 
1631
 
      if(connect_to != NULL){
 
1632
 
        ret = setenv("CONNECT", connect_to, 1);
 
1634
 
          perror_plus("setenv");
 
1638
 
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
 
1640
 
        perror_plus("openat");
 
1641
 
        _exit(EXIT_FAILURE);
 
1643
 
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
1644
 
        perror_plus("close");
 
1645
 
        _exit(EXIT_FAILURE);
 
1647
 
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
1649
 
        perror_plus("fexecve");
 
1650
 
        _exit(EXIT_FAILURE);
 
1654
 
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1655
 
        perror_plus("waitpid");
 
1659
 
      if(WIFEXITED(status)){
 
1660
 
        if(WEXITSTATUS(status) != 0){
 
1661
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1662
 
                       " with status %d\n", direntry->d_name,
 
1663
 
                       WEXITSTATUS(status));
 
1667
 
      } else if(WIFSIGNALED(status)){
 
1668
 
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1669
 
                     " signal %d\n", direntry->d_name,
 
 
1574
        if(connect_to != NULL){
 
 
1575
          ret = setenv("CONNECT", connect_to, 1);
 
 
1577
            perror_plus("setenv");
 
 
1581
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
 
1582
          perror_plus("execl");
 
 
1583
          _exit(EXIT_FAILURE);
 
1674
 
        fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1675
 
                     " crashed\n", direntry->d_name);
 
1681
 
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1687
 
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
1688
 
    perror_plus("close");
 
 
1587
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
 
1588
          perror_plus("waitpid");
 
 
1592
        if(WIFEXITED(status)){
 
 
1593
          if(WEXITSTATUS(status) != 0){
 
 
1594
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
 
1595
                         " with status %d\n", direntry->d_name,
 
 
1596
                         WEXITSTATUS(status));
 
 
1600
        } else if(WIFSIGNALED(status)){
 
 
1601
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
 
1602
                       " signal %d\n", direntry->d_name,
 
 
1607
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
 
1608
                       " crashed\n", direntry->d_name);
 
 
1615
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1695
 
__attribute__((nonnull, warn_unused_result))
 
1696
1624
error_t bring_up_interface(const char *const interface,
 
1697
1625
                           const float delay){
 
1698
1627
  error_t old_errno = errno;
 
 
1628
  error_t ret_errno = 0;
 
 
1629
  int ret, ret_setflags;
 
1700
1630
  struct ifreq network;
 
1701
1631
  unsigned int if_index = if_nametoindex(interface);
 
1702
1632
  if(if_index == 0){
 
 
2564
2444
    mc.current_server->prev->next = NULL;
 
2565
2445
    while(mc.current_server != NULL){
 
2566
2446
      server *next = mc.current_server->next;
 
2568
 
#pragma GCC diagnostic push
 
2569
 
#pragma GCC diagnostic ignored "-Wcast-qual"
 
2571
 
      free((char *)(mc.current_server->ip));
 
2573
 
#pragma GCC diagnostic pop
 
2575
2447
      free(mc.current_server);
 
2576
2448
      mc.current_server = next;
 
2580
 
  /* Re-raise privileges */
 
 
2452
  /* Re-raise priviliges */
 
2582
 
    ret_errno = raise_privileges();
 
2585
 
      perror_plus("Failed to raise privileges");
 
2588
 
      /* Run network hooks */
 
2589
 
      run_network_hooks("stop", interfaces_hooks != NULL ?
 
2590
 
                        interfaces_hooks : "", delay);
 
2592
 
      /* Take down the network interfaces which were brought up */
 
2594
 
        char *interface = NULL;
 
2595
 
        while((interface=argz_next(interfaces_to_take_down,
 
2596
 
                                   interfaces_to_take_down_size,
 
2598
 
          ret_errno = take_down_interface(interface);
 
2601
 
            perror_plus("Failed to take down interface");
 
2604
 
        if(debug and (interfaces_to_take_down == NULL)){
 
2605
 
          fprintf_plus(stderr, "No interfaces needed to be taken"
 
2611
 
    ret_errno = lower_privileges_permanently();
 
2614
 
      perror_plus("Failed to lower privileges permanently");
 
 
2456
    /* Run network hooks */
 
 
2457
    run_network_hooks("stop", interfaces_hooks != NULL ?
 
 
2458
                      interfaces_hooks : "", delay);
 
 
2460
    /* Take down the network interfaces which were brought up */
 
 
2462
      char *interface = NULL;
 
 
2463
      while((interface=argz_next(interfaces_to_take_down,
 
 
2464
                                 interfaces_to_take_down_size,
 
 
2466
        ret_errno = take_down_interface(interface);
 
 
2469
          perror_plus("Failed to take down interface");
 
 
2472
      if(debug and (interfaces_to_take_down == NULL)){
 
 
2473
        fprintf_plus(stderr, "No interfaces needed to be taken"
 
 
2478
    lower_privileges_permanently();
 
2618
2481
  free(interfaces_to_take_down);
 
2619
2482
  free(interfaces_hooks);
 
2621
2484
  /* Removes the GPGME temp directory and all files inside */
 
2622
 
  if(tempdir != NULL){
 
 
2485
  if(tempdir_created){
 
2623
2486
    struct dirent **direntries = NULL;
 
2624
 
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
 
2626
 
    if(tempdir_fd == -1){
 
2627
 
      perror_plus("open");
 
2630
 
#if __GLIBC_PREREQ(2, 15)
 
2631
 
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
2632
 
                                 notdotentries, alphasort);
 
2633
 
#else  /* not __GLIBC_PREREQ(2, 15) */
 
2634
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2636
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
2637
 
#else   /* not __GLIBC__ */
 
2638
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2640
 
#endif  /* not __GLIBC__ */
 
2641
 
      if(numentries >= 0){
 
2642
 
        for(int i = 0; i < numentries; i++){
 
2643
 
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
2645
 
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
2646
 
                         " \"%s\", 0): %s\n", tempdir,
 
2647
 
                         direntries[i]->d_name, strerror(errno));
 
2649
 
          free(direntries[i]);
 
2652
 
        /* need to clean even if 0 because man page doesn't specify */
 
2654
 
        if(numentries == -1){
 
2655
 
          perror_plus("scandir");
 
2657
 
        ret = rmdir(tempdir);
 
2658
 
        if(ret == -1 and errno != ENOENT){
 
2659
 
          perror_plus("rmdir");
 
 
2487
    struct dirent *direntry = NULL;
 
 
2488
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2490
    if (numentries > 0){
 
 
2491
      for(int i = 0; i < numentries; i++){
 
 
2492
        direntry = direntries[i];
 
 
2493
        char *fullname = NULL;
 
 
2494
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
 
2497
          perror_plus("asprintf");
 
 
2500
        ret = remove(fullname);
 
 
2502
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2662
 
      TEMP_FAILURE_RETRY(close(tempdir_fd));
 
 
2509
    /* need to clean even if 0 because man page doesn't specify */
 
 
2511
    if (numentries == -1){
 
 
2512
      perror_plus("scandir");
 
 
2514
    ret = rmdir(tempdir);
 
 
2515
    if(ret == -1 and errno != ENOENT){
 
 
2516
      perror_plus("rmdir");