/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: 2011-04-03 00:46:51 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110403004651-yyrzgwwkoq4ts2vi
* mandos: Never call .Reset() on a defunct Avahi entry group.
  (AvahiService.remove): Only do group.Reset(), as before.
  (AvahiService.add): Only create new group if necessary.
  (AvahiService.cleanup): Also do group.Free() if a group exists.
  (AvahiService.server_state_changed): Call .cleanup() on errors.
                                       Also log error parameter, if
                                       passed.

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 */
 
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
86
87
 
87
88
#ifdef __linux__
88
89
#include <sys/klog.h>           /* klogctl() */
126
127
static const char mandos_protocol_version[] = "1";
127
128
const char *argp_program_version = "mandos-client " VERSION;
128
129
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
130
static const char sys_class_net[] = "/sys/class/net";
 
131
char *connect_to = NULL;
129
132
 
130
133
/* Used for passing in values through the Avahi callback functions */
131
134
typedef struct {
553
556
  gnutls_session_t session;
554
557
  int pf;                       /* Protocol family */
555
558
  
 
559
  errno = 0;
 
560
  
556
561
  if(quit_now){
 
562
    errno = EINTR;
557
563
    return -1;
558
564
  }
559
565
  
566
572
    break;
567
573
  default:
568
574
    fprintf(stderr, "Bad address family: %d\n", af);
 
575
    errno = EINVAL;
569
576
    return -1;
570
577
  }
571
578
  
581
588
  
582
589
  tcp_sd = socket(pf, SOCK_STREAM, 0);
583
590
  if(tcp_sd < 0){
 
591
    int e = errno;
584
592
    perror("socket");
 
593
    errno = e;
585
594
    goto mandos_end;
586
595
  }
587
596
  
588
597
  if(quit_now){
 
598
    errno = EINTR;
589
599
    goto mandos_end;
590
600
  }
591
601
  
598
608
    ret = inet_pton(af, ip, &to.in.sin_addr);
599
609
  }
600
610
  if(ret < 0 ){
 
611
    int e = errno;
601
612
    perror("inet_pton");
 
613
    errno = e;
602
614
    goto mandos_end;
603
615
  }
604
616
  if(ret == 0){
 
617
    int e = errno;
605
618
    fprintf(stderr, "Bad address: %s\n", ip);
 
619
    errno = e;
606
620
    goto mandos_end;
607
621
  }
608
622
  if(af == AF_INET6){
616
630
      if(if_index == AVAHI_IF_UNSPEC){
617
631
        fprintf(stderr, "An IPv6 link-local address is incomplete"
618
632
                " without a network interface\n");
 
633
        errno = EINVAL;
619
634
        goto mandos_end;
620
635
      }
621
636
      /* Set the network interface number as scope */
628
643
  }
629
644
  
630
645
  if(quit_now){
 
646
    errno = EINTR;
631
647
    goto mandos_end;
632
648
  }
633
649
  
664
680
  }
665
681
  
666
682
  if(quit_now){
 
683
    errno = EINTR;
667
684
    goto mandos_end;
668
685
  }
669
686
  
673
690
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
674
691
  }
675
692
  if(ret < 0){
676
 
    perror("connect");
 
693
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
694
      int e = errno;
 
695
      perror("connect");
 
696
      errno = e;
 
697
    }
677
698
    goto mandos_end;
678
699
  }
679
700
  
680
701
  if(quit_now){
 
702
    errno = EINTR;
681
703
    goto mandos_end;
682
704
  }
683
705
  
688
710
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
689
711
                                   out_size - written));
690
712
    if(ret == -1){
 
713
      int e = errno;
691
714
      perror("write");
 
715
      errno = e;
692
716
      goto mandos_end;
693
717
    }
694
718
    written += (size_t)ret;
704
728
    }
705
729
  
706
730
    if(quit_now){
 
731
      errno = EINTR;
707
732
      goto mandos_end;
708
733
    }
709
734
  }
713
738
  }
714
739
  
