32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
 
33
33
#ifndef _LARGEFILE_SOURCE
 
34
34
#define _LARGEFILE_SOURCE
 
35
 
#endif  /* not _LARGEFILE_SOURCE */
 
36
36
#ifndef _FILE_OFFSET_BITS
 
37
37
#define _FILE_OFFSET_BITS 64
 
38
 
#endif  /* not _FILE_OFFSET_BITS */
 
40
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
 
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(),
 
47
47
                                   strtof(), abort() */
 
48
48
#include <stdbool.h>            /* bool, false, true */
 
49
 
#include <string.h>             /* strcmp(), strlen(), strerror(),
 
50
 
                                   asprintf(), strncpy(), strsignal()
 
 
49
#include <string.h>             /* memset(), strcmp(), strlen(),
 
 
50
                                   strerror(), asprintf(), strcpy() */
 
52
51
#include <sys/ioctl.h>          /* ioctl */
 
53
52
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
54
53
                                   sockaddr_in6, PF_INET6,
 
 
58
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
59
58
                                   inet_pton(), connect(),
 
61
 
#include <fcntl.h>              /* open(), unlinkat(), AT_REMOVEDIR */
 
 
60
#include <fcntl.h>              /* open() */
 
62
61
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
64
63
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
 
66
 
#include <errno.h>              /* perror(), errno, EINTR, EINVAL,
 
67
 
                                   EAI_SYSTEM, ENETUNREACH,
 
68
 
                                   EHOSTUNREACH, ECONNREFUSED, EPROTO,
 
69
 
                                   EIO, ENOENT, ENXIO, ENOMEM, EISDIR,
 
 
65
#include <errno.h>              /* perror(), errno,
 
71
66
                                   program_invocation_short_name */
 
72
67
#include <time.h>               /* nanosleep(), time(), sleep() */
 
73
68
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
 
573
557
                 safer_gnutls_strerror(ret));
 
576
 
  /* If a Diffie-Hellman parameters file was given, try to use it */
 
