/mandos/release

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2015-07-01 20:01:26 UTC
  • mto: (237.7.307 trunk)
  • mto: This revision was merged to the branch mainline in revision 325.
  • Revision ID: teddy@recompile.se-20150701200126-qb3f6c3jcas2f4og
mandos-client: Try to start a plugin to add and remove a local route.

* debian/mandos-client.README.Debian: Add setting of environment
                                      variable MANDOSPLUGINHELPERDIR
                                      to command line testing
                                      mandos-client.
* mandos-client.c (raise_privileges): Moved to top of file.
                  (raise_privileges_permanently): - '' -
                  (lower_privileges): - '' -
                  (lower_privileges_permanently): - '' -
  (add_remove_local_route, add_local_route, remove_local_route): New.
  (start_mandos_communication): Set SOCK_CLOEXEC flag on socket.  Run
                                the above functions to add (and
                                remove) local route, if the conditions
                                indicates it could help.
  (run_network_hooks): Use O_DIRECTORY, O_PATH, and O_CLOEXEC flags
                       when opening network hook directory. Do
                       TEMP_FAILURE_RETRY around opening of /dev/null
                       and network hook executables.  Move redirecting
                       of stdout and stderr to as late as possible
                       before fexecve().
  (main): Use O_DIRECTORY and O_PATH when opening temporary directory.
* plugins.d/mandos-client.xml (ENVIRONMENT): Document usage of the
                                             MANDOSPLUGINHELPERDIR
                                             environment variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2016 Teddy Hogeborn
13
 
 * Copyright © 2008-2016 Björn Påhlsson
 
12
 * Copyright © 2008-2015 Teddy Hogeborn
 
13
 * Copyright © 2008-2015 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
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() */
 
49
#include <string.h>             /* memset(), strcmp(), strlen(),
 
50
                                   strerror(), asprintf(), strcpy() */
51
51
#include <sys/ioctl.h>          /* ioctl */
52
52
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
53
53
                                   sockaddr_in6, PF_INET6,
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
58
                                   inet_pton(), connect(),
59
59
                                   getnameinfo() */
60
 
#include <fcntl.h>              /* open(), unlinkat(), AT_REMOVEDIR */
 
60
#include <fcntl.h>              /* open(), unlinkat() */
61
61
#include <dirent.h>             /* opendir(), struct dirent, readdir()
62
62
                                 */
63
63
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
64
64
                                   strtoimax() */
65
 
#include <errno.h>              /* perror(), errno, EINTR, EINVAL,
66
 
                                   EAI_SYSTEM, ENETUNREACH,
67
 
                                   EHOSTUNREACH, ECONNREFUSED, EPROTO,
68
 
                                   EIO, ENOENT, ENXIO, ENOMEM, EISDIR,
69
 
                                   ENOTEMPTY,
 
65
#include <errno.h>              /* perror(), errno,
70
66
                                   program_invocation_short_name */
71
67
#include <time.h>               /* nanosleep(), time(), sleep() */
72
68
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
309
305
      return false;
310
306
    }
311
307
    
312
 
    ret = close(fd);
 
308
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
313
309
    if(ret == -1){
314
310
      perror_plus("close");
315
311
    }
497
493
  return plaintext_length;
498
494
}
499
495
 
500
 
__attribute__((warn_unused_result, const))
501
 
static const char *safe_string(const char *str){
502
 
  if(str == NULL)
503
 
    return "(unknown)";
504
 
  return str;
505
 
}
506
 
 
507
496
__attribute__((warn_unused_result))
508
497
static const char *safer_gnutls_strerror(int value){
509
498
  const char *ret = gnutls_strerror(value);
510
 
  return safe_string(ret);
 
499
  if(ret == NULL)
 
500
    ret = "(unknown)";
 
501
  return ret;
511
502
}
512
503
 
513
504
/* GnuTLS log function callback */
517
508
  fprintf_plus(stderr, "GnuTLS: %s", string);
518
509
}
519
510
 
520
 
__attribute__((nonnull(1, 2, 4), warn_unused_result))
 
