/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

* mandos: Tolerate restarting Avahi servers.  Also Changed to new
          "except x as y" exception syntax.
  (AvahiService.entry_group_state_changed_match): New; contains the
                                                  SignalMatch object.
  (AvahiService.remove): Really remove the group and the signal
                         connection, if any.
  (AvahiService.add): Always create a new group and signal connection.
  (AvahiService.cleanup): Changed to simply call remove().
  (AvahiService.server_state_changed): Handle and log more bad states.
  (AvahiService.activate): Set "follow_name_owner_changes=True" on the
                           Avahi Server proxy object.
  (ClientDBus.checked_ok): Do not return anything.
  (ClientDBus.CheckedOK): Do not return anything, as documented.
* mandos-monitor: Call D-Bus methods asynchronously.

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,2009 Teddy Hogeborn
13
 
 * Copyright © 2008,2009 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 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
43
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof(), abort() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
63
63
                                   strtoimax() */
64
64
#include <assert.h>             /* assert() */
65
65
#include <errno.h>              /* perror(), errno */
66
 
#include <time.h>               /* nanosleep(), time() */
 
66
#include <time.h>               /* nanosleep(), time(), sleep() */
67
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
68
                                   SIOCSIFFLAGS, if_indextoname(),
69
69
                                   if_nametoindex(), IF_NAMESIZE */
82
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
83
                                   sigaction(), SIGTERM, sig_atomic_t,
84
84
                                   raise() */
 
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
85
87
 
86
88
#ifdef __linux__
87
89
#include <sys/klog.h>           /* klogctl() */
554
556
  gnutls_session_t session;
555
557
  int pf;                       /* Protocol family */
556
558
  
 
559
  errno = 0;
 
560
  
557
561
  if(quit_now){
 
562
    errno = EINTR;
558
563
    return -1;
559
564
  }
560
565
  
567
572
    break;
568
573
  default:
569
574
    fprintf(stderr, "Bad address family: %d\n", af);
 
575
    errno = EINVAL;
570
576
    return -1;
571
577
  }
572
578
  
582
588
  
583
589
  tcp_sd = socket(pf, SOCK_STREAM, 0);
584
590
  if(tcp_sd < 0){
 
591
    int e = errno;
585
592
    perror("socket");
 
593
    errno = e;
586
594
    goto mandos_end;
587
595
  }
588
596
  
589
597
  if(quit_now){
 
598
    errno = EINTR;
590
599
    goto mandos_end;
591
600
  }
592
601
  
599
608
    ret = inet_pton(af, ip, &to.in.sin_addr);
600
609
  }
601
610
  if(ret < 0 ){
 
611
    int e = errno;
602
612
    perror("inet_pton");
 
613
    errno = e;
603
614
    goto mandos_end;
604
615
  }
605
616
  if(ret == 0){
 
617
    int e = errno;
606
618
    fprintf(stderr, "Bad address: %s\n", ip);
 
619
    errno = e;
607
620
    goto mandos_end;
608
621
  }
609
622
  if(af == AF_INET6){
617
630
      if(if_index == AVAHI_IF_UNSPEC){
618
631
        fprintf(stderr, "An IPv6 link-local address is incomplete"
619
632
                " without a network interface\n");
 
633
        errno = EINVAL;
620
634
        goto mandos_end;
621
635
      }
622
636
      /* Set the network interface number as scope */
629
643
  }
630
644
  
631
645
  if(quit_now){
 
646
    errno = EINTR;
632
647
    goto mandos_end;
633
648
  }
634
649
  
665
680
  }
666
681
  
667
682
  if(quit_now){
 
683
    errno = EINTR;
668
684
    goto mandos_end;
669
685
  }
670
686
  
674
690
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
675
691
  }
676
692
  if(ret < 0){
677
 
    perror("connect");
 
693
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
694
      int e = errno;
 
695
      perror("connect");
 
696
      errno = e;
 
697
    }
