/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2014-06-07 20:29:36 UTC
  • Revision ID: teddy@recompile.se-20140607202936-crh5fxrdd804oora
Fix typo in code comment.

* debian/mandos.postinst: Fix typo in comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
33
#ifndef _LARGEFILE_SOURCE
34
34
#define _LARGEFILE_SOURCE
35
 
#endif  /* not _LARGEFILE_SOURCE */
 
35
#endif
36
36
#ifndef _FILE_OFFSET_BITS
37
37
#define _FILE_OFFSET_BITS 64
38
 
#endif  /* not _FILE_OFFSET_BITS */
 
38
#endif
39
39
 
40
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
 
                                   stdout, ferror() */
 
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
58
                                   inet_pton(), connect(),
59
59
                                   getnameinfo() */
60
 
#include <fcntl.h>              /* open(), unlinkat() */
 
60
#include <fcntl.h>              /* open() */
61
61
#include <dirent.h>             /* opendir(), struct dirent, readdir()
62
62
                                 */
63
63
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
73
73
                                */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause(), _exit(),
77
 
                                   unlinkat() */
 
76
                                   setgid(), pause(), _exit() */
78
77
#include <arpa/inet.h>          /* inet_pton(), htons() */
79
78
#include <iso646.h>             /* not, or, and */
80
79
#include <argp.h>               /* struct argp_option, error_t, struct
142
141
static const char sys_class_net[] = "/sys/class/net";
143
142
char *connect_to = NULL;
144
143
const char *hookdir = HOOKDIR;
145
 
int hookdir_fd = -1;
146
144
uid_t uid = 65534;
147
145
gid_t gid = 65534;
148
146
 
234
232
                          .af = af };
235
233
  if(new_server->ip == NULL){
236
234
    perror_plus("strdup");
237
 
    free(new_server);
238
235
    return false;
239
236
  }
240
237
  ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
241
238
  if(ret == -1){
242
239
    perror_plus("clock_gettime");
243
 
#ifdef __GNUC__
244
 
#pragma GCC diagnostic push
245
 
#pragma GCC diagnostic ignored "-Wcast-qual"
246
 
#endif
247
 
    free((char *)(new_server->ip));
248
 
#ifdef __GNUC__
249
 
#pragma GCC diagnostic pop
250
 
#endif
251
 
    free(new_server);
252
240
    return false;
253
241
  }
254
242
  /* Special case of first server */
1076
1064
     timed out */
1077
1065
  
1078
1066
  if(quit_now){
1079
 
    avahi_s_service_resolver_free(r);
1080
1067
    return;
1081
1068
  }
1082
1069
  
1358
1345
    return 0;
1359
1346
  }
1360
1347
  
1361
 
  ret = fstatat(hookdir_fd, direntry->d_name, &st, 0);
 
1348
  char *fullname = NULL;
 
1349
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1350
  if(ret < 0){
 
1351
    perror_plus("asprintf");
 
1352
    return 0;
 
1353
  }
 
1354
  
 
1355
  ret = stat(fullname, &st);
1362
1356
  if(ret == -1){
1363
1357
    if(debug){
1364
1358
      perror_plus("Could not stat hook");
1365
1359
    }
1366
1360
    return 0;
1367
1361
  }
 
1362
  free(fullname);
1368
1363
  if(not (S_ISREG(st.st_mode))){
1369
1364
    /* Not a regular file */
1370
1365
    if(debug){
1469
1464
  error_t ret_errno = 0;
1470
1465
  if(seteuid(0) == -1){
1471
1466
    ret_errno = errno;
 
1467
    perror_plus("seteuid");
1472
1468
  }
1473
1469
  errno = old_errno;
1474
1470
  return ret_errno;
1485
1481
  }
1486
1482
  if(setuid(0) == -1){
1487
1483
    ret_errno = errno;
 
1484
    perror_plus("seteuid");
1488
1485
  }
1489
1486
  errno = old_errno;
1490
1487
  return ret_errno;
1497
1494
  error_t ret_errno = 0;
1498
1495
  if(seteuid(uid) == -1){
1499
1496
    ret_errno = errno;
 
1497
    perror_plus("seteuid");
1500
1498
  }
1501
1499
  errno = old_errno;
1502
1500
  return ret_errno;
1509
1507
  error_t ret_errno = 0;
1510
1508
  if(setuid(uid) == -1){
1511
1509
    ret_errno = errno;
 
1510
    perror_plus("setuid");
1512
1511
  }
1513
1512
  errno = old_errno;
1514
1513
  return ret_errno;
1517
1516
__attribute__((nonnull))
1518
1517
void run_network_hooks(const char *mode, const char *interface,
1519
1518
                       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){
1525
 
        if(debug){
1526
 
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
1527
 
                       " found\n", hookdir);
1528
 
        }
1529
 
      } else {
1530
 
        perror_plus("open");
1531
 
      }