511
__attribute__((nonnull, warn_unused_result))
521
512
static int init_gnutls_global(const char *pubkeyfilename,
522
513
                              const char *seckeyfilename,
523
 
                              const char *dhparamsfilename,
524
514
                              mandos_context *mc){
525
515
  int ret;
526
 
  unsigned int uret;
527
516
  
528
517
  if(debug){
529
518
    fprintf_plus(stderr, "Initializing GnuTLS\n");
530
519
  }
531
520
  
 
521
  ret = gnutls_global_init();
 
522
  if(ret != GNUTLS_E_SUCCESS){
 
523
    fprintf_plus(stderr, "GnuTLS global_init: %s\n",
 
524
                 safer_gnutls_strerror(ret));
 
525
    return -1;
 
526
  }
 
527
  
532
528
  if(debug){
533
529
    /* "Use a log level over 10 to enable all debugging options."
534
530
     * - GnuTLS manual
542
538
  if(ret != GNUTLS_E_SUCCESS){
543
539
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
544
540
                 safer_gnutls_strerror(ret));
 
541
    gnutls_global_deinit();
545
542
    return -1;
546
543
  }
547
544
  
572
569
                 safer_gnutls_strerror(ret));
573
570
    goto globalfail;
574
571
  }
575
 
  /* If a Diffie-Hellman parameters file was given, try to use it */
576
 
  if(dhparamsfilename != NULL){
577
 
    gnutls_datum_t params = { .data = NULL, .size = 0 };
578
 
    do {
579
 
      int dhpfile = open(dhparamsfilename, O_RDONLY);
580
 
      if(dhpfile == -1){
581
 
        perror_plus("open");
582
 
        dhparamsfilename = NULL;
583
 
        break;
584
 
      }
585
 
      size_t params_capacity = 0;
586
 
      while(true){
587
 
        params_capacity = incbuffer((char **)&params.data,
588
 
                                    (size_t)params.size,
589
 
                                    (size_t)params_capacity);
590
 
        if(params_capacity == 0){
591
 
          perror_plus("incbuffer");
592
 
          free(params.data);
593
 
          params.data = NULL;
594
 
          dhparamsfilename = NULL;
595
 
          break;
596
 
        }
597
 
        ssize_t bytes_read = read(dhpfile,
598
 
                                  params.data + params.size,
599
 
                                  BUFFER_SIZE);
600
 
        /* EOF */
601
 
        if(bytes_read == 0){
602
 
          break;
603
 
        }
604
 
        /* check bytes_read for failure */
605
 
        if(bytes_read < 0){
606
 
          perror_plus("read");
607
 
          free(params.data);
608
 
          params.data = NULL;
609
 
          dhparamsfilename = NULL;
610
 
          break;
611
 
        }
612
 
        params.size += (unsigned int)bytes_read;
613
 
      }
614
 
      if(params.data == NULL){
615
 
        dhparamsfilename = NULL;
616
 
      }
617
 
      if(dhparamsfilename == NULL){
618
 
        break;
619
 
      }
620
 
      ret = gnutls_dh_params_import_pkcs3(mc->dh_params, &params,
621
 
                                          GNUTLS_X509_FMT_PEM);
622
 
      if(ret != GNUTLS_E_SUCCESS){
623
 
        fprintf_plus(stderr, "Failed to parse DH parameters in file"
624
 
                     " \"%s\": %s\n", dhparamsfilename,
625
 
                     safer_gnutls_strerror(ret));
626
 
        dhparamsfilename = NULL;
627
 
      }
628
 
    } while(false);
629
 
  }
630
 
  if(dhparamsfilename == NULL){
631
 
    if(mc->dh_bits == 0){
632
 
      /* Find out the optimal number of DH bits */
633
 
      /* Try to read the private key file */
634
 
      gnutls_datum_t buffer = { .data = NULL, .size = 0 };
635
 
      do {
636
 
        int secfile = open(seckeyfilename, O_RDONLY);
637
 
        if(secfile == -1){
638
 
          perror_plus("open");
639
 
          break;
640
 
        }
641
 
        size_t buffer_capacity = 0;
642
 
        while(true){
643
 
          buffer_capacity = incbuffer((char **)&buffer.data,
644
 
                                      (size_t)buffer.size,
645
 
                                      (size_t)buffer_capacity);
646
 
          if(buffer_capacity == 0){
647
 
            perror_plus("incbuffer");
648
 
            free(buffer.data);
649
 
            buffer.data = NULL;
650
 
            break;
651
 
          }
652
 
          ssize_t bytes_read = read(secfile,
653
 
                                    buffer.data + buffer.size,
654
 
                                    BUFFER_SIZE);
655
 
          /* EOF */
656
 
          if(bytes_read == 0){
657
 
            break;
658
 
          }
659
 
          /* check bytes_read for failure */
660
 
          if(bytes_read < 0){
661
 
            perror_plus("read");
662
 
            free(buffer.data);
663
 
            buffer.data = NULL;
664
 
            break;
665
 
          }
666
 
          buffer.size += (unsigned int)bytes_read;
667
 
        }
668
 
        close(secfile);
669
 
      } while(false);
670
 
      /* If successful, use buffer to parse private key */
671
 
      gnutls_sec_param_t sec_param = GNUTLS_SEC_PARAM_ULTRA;
672
 
      if(buffer.data != NULL){
673
 
        {
674
 
          gnutls_openpgp_privkey_t privkey = NULL;
675
 
          ret = gnutls_openpgp_privkey_init(&privkey);
676
 
          if(ret != GNUTLS_E_SUCCESS){
677
 
            fprintf_plus(stderr, "Error initializing OpenPGP key"
678
 
                         " structure: %s",
679
 
                         safer_gnutls_strerror(ret));
680
 
            free(buffer.data);
681
 
            buffer.data = NULL;
682
 
          } else {
683
 
            ret = gnutls_openpgp_privkey_import
684
 
              (privkey, &buffer, GNUTLS_OPENPGP_FMT_BASE64, "", 0);
685
 
            if(ret != GNUTLS_E_SUCCESS){
686
 
              fprintf_plus(stderr, "Error importing OpenPGP key : %s",
687
 
                           safer_gnutls_strerror(ret));
688
 
              privkey = NULL;
689
 
            }
690
 
            free(buffer.data);
691
 
            buffer.data = NULL;
692
 
            if(privkey != NULL){
693
 
              /* Use private key to suggest an appropriate
694
 
                 sec_param */
695
 
              sec_param = gnutls_openpgp_privkey_sec_param(privkey);
696
 
              gnutls_openpgp_privkey_deinit(privkey);
697
 
              if(debug){
698
 
                fprintf_plus(stderr, "This OpenPGP key implies using"
699
 
                             " a GnuTLS security parameter \"%s\".\n",
700
 
                             safe_string(gnutls_sec_param_get_name
701
 
                                         (sec_param)));
702
 
              }
703
 
            }
704
 
          }
705
 
        }
706
 
        if(sec_param == GNUTLS_SEC_PARAM_UNKNOWN){
707
 
          /* Err on the side of caution */
708
 
          sec_param = GNUTLS_SEC_PARAM_ULTRA;
709
 
          if(debug){
710
 
            fprintf_plus(stderr, "Falling back to security parameter"
711
 
                         " \"%s\"\n",
712
 
                         safe_string(gnutls_sec_param_get_name
713
 
                                     (sec_param)));
714
 
          }
715
 
        }
716
 
      }
717
 
      uret = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, sec_param);
718
 
      if(uret != 0){
719
 
        mc->dh_bits = uret;
720
 
        if(debug){
721
 
          fprintf_plus(stderr, "A \"%s\" GnuTLS security parameter"
722
 
                       " implies %u DH bits; using that.\n",
723
 
                       safe_string(gnutls_sec_param_get_name
724
 
                                   (sec_param)),
725
 
                       mc->dh_bits);
726
 
        }
727
 
      } else {
728
 
        fprintf_plus(stderr, "Failed to get implied number of DH"
729
 
                     " bits for security parameter \"%s\"): %s\n",
730
 
                     safe_string(gnutls_sec_param_get_name
731
 
                                 (sec_param)),
732
 
                     safer_gnutls_strerror(ret));
733
 
        goto globalfail;
734
 
      }
735
 
    } else if(debug){
736
 
      fprintf_plus(stderr, "DH bits explicitly set to %u\n",
737
 
                   mc->dh_bits);
738
 
    }
739
 
    ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
740
 
    if(ret != GNUTLS_E_SUCCESS){
741
 
      fprintf_plus(stderr, "Error in GnuTLS prime generation (%u"
742
 
                   " bits): %s\n", mc->dh_bits,
743
 
                   safer_gnutls_strerror(ret));
744
 
      goto globalfail;
745
 
    }
746
 
  }
 
572
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
573
  if(ret != GNUTLS_E_SUCCESS){
 
574
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
575
                 safer_gnutls_strerror(ret));
 
576
    goto globalfail;
 
577
  }
 