678
698
    goto mandos_end;
679
699
  }
680
700
  
681
701
  if(quit_now){
 
702
    errno = EINTR;
682
703
    goto mandos_end;
683
704
  }
684
705
  
689
710
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
690
711
                                   out_size - written));
691
712
    if(ret == -1){
 
713
      int e = errno;
692
714
      perror("write");
 
715
      errno = e;
693
716
      goto mandos_end;
694
717
    }
695
718
    written += (size_t)ret;
705
728
    }
706
729
  
707
730
    if(quit_now){
 
731
      errno = EINTR;
708
732
      goto mandos_end;
709
733
    }
710
734
  }
714
738
  }
715
739
  
716
740
  if(quit_now){
 
741
    errno = EINTR;
717
742
    goto mandos_end;
718
743
  }
719
744
  
720
745
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
721
746
  
722
747
  if(quit_now){
 
748
    errno = EINTR;
723
749
    goto mandos_end;
724
750
  }
725
751
  
726
752
  do {
727
753
    ret = gnutls_handshake(session);
728
754
    if(quit_now){
 
755
      errno = EINTR;
729
756
      goto mandos_end;
730
757
    }
731
758
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
735
762
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
736
763
      gnutls_perror(ret);
737
764
    }
 
765
    errno = EPROTO;
738
766
    goto mandos_end;
739
767
  }
740
768
  
748
776
  while(true){
749
777
    
750
778
    if(quit_now){
 
779
      errno = EINTR;
751
780
      goto mandos_end;
752
781
    }
753
782
    
754
783
    buffer_capacity = incbuffer(&buffer, buffer_length,
755
784
                                   buffer_capacity);
756
785
    if(buffer_capacity == 0){
 
786
      int e = errno;
757
787
      perror("incbuffer");
 
788
      errno = e;
758
789
      goto mandos_end;
759
790
    }
760
791
    
761
792
    if(quit_now){
 
793
      errno = EINTR;
762
794
      goto mandos_end;
763
795
    }
764
796
    
777
809
          ret = gnutls_handshake(session);
778
810
          
779
811
          if(quit_now){
 
812
            errno = EINTR;
780
813
            goto mandos_end;
781
814
          }
782
815
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
783
816
        if(ret < 0){
784
817
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
785
818
          gnutls_perror(ret);
 
819
          errno = EPROTO;
786
820
          goto mandos_end;
787
821
        }
788
822
        break;
790
824
        fprintf(stderr, "Unknown error while reading data from"
791
825
                " encrypted session with Mandos server\n");
792
826
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
827
        errno = EIO;
793
828
        goto mandos_end;
794
829
      }
795
830
    } else {
802
837
  }
803
838
  
804
839
  if(quit_now){
 
840
    errno = EINTR;
805
841
    goto mandos_end;
806
842
  }
807
843
  
