/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-09 19:26:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090209192619-7rse82x9pypq4ihk
* plugin-runner.c: Comment change.

* plugins.d/mandos-client.c: Comment changes.
  (quit_now): New global flag.
  (handle_sigterm): Only call avahi_simple_poll_quit once.
  (main): Also handle SIGINT and SIGHUP.

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,
 
80
                                   sig_atomic_t */
85
81
 
86
82
#ifdef __linux__
87
83
#include <sys/klog.h>           /* klogctl() */
138
134
} mandos_context;
139
135
 
140
136
/* 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" };
 
137
mandos_context mc;
144
138
 
145
139
/*
146
140
 * Make additional room in "buffer" for at least BUFFER_SIZE more
164
158
 */
165
159
static bool init_gpgme(const char *seckey,
166
160
                       const char *pubkey, const char *tempdir){
 
161
  int ret;
167
162
  gpgme_error_t rc;
168
163
  gpgme_engine_info_t engine_info;
169
164
  
172
167
   * Helper function to insert pub and seckey to the engine keyring.
173
168
   */
174
169
  bool import_key(const char *filename){
175
 
    int ret;
176
170
    int fd;
177
171
    gpgme_data_t pgp_data;
178
172
    
249
243
    return false;
250
244
  }
251
245
  
252
 
  return true;
 
246
  return true; 
253
247
}
254
248
 
255
249
/* 
309
303
        }
310
304
        gpgme_recipient_t recipient;
311
305
        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;
 
306
        if(recipient){
 
307
          while(recipient != NULL){
 
308
            fprintf(stderr, "Public key algorithm: %s\n",
 
309
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
310
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
311
            fprintf(stderr, "Secret key available: %s\n",
 
312
                    recipient->status == GPG_ERR_NO_SECKEY
 
313
                    ? "No" : "Yes");
 
314
            recipient = recipient->next;
 
315
          }
320
316
        }
321
317
      }
322
318
    }
514
510
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
515
511
                      __attribute__((unused)) const char *txt){}
516
512
 
517
 
sig_atomic_t quit_now = 0;
518
 
int signal_received = 0;
519
 
 
520
513
/* Called when a Mandos server is found */
521
514
static int start_mandos_communication(const char *ip, uint16_t port,
522
515
                                      AvahiIfIndex if_index,
523
516
                                      int af){
524
 
  int ret, tcp_sd = -1;
 
517
  int ret, tcp_sd;
525
518
  ssize_t sret;
526
519
  union {
527
520
    struct sockaddr_in in;
531
524
  char *decrypted_buffer;
532
525
  size_t buffer_length = 0;
533
526
  size_t buffer_capacity = 0;
 
527
  ssize_t decrypted_buffer_size;
534
528
  size_t written;
535
529
  int retval = 0;
536
530
  gnutls_session_t session;
537
531
  int pf;                       /* Protocol family */
538
532
  
539
 
  if(quit_now){
540
 
    return -1;
541
 
  }
542
 
  
543
533
  switch(af){
544
534
  case AF_INET6:
545
535
    pf = PF_INET6;
565
555
  tcp_sd = socket(pf, SOCK_STREAM, 0);
566
556
  if(tcp_sd < 0){
567
557
    perror("socket");
568
 
    retval = -1;
569
 
    goto mandos_end;
570
 
  }
571
 
  
572
 
  if(quit_now){
573
 
    goto mandos_end;
 
558
    return -1;
574
559
  }
575
560
  
576
561
  memset(&to, 0, sizeof(to));
577
562
  if(af == AF_INET6){
578
 
    to.in6.sin6_family = (sa_family_t)af;
 
563
    to.in6.sin6_family = (uint16_t)af;
579
564
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
580
565
  } else {                      /* IPv4 */
581
566
    to.in.sin_family = (sa_family_t)af;
583
568
  }
584
569
  if(ret < 0 ){
585
570
    perror("inet_pton");
586
 
    retval = -1;
587
 
    goto mandos_end;
 
571
    return -1;
588
572
  }
589
573
  if(ret == 0){
590
574
    fprintf(stderr, "Bad address: %s\n", ip);
591
 
    retval = -1;
592
 
    goto mandos_end;
 
575
    return -1;
593
576
  }
594
577
  if(af == AF_INET6){
595
578
    to.in6.sin6_port = htons(port); /* Spurious warnings from
602
585
      if(if_index == AVAHI_IF_UNSPEC){
603
586
        fprintf(stderr, "An IPv6 link-local address is incomplete"
604
587
                " without a network interface\n");
605
 
        retval = -1;
606
 
        goto mandos_end;
 
588
        return -1;
607
589
      }
608
590
      /* Set the network interface number as scope */
609
591
      to.in6.sin6_scope_id = (uint32_t)if_index;
614
596
                                     -Wunreachable-code */
615
597
  }
616
598
  
617
 
  if(quit_now){
618
 
    goto mandos_end;
619
 
  }
620
 
  
621
599
  if(debug){
622
600
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
623
601
      char interface[IF_NAMESIZE];
650
628
    }
651
629
  }
652
630
  
653
 
  if(quit_now){
654
 
    goto mandos_end;
655
 
  }
656
 
  
657
631
  if(af == AF_INET6){
658
632
    ret = connect(tcp_sd, &to.in6, sizeof(to));
659
633
  } else {
661
635
  }
662
636
  if(ret < 0){
663
637
    perror("connect");
664
 
    retval = -1;
665
 
    goto mandos_end;
666
 
  }
667
 
  
668
 
  if(quit_now){
669
 
    goto mandos_end;
 
638
    return -1;
670
639
  }
671
640
  
672
641
  const char *out = mandos_protocol_version;
691
660
        break;
692
661
      }
693
662
    }
