/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: 2009-02-04 06:52:40 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090204065240-21mtv9va8n1n5lkg
* plugin-runner.c: Whitespace changes only.

* plugins.d/mandos-client.c: Wrap calls to klogctl() inside "#ifdef
                             __linux__".  Detect and show any error
                             from nanosleep.

* plugins.d/password-prompt.c: Whitespace changes only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
                                   argp_state, struct argp,
76
76
                                   argp_parse(), ARGP_KEY_ARG,
77
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
78
#ifdef __linux__
78
79
#include <sys/klog.h>           /* klogctl() */
 
80
#endif
79
81
 
80
82
/* Avahi */
81
83
/* All Avahi types, constants and functions
366
368
  return plaintext_length;
367
369
}
368
370
 
369
 
static const char * safer_gnutls_strerror(int value) {
 
371
static const char * safer_gnutls_strerror(int value){
370
372
  const char *ret = gnutls_strerror(value); /* Spurious warning from
371
373
                                               -Wunreachable-code */
372
374
  if(ret == NULL)
390
392
  }
391
393
  
392
394
  ret = gnutls_global_init();
393
 
  if(ret != GNUTLS_E_SUCCESS) {
 
395
  if(ret != GNUTLS_E_SUCCESS){
394
396
    fprintf(stderr, "GnuTLS global_init: %s\n",
395
397
            safer_gnutls_strerror(ret));
396
398
    return -1;
425
427
  ret = gnutls_certificate_set_openpgp_key_file
426
428
    (mc->cred, pubkeyfilename, seckeyfilename,
427
429
     GNUTLS_OPENPGP_FMT_BASE64);
428
 
  if(ret != GNUTLS_E_SUCCESS) {
 
430
  if(ret != GNUTLS_E_SUCCESS){
429
431
    fprintf(stderr,
430
432
            "Error[%d] while reading the OpenPGP key pair ('%s',"
431
433
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
436
438
  
437
439
  /* GnuTLS server initialization */
438
440
  ret = gnutls_dh_params_init(&mc->dh_params);
439
 
  if(ret != GNUTLS_E_SUCCESS) {
 
441
  if(ret != GNUTLS_E_SUCCESS){
440
442
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
441
443
            " %s\n", safer_gnutls_strerror(ret));
442
444
    goto globalfail;
443
445
  }
444
446
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
445
 
  if(ret != GNUTLS_E_SUCCESS) {
 
447
  if(ret != GNUTLS_E_SUCCESS){
446
448
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
447
449
            safer_gnutls_strerror(ret));
448
450
    goto globalfail;
473
475
  {
474
476
    const char *err;
475
477
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
476
 
    if(ret != GNUTLS_E_SUCCESS) {
 
478
    if(ret != GNUTLS_E_SUCCESS){
477
479
      fprintf(stderr, "Syntax error at: %s\n", err);
478
480
      fprintf(stderr, "GnuTLS error: %s\n",
479
481
              safer_gnutls_strerror(ret));
484
486
  
485
487
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
486
488
                               mc->cred);
487
 
  if(ret != GNUTLS_E_SUCCESS) {
 
489
  if(ret != GNUTLS_E_SUCCESS){
488
490
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
489
491
            safer_gnutls_strerror(ret));
490
492
    gnutls_deinit(*session);
532
534
  }
533
535
  
534
536
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
535
 
  if(tcp_sd < 0) {
 
537
  if(tcp_sd < 0){
536
538
    perror("socket");
537
539
    return -1;
538
540
  }
735
737
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
736
738
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
737
739
                             flags,
738
 
                             void* userdata) {
 
740
                             void* userdata){
739
741
  mandos_context *mc = userdata;
740
742
  assert(r);
741
743
  
742
744
  /* Called whenever a service has been resolved successfully or
743
745
     timed out */
744
746
  
745
 
  switch(event) {
 
747
  switch(event){
746
748
  default:
747
749
  case AVAHI_RESOLVER_FAILURE:
748
750
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
768
770
  avahi_s_service_resolver_free(r);
769
771
}
770
772
 
771
 
static void browse_callback( AvahiSServiceBrowser *b,
772
 
                             AvahiIfIndex interface,
773
 
                             AvahiProtocol protocol,
774
 
                             AvahiBrowserEvent event,
775
 
                             const char *name,
776
 
                             const char *type,
777
 
                             const char *domain,
778
 
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
779
 
                             flags,
780
 
                             void* userdata) {
 
773
static void browse_callback(AvahiSServiceBrowser *b,
 
774
                            AvahiIfIndex interface,
 
775
                            AvahiProtocol protocol,
 
776
                            AvahiBrowserEvent event,
 
777
                            const char *name,
 
778
                            const char *type,
 
779
                            const char *domain,
 
780
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
781
                            flags,
 
782
                            void* userdata){
781
783
  mandos_context *mc = userdata;
782
784
  assert(b);
783
785
  
784
786
  /* Called whenever a new services becomes available on the LAN or
785
787
     is removed from the LAN */
786
788
  
787
 
  switch(event) {
 
789
  switch(event){
788
790
  default:
789
791
  case AVAHI_BROWSER_FAILURE:
790
792
    
820
822
}
821
823
 
822
824
int main(int argc, char *argv[]){
823
 
    AvahiSServiceBrowser *sb = NULL;
824
 
    int error;
825
 
    int ret;
826
 
    intmax_t tmpmax;
827
 
    int numchars;
828
 
    int exitcode = EXIT_SUCCESS;
829
 
    const char *interface = "eth0";
830
 
    struct ifreq network;
831
 
    int sd;
832
 
    uid_t uid;
833
 
    gid_t gid;
834
 
    char *connect_to = NULL;
835
 
    char tempdir[] = "/tmp/mandosXXXXXX";
836
 
    bool tempdir_created = false;
837
 
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
838
 
    const char *seckey = PATHDIR "/" SECKEY;
839
 
    const char *pubkey = PATHDIR "/" PUBKEY;
840
 
    
841
 
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
842
 
                          .dh_bits = 1024, .priority = "SECURE256"
843
 
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
844
 
    bool gnutls_initialized = false;
845
 
    bool gpgme_initialized = false;
846
 
    double delay = 2.5;
847
 
    
848
 
    {
849
 
      struct argp_option options[] = {
850
 
        { .name = "debug", .key = 128,
851
 
          .doc = "Debug mode", .group = 3 },
852
 
        { .name = "connect", .key = 'c',
853
 
          .arg = "ADDRESS:PORT",
854
 
          .doc = "Connect directly to a specific Mandos server",
855
 
          .group = 1 },
856
 
        { .name = "interface", .key = 'i',
857
 
          .arg = "NAME",
858
 
          .doc = "Interface that will be used to search for Mandos"
859
 
          " servers",
860
 
          .group = 1 },
861
 
        { .name = "seckey", .key = 's',
862
 
          .arg = "FILE",
863
 
          .doc = "OpenPGP secret key file base name",
864
 
          .group = 1 },
865
 
        { .name = "pubkey", .key = 'p',
866
 
          .arg = "FILE",
867
 
          .doc = "OpenPGP public key file base name",
868
 
          .group = 2 },
869
 
        { .name = "dh-bits", .key = 129,
870
 
          .arg = "BITS",
871
 
          .doc = "Bit length of the prime number used in the"
872
 
          " Diffie-Hellman key exchange",
873
 
          .group = 2 },
874
 
        { .name = "priority", .key = 130,
875
 
          .arg = "STRING",
876
 
          .doc = "GnuTLS priority string for the TLS handshake",
877
 
          .group = 1 },
878
 
        { .name = "delay", .key = 131,
879
 
          .arg = "SECONDS",
880
 
          .doc = "Maximum delay to wait for interface startup",
881
 
          .group = 2 },
882
 
        { .name = NULL }
883
 
      };
884
 
      
885
 
      error_t parse_opt(int key, char *arg,
886
 
                        struct argp_state *state) {
887
 
        switch(key) {
888
 
        case 128:               /* --debug */
889
 
          debug = true;
890
 
          break;
891
 
        case 'c':               /* --connect */
892
 
          connect_to = arg;
893
 
          break;
894
 
        case 'i':               /* --interface */
895
 
          interface = arg;
896
 
          break;
897
 
        case 's':               /* --seckey */
898
 
          seckey = arg;
899
 
          break;
900
 
        case 'p':               /* --pubkey */
901
 
          pubkey = arg;
902
 
          break;
903
 
        case 129:               /* --dh-bits */
904
 
          ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
905
 
          if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
906
 
             or arg[numchars] != '\0'){
907
 
            fprintf(stderr, "Bad number of DH bits\n");
908
 
            exit(EXIT_FAILURE);
909
 
          }
910
 
          mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
911
 
          break;
912
 
        case 130:               /* --priority */
913
 
          mc.priority = arg;
914
 
          break;
915
 
        case 131:               /* --delay */
916
 
          ret = sscanf(arg, "%lf%n", &delay, &numchars);
917
 
          if(ret < 1 or arg[numchars] != '\0'){
918
 
            fprintf(stderr, "Bad delay\n");
919
 
            exit(EXIT_FAILURE);
920
 
          }
921
 
          break;
922
 
        case ARGP_KEY_ARG:
923
 
          argp_usage(state);
924
 
        case ARGP_KEY_END:
925
 
          break;
926
 
        default:
927
 
          return ARGP_ERR_UNKNOWN;
928
 
        }
929
 
        return 0;
930
 
      }
931
 
      
932
 
      struct argp argp = { .options = options, .parser = parse_opt,
933
 
                           .args_doc = "",
934
 
                           .doc = "Mandos client -- Get and decrypt"
935
 
                           " passwords from a Mandos server" };
936
 
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
937
 
      if(ret == ARGP_ERR_UNKNOWN){
938
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
939
 
        exitcode = EXIT_FAILURE;
940
 
        goto end;
941
 
      }
942
 
    }
943
 
    
944
 
    /* If the interface is down, bring it up */
945
 
    {
946
 
      /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
947
 
         messages to mess up the prompt */
948
 
      ret = klogctl(8, NULL, 5);
949
 
      if(ret == -1){
950
 
        perror("klogctl");
951
 
      }
952
 
      
953
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
954
 
      if(sd < 0) {
955
 
        perror("socket");
956
 
        exitcode = EXIT_FAILURE;
 
825
  AvahiSServiceBrowser *sb = NULL;
 
826
  int error;
 
827
  int ret;
 
828
  intmax_t tmpmax;
 
829
  int numchars;
 
830
  int exitcode = EXIT_SUCCESS;
 
831
  const char *interface = "eth0";
 
832
  struct ifreq network;
 
833
  int sd;
 
834
  uid_t uid;
 
835
  gid_t gid;
 
836
  char *connect_to = NULL;
 
837
  char tempdir[] = "/tmp/mandosXXXXXX";
 
838
  bool tempdir_created = false;
 
839
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
840
  const char *seckey = PATHDIR "/" SECKEY;
 
841
  const char *pubkey = PATHDIR "/" PUBKEY;
 
842
  
 
843
  mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
844
                        .dh_bits = 1024, .priority = "SECURE256"
 
845
                        ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
846
  bool gnutls_initialized = false;
 
847
  bool gpgme_initialized = false;
 
848
  double delay = 2.5;
 
849
  
 
850
  {
 
851
    struct argp_option options[] = {
 
852
      { .name = "debug", .key = 128,
 
853
        .doc = "Debug mode", .group = 3 },
 
854
      { .name = "connect", .key = 'c',
 
855
        .arg = "ADDRESS:PORT",
 
856
        .doc = "Connect directly to a specific Mandos server",
 
857
        .group = 1 },
 
858
      { .name = "interface", .key = 'i',
 
859
        .arg = "NAME",
 
860
        .doc = "Interface that will be used to search for Mandos"
 
861
        " servers",
 
862
        .group = 1 },
 
863
      { .name = "seckey", .key = 's',
 
864
        .arg = "FILE",
 
865
        .doc = "OpenPGP secret key file base name",
 
866
        .group = 1 },
 
867
      { .name = "pubkey", .key = 'p',
 
868
        .arg = "FILE",
 
869
        .doc = "OpenPGP public key file base name",
 
870
        .group = 2 },
 
871
      { .name = "dh-bits", .key = 129,
 
872
        .arg = "BITS",
 
873
        .doc = "Bit length of the prime number used in the"
 
874
        " Diffie-Hellman key exchange",
 
875
        .group = 2 },
 
876
      { .name = "priority", .key = 130,
 
877
        .arg = "STRING",
 
878
        .doc = "GnuTLS priority string for the TLS handshake",
 
879
        .group = 1 },
 
880
      { .name = "delay", .key = 131,
 
881
        .arg = "SECONDS",
 
882
        .doc = "Maximum delay to wait for interface startup",
 
883
        .group = 2 },
 
884
      { .name = NULL }
 
885
    };
 
886
    
 
887
    error_t parse_opt(int key, char *arg,
 
888
                      struct argp_state *state){
 
889
      switch(key){
 
890
      case 128:                 /* --debug */
 
891
        debug = true;
 
892
        break;
 
893
      case 'c':                 /* --connect */
 
894
        connect_to = arg;
 
895
        break;
 
896
      case 'i':                 /* --interface */
 
897
        interface = arg;
 
898
        break;
 
899
      case 's':                 /* --seckey */
 
900
        seckey = arg;
 
901
        break;
 
902
      case 'p':                 /* --pubkey */
 
903
        pubkey = arg;
 
904
        break;
 
905
      case 129:                 /* --dh-bits */
 
906
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
907
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
908
           or arg[numchars] != '\0'){
 
909
          fprintf(stderr, "Bad number of DH bits\n");
 
910
          exit(EXIT_FAILURE);
 
911
        }
 
912
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
913
        break;
 
914
      case 130:                 /* --priority */
 
915
        mc.priority = arg;
 
916
        break;
 
917
      case 131:                 /* --delay */
 
918
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
919
        if(ret < 1 or arg[numchars] != '\0'){
 
920
          fprintf(stderr, "Bad delay\n");
 
921
          exit(EXIT_FAILURE);
 
922
        }
 
923
        break;
 
924
      case ARGP_KEY_ARG:
 
925
        argp_usage(state);
 
926
      case ARGP_KEY_END:
 
927
        break;
 
928
      default:
 
929
        return ARGP_ERR_UNKNOWN;
 
930
      }
 
931
      return 0;
 
932
    }
 
933
    
 
934
    struct argp argp = { .options = options, .parser = parse_opt,
 
935
                         .args_doc = "",
 
936
                         .doc = "Mandos client -- Get and decrypt"
 
937
                         " passwords from a Mandos server" };
 
938
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
939
    if(ret == ARGP_ERR_UNKNOWN){
 
940
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
941
      exitcode = EXIT_FAILURE;
 
942
      goto end;
 
943
    }
 
944
  }
 
945
  
 
946
  /* If the interface is down, bring it up */
 
947
  {
 
948
#ifdef __linux__
 
949
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
950
       messages to mess up the prompt */
 
951
    ret = klogctl(8, NULL, 5);
 
952
    if(ret == -1){
 
953
      perror("klogctl");
 
954
    }
 
955
#endif
 
956
    
 
957
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
958
    if(sd < 0){
 
959
      perror("socket");
 
960
      exitcode = EXIT_FAILURE;
 
961
#ifdef __linux__
 
962
      ret = klogctl(7, NULL, 0);
 
963
      if(ret == -1){
 
964
        perror("klogctl");
 
965
      }
 
966
#endif
 
967
      goto end;
 
968
    }
 
969
    strcpy(network.ifr_name, interface);
 
970
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
971
    if(ret == -1){
 
972
      perror("ioctl SIOCGIFFLAGS");
 
973
#ifdef __linux__
 
974
      ret = klogctl(7, NULL, 0);
 
975
      if(ret == -1){
 
976
        perror("klogctl");
 
977
      }
 
978
#endif
 
979
      exitcode = EXIT_FAILURE;
 
980
      goto end;
 
981
    }
 
982
    if((network.ifr_flags & IFF_UP) == 0){
 
983
      network.ifr_flags |= IFF_UP;
 
984
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
985
      if(ret == -1){
 
986
        perror("ioctl SIOCSIFFLAGS");
 
987
        exitcode = EXIT_FAILURE;
 
988
#ifdef __linux__
957
989
        ret = klogctl(7, NULL, 0);
958
990
        if(ret == -1){
959
991
          perror("klogctl");
960
992
        }
 
993
#endif
961
994
        goto end;
962
995
      }
963
 
      strcpy(network.ifr_name, interface);
 
996
    }
 
997
    /* sleep checking until interface is running */
 
998
    for(int i=0; i < delay * 4; i++){
964
999
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
965
1000
      if(ret == -1){
966
1001
        perror("ioctl SIOCGIFFLAGS");
967
 
        ret = klogctl(7, NULL, 0);
968
 
        if(ret == -1){
969
 
          perror("klogctl");
970
 
        }
971
 
        exitcode = EXIT_FAILURE;
972
 
        goto end;
973
 
      }
974
 
      if((network.ifr_flags & IFF_UP) == 0){
975
 
        network.ifr_flags |= IFF_UP;
976
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
977
 
        if(ret == -1){
978
 
          perror("ioctl SIOCSIFFLAGS");
979
 
          exitcode = EXIT_FAILURE;
980
 
          ret = klogctl(7, NULL, 0);
981
 
          if(ret == -1){
982
 
            perror("klogctl");
983
 
          }
984
 
          goto end;
985
 
        }
986
 
      }
987
 
      /* sleep checking until interface is running */
988
 
      for(int i=0; i < delay * 4; i++){
989
 
        ret = ioctl(sd, SIOCGIFFLAGS, &network);
990
 
        if(ret == -1){
991
 
          perror("ioctl SIOCGIFFLAGS");
992
 
        } else if(network.ifr_flags & IFF_RUNNING){
993
 
          break;
994
 
        }
995
 
        struct timespec sleeptime = { .tv_nsec = 250000000 };
996
 
        nanosleep(&sleeptime, NULL);
997
 
      }
998
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
999
 
      if(ret == -1){
1000
 
        perror("close");
1001
 
      }
1002
 
      /* Restores kernel loglevel to default */
1003
 
      ret = klogctl(7, NULL, 0);
1004
 
      if(ret == -1){
1005
 
        perror("klogctl");
1006
 
      }
1007
 
    }
1008
 
    
1009
 
    uid = getuid();
1010
 
    gid = getgid();
1011
 
    
1012
 
    setgid(gid);
1013
 
    if(ret == -1){
1014
 
      perror("setgid");
1015
 
    }
1016
 
    
1017
 
    ret = setuid(uid);
1018
 
    if(ret == -1){
1019
 
      perror("setuid");
1020
 
    }
1021
 
    
1022
 
    ret = init_gnutls_global(&mc, pubkey, seckey);
1023
 
    if(ret == -1){
1024
 
      fprintf(stderr, "init_gnutls_global failed\n");
1025
 
      exitcode = EXIT_FAILURE;
1026
 
      goto end;
1027
 
    } else {
1028
 
      gnutls_initialized = true;
1029
 
    }
1030
 
    
1031
 
    if(mkdtemp(tempdir) == NULL){
1032
 
      perror("mkdtemp");
1033
 
      goto end;
1034
 
    }
1035
 
    tempdir_created = true;
1036
 
    
1037
 
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
1038
 
      fprintf(stderr, "init_gpgme failed\n");
1039
 
      exitcode = EXIT_FAILURE;
1040
 
      goto end;
1041
 
    } else {
1042
 
      gpgme_initialized = true;
1043
 
    }
1044
 
    
1045
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1046
 
    if(if_index == 0){
1047
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1048
 
      exitcode = EXIT_FAILURE;
1049
 
      goto end;
1050
 
    }
1051
 
    
1052
 
    if(connect_to != NULL){
1053
 
      /* Connect directly, do not use Zeroconf */
1054
 
      /* (Mainly meant for debugging) */
1055
 
      char *address = strrchr(connect_to, ':');
1056
 
      if(address == NULL){
1057
 
        fprintf(stderr, "No colon in address\n");
1058
 
        exitcode = EXIT_FAILURE;
1059
 
        goto end;
1060
 
      }
1061
 
      uint16_t port;
1062
 
      ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1063
 
      if(ret < 1 or tmpmax != (uint16_t)tmpmax
1064
 
         or address[numchars+1] != '\0'){
1065
 
        fprintf(stderr, "Bad port number\n");
1066
 
        exitcode = EXIT_FAILURE;
1067
 
        goto end;
1068
 
      }
1069
 
      port = (uint16_t)tmpmax;
1070
 
      *address = '\0';
1071
 
      address = connect_to;
1072
 
      ret = start_mandos_communication(address, port, if_index, &mc);
1073
 
      if(ret < 0){
1074
 
        exitcode = EXIT_FAILURE;
1075
 
      } else {
1076
 
        exitcode = EXIT_SUCCESS;
1077
 
      }
1078
 
      goto end;
1079
 
    }
1080
 
    
1081
 
    if(not debug){
1082
 
      avahi_set_log_function(empty_log);
1083
 
    }
1084
 
    
1085
 
    /* Initialize the pseudo-RNG for Avahi */
1086
 
    srand((unsigned int) time(NULL));
1087
 
    
1088
 
    /* Allocate main Avahi loop object */
1089
 
    mc.simple_poll = avahi_simple_poll_new();
1090
 
    if(mc.simple_poll == NULL) {
1091
 
        fprintf(stderr, "Avahi: Failed to create simple poll"
1092
 
                " object.\n");
1093
 
        exitcode = EXIT_FAILURE;
1094
 
        goto end;
1095
 
    }
1096
 
    
1097
 
    {
1098
 
      AvahiServerConfig config;
1099
 
      /* Do not publish any local Zeroconf records */
1100
 
      avahi_server_config_init(&config);
1101
 
      config.publish_hinfo = 0;
1102
 
      config.publish_addresses = 0;
1103
 
      config.publish_workstation = 0;
1104
 
      config.publish_domain = 0;
1105
 
      
1106
 
      /* Allocate a new server */
1107
 
      mc.server = avahi_server_new(avahi_simple_poll_get
1108
 
                                   (mc.simple_poll), &config, NULL,
1109
 
                                   NULL, &error);
1110
 
      
1111
 
      /* Free the Avahi configuration data */
1112
 
      avahi_server_config_free(&config);
1113
 
    }
1114
 
    
1115
 
    /* Check if creating the Avahi server object succeeded */
1116
 
    if(mc.server == NULL) {
1117
 
        fprintf(stderr, "Failed to create Avahi server: %s\n",
1118
 
                avahi_strerror(error));
1119
 
        exitcode = EXIT_FAILURE;
1120
 
        goto end;
1121
 
    }
1122
 
    
1123
 
    /* Create the Avahi service browser */
1124
 
    sb = avahi_s_service_browser_new(mc.server, if_index,
1125
 
                                     AVAHI_PROTO_INET6,
1126
 
                                     "_mandos._tcp", NULL, 0,
1127
 
                                     browse_callback, &mc);
1128
 
    if(sb == NULL) {
1129
 
        fprintf(stderr, "Failed to create service browser: %s\n",
1130
 
                avahi_strerror(avahi_server_errno(mc.server)));
1131
 
        exitcode = EXIT_FAILURE;
1132
 
        goto end;
1133
 
    }
1134
 
    
1135
 
    /* Run the main loop */
1136
 
    
1137
 
    if(debug){
1138
 
      fprintf(stderr, "Starting Avahi loop search\n");
1139
 
    }
1140
 
 
1141
 
    avahi_simple_poll_loop(mc.simple_poll);
1142
 
    
 
1002
      } else if(network.ifr_flags & IFF_RUNNING){
 
1003
        break;
 
1004
      }
 
1005
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1006
      ret = nanosleep(&sleeptime, NULL);
 
1007
      if(ret == -1 and errno != EINTR){
 
1008
        perror("nanosleep");
 
1009
      }
 
1010
    }
 
1011
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1012
    if(ret == -1){
 
1013
      perror("close");
 
1014
    }
 
1015
#ifdef __linux__
 
1016
    /* Restores kernel loglevel to default */
 
1017
    ret = klogctl(7, NULL, 0);
 
1018
    if(ret == -1){
 
1019
      perror("klogctl");
 
1020
    }
 
1021
#endif
 
1022
  }
 
1023
  
 
1024
  uid = getuid();
 
1025
  gid = getgid();
 
1026
  
 
1027
  setgid(gid);
 
1028
  if(ret == -1){
 
1029
    perror("setgid");
 
1030
  }
 
1031
  
 
1032
  ret = setuid(uid);
 
1033
  if(ret == -1){
 
1034
    perror("setuid");
 
1035
  }
 
1036
  
 
1037
  ret = init_gnutls_global(&mc, pubkey, seckey);
 
1038
  if(ret == -1){
 
1039
    fprintf(stderr, "init_gnutls_global failed\n");
 
1040
    exitcode = EXIT_FAILURE;
 
1041
    goto end;
 
1042
  } else {
 
1043
    gnutls_initialized = true;
 
1044
  }
 
1045
  
 
1046
  if(mkdtemp(tempdir) == NULL){
 
1047
    perror("mkdtemp");
 
1048
    goto end;
 
1049
  }
 
1050
  tempdir_created = true;
 
1051
  
 
1052
  if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
1053
    fprintf(stderr, "init_gpgme failed\n");
 
1054
    exitcode = EXIT_FAILURE;
 
1055
    goto end;
 
1056
  } else {
 
1057
    gpgme_initialized = true;
 
1058
  }
 
1059
  
 
1060
  if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1061
  if(if_index == 0){
 
1062
    fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1063
    exitcode = EXIT_FAILURE;
 
1064
    goto end;
 
1065
  }
 
1066
  
 
1067
  if(connect_to != NULL){
 
1068
    /* Connect directly, do not use Zeroconf */
 
1069
    /* (Mainly meant for debugging) */
 
1070
    char *address = strrchr(connect_to, ':');
 
1071
    if(address == NULL){
 
1072
      fprintf(stderr, "No colon in address\n");
 
1073
      exitcode = EXIT_FAILURE;
 
1074
      goto end;
 
1075
    }
 
1076
    uint16_t port;
 
1077
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1078
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1079
       or address[numchars+1] != '\0'){
 
1080
      fprintf(stderr, "Bad port number\n");
 
1081
      exitcode = EXIT_FAILURE;
 
1082
      goto end;
 
1083
    }
 
1084
    port = (uint16_t)tmpmax;
 
1085
    *address = '\0';
 
1086
    address = connect_to;
 
1087
    ret = start_mandos_communication(address, port, if_index, &mc);
 
1088
    if(ret < 0){
 
1089
      exitcode = EXIT_FAILURE;
 
1090
    } else {
 
1091
      exitcode = EXIT_SUCCESS;
 
1092
    }
 
1093
    goto end;
 
1094
  }
 
1095
  
 
1096
  if(not debug){
 
1097
    avahi_set_log_function(empty_log);
 
1098
  }
 
1099
  
 
1100
  /* Initialize the pseudo-RNG for Avahi */
 
1101
  srand((unsigned int) time(NULL));
 
1102
  
 
1103
  /* Allocate main Avahi loop object */
 
1104
  mc.simple_poll = avahi_simple_poll_new();
 
1105
  if(mc.simple_poll == NULL){
 
1106
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1107
    exitcode = EXIT_FAILURE;
 
1108
    goto end;
 
1109
  }
 
1110
  
 
1111
  {
 
1112
    AvahiServerConfig config;
 
1113
    /* Do not publish any local Zeroconf records */
 
1114
    avahi_server_config_init(&config);
 
1115
    config.publish_hinfo = 0;
 
1116
    config.publish_addresses = 0;
 
1117
    config.publish_workstation = 0;
 
1118
    config.publish_domain = 0;
 
1119
    
 
1120
    /* Allocate a new server */
 
1121
    mc.server = avahi_server_new(avahi_simple_poll_get
 
1122
                                 (mc.simple_poll), &config, NULL,
 
1123
                                 NULL, &error);
 
1124
    
 
1125
    /* Free the Avahi configuration data */
 
1126
    avahi_server_config_free(&config);
 
1127
  }
 
1128
  
 
1129
  /* Check if creating the Avahi server object succeeded */
 
1130
  if(mc.server == NULL){
 
1131
    fprintf(stderr, "Failed to create Avahi server: %s\n",
 
1132
            avahi_strerror(error));
 
1133
    exitcode = EXIT_FAILURE;
 
1134
    goto end;
 
1135
  }
 
1136
  
 
1137
  /* Create the Avahi service browser */
 
1138
  sb = avahi_s_service_browser_new(mc.server, if_index,
 
1139
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
 
1140
                                   NULL, 0, browse_callback, &mc);
 
1141
  if(sb == NULL){
 
1142
    fprintf(stderr, "Failed to create service browser: %s\n",
 
1143
            avahi_strerror(avahi_server_errno(mc.server)));
 
1144
    exitcode = EXIT_FAILURE;
 
1145
    goto end;
 
1146
  }
 
1147
  
 
1148
  /* Run the main loop */
 
1149
  
 
1150
  if(debug){
 
1151
    fprintf(stderr, "Starting Avahi loop search\n");
 
1152
  }
 
1153
  
 
1154
  avahi_simple_poll_loop(mc.simple_poll);
 
1155
  
1143
1156
 end:
1144
 
    
1145
 
    if(debug){
1146
 
      fprintf(stderr, "%s exiting\n", argv[0]);
1147
 
    }
1148
 
    
1149
 
    /* Cleanup things */
1150
 
    if(sb != NULL)
1151
 
        avahi_s_service_browser_free(sb);
1152
 
    
1153
 
    if(mc.server != NULL)
1154
 
        avahi_server_free(mc.server);
1155
 
    
1156
 
    if(mc.simple_poll != NULL)
1157
 
        avahi_simple_poll_free(mc.simple_poll);
1158
 
    
1159
 
    if(gnutls_initialized){
1160
 
      gnutls_certificate_free_credentials(mc.cred);
1161
 
      gnutls_global_deinit();
1162
 
      gnutls_dh_params_deinit(mc.dh_params);
1163
 
    }
1164
 
    
1165
 
    if(gpgme_initialized){
1166
 
      gpgme_release(mc.ctx);
1167
 
    }
1168
 
    
1169
 
    /* Removes the temp directory used by GPGME */
1170
 
    if(tempdir_created){
1171
 
      DIR *d;
1172
 
      struct dirent *direntry;
1173
 
      d = opendir(tempdir);
1174
 
      if(d == NULL){
1175
 
        if(errno != ENOENT){
1176
 
          perror("opendir");
1177
 
        }
1178
 
      } else {
1179
 
        while(true){
1180
 
          direntry = readdir(d);
1181
 
          if(direntry == NULL){
1182
 
            break;
1183
 
          }
1184
 
          /* Skip "." and ".." */
1185
 
          if(direntry->d_name[0] == '.'
1186
 
             and (direntry->d_name[1] == '\0'
1187
 
                  or (direntry->d_name[1] == '.'
1188
 
                      and direntry->d_name[2] == '\0'))){
1189
 
            continue;
1190
 
          }
1191
 
          char *fullname = NULL;
1192
 
          ret = asprintf(&fullname, "%s/%s", tempdir,
1193
 
                         direntry->d_name);
1194
 
          if(ret < 0){
1195
 
            perror("asprintf");
1196
 
            continue;
1197
 
          }
1198
 
          ret = remove(fullname);
1199
 
          if(ret == -1){
1200
 
            fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1201
 
                    strerror(errno));
1202
 
          }
1203
 
          free(fullname);
1204
 
        }
1205
 
        closedir(d);
1206
 
      }
1207
 
      ret = rmdir(tempdir);
1208
 
      if(ret == -1 and errno != ENOENT){
1209
 
        perror("rmdir");
1210
 
      }
1211
 
    }
1212
 
    
1213
 
    return exitcode;
 
1157
  
 
1158
  if(debug){
 
1159
    fprintf(stderr, "%s exiting\n", argv[0]);
 
1160
  }
 
1161
  
 
1162
  /* Cleanup things */
 
1163
  if(sb != NULL)
 
1164
    avahi_s_service_browser_free(sb);
 
1165
  
 
1166
  if(mc.server != NULL)
 
1167
    avahi_server_free(mc.server);
 
1168
  
 
1169
  if(mc.simple_poll != NULL)
 
1170
    avahi_simple_poll_free(mc.simple_poll);
 
1171
  
 
1172
  if(gnutls_initialized){
 
1173
    gnutls_certificate_free_credentials(mc.cred);
 
1174
    gnutls_global_deinit();
 
1175
    gnutls_dh_params_deinit(mc.dh_params);
 
1176
  }
 
1177
  
 
1178
  if(gpgme_initialized){
 
1179
    gpgme_release(mc.ctx);
 
1180
  }
 
1181
  
 
1182
  /* Removes the temp directory used by GPGME */
 
1183
  if(tempdir_created){
 
1184
    DIR *d;
 
1185
    struct dirent *direntry;
 
1186
    d = opendir(tempdir);
 
1187
    if(d == NULL){
 
1188
      if(errno != ENOENT){
 
1189
        perror("opendir");
 
1190
      }
 
1191
    } else {
 
1192
      while(true){
 
1193
        direntry = readdir(d);
 
1194
        if(direntry == NULL){
 
1195
          break;
 
1196
        }
 
1197
        /* Skip "." and ".." */
 
1198
        if(direntry->d_name[0] == '.'
 
1199
           and (direntry->d_name[1] == '\0'
 
1200
                or (direntry->d_name[1] == '.'
 
1201
                    and direntry->d_name[2] == '\0'))){
 
1202
          continue;
 
1203
        }
 
1204
        char *fullname = NULL;
 
1205
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
1206
                       direntry->d_name);
 
1207
        if(ret < 0){
 
1208
          perror("asprintf");
 
1209
          continue;
 
1210
        }
 
1211
        ret = remove(fullname);
 
1212
        if(ret == -1){
 
1213
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
1214
                  strerror(errno));
 
1215
        }
 
1216
        free(fullname);
 
1217
      }
 
1218
      closedir(d);
 
1219
    }
 
1220
    ret = rmdir(tempdir);
 
1221
    if(ret == -1 and errno != ENOENT){
 
1222
      perror("rmdir");
 
1223
    }
 
1224
  }
 
1225
  
 
1226
  return exitcode;
1214
1227
}