1532
 
      return;
1533
 
    }
1534
 
  }
1535
 
#ifdef __GLIBC__
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,
1541
 
                         alphasort);
1542
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
1543
 
#else   /* not __GLIBC__ */
1544
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1545
 
                         alphasort);
1546
 
#endif  /* not __GLIBC__ */
 
1519
  struct dirent **direntries;
 
1520
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1521
                         alphasort);
1547
1522
  if(numhooks == -1){
1548
 
    perror_plus("scandir");
1549
 
    return;
1550
 
  }
1551
 
  struct dirent *direntry;
1552
 
  int ret;
1553
 
  int devnull = open("/dev/null", O_RDONLY);
1554
 
  for(int i = 0; i < numhooks; i++){
1555
 
    direntry = direntries[i];
1556
 
    if(debug){
1557
 
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
1558
 
                   direntry->d_name);
 
1523
    if(errno == ENOENT){
 
1524
      if(debug){
 
1525
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1526
                     " found\n", hookdir);
 
1527
      }
 
1528
    } else {
 
1529
      perror_plus("scandir");
1559
1530
    }
1560
 
    pid_t hook_pid = fork();
1561
 
    if(hook_pid == 0){
1562
 
      /* Child */
1563
 
      /* Raise privileges */
1564
 
      errno = raise_privileges_permanently();
1565
 
      if(errno != 0){
1566
 
        perror_plus("Failed to raise privileges");
1567
 
        _exit(EX_NOPERM);
1568
 
      }
1569
 
      /* Set group */
1570
 
      errno = 0;
1571
 
      ret = setgid(0);
1572
 
      if(ret == -1){
1573
 
        perror_plus("setgid");
1574
 
        _exit(EX_NOPERM);
1575
 
      }
1576
 
      /* Reset supplementary groups */
1577
 
      errno = 0;
1578
 
      ret = setgroups(0, NULL);
1579
 
      if(ret == -1){
1580
 
        perror_plus("setgroups");
1581
 
        _exit(EX_NOPERM);
1582
 
      }
1583
 
      ret = dup2(devnull, STDIN_FILENO);
1584
 
      if(ret == -1){
1585
 
        perror_plus("dup2(devnull, STDIN_FILENO)");
1586
 
        _exit(EX_OSERR);
1587
 
      }
1588
 
      ret = close(devnull);
1589
 
      if(ret == -1){
1590
 
        perror_plus("close");
1591
 
        _exit(EX_OSERR);
1592
 
      }
1593
 
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1594
 
      if(ret == -1){
1595
 
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1596
 
        _exit(EX_OSERR);
1597
 
      }
1598
 
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1599
 
      if(ret == -1){
1600
 
        perror_plus("setenv");
1601
 
        _exit(EX_OSERR);
1602
 
      }
1603
 
      ret = setenv("DEVICE", interface, 1);
1604
 
      if(ret == -1){
1605
 
        perror_plus("setenv");
1606
 
        _exit(EX_OSERR);
1607
 
      }
1608
 
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1609
 
      if(ret == -1){
1610
 
        perror_plus("setenv");
1611
 
        _exit(EX_OSERR);
1612
 
      }
1613
 
      ret = setenv("MODE", mode, 1);
1614
 
      if(ret == -1){
1615
 
        perror_plus("setenv");
1616
 
        _exit(EX_OSERR);
1617
 
      }
1618
 
      char *delaystring;
1619
 
      ret = asprintf(&delaystring, "%f", (double)delay);
1620
 
      if(ret == -1){
 
1531
  } else {
 
1532
    struct dirent *direntry;
 
1533
    int ret;
 
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);
 
1539
      if(ret < 0){
1621
1540
        perror_plus("asprintf");
1622
 
        _exit(EX_OSERR);
1623
 
      }
1624
 
      ret = setenv("DELAY", delaystring, 1);
1625
 
      if(ret == -1){
 
1541
        continue;
 
1542
      }
 
1543
      if(debug){
 
1544
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1545
                     direntry->d_name);
 
1546
      }
 
