/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

Merge from Björn:

* plugin-runner.c (main): Bug fix: For the "--options-for" option, do
                          not mangle arguments with colon characters.
                          Also support adding empty arguments.

* plugins.d/mandos-client.c: (mc): New global variable; moved from
                                   "main".
  (init_gpgme, pgp_packet_decrypt, init_gnutls_global,
  init_gnutls_session, start_mandos_communication): Removed "mc"
                                                    argument.  All
                                                    callers changed.

  (resolve_callback, browse_callback): Ignore "userdata" argument.
                                       All callers changed.
  (handle_sigterm): New function.
  (main): Add "handle_sigterm" as signal handler for SIGTERM before
          starting the main loop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
 
#ifndef _LARGEFILE_SOURCE
34
33
#define _LARGEFILE_SOURCE
35
 
#endif
36
 
#ifndef _FILE_OFFSET_BITS
37
34
#define _FILE_OFFSET_BITS 64
38
 
#endif
39
35
 
40
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
41
37
 
42
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
 
                                   stdout, ferror(), remove() */
 
39
                                   stdout, ferror(), sscanf(),
 
40
                                   remove() */
44
41
#include <stdint.h>             /* uint16_t, uint32_t */
45
42
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
43
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof() */
 
44
                                   srand() */
48
45
#include <stdbool.h>            /* bool, false, true */
49
46
#include <string.h>             /* memset(), strcmp(), strlen(),
50
47
                                   strerror(), asprintf(), strcpy() */
59
56
#include <fcntl.h>              /* open() */
60
57
#include <dirent.h>             /* opendir(), struct dirent, readdir()
61
58
                                 */
62
 
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
 
                                   strtoimax() */
 
59
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
64
60
#include <assert.h>             /* assert() */
65
61
#include <errno.h>              /* perror(), errno */
66
62
#include <time.h>               /* nanosleep(), time() */
80
76
                                   argp_parse(), ARGP_KEY_ARG,
81
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
78
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
 
                                   sigaction(), SIGTERM, sig_atomic_t,
84
 
                                   raise() */
 
79
                                   sigaction(), SIGTERM, sigaction */
85
80
 
86
81
#ifdef __linux__
87
82
#include <sys/klog.h>           /* klogctl() */
88
 
#endif  /* __linux__ */
 
83
#endif
89
84
 
90
85
/* Avahi */
91
86
/* All Avahi types, constants and functions
138
133
} mandos_context;
139
134
 
140
135
/* global context so signal handler can reach it*/
141
 