715
740
  if(quit_now){
 
741
    errno = EINTR;
716
742
    goto mandos_end;
717
743
  }
718
744
  
719
745
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
720
746
  
721
747
  if(quit_now){
 
748
    errno = EINTR;
722
749
    goto mandos_end;
723
750
  }
724
751
  
725
752
  do {
726
753
    ret = gnutls_handshake(session);
727
754
    if(quit_now){
 
755
      errno = EINTR;
728
756
      goto mandos_end;
729
757
    }
730
758
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
734
762
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
735
763
      gnutls_perror(ret);
736
764
    }
 
765
    errno = EPROTO;
737
766
    goto mandos_end;
738
767
  }
739
768
  
747
776
  while(true){
748
777
    
749
778
    if(quit_now){
 
779
      errno = EINTR;
750
780
      goto mandos_end;
751
781
    }
752
782
    
753
783
    buffer_capacity = incbuffer(&buffer, buffer_length,
754
784
                                   buffer_capacity);
755
785
    if(buffer_capacity == 0){
 
786
      int e = errno;
756
787
      perror("incbuffer");
 
788
      errno = e;
757
789
      goto mandos_end;
758
790
    }
759
791
    
760
792
    if(quit_now){
 
793
      errno = EINTR;
761
794
      goto mandos_end;
762
795
    }
763
796
    
776
809
          ret = gnutls_handshake(session);
777
810
          
778
811
          if(quit_now){
 
812
            errno = EINTR;
779
813
            goto mandos_end;
780
814
          }
781
815
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
782
816
        if(ret < 0){
783
817
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
784
818
          gnutls_perror(ret);
 
819
          errno = EPROTO;
785
820
          goto mandos_end;
786
821
        }
787
822
        break;
789
824
        fprintf(stderr, "Unknown error while reading data from"
790
825
                " encrypted session with Mandos server\n");
791
826
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
827
        errno = EIO;
792
828
        goto mandos_end;
793
829
      }
794
830
    } else {
801
837
  }
802
838
  
803
839
  if(quit_now){
 
840
    errno = EINTR;
804
841
    goto mandos_end;
805
842
  }
806
843
  
807
844
  do {
808
845
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
809
846
    if(quit_now){
 
847
      errno = EINTR;
810
848
      goto mandos_end;
811
849
    }
812
850
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
821
859
      written = 0;
822
860
      while(written < (size_t) decrypted_buffer_size){
823
861
        if(quit_now){
 
862
          errno = EINTR;
824
863
          goto mandos_end;
825
864
        }
826
865
        
828
867
                          (size_t)decrypted_buffer_size - written,
829
868
                          stdout);
830
869
        if(ret == 0 and ferror(stdout)){
 
870
          int e = errno;
831
871
          if(debug){
832
872
            fprintf(stderr, "Error writing encrypted data: %s\n",
833
873
                    strerror(errno));
834
874
          }
 
875
          errno = e;
835
876
          goto mandos_end;
836
877
        }
837
878
        written += (size_t)ret;
843
884
  /* Shutdown procedure */
844
885
  
845
886
 mandos_end:
846
 
  free(decrypted_buffer);
847
 
  free(buffer);
848
 
  if(tcp_sd >= 0){
849
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
850
 
  }
851
 
  if(ret == -1){
852
 
    perror("close");
853
 
  }
854
 
  gnutls_deinit(session);
855
 
  if(quit_now){
856
 
    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;
857
906
  }
858
907
  return retval;
859
908
}
975
1024
  errno = old_errno;
976
1025
}
977
1026
 
 
1027
/* 
 
1028
 * This function determines if a directory entry in /sys/class/net
 
1029
 * corresponds to an acceptable network device.
 
1030
 * (This function is passed to scandir(3) as a filter function.)
 
1031
 */
 
1032
int good_interface(const struct dirent *if_entry){
 
1033
  ssize_t ssret;
 
1034
  char *flagname = NULL;
 
1035
  if(if_entry->d_name[0] == '.'){
 
1036
    return 0;
 
1037
  }
 
1038
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
 
1039
                     if_entry->d_name);
 