1547
      pid_t hook_pid = fork();
 
1548
      if(hook_pid == 0){
 
1549
        /* Child */
 
1550
        /* Raise privileges */
 
1551
        if(raise_privileges_permanently() != 0){
 
1552
          perror_plus("Failed to raise privileges");
 
1553
          _exit(EX_NOPERM);
 
1554
        }
 
1555
        /* Set group */
 
1556
        errno = 0;
 
1557
        ret = setgid(0);
 
1558
        if(ret == -1){
 
1559
          perror_plus("setgid");
 
1560
          _exit(EX_NOPERM);
 
1561
        }
 
1562
        /* Reset supplementary groups */
 
1563
        errno = 0;
 
1564
        ret = setgroups(0, NULL);
 
1565
        if(ret == -1){
 
1566
          perror_plus("setgroups");
 
1567
          _exit(EX_NOPERM);
 
1568
        }
 
1569
        ret = dup2(devnull, STDIN_FILENO);
 
1570
        if(ret == -1){
 
1571
          perror_plus("dup2(devnull, STDIN_FILENO)");
 
1572
          _exit(EX_OSERR);
 
1573
        }
 
1574
        ret = close(devnull);
 
1575
        if(ret == -1){
 
1576
          perror_plus("close");
 
1577
          _exit(EX_OSERR);
 
1578
        }
 
1579
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1580
        if(ret == -1){
 
1581
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1582
          _exit(EX_OSERR);
 
1583
        }
 
1584
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1585
        if(ret == -1){
 
1586
          perror_plus("setenv");
 
1587
          _exit(EX_OSERR);
 
1588
        }
 
1589
        ret = setenv("DEVICE", interface, 1);
 
1590
        if(ret == -1){
 
1591
          perror_plus("setenv");
 
1592
          _exit(EX_OSERR);
 
1593
        }
 
1594
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1595
        if(ret == -1){
 
1596
          perror_plus("setenv");
 
1597
          _exit(EX_OSERR);
 
1598
        }
 
1599
        ret = setenv("MODE", mode, 1);
 
1600
        if(ret == -1){
 
1601
          perror_plus("setenv");
 
1602
          _exit(EX_OSERR);
 
1603
        }
 
1604
        char *delaystring;
 
1605
        ret = asprintf(&delaystring, "%f", (double)delay);
 
1606
        if(ret == -1){
 
1607
          perror_plus("asprintf");
 
1608
          _exit(EX_OSERR);
 
1609
        }
 
1610
        ret = setenv("DELAY", delaystring, 1);
 
1611
        if(ret == -1){
 
1612
          free(delaystring);
 
1613
          perror_plus("setenv");
 
1614
          _exit(EX_OSERR);
 
1615
        }
1626
1616
        free(delaystring);
1627
 
        perror_plus("setenv");
1628
 
        _exit(EX_OSERR);
1629
 
      }
1630
 
      free(delaystring);
1631
 
      if(connect_to != NULL){
1632
 
        ret = setenv("CONNECT", connect_to, 1);
1633
 
        if(ret == -1){
1634
 
          perror_plus("setenv");
1635
 
          _exit(EX_OSERR);
1636
 
        }
1637
 
      }
1638
 
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
1639
 
      if(hook_fd == -1){
1640
 
        perror_plus("openat");
1641
 
        _exit(EXIT_FAILURE);
1642
 
      }
1643
 
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1644
 
        perror_plus("close");
1645
 
        _exit(EXIT_FAILURE);
1646
 
      }
1647
 
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
1648
 
                 environ) == -1){
1649
 
        perror_plus("fexecve");
1650
 
        _exit(EXIT_FAILURE);
1651
 
      }
1652
 
    } else {
1653
 
      if(hook_pid == -1){
1654
 
        perror_plus("fork");
1655
 
        free(direntry);
1656
 
        continue;
1657
 
      }
1658
 
      int status;
1659
 
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1660
 
        perror_plus("waitpid");
1661
 
        free(direntry);
1662
 
        continue;
1663
 
      }