mandos_context mc = { .simple_poll = NULL, .server = NULL,
142
 
                      .dh_bits = 1024, .priority = "SECURE256"
143
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
136
mandos_context mc;
144
137
 
145
138
/*
146
 
 * Make additional room in "buffer" for at least BUFFER_SIZE more
147
 
 * bytes. "buffer_capacity" is how much is currently allocated,
148
 
 * "buffer_length" is how much is already used.
 
139
 * Make additional room in "buffer" for at least BUFFER_SIZE
 
140
 * additional bytes. "buffer_capacity" is how much is currently
 
141
 * allocated, "buffer_length" is how much is already used.
149
142
 */
150
143
size_t incbuffer(char **buffer, size_t buffer_length,
151
144
                  size_t buffer_capacity){
164
157
 */
165
158
static bool init_gpgme(const char *seckey,
166
159
                       const char *pubkey, const char *tempdir){
 
160
  int ret;
167
161
  gpgme_error_t rc;
168
162
  gpgme_engine_info_t engine_info;
169
163
  
172
166
   * Helper function to insert pub and seckey to the engine keyring.
173
167
   */
174
168
  bool import_key(const char *filename){
175
 
    int ret;
176
169
    int fd;
177
170
    gpgme_data_t pgp_data;
178
171
    
249
242
    return false;
250
243
  }
251
244
  
252
 
  return true;
 
245
  return true; 
253
246
}
254
247
 
255
248
/* 
309
302
        }
310
303
        gpgme_recipient_t recipient;
311
304
        recipient = result->recipients;
312
 
        while(recipient != NULL){
313
 
          fprintf(stderr, "Public key algorithm: %s\n",
314
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
315
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
316
 
          fprintf(stderr, "Secret key available: %s\n",
317
 
                  recipient->status == GPG_ERR_NO_SECKEY
318
 
                  ? "No" : "Yes");
319
 
          recipient = recipient->next;
 
305
        if(recipient){
 
306
          while(recipient != NULL){
 
307
            fprintf(stderr, "Public key algorithm: %s\n",
 
308
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
309
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
310
            fprintf(stderr, "Secret key available: %s\n",
 
311
                    recipient->status == GPG_ERR_NO_SECKEY
 
312
                    ? "No" : "Yes");
 
313
            recipient = recipient->next;
 
314
          }
320
315
        }
321
316
      }
322
317
    }
514
509
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
515
510
                      __attribute__((unused)) const char *txt){}
516
511
 
517
 
sig_atomic_t quit_now = 0;
518
 
int signal_received = 0;
519
 
 
520
512
/* Called when a Mandos server is found */
521
513
static int start_mandos_communication(const char *ip, uint16_t port,
522
514
                                      AvahiIfIndex if_index,
523
515
                                      int af){
524
 
  int ret, tcp_sd = -1;
 
516
  int ret, tcp_sd;
525
517
  ssize_t sret;
526
518
  union {
527
519
    struct sockaddr_in in;
531
523
  char *decrypted_buffer;
532
524
  size_t buffer_length = 0;
533
525
  size_t buffer_capacity = 0;
 
526
  ssize_t decrypted_buffer_size;
534
527
  size_t written;
535
528
  int retval = 0;
536
529
  gnutls_session_t session;
537
530
  int pf;                       /* Protocol family */
538
531
  
539
 
  if(quit_now){
540
 
    return -1;
541
 
  }
542
 
  
543
532
  switch(af){
544
533
  case AF_INET6:
545
534
    pf = PF_INET6;
565
554
  tcp_sd = socket(pf, SOCK_STREAM, 0);
566
555
  if(tcp_sd < 0){
567
556
    perror("socket");
568
 
    retval = -1;
569
 
    goto mandos_end;
570
 
  }
571
 
  
572
 
  if(quit_now){
573
 
    goto mandos_end;
 
557
    return -1;
574
558
  }
575
559
  
576
560
  memset(&to, 0, sizeof(to));
577
561
  if(af == AF_INET6){
578
 
    to.in6.sin6_family = (sa_family_t)af;
 
562
    to.in6.sin6_family = (uint16_t)af;
579
563
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
580
564
  } else {                      /* IPv4 */
581
565
    to.in.sin_family = (sa_family_t)af;
583
567
  }
584
568
  if(ret < 0 ){
585
569
    perror("inet_pton");
586
 
    retval = -1;
587
 
    goto mandos_end;
 
570
    return -1;
588
571
  }
589
572
  if(ret == 0){
590
573
    fprintf(stderr, "Bad address: %s\n", ip);
591
 
    retval = -1;
592
 
    goto mandos_end;
 
574
    return -1;
593
575
  }
594
576
  if(af == AF_INET6){
595
577
    to.in6.sin6_port = htons(port); /* Spurious warnings from
602
584
      if(if_index == AVAHI_IF_UNSPEC){
603
585
        fprintf(stderr, "An IPv6 link-local address is incomplete"
604
586
                " without a network interface\n");
605
 
        retval = -1;
606
 
        goto mandos_end;
 
587
        return -1;
607
588
      }
608
589
      /* Set the network interface number as scope */
609
590
      to.in6.sin6_scope_id = (uint32_t)if_index;
614
595
                                     -Wunreachable-code */
615
596
  }
616
597
  
617
 
  if(quit_now){
618
 
    goto mandos_end;
619
 
  }
620
 
  
621
598
  if(debug){
622
599
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
623
600
      char interface[IF_NAMESIZE];
650
627
    }
651
628
  }
652
629
  
653
 
  if(quit_now){
654
 
    goto mandos_end;
655
 
  }
656
 
  
657
630
  if(af == AF_INET6){
658
631
    ret = connect(tcp_sd, &to.in6, sizeof(to));
659
632
  } else {
661
634
  }
662
635
  if(ret < 0){
663
636
    perror("connect");
664
 
    retval = -1;
665
 
    goto mandos_end;
666
 
  }
667
 
  
668
 
  if(quit_now){
669
 
    goto mandos_end;
 
637
    return -1;
670
638
  }
671
639
  
672
640
  const char *out = mandos_protocol_version;
691
659
        break;
692
660
      }
693
661
    }
694
 
  
695
 
    if(quit_now){
696
 
      goto mandos_end;
697
 
    }
698
662
  }
699
663
  
700
664
  if(debug){
701
665
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
702
666
  }
703
667
  
704
 
  if(quit_now){
705
 
    goto mandos_end;
706
 
  }
707
 
  
708
668
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
709
669
  
710
 
  if(quit_now){
711
 
    goto mandos_end;
712
 
  }
713
 
  
714
 
  do {
 
670
  do{
715
671
    ret = gnutls_handshake(session);
716
 
    if(quit_now){
717
 
      goto mandos_end;
718
 
    }
719
672
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
720
673
  
721
674
  if(ret != GNUTLS_E_SUCCESS){
735
688
  }
736
689
  
737
690
  while(true){
738
 
    
739
 
    if(quit_now){
740
 
      goto mandos_end;
741
 
    }
742
 
    
743
691
    buffer_capacity = incbuffer(&buffer, buffer_length,
744
692
                                   buffer_capacity);
745
693
    if(buffer_capacity == 0){
748
696
      goto mandos_end;
749
697
    }
750
698
    
751
 
    if(quit_now){
752
 
      goto mandos_end;
753
 
    }
754
 
    
755
699
    sret = gnutls_record_recv(session, buffer+buffer_length,
756
700
                              BUFFER_SIZE);
757
701
    if(sret == 0){
763
707
      case GNUTLS_E_AGAIN:
764
708
        break;
765
709
      case GNUTLS_E_REHANDSHAKE:
766
 
        do {
 
710
        do{
767
711
          ret = gnutls_handshake(session);
768
 
          
769
 
          if(quit_now){
770
 
            goto mandos_end;
771
 
          }
772
712
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
773
713
        if(ret < 0){
774
714
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
793
733
    fprintf(stderr, "Closing TLS session\n");
794
734
  }
795
735
  
796
 
  if(quit_now){
797
 
    goto mandos_end;
798
 
  }
799
 
  
800
736
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
801
737
  
802
 
  if(quit_now){
803
 
    goto mandos_end;
804
 
  }
805
 
  
806
738
  if(buffer_length > 0){
807
 
    ssize_t decrypted_buffer_size;
808
739
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
809
740
                                               buffer_length,
810
741
                                               &decrypted_buffer);
811
742
    if(decrypted_buffer_size >= 0){
812
 
      
813
743
      written = 0;
814
744
      while(written < (size_t) decrypted_buffer_size){
815
 
        if(quit_now){
816
 
          goto mandos_end;
817
 
        }
818
 
        
819
745
        ret = (int)fwrite(decrypted_buffer + written, 1,
820
746
                          (size_t)decrypted_buffer_size - written,
821
747
                          stdout);
841
767
  
842
768
 mandos_end:
843
769
  free(buffer);
844
 
  if(tcp_sd >= 0){
845
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
846
 
  }
 
770
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
847
771
  if(ret == -1){
848
772
    perror("close");
849
773
  }
850
774
  gnutls_deinit(session);
851
 
  if(quit_now){
852
 
    retval = -1;
853
 
  }
854
775
  return retval;
855
776
}
856
777
 
873
794
  /* Called whenever a service has been resolved successfully or
874
795
     timed out */
875
796
  
876
 
  if(quit_now){
877
 
    return;
878
 
  }
879
 
  
880
797
  switch(event){
881
798
  default:
882
799
  case AVAHI_RESOLVER_FAILURE:
919
836
  /* Called whenever a new services becomes available on the LAN or
920
837
     is removed from the LAN */
921
838
  
922
 
  if(quit_now){
923
 
    return;
924
 
  }
925
 
  
926
839
  switch(event){
927
840
  default:
928
841
  case AVAHI_BROWSER_FAILURE:
938
851
       the callback function is called the Avahi server will free the
939
852
       resolver for us. */
940
853
    
941
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
942
 
                                    name, type, domain, protocol, 0,
943
 
                                    resolve_callback, NULL) == NULL)
 
854
    if(!(avahi_s_service_resolver_new(mc.server, interface,
 
855
                                       protocol, name, type, domain,
 
856
                                       AVAHI_PROTO_INET6, 0,
 
857
                                       resolve_callback, NULL)))
944
858
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
945
859
              name, avahi_strerror(avahi_server_errno(mc.server)));
946
860
    break;
957
871
  }
958
872
}
959
873
 
960
 
/* stop main loop after sigterm has been called */
961
 
static void handle_sigterm(int sig){
962
 
  if(quit_now){
963
 
    return;
964
 
  }
965
 
  quit_now = 1;
966
 
  signal_received = sig;
 
874
static void handle_sigterm(__attribute__((unused)) int sig){
967
875
  int old_errno = errno;
968
 
  if(mc.simple_poll != NULL){
969
 
    avahi_simple_poll_quit(mc.simple_poll);
970
 
  }
 
876
  avahi_simple_poll_quit(mc.simple_poll);
971
877
  errno = old_errno;
972
878
}
973
879
 
976
882
  int error;
977
883
  int ret;
978
884
  intmax_t tmpmax;
979
 
  char *tmp;
 
885
  int numchars;
980
886
  int exitcode = EXIT_SUCCESS;
981
887
  const char *interface = "eth0";
982
888
  struct ifreq network;
983
 
  int sd = -1;
984
 
  bool take_down_interface = false;
 
889
  int sd;
985
890
  uid_t uid;
986
891
  gid_t gid;
987
892
  char *connect_to = NULL;
991
896
  const char *seckey = PATHDIR "/" SECKEY;
992
897
  const char *pubkey = PATHDIR "/" PUBKEY;
993
898
  
 
899
  /* Initialize Mandos context */
 
900
  mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
 
901
                         .dh_bits = 1024, .priority = "SECURE256"
 
902
                         ":!CTYPE-X.509:+CTYPE-OPENPGP" };
994
903
  bool gnutls_initialized = false;
995
904
  bool gpgme_initialized = false;
996
 
  float delay = 2.5f;
997
 
  
 
905
  double delay = 2.5;
 
906
 
998
907
  struct sigaction old_sigterm_action;
999
908
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1000
909
  
1054
963
        pubkey = arg;
1055
964
        break;
1056
965
      case 129:                 /* --dh-bits */
1057
 
        errno = 0;
1058
 
        tmpmax = strtoimax(arg, &tmp, 10);
1059
 
        if(errno != 0 or tmp == arg or *tmp != '\0'
1060
 
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
 
966
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
967
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
968
           or arg[numchars] != '\0'){
1061
969
          fprintf(stderr, "Bad number of DH bits\n");
1062
970
          exit(EXIT_FAILURE);
1063
971
        }
1067
975
        mc.priority = arg;
1068
976
        break;
1069
977
      case 131:                 /* --delay */
1070
 
        errno = 0;
1071
 
        delay = strtof(arg, &tmp);
1072
 
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
978
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
979
        if(ret < 1 or arg[numchars] != '\0'){
1073
980
          fprintf(stderr, "Bad delay\n");
1074
981
          exit(EXIT_FAILURE);
1075
982
        }
1096
1003
    }
1097
1004
  }
1098
1005
  
1099
 
  if(not debug){
1100
 
    avahi_set_log_function(empty_log);
1101
 
  }
1102
 
  
1103
 
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1104
 
     from the signal handler */
1105
 
  /* Initialize the pseudo-RNG for Avahi */
1106
 
  srand((unsigned int) time(NULL));
1107
 
  mc.simple_poll = avahi_simple_poll_new();
1108
 
  if(mc.simple_poll == NULL){
1109
 
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1110
 
    exitcode = EXIT_FAILURE;
1111
 
    goto end;
1112
 
  }
1113
 
  
1114
 
  sigemptyset(&sigterm_action.sa_mask);
1115
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1116
 
  if(ret == -1){
1117
 
    perror("sigaddset");
1118
 
    exitcode = EXIT_FAILURE;
1119
 
    goto end;
1120
 
  }
1121
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1122
 
  if(ret == -1){
1123
 
    perror("sigaddset");
1124
 
    exitcode = EXIT_FAILURE;
1125
 
    goto end;
1126
 
  }
1127
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1128
 
  if(ret == -1){
1129
 
    perror("sigaddset");
1130
 
    exitcode = EXIT_FAILURE;
1131
 
    goto end;
1132
 
  }
1133
 
  /* Need to check if the handler is SIG_IGN before handling:
1134
 
     | [[info:libc:Initial Signal Actions]] |
1135
 
     | [[info:libc:Basic Signal Handling]]  |
1136
 
  */
1137
 
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1138
 
  if(ret == -1){
1139
 
    perror("sigaction");
1140
 
    return EXIT_FAILURE;
1141
 
  }
1142
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1143
 
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1144
 
    if(ret == -1){
1145
 
      perror("sigaction");
1146
 
      exitcode = EXIT_FAILURE;
1147
 
      goto end;
1148
 
    }
1149
 
  }
1150
 
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1151
 
  if(ret == -1){
1152
 
    perror("sigaction");
1153
 
    return EXIT_FAILURE;
1154
 
  }
1155
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1156
 
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1157
 
    if(ret == -1){
1158
 
      perror("sigaction");
1159
 
      exitcode = EXIT_FAILURE;
1160
 
      goto end;
1161
 
    }
1162
 
  }
1163
 
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1164
 
  if(ret == -1){
1165
 
    perror("sigaction");
1166
 
    return EXIT_FAILURE;
1167
 
  }
1168
 
  if(old_sigterm_action.sa_handler != SIG_IGN){
1169
 
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1170
 
    if(ret == -1){
1171
 
      perror("sigaction");
1172
 
      exitcode = EXIT_FAILURE;
1173
 
      goto end;
1174
 
    }
1175
 
  }
1176
 
  
1177
1006
  /* If the interface is down, bring it up */
1178
1007
  if(interface[0] != '\0'){
1179
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1180
 
    if(if_index == 0){
1181
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1182
 
      exitcode = EXIT_FAILURE;
1183
 
      goto end;
1184
 
    }
1185
 
    
1186
 
    if(quit_now){
1187
 
      goto end;
1188
 
    }
1189
 
    
1190
1008
#ifdef __linux__
1191
1009
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1192
1010
       messages to mess up the prompt */
1196
1014
      restore_loglevel = false;
1197
1015
      perror("klogctl");
1198
1016
    }
1199
 
#endif  /* __linux__ */
 
1017
#endif
1200
1018
    
1201
1019
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1202
1020
    if(sd < 0){
1209
1027
          perror("klogctl");
1210
1028
        }
1211
1029
      }