808
844
  do {
809
845
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
810
846
    if(quit_now){
 
847
      errno = EINTR;
811
848
      goto mandos_end;
812
849
    }
813
850
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
822
859
      written = 0;
823
860
      while(written < (size_t) decrypted_buffer_size){
824
861
        if(quit_now){
 
862
          errno = EINTR;
825
863
          goto mandos_end;
826
864
        }
827
865
        
829
867
                          (size_t)decrypted_buffer_size - written,
830
868
                          stdout);
831
869
        if(ret == 0 and ferror(stdout)){
 
870
          int e = errno;
832
871
          if(debug){
833
872
            fprintf(stderr, "Error writing encrypted data: %s\n",
834
873
                    strerror(errno));
835
874
          }
 
875
          errno = e;
836
876
          goto mandos_end;
837
877
        }
838
878
        written += (size_t)ret;
844
884
  /* Shutdown procedure */
845
885
  
846
886
 mandos_end:
847
 
  free(decrypted_buffer);
848
 
  free(buffer);
849
 
  if(tcp_sd >= 0){
850
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
851
 
  }
852
 
  if(ret == -1){
853
 
    perror("close");
854
 
  }
855
 
  gnutls_deinit(session);
856
 
  if(quit_now){
857
 
    retval = -1;
 
887
  {
 
888
    int e = errno;
 
889
    free(decrypted_buffer);
 
890
    free(buffer);
 
891
    if(tcp_sd >= 0){
 
892
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
893
    }
 
894
    if(ret == -1){
 
895
      if(e == 0){
 
896
        e = errno;
 
897
      }
 
898
      perror("close");
 
899
    }
 
900
    gnutls_deinit(session);
 
901
    if(quit_now){
 
902
      e = EINTR;
 
903
      retval = -1;
 
904
    }
 
905
    errno = e;
858
906
  }
859
907
  return retval;
860
908
}
984
1032
int good_interface(const struct dirent *if_entry){
985
1033
  ssize_t ssret;
986
1034
  char *flagname = NULL;
 
1035
  if(if_entry->d_name[0] == '.'){
 
1036
    return 0;
 
1037
  }
987
1038
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
988
1039
                     if_entry->d_name);
989
1040
  if(ret < 0){
990
1041
    perror("asprintf");
991
1042
    return 0;
992
1043
  }
993
 
  if(if_entry->d_name[0] == '.'){
994
 
    return 0;
995
 
  }
996
1044
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
997
1045
  if(flags_fd == -1){
998
1046
    perror("open");
 
1047
    free(flagname);
999
1048
    return 0;
1000
1049
  }
 
1050
  free(flagname);
1001
1051
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
1002
1052
  /* read line from flags_fd */
1003
1053
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1004
 
  char *flagstring = malloc((size_t)to_read);
 
1054
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
 
1055
  flagstring[(size_t)to_read] = '\0';
1005
1056
  if(flagstring == NULL){
1006
1057
    perror("malloc");
1007
1058
    close(flags_fd);
1029
1080
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1030
1081
                                         and not (isspace(*tmp)))
1031
1082
     or tmpmax != (ifreq_flags)tmpmax){
 
1083
    if(debug){
 
1084
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
 
1085
              flagstring, if_entry->d_name);
 
1086
    }
1032
1087
    free(flagstring);
1033
1088
    return 0;
1034
1089
  }
1036
1091
  ifreq_flags flags = (ifreq_flags)tmpmax;
1037
1092
  /* Reject the loopback device */
1038
1093
  if(flags & IFF_LOOPBACK){
 
1094
    if(debug){
 
1095
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
 
1096
              if_entry->d_name);
 
1097
    }
1039
1098
    return 0;
1040
1099
  }
1041
1100
  /* Accept point-to-point devices only if connect_to is specified */
1042
1101
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
 
1102
    if(debug){
 
1103
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
 
1104
              if_entry->d_name);
 
1105
    }
1043
1106
    return 1;
1044
1107
  }
1045
1108
  /* Otherwise, reject non-broadcast-capable devices */
1046
1109
  if(not (flags & IFF_BROADCAST)){
 
1110
    if(debug){
 
1111
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
 
1112
              if_entry->d_name);
 
1113
    }
 
1114
    return 0;
 
1115
  }
 
1116
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1117
  if(flags & IFF_NOARP){
 
1118
    if(debug){
 
1119
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1120
              if_entry->d_name);
 
1121
    }
1047
1122
    return 0;
1048
1123
  }
1049
1124
  /* Accept this device */
 
1125
  if(debug){
 
1126
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
 
1127
            if_entry->d_name);
 
1128
  }
1050
1129
  return 1;
1051
1130
}
1052
1131
 
1131
1210
        .arg = "SECONDS",
1132
1211
        .doc = "Maximum delay to wait for interface startup",
1133
1212
        .group = 2 },
 
1213
      /*
 
1214
       * These reproduce what we would get without ARGP_NO_HELP
 
1215
       */
 