694
 
  
695
 
    if(quit_now){
696
 
      goto mandos_end;
697
 
    }
698
663
  }
699
664
  
700
665
  if(debug){
701
666
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
702
667
  }
703
668
  
704
 
  if(quit_now){
705
 
    goto mandos_end;
706
 
  }
707
 
  
708
669
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
709
670
  
710
 
  if(quit_now){
711
 
    goto mandos_end;
712
 
  }
713
 
  
714
 
  do {
 
671
  do{
715
672
    ret = gnutls_handshake(session);
716
 
    if(quit_now){
717
 
      goto mandos_end;
718
 
    }
719
673
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
720
674
  
721
675
  if(ret != GNUTLS_E_SUCCESS){
735
689
  }
736
690
  
737
691
  while(true){
738
 
    
739
 
    if(quit_now){
740
 
      goto mandos_end;
741
 
    }
742
 
    
743
692
    buffer_capacity = incbuffer(&buffer, buffer_length,
744
693
                                   buffer_capacity);
745
694
    if(buffer_capacity == 0){
748
697
      goto mandos_end;
749
698
    }
750
699
    
751
 
    if(quit_now){
752
 
      goto mandos_end;
753
 
    }
754
 
    
755
700
    sret = gnutls_record_recv(session, buffer+buffer_length,
756
701
                              BUFFER_SIZE);
757
702
    if(sret == 0){
763
708
      case GNUTLS_E_AGAIN:
764
709
        break;
765
710
      case GNUTLS_E_REHANDSHAKE:
766
 
        do {
 
711
        do{
767
712
          ret = gnutls_handshake(session);
768
 
          
769
 
          if(quit_now){
770
 
            goto mandos_end;
771
 
          }
772
713
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
773
714
        if(ret < 0){
774
715
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
793
734
    fprintf(stderr, "Closing TLS session\n");
794
735
  }
795
736
  
796
 
  if(quit_now){
797
 
    goto mandos_end;
798
 
  }
799
 
  
800
737
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
801
738
  
802
 
  if(quit_now){
803
 
    goto mandos_end;
804
 
  }
805
 
  
806
739
  if(buffer_length > 0){
807
 
    ssize_t decrypted_buffer_size;
808
740
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
809
741
                                               buffer_length,
810
742
                                               &decrypted_buffer);
811
743
    if(decrypted_buffer_size >= 0){
812
 
      
813
744
      written = 0;
814
745
      while(written < (size_t) decrypted_buffer_size){
815
 
        if(quit_now){
816
 
          goto mandos_end;
817
 
        }
818
 
        
819
746
        ret = (int)fwrite(decrypted_buffer + written, 1,
820
747
                          (size_t)decrypted_buffer_size - written,
821
748
                          stdout);
841
768
  
842
769
 mandos_end:
843
770
  free(buffer);
844
 
  if(tcp_sd >= 0){
845
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
846
 
  }
 
771
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
847
772
  if(ret == -1){
848
773
    perror("close");
849
774
  }
850
775
  gnutls_deinit(session);
851
 
  if(quit_now){
852
 
    retval = -1;
853
 
  }
854
776
  return retval;
855
777
}
856
778
 
873
795
  /* Called whenever a service has been resolved successfully or
874
796
     timed out */
875
797
  
876
 
  if(quit_now){
877
 
    return;
878
 
  }
879
 
  
880
798
  switch(event){
881
799
  default:
882
800
  case AVAHI_RESOLVER_FAILURE:
919
837
  /* Called whenever a new services becomes available on the LAN or
920
838
     is removed from the LAN */
921
839
  
922
 
  if(quit_now){
923
 
    return;
924
 
  }
925
 
  
926
840
  switch(event){
927
841
  default:
928
842
  case AVAHI_BROWSER_FAILURE:
938
852
       the callback function is called the Avahi server will free the
939
853
       resolver for us. */
940
854
    
941
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
942
 
                                    name, type, domain, protocol, 0,
943
 
                                    resolve_callback, NULL) == NULL)
 
855
    if(!(avahi_s_service_resolver_new(mc.server, interface,
 
856
                                       protocol, name, type, domain,
 
857
                                       AVAHI_PROTO_INET6, 0,
 
858
                                       resolve_callback, NULL)))
944
859
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
945
860
              name, avahi_strerror(avahi_server_errno(mc.server)));
946
861
    break;
957
872
  }
958
873
}
959
874
 
960
 
/* stop main loop after sigterm has been called */
961
 
static void handle_sigterm(int sig){
 
875
sig_atomic_t quit_now = 0;
 
876
 
 
877
static void handle_sigterm(__attribute__((unused)) int sig){
962
878
  if(quit_now){
963
879
    return;
964
880
  }
965
881
  quit_now = 1;
966
 
  signal_received = sig;
967
882
  int old_errno = errno;
968
883
  if(mc.simple_poll != NULL){
969
884
    avahi_simple_poll_quit(mc.simple_poll);
976
891
  int error;
977
892
  int ret;
978
893
  intmax_t tmpmax;
979
 
  char *tmp;
 
894
  int numchars;
980
895
  int exitcode = EXIT_SUCCESS;
981
896
  const char *interface = "eth0";
982
897
  struct ifreq network;
983
 
  int sd = -1;
984
 
  bool take_down_interface = false;
 
898
  int sd;
985
899
  uid_t uid;
986
900
  gid_t gid;
987
901
  char *connect_to = NULL;
991
905
  const char *seckey = PATHDIR "/" SECKEY;
992
906
  const char *pubkey = PATHDIR "/" PUBKEY;
993
907
  
 
908
  /* Initialize Mandos context */
 
909
  mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
 
910
                         .dh_bits = 1024, .priority = "SECURE256"
 
911
                         ":!CTYPE-X.509:+CTYPE-OPENPGP" };
994
912
  bool gnutls_initialized = false;
995
913
  bool gpgme_initialized = false;
996
 
  float delay = 2.5f;
997
 
  
 
914
  double delay = 2.5;
 
915
 
998
916
  struct sigaction old_sigterm_action;
999
917
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1000
918
  
1054
972
        pubkey = arg;
1055
973
        break;
1056
974
      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){
 
975
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
976
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
977
           or arg[numchars] != '\0'){
1061
978
          fprintf(stderr, "Bad number of DH bits\n");
1062
979
          exit(EXIT_FAILURE);
1063
980
        }
1067
984
        mc.priority = arg;
1068
985
        break;
1069
986
      case 131:                 /* --delay */
1070
 
        errno = 0;
1071
 
        delay = strtof(arg, &tmp);
1072
 
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
987
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
988
        if(ret < 1 or arg[numchars] != '\0'){
1073
989
          fprintf(stderr, "Bad delay\n");
1074
990
          exit(EXIT_FAILURE);
1075
991
        }
1096
1012
    }
1097
1013
  }
1098
1014
  
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
1015
  /* If the interface is down, bring it up */
1178
1016
  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
1017
#ifdef __linux__
1191
1018
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1192
1019
       messages to mess up the prompt */
1229
1056
    }
1230
1057
    if((network.ifr_flags & IFF_UP) == 0){
1231
1058
      network.ifr_flags |= IFF_UP;
1232
 
      take_down_interface = true;
1233
1059
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
1060
      if(ret == -1){
1235
 
        take_down_interface = false;
1236
1061
        perror("ioctl SIOCSIFFLAGS");
1237
1062
        exitcode = EXIT_FAILURE;
1238
1063
#ifdef __linux__
1260
1085
        perror("nanosleep");
1261
1086
      }
1262
1087
    }
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
 
      }
 
1088
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1089
    if(ret == -1){
 
1090
      perror("close");
1269
1091
    }
1270
1092
#ifdef __linux__
1271
1093
    if(restore_loglevel){
1278
1100
#endif  /* __linux__ */
1279
1101
  }
1280
1102
  
1281
 
  if(quit_now){
1282
 
    goto end;
1283
 
  }
1284
 
  
1285
1103
  uid = getuid();
1286
1104
  gid = getgid();
1287
1105
  
1296
1114
    perror("setuid");
1297
1115
  }