1212
 
#endif  /* __linux__ */
 
1030
#endif
1213
1031
      goto end;
1214
1032
    }
1215
1033
    strcpy(network.ifr_name, interface);
1223
1041
          perror("klogctl");
1224
1042
        }
1225
1043
      }
1226
 
#endif  /* __linux__ */
 
1044
#endif
1227
1045
      exitcode = EXIT_FAILURE;
1228
1046
      goto end;
1229
1047
    }
1230
1048
    if((network.ifr_flags & IFF_UP) == 0){
1231
1049
      network.ifr_flags |= IFF_UP;
1232
 
      take_down_interface = true;
1233
1050
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
1051
      if(ret == -1){
1235
 
        take_down_interface = false;
1236
1052
        perror("ioctl SIOCSIFFLAGS");
1237
1053
        exitcode = EXIT_FAILURE;
1238
1054
#ifdef __linux__
1242
1058
            perror("klogctl");
1243
1059
          }
1244
1060
        }
1245
 
#endif  /* __linux__ */
 
1061
#endif
1246
1062
        goto end;
1247
1063
      }
1248
1064
    }
1260
1076
        perror("nanosleep");
1261
1077
      }
1262
1078
    }
1263
 
    if(not take_down_interface){
1264
 
      /* We won't need the socket anymore */
1265
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1266
 
      if(ret == -1){
1267
 
        perror("close");
1268
 
      }
 
1079
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1080
    if(ret == -1){
 
1081
      perror("close");
1269
1082
    }
1270
1083
#ifdef __linux__
1271
1084
    if(restore_loglevel){
1275
1088
        perror("klogctl");
1276
1089
      }
1277
1090
    }