1040
  if(ret < 0){
 
1041
    perror("asprintf");
 
1042
    return 0;
 
1043
  }
 
1044
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
 
1045
  if(flags_fd == -1){
 
1046
    perror("open");
 
1047
    free(flagname);
 
1048
    return 0;
 
1049
  }
 
1050
  free(flagname);
 
1051
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
 
1052
  /* read line from flags_fd */
 
1053
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
 
1054
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
 
1055
  flagstring[(size_t)to_read] = '\0';
 
1056
  if(flagstring == NULL){
 
1057
    perror("malloc");
 
1058
    close(flags_fd);
 
1059
    return 0;
 
1060
  }
 
1061
  while(to_read > 0){
 
1062
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
 
1063
                                             (size_t)to_read));
 
1064
    if(ssret == -1){
 
1065
      perror("read");
 
1066
      free(flagstring);
 
1067
      close(flags_fd);
 
1068
      return 0;
 
1069
    }
 
1070
    to_read -= ssret;
 
1071
    if(ssret == 0){
 
1072
      break;
 
1073
    }
 
1074
  }
 
1075
  close(flags_fd);
 
1076
  intmax_t tmpmax;
 
1077
  char *tmp;
 
1078
  errno = 0;
 
1079
  tmpmax = strtoimax(flagstring, &tmp, 0);
 
1080
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
 
1081
                                         and not (isspace(*tmp)))
 
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
    }
 
1087
    free(flagstring);
 
1088
    return 0;
 
1089
  }
 
1090
  free(flagstring);
 
1091
  ifreq_flags flags = (ifreq_flags)tmpmax;
 
1092
  /* Reject the loopback device */
 
1093
  if(flags & IFF_LOOPBACK){
 
1094
    if(debug){
 
1095
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
 
1096
              if_entry->d_name);
 
1097
    }
 
1098
    return 0;
 
1099
  }
 
1100
  /* Accept point-to-point devices only if connect_to is specified */
 
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
    }
 
1106
    return 1;
 
1107
  }
 
1108
  /* Otherwise, reject non-broadcast-capable devices */
 
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
    }
 
1122
    return 0;
 
1123
  }
 
1124
  /* Accept this device */
 
1125
  if(debug){
 
1126
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
 
1127
            if_entry->d_name);
 
1128
  }
 
1129
  return 1;
 
1130
}
 
1131
 