1298
1116
  
1299
 
  if(quit_now){
1300
 
    goto end;
1301
 
  }
1302
 
  
1303
1117
  ret = init_gnutls_global(pubkey, seckey);
1304
1118
  if(ret == -1){
1305
1119
    fprintf(stderr, "init_gnutls_global failed\n");
1309
1123
    gnutls_initialized = true;
1310
1124
  }
1311
1125
  
1312
 
  if(quit_now){
1313
 
    goto end;
1314
 
  }
1315
 
  
1316
 
  tempdir_created = true;
1317
1126
  if(mkdtemp(tempdir) == NULL){
1318
 
    tempdir_created = false;
1319
1127
    perror("mkdtemp");
1320
1128
    goto end;
1321
1129
  }
1322
 
  
1323
 
  if(quit_now){
1324
 
    goto end;
1325
 
  }
 
1130
  tempdir_created = true;
1326
1131
  
1327
1132
  if(not init_gpgme(pubkey, seckey, tempdir)){
1328
1133
    fprintf(stderr, "init_gpgme failed\n");
1332
1137
    gpgme_initialized = true;
1333
1138
  }
1334
1139
  
1335
 
  if(quit_now){
1336
 
    goto end;
 
1140
  if(interface[0] != '\0'){
 
1141
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1142
    if(if_index == 0){
 
1143
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1144
      exitcode = EXIT_FAILURE;
 
1145
      goto end;
 
1146
    }
1337
1147
  }
1338
1148
  
1339
1149
  if(connect_to != NULL){
1345
1155
      exitcode = EXIT_FAILURE;
1346
1156
      goto end;
1347
1157
    }
1348
 
    
1349
 
    if(quit_now){
1350
 
      goto end;
1351
 
    }
1352
 
    
1353
1158
    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){
 
1159
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1160
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1161
       or address[numchars+1] != '\0'){
1358
1162
      fprintf(stderr, "Bad port number\n");
1359
1163
      exitcode = EXIT_FAILURE;
1360
1164
      goto end;
1361
1165
    }