1278
 
#endif  /* __linux__ */
1279
 
  }
1280
 
  
1281
 
  if(quit_now){
1282
 
    goto end;
 
1091
#endif
1283
1092
  }
1284
1093
  
1285
1094
  uid = getuid();
1296
1105
    perror("setuid");
1297
1106
  }
1298
1107
  
1299
 
  if(quit_now){
1300
 
    goto end;
1301
 
  }
1302
 
  
1303
1108
  ret = init_gnutls_global(pubkey, seckey);
1304
1109
  if(ret == -1){
1305
1110
    fprintf(stderr, "init_gnutls_global failed\n");
1309
1114
    gnutls_initialized = true;
1310
1115
  }
1311
1116
  
1312
 
  if(quit_now){
1313
 
    goto end;
1314
 
  }
1315
 
  
1316
 
  tempdir_created = true;
1317
1117
  if(mkdtemp(tempdir) == NULL){
1318
 
    tempdir_created = false;
1319
1118
    perror("mkdtemp");
1320
1119
    goto end;
1321
1120
  }
1322
 
  
1323
 
  if(quit_now){
1324
 
    goto end;
1325
 
  }
 
1121
  tempdir_created = true;
1326
1122
  
1327
1123
  if(not init_gpgme(pubkey, seckey, tempdir)){
1328
1124
    fprintf(stderr, "init_gpgme failed\n");
1332
1128
    gpgme_initialized = true;
1333
1129
  }