1664
 
      if(WIFEXITED(status)){
1665
 
        if(WEXITSTATUS(status) != 0){
1666
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1667
 
                       " with status %d\n", direntry->d_name,
1668
 
                       WEXITSTATUS(status));
1669
 
          free(direntry);
1670
 
          continue;
1671
 
        }
1672
 
      } else if(WIFSIGNALED(status)){
1673
 
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1674
 
                     " signal %d\n", direntry->d_name,
1675
 
                     WTERMSIG(status));
1676
 
        free(direntry);
1677
 
        continue;
 
1617
        if(connect_to != NULL){
 
1618
          ret = setenv("CONNECT", connect_to, 1);
 
1619
          if(ret == -1){
 
1620
            perror_plus("setenv");
 
1621
            _exit(EX_OSERR);
 
1622
          }
 
1623
        }
 
1624
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1625
          perror_plus("execl");
 
1626
          _exit(EXIT_FAILURE);
 
1627
        }
1678
1628
      } else {
1679
 
        fprintf_plus(stderr, "Warning: network hook \"%s\""
1680
 
                     " crashed\n", direntry->d_name);
1681
 
        free(direntry);
1682
 
        continue;
1683
 
      }
1684
 
    }
1685
 
    if(debug){
1686
 
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1687
 
                   direntry->d_name);
1688
 
    }
1689
 
    free(direntry);
1690
 
  }
1691
 
  free(direntries);
1692
 
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1693
 
    perror_plus("close");
1694
 
  } else {
1695
 
    hookdir_fd = -1;
1696
 
  }
1697
 
  close(devnull);
 
1629
        int status;
 
1630
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1631
          perror_plus("waitpid");
 
1632
          free(fullname);
 
1633
          continue;
 
1634
        }
 
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));
 
1640
            free(fullname);
 
1641
            continue;
 
1642
          }
 
1643
        } else if(WIFSIGNALED(status)){
 
1644
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1645
                       " signal %d\n", direntry->d_name,
 
1646
                       WTERMSIG(status));
 
1647
          free(fullname);
 
1648
          continue;
 
1649
        } else {
 
1650
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1651
                       " crashed\n", direntry->d_name);
 
1652
          free(fullname);
 
1653
          continue;
 
1654
        }
 
1655
      }
 
1656
      free(fullname);
 
1657
      if(debug){
 
1658
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1659
                     direntry->d_name);
 
1660
      }
 
1661
    }
 
1662
    close(devnull);
 
1663
  }
1698
1664
}
1699
1665
 
1700
1666
__attribute__((nonnull, warn_unused_result))
1751
1717
    /* Raise privileges */
1752
1718
    ret_errno = raise_privileges();
1753
1719
    if(ret_errno != 0){
1754
 
      errno = ret_errno;
1755
1720
      perror_plus("Failed to raise privileges");
1756
1721
    }
1757
1722
    
1861
1826
    /* Raise privileges */
1862
1827
    ret_errno = raise_privileges();
1863
1828
    if(ret_errno != 0){
1864
 
      errno = ret_errno;
1865
1829
      perror_plus("Failed to raise privileges");
1866
1830
    }
1867
1831
    
2274
2238
  
2275
2239
  /* If no interfaces were specified, make a list */
2276
2240
  if(mc.interfaces == NULL){
2277
 
    struct dirent **direntries = NULL;
 
2241
    struct dirent **direntries;
2278
2242
    /* Look for any good interfaces */
2279
2243
    ret = scandir(sys_class_net, &direntries, good_interface,
2280
2244
                  alphasort);
2286
2250
        if(ret_errno != 0){
2287
2251
          errno = ret_errno;
2288
2252
          perror_plus("argz_add");
2289
 
          free(direntries[i]);
2290
2253
          continue;
2291
2254
        }
2292
2255
        if(debug){
2293
2256
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
2294
2257
                       direntries[i]->d_name);
2295
2258
        }
2296
 
        free(direntries[i]);
2297
2259
      }
2298
2260
      free(direntries);