578
  
747
579
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
748
580
  
749
581
  return 0;
751
583
 globalfail:
752
584
  
753
585
  gnutls_certificate_free_credentials(mc->cred);
 
586
  gnutls_global_deinit();
754
587
  gnutls_dh_params_deinit(mc->dh_params);
755
588
  return -1;
756
589
}
808
641
  /* ignore client certificate if any. */
809
642
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
810
643
  
 
644
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
645
  
811
646
  return 0;
812
647
}
813
648
 
867
702
  return ret_errno;
868
703
}
869
704
 
870
 
/* Helper function to add_local_route() and delete_local_route() */
 
705
/* Helper function to add_local_route() and remove_local_route() */
871
706
__attribute__((nonnull, warn_unused_result))
872
 
static bool add_delete_local_route(const bool add,
 
707
static bool add_remove_local_route(const bool add,
873
708
                                   const char *address,
874
709
                                   AvahiIfIndex if_index){
875
710
  int ret;
876
711
  char helper[] = "mandos-client-iprouteadddel";
877
712
  char add_arg[] = "add";
878
 
  char delete_arg[] = "delete";
879
 
  char debug_flag[] = "--debug";
 
713
  char remove_arg[] = "remove";
880
714
  char *pluginhelperdir = getenv("MANDOSPLUGINHELPERDIR");
881
715
  if(pluginhelperdir == NULL){
882
716
    if(debug){
941
775
                                                    | O_DIRECTORY
942
776
                                                    | O_PATH
943
777
                                                    | O_CLOEXEC));
944
 
    if(helperdir_fd == -1){
945
 
      perror_plus("open");
946
 
      _exit(EX_UNAVAILABLE);
947
 
    }
948
778
    int helper_fd = (int)TEMP_FAILURE_RETRY(openat(helperdir_fd,
949
779
                                                   helper, O_RDONLY));
950
 
    if(helper_fd == -1){
951
 
      perror_plus("openat");
952
 
      close(helperdir_fd);
953
 
      _exit(EX_UNAVAILABLE);
954
 
    }
955
 
    close(helperdir_fd);
 
780
    TEMP_FAILURE_RETRY(close(helperdir_fd));
956
781
#ifdef __GNUC__
957
782
#pragma GCC diagnostic push
958
783
#pragma GCC diagnostic ignored "-Wcast-qual"
959
784
#endif
960
785
    if(fexecve(helper_fd, (char *const [])
961
 
               { helper, add ? add_arg : delete_arg, (char *)address,
962
 
                   interface, debug ? debug_flag : NULL, NULL },
963
 
               environ) == -1){
 
786
               { helper, add ? add_arg : remove_arg, (char *)address,
 
787
                   interface, NULL }, environ) == -1){
964
788
#ifdef __GNUC__
965
789
#pragma GCC diagnostic pop
966
790
#endif
1018
842
__attribute__((nonnull, warn_unused_result))
1019
843
static bool add_local_route(const char *address,
1020
844
                            AvahiIfIndex if_index){
1021
 
  if(debug){
1022
 
    fprintf_plus(stderr, "Adding route to %s\n", address);
1023
 
  }
1024
 
  return add_delete_local_route(true, address, if_index);
 
845
  return add_remove_local_route(true, address, if_index);
1025
846
}
1026
847
 
1027
848
__attribute__((nonnull, warn_unused_result))
1028
 
static bool delete_local_route(const char *address,
 
849
static bool remove_local_route(const char *address,
1029
850
                               AvahiIfIndex if_index){
1030
 
  if(debug){
1031
 
    fprintf_plus(stderr, "Removing route to %s\n", address);
1032
 
  }
1033
 
  return add_delete_local_route(false, address, if_index);
 
851
  return add_remove_local_route(false, address, if_index);
1034
852
}
1035
853
 
1036
854
/* Called when a Mandos server is found */
1126
944
    goto mandos_end;
1127
945
  }
1128
946
  
 
947
  memset(&to, 0, sizeof(to));
1129
948
  if(af == AF_INET6){
1130
 
    struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&to;
1131
 
    *to6 = (struct sockaddr_in6){ .sin6_family = (sa_family_t)af };
1132
 
    ret = inet_pton(af, ip, &to6->sin6_addr);
 
949
    ((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
 
950
    ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
1133
951
  } else {                      /* IPv4 */
1134
 
    struct sockaddr_in *to4 = (struct sockaddr_in *)&to;
1135
 
    *to4 = (struct sockaddr_in){ .sin_family = (sa_family_t)af };
1136
 
    ret = inet_pton(af, ip, &to4->sin_addr);
 
952
    ((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
 
953
    ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
1137
954
  }
1138
955
  if(ret < 0 ){
1139
956
    int e = errno;
1218
1035
                    sizeof(struct sockaddr_in));
1219
1036
    }
1220
1037
    if(ret < 0){
1221
 
      if(((errno == ENETUNREACH) or (errno == EHOSTUNREACH))
 
1038
      if(errno == ENETUNREACH
1222
1039
         and if_index != AVAHI_IF_UNSPEC
1223
1040
         and connect_to == NULL
1224
1041
         and not route_added and
1240
1057
           http://lists.freedesktop.org/archives/avahi/2010-February/001833.html
1241
1058
           https://bugs.debian.org/587961
1242
1059
        */
1243
 
        if(debug){
1244
 
          fprintf_plus(stderr, "Mandos server unreachable, trying"
1245
 
                       " direct route\n");
1246
 
        }
1247
1060
        int e = errno;
1248
1061
        route_added = add_local_route(ip, if_index);
1249
1062
        if(route_added){
1453
1266
 mandos_end:
1454
1267
  {
1455
1268
    if(route_added){
1456
 
      if(not delete_local_route(ip, if_index)){
1457
 
        fprintf_plus(stderr, "Failed to delete local route to %s on"
 
1269
      if(not remove_local_route(ip, if_index)){
 
1270
        fprintf_plus(stderr, "Failed to remove local route to %s on"
1458
1271
                     " interface %d", ip, if_index);
1459
1272
      }
1460
1273
    }
1462
1275
    free(decrypted_buffer);
1463
1276
    free(buffer);
1464
1277
    if(tcp_sd >= 0){
1465
 
      ret = close(tcp_sd);
 
1278
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
1466
1279
    }
1467
1280
    if(ret == -1){
1468
1281
      if(e == 0){
1632
1445
    errno = ret_errno;
1633
1446
    return false;
1634
1447
  }
1635
 
  strncpy(ifr->ifr_name, ifname, IF_NAMESIZE);
1636
 
  ifr->ifr_name[IF_NAMESIZE-1] = '\0'; /* NUL terminate */
 
1448
  strcpy(ifr->ifr_name, ifname);
1637
1449
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1638
1450
  if(ret == -1){
1639
1451
    if(debug){
1909
1721
      return;
1910
1722
    }
1911
1723
  }
 
1724
#ifdef __GLIBC__
 
1725
#if __GLIBC_PREREQ(2, 15)
1912
1726
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
1913
1727
                           runnable_hook, alphasort);
 
1728
#else  /* not __GLIBC_PREREQ(2, 15) */
 
1729
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1730
                         alphasort);
 
1731
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
1732
#else   /* not __GLIBC__ */
 
1733
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1734
                         alphasort);
 
1735
#endif  /* not __GLIBC__ */
1914
1736
  if(numhooks == -1){
1915
1737
    perror_plus("scandir");
1916
1738
    return;
1991
1813
          _exit(EX_OSERR);
1992
1814
        }
1993
1815
      }
1994
 
      int hook_fd = (int)TEMP_FAILURE_RETRY(openat(hookdir_fd,
1995
 
                                                   direntry->d_name,
1996
 
                                                   O_RDONLY));
 
1816
      int hook_fd = TEMP_FAILURE_RETRY(openat(hookdir_fd,
 
1817
                                              direntry->d_name,
 
1818
                                              O_RDONLY));
1997
1819
      if(hook_fd == -1){
1998
1820
        perror_plus("openat");
1999
1821
        _exit(EXIT_FAILURE);
2000
1822
      }
2001
 
      if(close(hookdir_fd) == -1){
 
1823
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
2002
1824
        perror_plus("close");
2003
1825
        _exit(EXIT_FAILURE);
2004
1826
      }
2062
1884
    free(direntry);
2063
1885
  }
2064
1886
  free(direntries);
2065
 
  if(close(hookdir_fd) == -1){
 
1887
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
2066
1888
    perror_plus("close");
2067
1889
  } else {
2068
1890
    hookdir_fd = -1;
2108
1930
    }
2109
1931
    
2110
1932
    if(quit_now){
2111
 
      ret = close(sd);
 
1933
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
2112
1934
      if(ret == -1){
2113
1935
        perror_plus("close");
2114
1936
      }
2164
1986
    }
2165
1987
    
2166
1988
    /* Close the socket */
2167
 
    ret = close(sd);
 
1989
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
2168
1990
    if(ret == -1){
2169
1991
      perror_plus("close");
2170
1992
    }
2252
2074
    }
2253
2075
    
2254
2076
    /* Close the socket */
2255
 
    int ret = close(sd);
 
2077
    int ret = (int)TEMP_FAILURE_RETRY(close(sd));
2256
2078
    if(ret == -1){
2257
2079
      perror_plus("close");
2258
2080
    }
2273
2095
}
2274
2096
 
2275
2097
int main(int argc, char *argv[]){
2276
 
  mandos_context mc = { .server = NULL, .dh_bits = 0,
2277
 
                        .priority = "SECURE256:!CTYPE-X.509"
2278
 
                        ":+CTYPE-OPENPGP:!RSA:+SIGN-DSA-SHA256",
2279
 
                        .current_server = NULL, .interfaces = NULL,
2280
 
                        .interfaces_size = 0 };
 
2098
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
 
2099
                        .priority = "SECURE256:!CTYPE-X.509:"
 
2100
                        "+CTYPE-OPENPGP", .current_server = NULL,
 
2101
                        .interfaces = NULL, .interfaces_size = 0 };
2281
2102
  AvahiSServiceBrowser *sb = NULL;
2282
2103
  error_t ret_errno;
2283
2104
  int ret;
2292
2113
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
2293
2114
  const char *seckey = PATHDIR "/" SECKEY;
2294
2115
  const char *pubkey = PATHDIR "/" PUBKEY;
2295
 
  const char *dh_params_file = NULL;
2296
2116
  char *interfaces_hooks = NULL;
2297
2117
  
2298
2118
  bool gnutls_initialized = false;
2351
2171
        .doc = "Bit length of the prime number used in the"
2352
2172
        " Diffie-Hellman key exchange",
2353
2173
        .group = 2 },
2354
 
      { .name = "dh-params", .key = 134,
2355
 
        .arg = "FILE",
2356
 
        .doc = "PEM-encoded PKCS#3 file with pre-generated parameters"
2357
 
        " for the Diffie-Hellman key exchange",
2358
 
        .group = 2 },
2359
2174
      { .name = "priority", .key = 130,
2360
2175
        .arg = "STRING",
2361
2176
        .doc = "GnuTLS priority string for the TLS handshake",
2416
2231
        }
2417
2232
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
2418
2233
        break;
2419
 
      case 134:                 /* --dh-params */
2420
 
        dh_params_file = arg;
2421
 
        break;
2422
2234
      case 130:                 /* --priority */
2423
2235
        mc.priority = arg;
2424
2236
        break;
2510
2322
              }
2511
2323
            }
2512
2324
          }
2513
 
          close(seckey_fd);
 
2325
          TEMP_FAILURE_RETRY(close(seckey_fd));
2514
2326
        }
2515
2327
      }