577
 
  if(dhparamsfilename != NULL){
 
578
 
    gnutls_datum_t params = { .data = NULL, .size = 0 };
 
580
 
      int dhpfile = open(dhparamsfilename, O_RDONLY);
 
583
 
        dhparamsfilename = NULL;
 
586
 
      size_t params_capacity = 0;
 
588
 
        params_capacity = incbuffer((char **)¶ms.data,
 
590
 
                                    (size_t)params_capacity);
 
591
 
        if(params_capacity == 0){
 
592
 
          perror_plus("incbuffer");
 
595
 
          dhparamsfilename = NULL;
 
598
 
        ssize_t bytes_read = read(dhpfile,
 
599
 
                                  params.data + params.size,
 
605
 
        /* check bytes_read for failure */
 
610
 
          dhparamsfilename = NULL;
 
613
 
        params.size += (unsigned int)bytes_read;
 
615
 
      if(params.data == NULL){
 
616
 
        dhparamsfilename = NULL;
 
618
 
      if(dhparamsfilename == NULL){
 
621
 
      ret = gnutls_dh_params_import_pkcs3(mc->dh_params, ¶ms,
 
622
 
                                          GNUTLS_X509_FMT_PEM);
 
623
 
      if(ret != GNUTLS_E_SUCCESS){
 
624
 
        fprintf_plus(stderr, "Failed to parse DH parameters in file"
 
625
 
                     " \"%s\": %s\n", dhparamsfilename,
 
626
 
                     safer_gnutls_strerror(ret));
 
627
 
        dhparamsfilename = NULL;
 
632
 
  if(dhparamsfilename == NULL){
 
633
 
    if(mc->dh_bits == 0){
 
634
 
      /* Find out the optimal number of DH bits */
 
635
 
      /* Try to read the private key file */
 
636
 
      gnutls_datum_t buffer = { .data = NULL, .size = 0 };
 
638
 
        int secfile = open(seckeyfilename, O_RDONLY);
 
643
 
        size_t buffer_capacity = 0;
 
645
 
          buffer_capacity = incbuffer((char **)&buffer.data,
 
647
 
                                      (size_t)buffer_capacity);
 
648
 
          if(buffer_capacity == 0){
 
649
 
            perror_plus("incbuffer");
 
654
 
          ssize_t bytes_read = read(secfile,
 
655
 
                                    buffer.data + buffer.size,
 
661
 
          /* check bytes_read for failure */
 
668
 
          buffer.size += (unsigned int)bytes_read;
 
672
 
      /* If successful, use buffer to parse private key */
 
673
 
      gnutls_sec_param_t sec_param = GNUTLS_SEC_PARAM_ULTRA;
 
674
 
      if(buffer.data != NULL){
 
676
 
          gnutls_openpgp_privkey_t privkey = NULL;
 
677
 
          ret = gnutls_openpgp_privkey_init(&privkey);
 
678
 
          if(ret != GNUTLS_E_SUCCESS){
 
679
 
            fprintf_plus(stderr, "Error initializing OpenPGP key"
 
681
 
                         safer_gnutls_strerror(ret));
 
685
 
            ret = gnutls_openpgp_privkey_import
 
686
 
              (privkey, &buffer, GNUTLS_OPENPGP_FMT_BASE64, "", 0);
 
687
 
            if(ret != GNUTLS_E_SUCCESS){
 
688
 
              fprintf_plus(stderr, "Error importing OpenPGP key : %s",
 
689
 
                           safer_gnutls_strerror(ret));
 
695
 
              /* Use private key to suggest an appropriate
 
697
 
              sec_param = gnutls_openpgp_privkey_sec_param(privkey);
 
698
 
              gnutls_openpgp_privkey_deinit(privkey);
 
700
 
                fprintf_plus(stderr, "This OpenPGP key implies using"
 
701
 
                             " a GnuTLS security parameter \"%s\".\n",
 
702
 
                             safe_string(gnutls_sec_param_get_name
 
708
 
        if(sec_param == GNUTLS_SEC_PARAM_UNKNOWN){
 
709
 
          /* Err on the side of caution */
 
710
 
          sec_param = GNUTLS_SEC_PARAM_ULTRA;
 
712
 
            fprintf_plus(stderr, "Falling back to security parameter"
 
714
 
                         safe_string(gnutls_sec_param_get_name
 
719
 
      uret = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, sec_param);
 
723
 
          fprintf_plus(stderr, "A \"%s\" GnuTLS security parameter"
 
724
 
                       " implies %u DH bits; using that.\n",
 
725
 
                       safe_string(gnutls_sec_param_get_name
 
730
 
        fprintf_plus(stderr, "Failed to get implied number of DH"
 
731
 
                     " bits for security parameter \"%s\"): %s\n",
 
732
 
                     safe_string(gnutls_sec_param_get_name
 
734
 
                     safer_gnutls_strerror(ret));
 
738
 
      fprintf_plus(stderr, "DH bits explicitly set to %u\n",
 
741
 
    ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
742
 
    if(ret != GNUTLS_E_SUCCESS){
 
743
 
      fprintf_plus(stderr, "Error in GnuTLS prime generation (%u"
 
744
 
                   " bits): %s\n", mc->dh_bits,
 
745
 
                   safer_gnutls_strerror(ret));
 
 
560
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
 
561
  if(ret != GNUTLS_E_SUCCESS){
 
 
562
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
 
563
                 safer_gnutls_strerror(ret));
 
749
567
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
 
817
638
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
 
818
639
                      __attribute__((unused)) const char *txt){}
 
820
 
/* Set effective uid to 0, return errno */
 
821
 
__attribute__((warn_unused_result))
 
822
 
int raise_privileges(void){
 
823
 
  int old_errno = errno;
 
825
 
  if(seteuid(0) == -1){
 
832
 
/* Set effective and real user ID to 0.  Return errno. */
 
833
 
__attribute__((warn_unused_result))
 
834
 
int raise_privileges_permanently(void){
 
835
 
  int old_errno = errno;
 
836
 
  int ret = raise_privileges();
 
848
 
/* Set effective user ID to unprivileged saved user ID */
 
849
 
__attribute__((warn_unused_result))
 
850
 
int lower_privileges(void){
 
851
 
  int old_errno = errno;
 
853
 
  if(seteuid(uid) == -1){
 
860
 
/* Lower privileges permanently */
 
861
 
__attribute__((warn_unused_result))
 
862
 
int lower_privileges_permanently(void){
 
863
 
  int old_errno = errno;
 
865
 
  if(setuid(uid) == -1){
 
872
 
/* Helper function to add_local_route() and delete_local_route() */
 
873
 
__attribute__((nonnull, warn_unused_result))
 
874
 
static bool add_delete_local_route(const bool add,
 
876
 
                                   AvahiIfIndex if_index){
 
878
 
  char helper[] = "mandos-client-iprouteadddel";
 
879
 
  char add_arg[] = "add";
 
880
 
  char delete_arg[] = "delete";
 
881
 
  char debug_flag[] = "--debug";
 
882
 
  char *pluginhelperdir = getenv("MANDOSPLUGINHELPERDIR");
 
883
 
  if(pluginhelperdir == NULL){
 
885
 
      fprintf_plus(stderr, "MANDOSPLUGINHELPERDIR environment"
 
886
 
                   " variable not set; cannot run helper\n");
 
891
 
  char interface[IF_NAMESIZE];
 
892
 
  if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
893
 
    perror_plus("if_indextoname");
 
897
 
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
 
899
 
    perror_plus("open(\"/dev/null\", O_RDONLY)");
 
905
 
    /* Raise privileges */
 
906
 
    errno = raise_privileges_permanently();
 
908
 
      perror_plus("Failed to raise privileges");
 
909
 
      /* _exit(EX_NOPERM); */
 
915
 
        perror_plus("setgid");
 
918
 
      /* Reset supplementary groups */
 
920
 
      ret = setgroups(0, NULL);
 
922
 
        perror_plus("setgroups");
 
926
 
    ret = dup2(devnull, STDIN_FILENO);
 
928
 
      perror_plus("dup2(devnull, STDIN_FILENO)");
 
931
 
    ret = close(devnull);
 
933
 
      perror_plus("close");
 
936
 
    ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
938
 
      perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
941
 
    int helperdir_fd = (int)TEMP_FAILURE_RETRY(open(pluginhelperdir,
 
946
 
    if(helperdir_fd == -1){
 
948
 
      _exit(EX_UNAVAILABLE);
 
950
 
    int helper_fd = (int)TEMP_FAILURE_RETRY(openat(helperdir_fd,
 
953
 
      perror_plus("openat");
 
955
 
      _exit(EX_UNAVAILABLE);
 
959
 
#pragma GCC diagnostic push
 
960
 
#pragma GCC diagnostic ignored "-Wcast-qual"
 
962
 
    if(fexecve(helper_fd, (char *const [])
 
963
 
               { helper, add ? add_arg : delete_arg, (char *)address,
 
964
 
                   interface, debug ? debug_flag : NULL, NULL },
 
967
 
#pragma GCC diagnostic pop
 
969
 
      perror_plus("fexecve");
 
981
 
    pret = waitpid(pid, &status, 0);
 
982
 
    if(pret == -1 and errno == EINTR and quit_now){
 
983
 
      int errno_raising = 0;
 
984
 
      if((errno = raise_privileges()) != 0){
 
985
 
        errno_raising = errno;
 
986
 
        perror_plus("Failed to raise privileges in order to"
 
987
 
                    " kill helper program");
 
989
 
      if(kill(pid, SIGTERM) == -1){
 
992
 
      if((errno_raising == 0) and (errno = lower_privileges()) != 0){
 
993
 
        perror_plus("Failed to lower privileges after killing"
 
998
 
  } while(pret == -1 and errno == EINTR);
 
1000
 
    perror_plus("waitpid");
 
1003
 
  if(WIFEXITED(status)){
 
1004
 
    if(WEXITSTATUS(status) != 0){
 
1005
 
      fprintf_plus(stderr, "Error: iprouteadddel exited"
 
1006
 
                   " with status %d\n", WEXITSTATUS(status));
 
1011
 
  if(WIFSIGNALED(status)){
 
1012
 
    fprintf_plus(stderr, "Error: iprouteadddel died by"
 
1013
 
                 " signal %d\n", WTERMSIG(status));
 
1016
 
  fprintf_plus(stderr, "Error: iprouteadddel crashed\n");
 
1020
 
__attribute__((nonnull, warn_unused_result))
 
1021
 
static bool add_local_route(const char *address,
 
1022
 
                            AvahiIfIndex if_index){
 
1024
 
    fprintf_plus(stderr, "Adding route to %s\n", address);
 
1026
 
  return add_delete_local_route(true, address, if_index);
 
1029
 
__attribute__((nonnull, warn_unused_result))
 
1030
 
static bool delete_local_route(const char *address,
 
1031
 
                               AvahiIfIndex if_index){
 
1033
 
    fprintf_plus(stderr, "Removing route to %s\n", address);
 
1035
 
  return add_delete_local_route(false, address, if_index);
 
1038
641
/* Called when a Mandos server is found */
 
1039
642
__attribute__((nonnull, warn_unused_result))
 
1040
643
static int start_mandos_communication(const char *ip, in_port_t port,
 
 
1212
812
    goto mandos_end;
 
1217
 
      ret = connect(tcp_sd, (struct sockaddr *)&to,
 
1218
 
                    sizeof(struct sockaddr_in6));
 
1220
 
      ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
 
1221
 
                    sizeof(struct sockaddr_in));
 
1224
 
      if(((errno == ENETUNREACH) or (errno == EHOSTUNREACH))
 
1225
 
         and if_index != AVAHI_IF_UNSPEC
 
1226
 
         and connect_to == NULL
 
1227
 
         and not route_added and
 
1228
 
         ((af == AF_INET6 and not
 
1229
 
           IN6_IS_ADDR_LINKLOCAL(&(((struct sockaddr_in6 *)
 
1231
 
          or (af == AF_INET and
 
1232
 
              /* Not a a IPv4LL address */
 
1233
 
              (ntohl(((struct sockaddr_in *)&to)->sin_addr.s_addr)
 
1234
 
               & 0xFFFF0000L) != 0xA9FE0000L))){
 
1235
 
        /* Work around Avahi bug - Avahi does not announce link-local
 
1236
 
           addresses if it has a global address, so local hosts with
 
1237
 
           *only* a link-local address (e.g. Mandos clients) cannot
 
1238
 
           connect to a Mandos server announced by Avahi on a server
 
1239
 
           host with a global address.  Work around this by retrying
 
1240
 
           with an explicit route added with the server's address.
 
1242
 
           Avahi bug reference:
 
1243
 
           https://lists.freedesktop.org/archives/avahi/2010-February/001833.html
 
1244
 
           https://bugs.debian.org/587961
 
1247
 
          fprintf_plus(stderr, "Mandos server unreachable, trying"
 
1251
 
        route_added = add_local_route(ip, if_index);
 
1257
 
      if(errno != ECONNREFUSED or debug){
 
1259
 
        perror_plus("connect");
 
 
816
    ret = connect(tcp_sd, (struct sockaddr *)&to,
 
 
817
                  sizeof(struct sockaddr_in6));
 
 
819
    ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
 
 
820
                  sizeof(struct sockaddr_in));
 
 
823
    if((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
 
825
      perror_plus("connect");
 
1272
836
  const char *out = mandos_protocol_version;
 
 
 
1459
/* Set effective uid to 0, return errno */
 
 
1460
__attribute__((warn_unused_result))
 
 
1461
error_t raise_privileges(void){
 
 
1462
  error_t old_errno = errno;
 
 
1463
  error_t ret_errno = 0;
 
 
1464
  if(seteuid(0) == -1){
 
 
1466
    perror_plus("seteuid");
 
 
1472
/* Set effective and real user ID to 0.  Return errno. */
 
 
1473
__attribute__((warn_unused_result))
 
 
1474
error_t raise_privileges_permanently(void){
 
 
1475
  error_t old_errno = errno;
 
 
1476
  error_t ret_errno = raise_privileges();
 
 
1481
  if(setuid(0) == -1){
 
 
1483
    perror_plus("seteuid");
 
 
1489
/* Set effective user ID to unprivileged saved user ID */
 
 
1490
__attribute__((warn_unused_result))
 
 
1491
error_t lower_privileges(void){
 
 
1492
  error_t old_errno = errno;
 
 
1493
  error_t ret_errno = 0;
 
 
1494
  if(seteuid(uid) == -1){
 
 
1496
    perror_plus("seteuid");
 
 
1502
/* Lower privileges permanently */
 
 
1503
__attribute__((warn_unused_result))
 
 
1504
error_t lower_privileges_permanently(void){
 
 
1505
  error_t old_errno = errno;
 
 
1506
  error_t ret_errno = 0;
 
 
1507
  if(setuid(uid) == -1){
 
 
1509
    perror_plus("setuid");
 
1907
1515
__attribute__((nonnull))
 
1908
1516
void run_network_hooks(const char *mode, const char *interface,
 
1909
1517
                       const float delay){
 
1910
 
  struct dirent **direntries = NULL;
 
1911
 
  if(hookdir_fd == -1){
 
1912
 
    hookdir_fd = open(hookdir, O_RDONLY | O_DIRECTORY | O_PATH
 
1914
 
    if(hookdir_fd == -1){
 
1915
 
      if(errno == ENOENT){
 
1917
 
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1918
 
                       " found\n", hookdir);
 
1921
 
        perror_plus("open");
 
1926
 
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
 
1927
 
                           runnable_hook, alphasort);
 
 
1518
  struct dirent **direntries;
 
 
1519
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1928
1521
  if(numhooks == -1){
 
1929
 
    perror_plus("scandir");
 
1932
 
  struct dirent *direntry;
 
1934
 
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
 
1936
 
    perror_plus("open(\"/dev/null\", O_RDONLY)");
 
1939
 
  for(int i = 0; i < numhooks; i++){
 
1940
 
    direntry = direntries[i];
 
1942
 
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
 
1522
    if(errno == ENOENT){
 
 
1524
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
 
1525
                     " found\n", hookdir);
 
 
1528
      perror_plus("scandir");
 
1945
 
    pid_t hook_pid = fork();
 
1948
 
      /* Raise privileges */
 
1949
 
      errno = raise_privileges_permanently();
 
1951
 
        perror_plus("Failed to raise privileges");
 
1958
 
        perror_plus("setgid");
 
1961
 
      /* Reset supplementary groups */
 
1963
 
      ret = setgroups(0, NULL);
 
1965
 
        perror_plus("setgroups");
 
1968
 
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1970
 
        perror_plus("setenv");
 
1973
 
      ret = setenv("DEVICE", interface, 1);
 
1975
 
        perror_plus("setenv");
 
1978
 
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1980
 
        perror_plus("setenv");
 
1983
 
      ret = setenv("MODE", mode, 1);
 
1985
 
        perror_plus("setenv");
 
1989
 
      ret = asprintf(&delaystring, "%f", (double)delay);
 
 
1531
    struct dirent *direntry;
 
 
1533
    int devnull = open("/dev/null", O_RDONLY);
 
 
1534
    for(int i = 0; i < numhooks; i++){
 
 
1535
      direntry = direntries[i];
 
 
1536
      char *fullname = NULL;
 
 
1537
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1991
1539
        perror_plus("asprintf");
 
1994
 
      ret = setenv("DELAY", delaystring, 1);
 
 
1543
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
 
1546
      pid_t hook_pid = fork();
 
 
1549
        /* Raise privileges */
 
 
1550
        if(raise_privileges_permanently() != 0){
 
 
1551
          perror_plus("Failed to raise privileges");
 
 
1558
          perror_plus("setgid");
 
 
1561
        /* Reset supplementary groups */
 
 
1563
        ret = setgroups(0, NULL);
 
 
1565
          perror_plus("setgroups");
 
 
1568
        ret = dup2(devnull, STDIN_FILENO);
 
 
1570
          perror_plus("dup2(devnull, STDIN_FILENO)");
 
 
1573
        ret = close(devnull);
 
 
1575
          perror_plus("close");
 
 
1578
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
 
1580
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
 
1583
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
 
1585
          perror_plus("setenv");
 
 
1588
        ret = setenv("DEVICE", interface, 1);
 
 
1590
          perror_plus("setenv");
 
 
1593
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
 
1595
          perror_plus("setenv");
 
 
1598
        ret = setenv("MODE", mode, 1);
 
 
1600
          perror_plus("setenv");
 
 
1604
        ret = asprintf(&delaystring, "%f", (double)delay);
 
 
1606
          perror_plus("asprintf");
 
 
1609
        ret = setenv("DELAY", delaystring, 1);
 
 
1612
          perror_plus("setenv");
 
1996
1615
        free(delaystring);
 
1997
 
        perror_plus("setenv");
 
2001
 
      if(connect_to != NULL){
 
2002
 
        ret = setenv("CONNECT", connect_to, 1);
 
2004
 
          perror_plus("setenv");
 
2008
 
      int hook_fd = (int)TEMP_FAILURE_RETRY(openat(hookdir_fd,
 
2012
 
        perror_plus("openat");
 
2013
 
        _exit(EXIT_FAILURE);
 
2015
 
      if(close(hookdir_fd) == -1){
 
2016
 
        perror_plus("close");
 
2017
 
        _exit(EXIT_FAILURE);
 
2019
 
      ret = dup2(devnull, STDIN_FILENO);
 
2021
 
        perror_plus("dup2(devnull, STDIN_FILENO)");
 
2024
 
      ret = close(devnull);
 
2026
 
        perror_plus("close");
 
2029
 
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
2031
 
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
2034
 
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
2036
 
        perror_plus("fexecve");
 
2037
 
        _exit(EXIT_FAILURE);
 
2041
 
        perror_plus("fork");
 
2046
 
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
2047
 
        perror_plus("waitpid");
 
2051
 
      if(WIFEXITED(status)){
 
2052
 
        if(WEXITSTATUS(status) != 0){
 
2053
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
2054
 
                       " with status %d\n", direntry->d_name,
 
2055
 
                       WEXITSTATUS(status));
 
2059
 
      } else if(WIFSIGNALED(status)){
 
2060
 
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
2061
 
                     " signal %d\n", direntry->d_name,
 
 
1616
        if(connect_to != NULL){
 
 
1617
          ret = setenv("CONNECT", connect_to, 1);
 
 
1619
            perror_plus("setenv");
 
 
1623
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
 
1624
          perror_plus("execl");
 
 
1625
          _exit(EXIT_FAILURE);
 
2066
 
        fprintf_plus(stderr, "Warning: network hook \"%s\""
 
2067
 
                     " crashed\n", direntry->d_name);
 
2073
 
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
2079
 
  if(close(hookdir_fd) == -1){
 
2080
 
    perror_plus("close");
 
 
1629
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
 
1630
          perror_plus("waitpid");
 
 
1634
        if(WIFEXITED(status)){
 
 
1635
          if(WEXITSTATUS(status) != 0){
 
 
1636
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
 
1637
                         " with status %d\n", direntry->d_name,
 
 
1638
                         WEXITSTATUS(status));
 
 
1642
        } else if(WIFSIGNALED(status)){
 
 
1643
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
 
1644
                       " signal %d\n", direntry->d_name,
 
 
1649
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
 
1650
                       " crashed\n", direntry->d_name);
 
 
1657
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
2087
1665
__attribute__((nonnull, warn_unused_result))
 
2088
 
int bring_up_interface(const char *const interface,
 
2090
 
  int old_errno = errno;
 
 
1666
error_t bring_up_interface(const char *const interface,
 
 
1668
  error_t old_errno = errno;
 
2092
1670
  struct ifreq network;
 
2093
1671
  unsigned int if_index = if_nametoindex(interface);
 
 
3050
2569
  free(interfaces_to_take_down);
 
3051
2570
  free(interfaces_hooks);
 
3053
 
  void clean_dir_at(int base, const char * const dirname,
 
3055
 
    struct dirent **direntries = NULL;
 
3057
 
    int dir_fd = (int)TEMP_FAILURE_RETRY(openat(base, dirname,
 
3063
 
      perror_plus("open");
 
3065
 
    int numentries = scandirat(dir_fd, ".", &direntries,
 
3066
 
                               notdotentries, alphasort);
 
3067
 
    if(numentries >= 0){
 
3068
 
      for(int i = 0; i < numentries; i++){
 
3070
 
          fprintf_plus(stderr, "Unlinking \"%s/%s\"\n",
 
3071
 
                       dirname, direntries[i]->d_name);
 
3073
 
        dret = unlinkat(dir_fd, direntries[i]->d_name, 0);
 
3075
 
          if(errno == EISDIR){
 
3076
 
              dret = unlinkat(dir_fd, direntries[i]->d_name,
 
3079
 
          if((dret == -1) and (errno == ENOTEMPTY)
 
3080
 
             and (strcmp(direntries[i]->d_name, "private-keys-v1.d")
 
3081
 
                  == 0) and (level == 0)){
 
3082
 
            /* Recurse only in this special case */
 
3083
 
            clean_dir_at(dir_fd, direntries[i]->d_name, level+1);
 
3087
 
            fprintf_plus(stderr, "unlink(\"%s/%s\"): %s\n", dirname,
 
3088
 
                         direntries[i]->d_name, strerror(errno));
 
3091
 
        free(direntries[i]);
 
3094
 
      /* need to clean even if 0 because man page doesn't specify */
 
3096
 
      if(numentries == -1){
 
3097
 
        perror_plus("scandirat");
 
3099
 
      dret = unlinkat(base, dirname, AT_REMOVEDIR);
 
3100
 
      if(dret == -1 and errno != ENOENT){
 
3101
 
        perror_plus("rmdir");
 
3104
 
      perror_plus("scandirat");
 
3109
2572
  /* Removes the GPGME temp directory and all files inside */
 
3110
2573
  if(tempdir != NULL){
 
3111
 
    clean_dir_at(-1, tempdir, 0);
 
 
2574
    struct dirent **direntries = NULL;
 
 
2575
    struct dirent *direntry = NULL;
 
 
2576
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2579
      for(int i = 0; i < numentries; i++){
 
 
2580
        direntry = direntries[i];
 
 
2581
        char *fullname = NULL;
 
 
2582
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
 
2585
          perror_plus("asprintf");
 
 
2588
        ret = remove(fullname);
 
 
2590
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
 
2597
    /* need to clean even if 0 because man page doesn't specify */
 
 
2599
    if(numentries == -1){
 
 
2600
      perror_plus("scandir");
 
 
2602
    ret = rmdir(tempdir);
 
 
2603
    if(ret == -1 and errno != ENOENT){
 
 
2604
      perror_plus("rmdir");