978
1132
int main(int argc, char *argv[]){
979
1133
  AvahiSServiceBrowser *sb = NULL;
980
1134
  int error;
982
1136
  intmax_t tmpmax;
983
1137
  char *tmp;
984
1138
  int exitcode = EXIT_SUCCESS;
985
 
  const char *interface = "eth0";
 
1139
  const char *interface = "";
986
1140
  struct ifreq network;
987
1141
  int sd = -1;
988
1142
  bool take_down_interface = false;
989
1143
  uid_t uid;
990
1144
  gid_t gid;
991
 
  char *connect_to = NULL;
992
1145
  char tempdir[] = "/tmp/mandosXXXXXX";
993
1146
  bool tempdir_created = false;
994
1147
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1151
1304
  if(not debug){
1152
1305
    avahi_set_log_function(empty_log);
1153
1306
  }
 
1307
 
 
1308
  if(interface[0] == '\0'){
 
1309
    struct dirent **direntries;
 
1310
    ret = scandir(sys_class_net, &direntries, good_interface,
 
1311
                  alphasort);
 
1312
    if(ret >= 1){
 
1313
      /* Pick the first good interface */
 
1314
      interface = strdup(direntries[0]->d_name);
 
1315
      if(debug){
 
1316
        fprintf(stderr, "Using interface \"%s\"\n", interface);
 
1317
      }
 
1318
      if(interface == NULL){
 
1319
        perror("malloc");
 
1320
        free(direntries);
 
1321
        exitcode = EXIT_FAILURE;
 
1322
        goto end;
 
1323
      }
 
1324
      free(direntries);
 
1325
    } else {
 
1326
      free(direntries);
 
1327
      fprintf(stderr, "Could not find a network interface\n");
 
1328
      exitcode = EXIT_FAILURE;
 
1329
      goto end;
 
1330
    }
 
1331
  }
1154
1332
  
1155
1333
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1156
1334
     from the signal handler */
1159
1337
  mc.simple_poll = avahi_simple_poll_new();
1160
1338
  if(mc.simple_poll == NULL){
1161
1339
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1162
 
    exitcode = EXIT_FAILURE;
 
1340
    exitcode = EX_UNAVAILABLE;
1163
1341
    goto end;
1164
1342
  }
1165
1343
  
1167
1345
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1168
1346
  if(ret == -1){
1169
1347
    perror("sigaddset");
1170
 
    exitcode = EXIT_FAILURE;
 
1348
    exitcode = EX_OSERR;
1171
1349
    goto end;
1172
1350
  }
1173
1351
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1174
1352
  if(ret == -1){
1175
1353
    perror("sigaddset");
1176
 
    exitcode = EXIT_FAILURE;
 
1354
    exitcode = EX_OSERR;
1177
1355
    goto end;
1178
1356
  }
1179
1357
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1180
1358
  if(ret == -1){
1181
1359
    perror("sigaddset");
1182
 
    exitcode = EXIT_FAILURE;
 
1360
    exitcode = EX_OSERR;
1183
1361
    goto end;
1184
1362
  }
1185
1363
  /* Need to check if the handler is SIG_IGN before handling:
1189
1367
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1190
1368
  if(ret == -1){
1191
1369
    perror("sigaction");
1192
 
    return EXIT_FAILURE;
 
1370
    return EX_OSERR;
1193
1371
  }
1194
1372
  if(old_sigterm_action.sa_handler != SIG_IGN){
1195
1373
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1196
1374
    if(ret == -1){
1197
1375
      perror("sigaction");
1198
 
      exitcode = EXIT_FAILURE;
 
1376
      exitcode = EX_OSERR;
1199
1377
      goto end;
1200
1378
    }
1201
1379
  }
1202
1380
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1203
1381
  if(ret == -1){
1204
1382
    perror("sigaction");
1205
 
    return EXIT_FAILURE;
 
1383
    return EX_OSERR;
1206
1384
  }
1207
1385
  if(old_sigterm_action.sa_handler != SIG_IGN){
1208
1386
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1209
1387
    if(ret == -1){
1210
1388
      perror("sigaction");
1211
 
      exitcode = EXIT_FAILURE;
 
1389
      exitcode = EX_OSERR;
1212
1390
      goto end;
1213
1391
    }
1214
1392
  }
1215
1393
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1216
1394
  if(ret == -1){
1217
1395
    perror("sigaction");
1218
 
    return EXIT_FAILURE;
 
1396
    return EX_OSERR;
1219
1397
  }
1220
1398
  if(old_sigterm_action.sa_handler != SIG_IGN){
1221
1399
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1222
1400
    if(ret == -1){
1223
1401
      perror("sigaction");
1224
 
      exitcode = EXIT_FAILURE;
 
1402
      exitcode = EX_OSERR;
1225
1403
      goto end;
1226
1404
    }
1227
1405
  }
1228
1406
  
1229
1407
  /* If the interface is down, bring it up */
1230
 
  if(interface[0] != '\0'){
 
1408
  if(strcmp(interface, "none") != 0){
1231
1409
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1232
1410
    if(if_index == 0){
1233
1411
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1234
 
      exitcode = EXIT_FAILURE;
 
1412
      exitcode = EX_UNAVAILABLE;
1235
1413
      goto end;
1236
1414
    }
1237
1415
    
1260
1438
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1261
1439
    if(sd < 0){
1262
1440
      perror("socket");
1263
 
      exitcode = EXIT_FAILURE;
 
1441
      exitcode = EX_OSERR;
1264
1442
#ifdef __linux__
1265
1443
      if(restore_loglevel){
1266
1444
        ret = klogctl(7, NULL, 0);
1289
1467
        }
1290
1468
      }
1291
1469
#endif  /* __linux__ */
1292
 
      exitcode = EXIT_FAILURE;
 
1470
      exitcode = EX_OSERR;
1293
1471
      /* Lower privileges */
1294
1472
      errno = 0;
1295
1473
      ret = seteuid(uid);
1304
1482
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1305
1483
      if(ret == -1){
1306
1484
        take_down_interface = false;
1307
 
        perror("ioctl SIOCSIFFLAGS");
1308
 
        exitcode = EXIT_FAILURE;
 
1485
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1486
        exitcode = EX_OSERR;
1309
1487
#ifdef __linux__
1310
1488
        if(restore_loglevel){
1311
1489
          ret = klogctl(7, NULL, 0);
1377
1555
  ret = init_gnutls_global(pubkey, seckey);
1378
1556
  if(ret == -1){
1379
1557
    fprintf(stderr, "init_gnutls_global failed\n");
1380
 
    exitcode = EXIT_FAILURE;
 
1558
    exitcode = EX_UNAVAILABLE;
1381
1559
    goto end;
1382
1560
  } else {
1383
1561
    gnutls_initialized = true;
1400
1578
  
1401
1579
  if(not init_gpgme(pubkey, seckey, tempdir)){
1402
1580
    fprintf(stderr, "init_gpgme failed\n");
1403
 
    exitcode = EXIT_FAILURE;
 
1581
    exitcode = EX_UNAVAILABLE;
1404
1582
    goto end;
1405
1583
  } else {
1406
1584
    gpgme_initialized = true;
1416
1594
    char *address = strrchr(connect_to, ':');
1417
1595
    if(address == NULL){
1418
1596
      fprintf(stderr, "No colon in address\n");
1419
 
      exitcode = EXIT_FAILURE;
 
1597
      exitcode = EX_USAGE;
1420
1598
      goto end;
1421
1599
    }
1422
1600
    
1430
1608
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1431
1609
       or tmpmax != (uint16_t)tmpmax){
1432
1610
      fprintf(stderr, "Bad port number\n");
1433
 
      exitcode = EXIT_FAILURE;
 
1611
      exitcode = EX_USAGE;
1434
1612
      goto end;
1435
1613
    }
1436
1614
  
1452
1630
    if(quit_now){
1453
1631
      goto end;
1454
1632
    }
1455
 
    
1456
 
    ret = start_mandos_communication(address, port, if_index, af);
1457
 
    if(ret < 0){
1458
 
      exitcode = EXIT_FAILURE;
1459
 
    } 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){
1460
1643
      exitcode = EXIT_SUCCESS;
1461
1644
    }
 
1645
 
1462
1646
    goto end;
1463
1647
  }
1464
1648
  
1488
1672
  if(mc.server == NULL){
1489
1673
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1490
1674
            avahi_strerror(error));
1491
 
    exitcode = EXIT_FAILURE;
 
1675
    exitcode = EX_UNAVAILABLE;
1492
1676
    goto end;
1493
1677
  }
1494
1678
  
1503
1687
  if(sb == NULL){
1504
1688
    fprintf(stderr, "Failed to create service browser: %s\n",
1505
1689
            avahi_strerror(avahi_server_errno(mc.server)));
1506
 
    exitcode = EXIT_FAILURE;
 
1690
    exitcode = EX_UNAVAILABLE;
1507
1691
    goto end;
1508
1692
  }
1509
1693
  
1561
1745
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1562
1746
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1563
1747
        if(ret == -1){
1564
 
          perror("ioctl SIOCSIFFLAGS");
 
1748
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
1565
1749
        }
1566
1750
      }
1567
1751
      ret = (int)TEMP_FAILURE_RETRY(close(sd));