1362
 
  
1363
 
    if(quit_now){
1364
 
      goto end;
1365
 
    }
1366
 
    
1367
1166
    port = (uint16_t)tmpmax;
1368
1167
    *address = '\0';
1369
1168
    address = connect_to;
1374
1173
    } else {
1375
1174
      af = AF_INET;
1376
1175
    }
1377
 
    
1378
 
    if(quit_now){
1379
 
      goto end;
1380
 
    }
1381
 
    
1382
1176
    ret = start_mandos_communication(address, port, if_index, af);
1383
1177
    if(ret < 0){
1384
1178
      exitcode = EXIT_FAILURE;
1388
1182
    goto end;
1389
1183
  }
1390
1184
  
1391
 
  if(quit_now){
 
1185
  if(not debug){
 
1186
    avahi_set_log_function(empty_log);
 
1187
  }
 
1188
  
 
1189
  /* Initialize the pseudo-RNG for Avahi */
 
1190
  srand((unsigned int) time(NULL));
 
1191
  
 
1192
  /* Allocate main Avahi loop object */
 
1193
  mc.simple_poll = avahi_simple_poll_new();
 
1194
  if(mc.simple_poll == NULL){
 
1195
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1196
    exitcode = EXIT_FAILURE;
1392
1197
    goto end;
1393
1198
  }
1394
1199
  
1418
1223
    goto end;
1419
1224
  }
1420
1225
  
1421
 
  if(quit_now){
1422
 
    goto end;
1423
 
  }
1424
 
  
1425
1226
  /* Create the Avahi service browser */
1426
1227
  sb = avahi_s_service_browser_new(mc.server, if_index,
1427
 
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1228
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
1428
1229
                                   NULL, 0, browse_callback, NULL);
1429
1230
  if(sb == NULL){
1430
1231
    fprintf(stderr, "Failed to create service browser: %s\n",
1433
1234
    goto end;
1434
1235
  }
1435
1236
  
1436
 
  if(quit_now){
1437
 
    goto end;
1438
 
  }
 
1237
  sigemptyset(&sigterm_action.sa_mask);
 
1238
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
 
1239
  if(ret == -1){
 
1240
    perror("sigaddset");
 
1241
    exitcode = EXIT_FAILURE;
 
1242
    goto end;
 
1243
  }
 
1244
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
 
1245
  if(ret == -1){
 
1246
    perror("sigaddset");
 
1247
    exitcode = EXIT_FAILURE;
 
1248
    goto end;
 
1249
  }
 
1250
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1251
  if(ret == -1){
 
1252
    perror("sigaddset");
 
1253
    exitcode = EXIT_FAILURE;
 
1254
    goto end;
 
1255
  }
 
1256
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1257
  if(ret == -1){
 
1258
    perror("sigaction");
 
1259
    exitcode = EXIT_FAILURE;
 
1260
    goto end;
 
1261
  }  
1439
1262
  
1440
1263
  /* Run the main loop */
1441
1264
  
1471
1294
    gpgme_release(mc.ctx);
1472
1295
  }
1473
1296
  
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
1297
  /* Removes the temp directory used by GPGME */
1493
1298
  if(tempdir_created){
1494
1299
    DIR *d;
1533
1338
    }
1534
1339
  }
1535
1340
  
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
1341
  return exitcode;
1547
1342
}