2299
2261
    } else {
2300
 
      if(ret == 0){
2301
 
        free(direntries);
2302
 
      }
 
2262
      free(direntries);
2303
2263
      fprintf_plus(stderr, "Could not find a network interface\n");
2304
2264
      exitcode = EXIT_FAILURE;
2305
2265
      goto end;
2569
2529
    mc.current_server->prev->next = NULL;
2570
2530
    while(mc.current_server != NULL){
2571
2531
      server *next = mc.current_server->next;
2572
 
#ifdef __GNUC__
2573
 
#pragma GCC diagnostic push
2574
 
#pragma GCC diagnostic ignored "-Wcast-qual"
2575
 
#endif
2576
 
      free((char *)(mc.current_server->ip));
2577
 
#ifdef __GNUC__
2578
 
#pragma GCC diagnostic pop
2579
 
#endif
2580
2532
      free(mc.current_server);
2581
2533
      mc.current_server = next;
2582
2534
    }
2586
2538
  {
2587
2539
    ret_errno = raise_privileges();
2588
2540
    if(ret_errno != 0){
2589
 
      errno = ret_errno;
2590
2541
      perror_plus("Failed to raise privileges");
2591
2542
    } else {
2592
2543
      
2615
2566
    
2616
2567
    ret_errno = lower_privileges_permanently();
2617
2568
    if(ret_errno != 0){
2618
 
      errno = ret_errno;
2619
2569
      perror_plus("Failed to lower privileges permanently");
2620
2570
    }
2621
2571
  }
2626
2576
  /* Removes the GPGME temp directory and all files inside */
2627
2577
  if(tempdir != NULL){
2628
2578
    struct dirent **direntries = NULL;
2629
 
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
2630
 
                                                  O_NOFOLLOW));
2631
 
    if(tempdir_fd == -1){
2632
 
      perror_plus("open");
2633
 
    } else {
2634
 
#ifdef __GLIBC__
2635
 
#if __GLIBC_PREREQ(2, 15)
2636
 
      int numentries = scandirat(tempdir_fd, ".", &direntries,
2637
 
                                 notdotentries, alphasort);
2638
 
#else  /* not __GLIBC_PREREQ(2, 15) */
2639
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
2640
 
                               alphasort);
2641
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
2642
 
#else   /* not __GLIBC__ */
2643
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
2644
 
                               alphasort);
2645
 
#endif  /* not __GLIBC__ */
2646
 
      if(numentries >= 0){
2647
 
        for(int i = 0; i < numentries; i++){
2648
 
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
2649
 
          if(ret == -1){
2650
 
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
2651
 
                         " \"%s\", 0): %s\n", tempdir,
2652
 
                         direntries[i]->d_name, strerror(errno));
2653
 
          }
2654
 
          free(direntries[i]);
2655
 
        }
2656
 
        
2657
 
        /* need to clean even if 0 because man page doesn't specify */
2658
 
        free(direntries);
2659
 
        if(numentries == -1){
2660
 
          perror_plus("scandir");
2661
 
        }
2662
 
        ret = rmdir(tempdir);
2663
 
        if(ret == -1 and errno != ENOENT){
2664
 
          perror_plus("rmdir");
2665
 
        }
 
2579
    struct dirent *direntry = NULL;
 
2580
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2581
                             alphasort);
 
2582
    if(numentries > 0){
 
2583
      for(int i = 0; i < numentries; i++){
 
2584
        direntry = direntries[i];
 
2585
        char *fullname = NULL;
 
2586
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
2587
                       direntry->d_name);
 
2588
        if(ret < 0){
 
2589
          perror_plus("asprintf");
 
2590
          continue;
 
2591
        }
 
2592
        ret = remove(fullname);
 
2593
        if(ret == -1){
 
2594
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2595
                       strerror(errno));
 
2596
        }
 
2597
        free(fullname);
2666
2598
      }
2667
 
      TEMP_FAILURE_RETRY(close(tempdir_fd));
 
2599
    }
 
2600
    
 
2601
    /* need to clean even if 0 because man page doesn't specify */
 
2602
    free(direntries);
 
2603
    if(numentries == -1){
 
2604
      perror_plus("scandir");
 
2605
    }
 
2606
    ret = rmdir(tempdir);
 
2607
    if(ret == -1 and errno != ENOENT){
 
2608
      perror_plus("rmdir");
2668
2609
    }
2669
2610
  }
2670
2611