1334
1130
  
1335
 
  if(quit_now){
1336
 
    goto end;
 
1131
  if(interface[0] != '\0'){
 
1132
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1133
    if(if_index == 0){
 
1134
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1135
      exitcode = EXIT_FAILURE;
 
1136
      goto end;
 
1137
    }
1337
1138
  }
1338
1139
  
1339
1140
  if(connect_to != NULL){
1345
1146
      exitcode = EXIT_FAILURE;
1346
1147
      goto end;
1347
1148
    }
1348
 
    
1349
 
    if(quit_now){
1350
 
      goto end;
1351
 
    }
1352
 
    
1353
1149
    uint16_t port;
1354
 
    errno = 0;
1355
 
    tmpmax = strtoimax(address+1, &tmp, 10);
1356
 
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1357
 
       or tmpmax != (uint16_t)tmpmax){
 
1150
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1151
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1152
       or address[numchars+1] != '\0'){
1358
1153
      fprintf(stderr, "Bad port number\n");
1359
1154
      exitcode = EXIT_FAILURE;
1360
1155
      goto end;
1361
1156
    }
1362
 
  
1363
 
    if(quit_now){
1364
 
      goto end;
1365
 
    }
1366
 
    
1367
1157
    port = (uint16_t)tmpmax;
1368
1158
    *address = '\0';