1216
      { .name = "help", .key = '?',
 
1217
        .doc = "Give this help list", .group = -1 },
 
1218
      { .name = "usage", .key = -3,
 
1219
        .doc = "Give a short usage message", .group = -1 },
 
1220
      { .name = "version", .key = 'V',
 
1221
        .doc = "Print program version", .group = -1 },
1134
1222
      { .name = NULL }
1135
1223
    };
1136
1224
    
1137
1225
    error_t parse_opt(int key, char *arg,
1138
1226
                      struct argp_state *state){
 
1227
      errno = 0;
1139
1228
      switch(key){
1140
1229
      case 128:                 /* --debug */
1141
1230
        debug = true;
1157
1246
        tmpmax = strtoimax(arg, &tmp, 10);
1158
1247
        if(errno != 0 or tmp == arg or *tmp != '\0'
1159
1248
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1160
 
          fprintf(stderr, "Bad number of DH bits\n");
1161
 
          exit(EXIT_FAILURE);
 
1249
          argp_error(state, "Bad number of DH bits");
1162
1250
        }
1163
1251
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1164
1252
        break;
1169
1257
        errno = 0;
1170
1258
        delay = strtof(arg, &tmp);
1171
1259
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1172
 
          fprintf(stderr, "Bad delay\n");
1173
 
          exit(EXIT_FAILURE);
 
1260
          argp_error(state, "Bad delay");
1174
1261
        }
1175
1262
        break;
1176
 
      case ARGP_KEY_ARG:
1177
 
        argp_usage(state);
1178
 
      case ARGP_KEY_END:
 
1263
        /*
 
1264
         * These reproduce what we would get without ARGP_NO_HELP
 
1265
         */
 
1266
      case '?':                 /* --help */
 
1267
        argp_state_help(state, state->out_stream,
 
1268
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1269
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1270
      case -3:                  /* --usage */
 
1271
        argp_state_help(state, state->out_stream,
 
1272
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1273
      case 'V':                 /* --version */
 
1274
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1275
        exit(argp_err_exit_status);
1179
1276
        break;
1180
1277
      default:
1181
1278
        return ARGP_ERR_UNKNOWN;
1182
1279
      }
1183
 
      return 0;
 
1280
      return errno;
1184
1281
    }
1185
1282
    
1186
1283
    struct argp argp = { .options = options, .parser = parse_opt,
1187
1284
                         .args_doc = "",
1188
1285
                         .doc = "Mandos client -- Get and decrypt"
1189
1286
                         " passwords from a Mandos server" };
1190
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1191
 
    if(ret == ARGP_ERR_UNKNOWN){
1192
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1193
 
      exitcode = EXIT_FAILURE;
 
1287
    ret = argp_parse(&argp, argc, argv,
 
1288
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1289
    switch(ret){
 
1290
    case 0:
 
1291
      break;
 
1292
    case ENOMEM:
 
1293
    default:
 
1294
      errno = ret;
 
1295
      perror("argp_parse");
 
1296
      exitcode = EX_OSERR;
 
1297
      goto end;
 
1298
    case EINVAL:
 
1299
      exitcode = EX_USAGE;
1194
1300
      goto end;
1195
1301
    }
1196
1302
  }
1206
1312
    if(ret >= 1){
1207
1313
      /* Pick the first good interface */
1208
1314
      interface = strdup(direntries[0]->d_name);
 
1315
      if(debug){
 
1316
        fprintf(stderr, "Using interface \"%s\"\n", interface);
 
1317
      }
1209
1318
      if(interface == NULL){
1210
1319
        perror("malloc");
1211
1320
        free(direntries);
1228
1337
  mc.simple_poll = avahi_simple_poll_new();
1229
1338
  if(mc.simple_poll == NULL){
1230
1339
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1231
 
    exitcode = EXIT_FAILURE;
 
1340
    exitcode = EX_UNAVAILABLE;
1232
1341
    goto end;
1233
1342
  }
1234
1343
  
1236
1345
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1237
1346
  if(ret == -1){
1238
1347
    perror("sigaddset");
1239
 
    exitcode = EXIT_FAILURE;
 
1348
    exitcode = EX_OSERR;
1240
1349
    goto end;
1241
1350
  }
1242
1351
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1243
1352
  if(ret == -1){
1244
1353
    perror("sigaddset");
1245
 
    exitcode = EXIT_FAILURE;
 
1354
    exitcode = EX_OSERR;
1246
1355
    goto end;
1247
1356
  }
1248
1357
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1249
1358
  if(ret == -1){
1250
1359
    perror("sigaddset");
1251
 
    exitcode = EXIT_FAILURE;
 
1360
    exitcode = EX_OSERR;
1252
1361
    goto end;
1253
1362
  }
1254
1363
  /* Need to check if the handler is SIG_IGN before handling:
1258
1367
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1259
1368
  if(ret == -1){
1260
1369
    perror("sigaction");
1261
 
    return EXIT_FAILURE;
 
1370
    return EX_OSERR;
1262
1371
  }
1263
1372
  if(old_sigterm_action.sa_handler != SIG_IGN){
1264
1373
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1265
1374
    if(ret == -1){
1266
1375
      perror("sigaction");
1267
 
      exitcode = EXIT_FAILURE;
 
1376
      exitcode = EX_OSERR;
1268
1377
      goto end;
1269
1378
    }
1270
1379
  }
1271
1380
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1272
1381
  if(ret == -1){
1273
1382
    perror("sigaction");
1274
 
    return EXIT_FAILURE;
 
1383
    return EX_OSERR;
1275
1384
  }
1276
1385
  if(old_sigterm_action.sa_handler != SIG_IGN){
1277
1386
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1278
1387
    if(ret == -1){
1279
1388
      perror("sigaction");
1280
 
      exitcode = EXIT_FAILURE;
 
1389
      exitcode = EX_OSERR;
1281
1390
      goto end;
1282
1391
    }
1283
1392
  }
1284
1393
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1285
1394
  if(ret == -1){
1286
1395
    perror("sigaction");
1287
 
    return EXIT_FAILURE;
 
1396
    return EX_OSERR;
1288
1397
  }
1289
1398
  if(old_sigterm_action.sa_handler != SIG_IGN){
1290
1399
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1291
1400
    if(ret == -1){
1292
1401
      perror("sigaction");
1293
 
      exitcode = EXIT_FAILURE;
 
1402
      exitcode = EX_OSERR;
1294
1403
      goto end;
1295
1404
    }
1296
1405
  }
1300
1409
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1301
1410
    if(if_index == 0){
1302
1411
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1303
 
      exitcode = EXIT_FAILURE;
 
1412
      exitcode = EX_UNAVAILABLE;
1304
1413
      goto end;
1305
1414
    }
1306
1415
    
1317
1426
    
1318
1427
#ifdef __linux__
1319
1428
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1320
 
       messages to mess up the prompt */
 
1429
       messages about the network interface to mess up the prompt */
1321
1430
    ret = klogctl(8, NULL, 5);
1322
1431
    bool restore_loglevel = true;
1323
1432
    if(ret == -1){
1329
1438
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1330
1439
    if(sd < 0){
1331
1440
      perror("socket");
1332
 
      exitcode = EXIT_FAILURE;
 
1441
      exitcode = EX_OSERR;
1333
1442
#ifdef __linux__
1334
1443
      if(restore_loglevel){
1335
1444
        ret = klogctl(7, NULL, 0);
1358
1467
        }
1359
1468
      }
1360
1469
#endif  /* __linux__ */
1361
 
      exitcode = EXIT_FAILURE;
 
1470
      exitcode = EX_OSERR;
1362
1471
      /* Lower privileges */
1363
1472
      errno = 0;
1364
1473
      ret = seteuid(uid);
1373
1482
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1374
1483
      if(ret == -1){
1375
1484
        take_down_interface = false;
1376
 
        perror("ioctl SIOCSIFFLAGS");
1377
 
        exitcode = EXIT_FAILURE;
 
1485
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1486
        exitcode = EX_OSERR;
1378
1487
#ifdef __linux__
1379
1488
        if(restore_loglevel){
1380
1489
          ret = klogctl(7, NULL, 0);
1446
1555
  ret = init_gnutls_global(pubkey, seckey);
1447
1556
  if(ret == -1){
1448
1557
    fprintf(stderr, "init_gnutls_global failed\n");
1449
 
    exitcode = EXIT_FAILURE;
 
1558
    exitcode = EX_UNAVAILABLE;
1450
1559
    goto end;
1451
1560
  } else {
1452
1561
    gnutls_initialized = true;
1469
1578
  
1470
1579
  if(not init_gpgme(pubkey, seckey, tempdir)){
1471
1580
    fprintf(stderr, "init_gpgme failed\n");
1472
 
    exitcode = EXIT_FAILURE;
 
1581
    exitcode = EX_UNAVAILABLE;
1473
1582
    goto end;
1474
1583
  } else {
1475
1584
    gpgme_initialized = true;
1485
1594
    char *address = strrchr(connect_to, ':');
1486
1595
    if(address == NULL){
1487
1596
      fprintf(stderr, "No colon in address\n");
1488
 
      exitcode = EXIT_FAILURE;
 
1597
      exitcode = EX_USAGE;
1489
1598
      goto end;
1490
1599
    }
1491
1600
    
1499
1608
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1500
1609
       or tmpmax != (uint16_t)tmpmax){
1501
1610
      fprintf(stderr, "Bad port number\n");
1502
 
      exitcode = EXIT_FAILURE;
 
1611
      exitcode = EX_USAGE;
1503
1612
      goto end;
1504
1613
    }
1505
1614
  
1521
1630
    if(quit_now){
1522
1631
      goto end;
1523
1632
    }
1524
 
    
1525
 
    ret = start_mandos_communication(address, port, if_index, af);
1526
 
    if(ret < 0){
1527
 
      exitcode = EXIT_FAILURE;
1528
 
    } else {
 
1633
 
 
1634
    while(not quit_now){
 
1635
      ret = start_mandos_communication(address, port, if_index, af);
 
1636
      if(quit_now or ret == 0){
 
1637
        break;
 
1638
      }
 
1639
      sleep(15);
 
1640
    };
 
1641
 
 
1642
    if (not quit_now){
1529
1643
      exitcode = EXIT_SUCCESS;
1530
1644
    }
 
1645
 
1531
1646
    goto end;
1532
1647
  }
1533
1648
  
1557
1672
  if(mc.server == NULL){
1558
1673
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1559
1674
            avahi_strerror(error));
1560
 
    exitcode = EXIT_FAILURE;
 
1675
    exitcode = EX_UNAVAILABLE;
1561
1676
    goto end;
1562
1677
  }
1563
1678
  
1572
1687
  if(sb == NULL){
1573
1688
    fprintf(stderr, "Failed to create service browser: %s\n",
1574
1689
            avahi_strerror(avahi_server_errno(mc.server)));
1575
 
    exitcode = EXIT_FAILURE;
 
1690
    exitcode = EX_UNAVAILABLE;
1576
1691
    goto end;
1577
1692
  }
1578
1693
  
1627
1742
      if(ret == -1){
1628
1743
        perror("ioctl SIOCGIFFLAGS");
1629
1744
      } else if(network.ifr_flags & IFF_UP) {
1630
 
        network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1745
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1631
1746
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1632
1747
        if(ret == -1){
1633
 
          perror("ioctl SIOCSIFFLAGS");
 
1748
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
1634
1749
        }
1635
1750
      }
1636
1751
      ret = (int)TEMP_FAILURE_RETRY(close(sd));