2516
2328
      
2531
2343
              }
2532
2344
            }
2533
2345
          }
2534
 
          close(pubkey_fd);
2535
 
        }
2536
 
      }
2537
 
      
2538
 
      if(dh_params_file != NULL
2539
 
         and strcmp(dh_params_file, PATHDIR "/dhparams.pem" ) == 0){
2540
 
        int dhparams_fd = open(dh_params_file, O_RDONLY);
2541
 
        if(dhparams_fd == -1){
2542
 
          perror_plus("open");
2543
 
        } else {
2544
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(dhparams_fd, &st));
2545
 
          if(ret == -1){
2546
 
            perror_plus("fstat");
2547
 
          } else {
2548
 
            if(S_ISREG(st.st_mode)
2549
 
               and st.st_uid == 0 and st.st_gid == 0){
2550
 
              ret = fchown(dhparams_fd, uid, gid);
2551
 
              if(ret == -1){
2552
 
                perror_plus("fchown");
2553
 
              }
2554
 
            }
2555
 
          }
2556
 
          close(dhparams_fd);
 
2346
          TEMP_FAILURE_RETRY(close(pubkey_fd));
2557
2347
        }
2558
2348
      }
2559
2349
      
2736
2526
      errno = bring_up_interface(interface, delay);
2737
2527
      if(not interface_was_up){
2738
2528
        if(errno != 0){
2739
 
          fprintf_plus(stderr, "Failed to bring up interface \"%s\":"
2740
 
                       " %s\n", interface, strerror(errno));
 
2529
          perror_plus("Failed to bring up interface");
2741
2530
        } else {
2742
2531
          errno = argz_add(&interfaces_to_take_down,
2743
2532
                           &interfaces_to_take_down_size,
2766
2555
    goto end;
2767
2556
  }
2768
2557
  
2769
 
  ret = init_gnutls_global(pubkey, seckey, dh_params_file, &mc);
 
2558
  ret = init_gnutls_global(pubkey, seckey, &mc);
2770
2559
  if(ret == -1){
2771
2560
    fprintf_plus(stderr, "init_gnutls_global failed\n");
2772
2561
    exitcode = EX_UNAVAILABLE;
2961
2750
  
2962
2751
  if(gnutls_initialized){
2963
2752
    gnutls_certificate_free_credentials(mc.cred);
 
2753
    gnutls_global_deinit();
2964
2754
    gnutls_dh_params_deinit(mc.dh_params);
2965
2755
  }
2966
2756
  
3028
2818
  free(interfaces_to_take_down);
3029
2819
  free(interfaces_hooks);
3030
2820
  
3031
 
  void clean_dir_at(int base, const char * const dirname,
3032
 
                    uintmax_t level){
3033
 
    struct dirent **direntries = NULL;
3034
 
    int dret;
3035
 
    int dir_fd = (int)TEMP_FAILURE_RETRY(openat(base, dirname,
3036
 
                                                O_RDONLY
3037
 
                                                | O_NOFOLLOW
3038
 
                                                | O_DIRECTORY
3039
 
                                                | O_PATH));
3040
 
    if(dir_fd == -1){
3041
 
      perror_plus("open");
3042
 
    }
3043
 
    int numentries = scandirat(dir_fd, ".", &direntries,
3044
 
                               notdotentries, alphasort);
3045
 
    if(numentries >= 0){
3046
 
      for(int i = 0; i < numentries; i++){
3047
 
        if(debug){
3048
 
          fprintf_plus(stderr, "Unlinking \"%s/%s\"\n",
3049
 
                       dirname, direntries[i]->d_name);
3050
 
        }
3051
 
        dret = unlinkat(dir_fd, direntries[i]->d_name, 0);
3052
 
        if(dret == -1){
3053
 
          if(errno == EISDIR){
3054
 
              dret = unlinkat(dir_fd, direntries[i]->d_name,
3055
 
                              AT_REMOVEDIR);
3056
 
          }         
3057
 
          if((dret == -1) and (errno == ENOTEMPTY)
3058
 
             and (strcmp(direntries[i]->d_name, "private-keys-v1.d")
3059
 
                  == 0) and (level == 0)){
3060
 
            /* Recurse only in this special case */
3061
 
            clean_dir_at(dir_fd, direntries[i]->d_name, level+1);
3062
 
            dret = 0;
3063
 
          }
3064
 
          if(dret == -1){
3065
 
            fprintf_plus(stderr, "unlink(\"%s/%s\"): %s\n", dirname,
3066
 
                         direntries[i]->d_name, strerror(errno));
3067
 
          }
3068
 
        }
3069
 
        free(direntries[i]);
3070
 
      }
3071
 
      
3072
 
      /* need to clean even if 0 because man page doesn't specify */
3073
 
      free(direntries);
3074
 
      if(numentries == -1){
3075
 
        perror_plus("scandirat");
3076
 
      }
3077
 
      dret = unlinkat(base, dirname, AT_REMOVEDIR);
3078
 
      if(dret == -1 and errno != ENOENT){
3079
 
        perror_plus("rmdir");
3080
 
      }
3081
 
    } else {
3082
 
      perror_plus("scandirat");
3083
 
    }
3084
 
    close(dir_fd);
3085
 
  }
3086
 
  
3087
2821
  /* Removes the GPGME temp directory and all files inside */
3088
2822
  if(tempdir != NULL){
3089
 
    clean_dir_at(-1, tempdir, 0);
 
2823
    struct dirent **direntries = NULL;
 
2824
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY
 
2825
                                                  | O_NOFOLLOW
 
2826
                                                  | O_DIRECTORY
 
2827
                                                  | O_PATH));
 
2828
    if(tempdir_fd == -1){
 
2829
      perror_plus("open");
 
2830
    } else {
 
2831
#ifdef __GLIBC__
 
2832
#if __GLIBC_PREREQ(2, 15)
 
2833
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
2834
                                 notdotentries, alphasort);
 
2835
#else  /* not __GLIBC_PREREQ(2, 15) */
 
2836
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2837
                               alphasort);
 
2838
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
2839
#else   /* not __GLIBC__ */
 
2840
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2841
                               alphasort);
 
2842
#endif  /* not __GLIBC__ */
 
2843
      if(numentries >= 0){
 
2844
        for(int i = 0; i < numentries; i++){
 
2845
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
2846
          if(ret == -1){
 
2847
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
2848
                         " \"%s\", 0): %s\n", tempdir,
 
2849
                         direntries[i]->d_name, strerror(errno));
 
2850
          }
 
2851
          free(direntries[i]);
 
2852
        }
 
2853
        
 
2854
        /* need to clean even if 0 because man page doesn't specify */
 
2855
        free(direntries);
 
2856
        if(numentries == -1){
 
2857
          perror_plus("scandir");
 
2858
        }
 
2859
        ret = rmdir(tempdir);
 
2860
        if(ret == -1 and errno != ENOENT){
 
2861
          perror_plus("rmdir");
 
2862
        }
 
2863
      }
 
2864
      TEMP_FAILURE_RETRY(close(tempdir_fd));
 
2865
    }
3090
2866
  }
3091
2867
  
3092
2868
  if(quit_now){