1369
1159
    address = connect_to;
1374
1164
    } else {
1375
1165
      af = AF_INET;
1376
1166
    }
1377
 
    
1378
 
    if(quit_now){
1379
 
      goto end;
1380
 
    }
1381
 
    
1382
1167
    ret = start_mandos_communication(address, port, if_index, af);
1383
1168
    if(ret < 0){
1384
1169
      exitcode = EXIT_FAILURE;
1388
1173
    goto end;
1389
1174
  }
1390
1175
  
1391
 
  if(quit_now){
 
1176
  if(not debug){
 
1177
    avahi_set_log_function(empty_log);
 
1178
  }
 
1179
  
 
1180
  /* Initialize the pseudo-RNG for Avahi */
 
1181
  srand((unsigned int) time(NULL));
 
1182
  
 
1183
  /* Allocate main Avahi loop object */
 
1184
  mc.simple_poll = avahi_simple_poll_new();
 
1185
  if(mc.simple_poll == NULL){
 
1186
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1187
    exitcode = EXIT_FAILURE;
1392
1188
    goto end;
1393
1189
  }
1394
1190
  
1418
1214
    goto end;
1419
1215
  }
1420
1216
  
1421
 
  if(quit_now){
1422
 
    goto end;
1423
 
  }
1424
 
  
1425
1217
  /* Create the Avahi service browser */
