1516
1506
__attribute__((nonnull))
 
1517
1507
void run_network_hooks(const char *mode, const char *interface,
 
1518
1508
                       const float delay){
 
1519
 
  struct dirent **direntries;
 
1520
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
 
1509
  struct dirent **direntries = NULL;
 
 
1510
  if(hookdir_fd == -1){
 
 
1511
    hookdir_fd = open(hookdir, O_RDONLY);
 
 
1512
    if(hookdir_fd == -1){
 
 
1513
      if(errno == ENOENT){
 
 
1515
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
 
1516
                       " found\n", hookdir);
 
 
1519
        perror_plus("open");
 
 
1525
#if __GLIBC_PREREQ(2, 15)
 
 
1526
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
 
 
1527
                           runnable_hook, alphasort);
 
 
1528
#else  /* not __GLIBC_PREREQ(2, 15) */
 
 
1529
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
 
1531
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
 
1532
#else   /* not __GLIBC__ */
 
 
1533
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
 
1535
#endif  /* not __GLIBC__ */
 
1522
1536
  if(numhooks == -1){
 
1523
 
    if(errno == ENOENT){
 
1525
 
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1526
 
                     " found\n", hookdir);
 
1529
 
      perror_plus("scandir");
 
 
1537
    perror_plus("scandir");
 
 
1540
  struct dirent *direntry;
 
 
1542
  int devnull = open("/dev/null", O_RDONLY);
 
 
1543
  for(int i = 0; i < numhooks; i++){
 
 
1544
    direntry = direntries[i];
 
 
1546
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1532
 
    struct dirent *direntry;
 
1534
 
    int devnull = open("/dev/null", O_RDONLY);
 
1535
 
    for(int i = 0; i < numhooks; i++){
 
1536
 
      direntry = direntries[i];
 
1537
 
      char *fullname = NULL;
 
1538
 
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
 
1549
    pid_t hook_pid = fork();
 
 
1552
      /* Raise privileges */
 
 
1553
      errno = raise_privileges_permanently();
 
 
1555
        perror_plus("Failed to raise privileges");
 
 
1562
        perror_plus("setgid");
 
 
1565
      /* Reset supplementary groups */
 
 
1567
      ret = setgroups(0, NULL);
 
 
1569
        perror_plus("setgroups");
 
 
1572
      ret = dup2(devnull, STDIN_FILENO);
 
 
1574
        perror_plus("dup2(devnull, STDIN_FILENO)");
 
 
1577
      ret = close(devnull);
 
 
1579
        perror_plus("close");
 
 
1582
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
 
1584
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
 
1587
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
 
1589
        perror_plus("setenv");
 
 
1592
      ret = setenv("DEVICE", interface, 1);
 
 
1594
        perror_plus("setenv");
 
 
1597
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
 
1599
        perror_plus("setenv");
 
 
1602
      ret = setenv("MODE", mode, 1);
 
 
1604
        perror_plus("setenv");
 
 
1608
      ret = asprintf(&delaystring, "%f", (double)delay);
 
1540
1610
        perror_plus("asprintf");
 
1544
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1547
 
      pid_t hook_pid = fork();
 
1550
 
        /* Raise privileges */
 
1551
 
        if(raise_privileges_permanently() != 0){
 
1552
 
          perror_plus("Failed to raise privileges");
 
1559
 
          perror_plus("setgid");
 
1562
 
        /* Reset supplementary groups */
 
1564
 
        ret = setgroups(0, NULL);
 
1566
 
          perror_plus("setgroups");
 
1569
 
        ret = dup2(devnull, STDIN_FILENO);
 
1571
 
          perror_plus("dup2(devnull, STDIN_FILENO)");
 
1574
 
        ret = close(devnull);
 
1576
 
          perror_plus("close");
 
1579
 
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1581
 
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1584
 
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1586
 
          perror_plus("setenv");
 
1589
 
        ret = setenv("DEVICE", interface, 1);
 
1591
 
          perror_plus("setenv");
 
1594
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1596
 
          perror_plus("setenv");
 
1599
 
        ret = setenv("MODE", mode, 1);
 
1601
 
          perror_plus("setenv");
 
1605
 
        ret = asprintf(&delaystring, "%f", (double)delay);
 
1607
 
          perror_plus("asprintf");
 
1610
 
        ret = setenv("DELAY", delaystring, 1);
 
1613
 
          perror_plus("setenv");
 
 
1613
      ret = setenv("DELAY", delaystring, 1);
 
1616
1615
        free(delaystring);
 
1617
 
        if(connect_to != NULL){
 
1618
 
          ret = setenv("CONNECT", connect_to, 1);
 
1620
 
            perror_plus("setenv");
 
1624
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1625
 
          perror_plus("execl");
 
1626
 
          _exit(EXIT_FAILURE);
 
 
1616
        perror_plus("setenv");
 
 
1620
      if(connect_to != NULL){
 
 
1621
        ret = setenv("CONNECT", connect_to, 1);
 
 
1623
          perror_plus("setenv");
 
 
1627
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
 
 
1629
        perror_plus("openat");
 
 
1630
        _exit(EXIT_FAILURE);
 
 
1632
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
 
1633
        perror_plus("close");
 
 
1634
        _exit(EXIT_FAILURE);
 
 
1636
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
 
1638
        perror_plus("fexecve");
 
 
1639
        _exit(EXIT_FAILURE);
 
 
1643
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
 
1644
        perror_plus("waitpid");
 
 
1647
      if(WIFEXITED(status)){
 
 
1648
        if(WEXITSTATUS(status) != 0){
 
 
1649
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
 
1650
                       " with status %d\n", direntry->d_name,
 
 
1651
                       WEXITSTATUS(status));
 
 
1654
      } else if(WIFSIGNALED(status)){
 
 
1655
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
 
1656
                     " signal %d\n", direntry->d_name,
 
1630
 
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1631
 
          perror_plus("waitpid");
 
1635
 
        if(WIFEXITED(status)){
 
1636
 
          if(WEXITSTATUS(status) != 0){
 
1637
 
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1638
 
                         " with status %d\n", direntry->d_name,
 
1639
 
                         WEXITSTATUS(status));
 
1643
 
        } else if(WIFSIGNALED(status)){
 
1644
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1645
 
                       " signal %d\n", direntry->d_name,
 
1650
 
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1651
 
                       " crashed\n", direntry->d_name);
 
1658
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
 
1660
        fprintf_plus(stderr, "Warning: network hook \"%s\""
 
 
1661
                     " crashed\n", direntry->d_name);
 
 
1666
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
 
1671
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
 
1672
    perror_plus("close");
 
1666
1679
__attribute__((nonnull, warn_unused_result))
 
 
2576
2595
  /* Removes the GPGME temp directory and all files inside */
 
2577
2596
  if(tempdir != NULL){
 
2578
2597
    struct dirent **direntries = NULL;
 
2579
 
    struct dirent *direntry = NULL;
 
2580
 
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2583
 
      for(int i = 0; i < numentries; i++){
 
2584
 
        direntry = direntries[i];
 
2585
 
        char *fullname = NULL;
 
2586
 
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
2589
 
          perror_plus("asprintf");
 
2592
 
        ret = remove(fullname);
 
2594
 
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
 
2598
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
 
 
2600
    if(tempdir_fd == -1){
 
 
2601
      perror_plus("open");
 
 
2604
#if __GLIBC_PREREQ(2, 15)
 
 
2605
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
 
2606
                                 notdotentries, alphasort);
 
 
2607
#else  /* not __GLIBC_PREREQ(2, 15) */
 
 
2608
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2610
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
 
2611
#else   /* not __GLIBC__ */
 
 
2612
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2614
#endif  /* not __GLIBC__ */
 
 
2615
      if(numentries >= 0){
 
 
2616
        for(int i = 0; i < numentries; i++){
 
 
2617
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
 
2619
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
 
2620
                         " \"%s\", 0): %s\n", tempdir,
 
 
2621
                         direntries[i]->d_name, strerror(errno));
 
 
2625
        /* need to clean even if 0 because man page doesn't specify */
 
 
2627
        if(numentries == -1){
 
 
2628
          perror_plus("scandir");
 
 
2630
        ret = rmdir(tempdir);
 
 
2631
        if(ret == -1 and errno != ENOENT){
 
 
2632
          perror_plus("rmdir");
 
2601
 
    /* need to clean even if 0 because man page doesn't specify */
 
2603
 
    if(numentries == -1){
 
2604
 
      perror_plus("scandir");
 
2606
 
    ret = rmdir(tempdir);
 
2607
 
    if(ret == -1 and errno != ENOENT){
 
2608
 
      perror_plus("rmdir");
 
 
2635
      TEMP_FAILURE_RETRY(close(tempdir_fd));