1426
1218
  sb = avahi_s_service_browser_new(mc.server, if_index,
1427
 
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1219
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
1428
1220
                                   NULL, 0, browse_callback, NULL);
1429
1221
  if(sb == NULL){
1430
1222
    fprintf(stderr, "Failed to create service browser: %s\n",
1433
1225
    goto end;
1434
1226
  }
1435
1227
  
1436
 
  if(quit_now){
 
1228
  sigemptyset(&sigterm_action.sa_mask);
 
1229
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1230
  if(ret == -1){
 
1231
    perror("sigaddset");
 
1232
    exitcode = EXIT_FAILURE;
1437
1233
    goto end;
1438
1234
  }
 
1235
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1236
  if(ret == -1){
 
1237
    perror("sigaction");
 
1238
    exitcode = EXIT_FAILURE;
 
1239
    goto end;
 
1240
  }  
1439
1241
  
1440
1242
  /* Run the main loop */
1441
1243
  
1471
1273
    gpgme_release(mc.ctx);
1472
1274
  }
1473
1275
  
1474
 
  /* Take down the network interface */
1475
 
  if(take_down_interface){
1476
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1477
 
    if(ret == -1){
1478
 
      perror("ioctl SIOCGIFFLAGS");
1479
 
    } else if(network.ifr_flags & IFF_UP) {
1480
 
      network.ifr_flags &= ~IFF_UP; /* clear flag */
1481
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1482
 
      if(ret == -1){
1483
 
        perror("ioctl SIOCSIFFLAGS");
1484
 
      }
1485
 
    }
1486
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1487
 
    if(ret == -1){
1488
 
      perror("close");
1489
 
    }
1490
 
  }
1491
 
  
1492
1276
  /* Removes the temp directory used by GPGME */
1493
1277
  if(tempdir_created){
1494
1278
    DIR *d;
1533
1317
    }
1534
1318
  }
1535
1319
  
1536
 
  if(quit_now){
1537
 
    sigemptyset(&old_sigterm_action.sa_mask);
1538
 
    old_sigterm_action.sa_handler = SIG_DFL;
1539
 
    ret = sigaction(signal_received, &old_sigterm_action, NULL);
1540
 
    if(ret == -1){
1541
 
      perror("sigaction");
1542
 
    }
1543
 
    raise(signal_received);
1544
 
  }
1545
 
  
1546
1320
  return exitcode;
1547
1321
}