/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-07-13 01:11:12 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110713011112-bgf3tenqq60uoyyb
* Makefile (plugins.d/mandos-client): Bug fix: Put $^ before all
                                      libraries.  Remove "$(COMMON)".
                                      Thanks to Angel Abad
                                      <angelabad@ubuntu.com>.
* initramfs-tools-script: Work around change in initramfs-tools,
                          Debian bug #633582.
* plugins.d/mandos-client.c (init_gnutls_global): Bug fix: check for
                errors from gnutls_certificate_allocate_credentials().

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 */
73
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
74
                                   getuid(), getgid(), seteuid(),
75
75
                                   setgid(), pause() */
76
 
#include <arpa/inet.h>          /* inet_pton(), htons */
 
76
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
77
77
#include <iso646.h>             /* not, or, and */
78
78
#include <argp.h>               /* struct argp_option, error_t, struct
79
79
                                   argp_state, struct argp,
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() */
125
127
static const char mandos_protocol_version[] = "1";
126
128
const char *argp_program_version = "mandos-client " VERSION;
127
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;
128
132
 
129
133
/* Used for passing in values through the Avahi callback functions */
130
134
typedef struct {
419
423
  }
420
424
  
421
425
  /* OpenPGP credentials */
422
 
  gnutls_certificate_allocate_credentials(&mc.cred);
 
426
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
423
427
  if(ret != GNUTLS_E_SUCCESS){
424
 
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
425
 
                                                    from
426
 
                                                    -Wunreachable-code
427
 
                                                 */
 
428
    fprintf(stderr, "GnuTLS memory error: %s\n",
428
429
            safer_gnutls_strerror(ret));
429
430
    gnutls_global_deinit();
430
431
    return -1;
552
553
  gnutls_session_t session;
553
554
  int pf;                       /* Protocol family */
554
555
  
 
556
  errno = 0;
 
557
  
555
558
  if(quit_now){
 
559
    errno = EINTR;
556
560
    return -1;
557
561
  }
558
562
  
565
569
    break;
566
570
  default:
567
571
    fprintf(stderr, "Bad address family: %d\n", af);
 
572
    errno = EINVAL;
568
573
    return -1;
569
574
  }
570
575
  
580
585
  
581
586
  tcp_sd = socket(pf, SOCK_STREAM, 0);
582
587
  if(tcp_sd < 0){
 
588
    int e = errno;
583
589
    perror("socket");
 
590
    errno = e;
584
591
    goto mandos_end;
585
592
  }
586
593
  
587
594
  if(quit_now){
 
595
    errno = EINTR;
588
596
    goto mandos_end;
589
597
  }
590
598
  
597
605
    ret = inet_pton(af, ip, &to.in.sin_addr);
598
606
  }
599
607
  if(ret < 0 ){
 
608
    int e = errno;
600
609
    perror("inet_pton");
 
610
    errno = e;
601
611
    goto mandos_end;
602
612
  }
603
613
  if(ret == 0){
 
614
    int e = errno;
604
615
    fprintf(stderr, "Bad address: %s\n", ip);
 
616
    errno = e;
605
617
    goto mandos_end;
606
618
  }
607
619
  if(af == AF_INET6){
615
627
      if(if_index == AVAHI_IF_UNSPEC){
616
628
        fprintf(stderr, "An IPv6 link-local address is incomplete"
617
629
                " without a network interface\n");
 
630
        errno = EINVAL;
618
631
        goto mandos_end;
619
632
      }
620
633
      /* Set the network interface number as scope */
627
640
  }
628
641
  
629
642
  if(quit_now){
 
643
    errno = EINTR;
630
644
    goto mandos_end;
631
645
  }
632
646
  
663
677
  }
664
678
  
665
679
  if(quit_now){
 
680
    errno = EINTR;
666
681
    goto mandos_end;
667
682
  }
668
683
  
672
687
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
673
688
  }
674
689
  if(ret < 0){
675
 
    perror("connect");
 
690
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
691
      int e = errno;
 
692
      perror("connect");
 
693
      errno = e;
 
694
    }
676
695
    goto mandos_end;
677
696
  }
678
697
  
679
698
  if(quit_now){
 
699
    errno = EINTR;
680
700
    goto mandos_end;
681
701
  }
682
702
  
687
707
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
688
708
                                   out_size - written));
689
709
    if(ret == -1){
 
710
      int e = errno;
690
711
      perror("write");
 
712
      errno = e;
691
713
      goto mandos_end;
692
714
    }
693
715
    written += (size_t)ret;
703
725
    }
704
726
  
705
727
    if(quit_now){
 
728
      errno = EINTR;
706
729
      goto mandos_end;
707
730
    }
708
731
  }
712
735
  }
713
736
  
714
737
  if(quit_now){
 
738
    errno = EINTR;
715
739
    goto mandos_end;
716
740
  }
717
741
  
718
742
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
719
743
  
720
744
  if(quit_now){
 
745
    errno = EINTR;
721
746
    goto mandos_end;
722
747
  }
723
748
  
724
749
  do {
725
750
    ret = gnutls_handshake(session);
726
751
    if(quit_now){
 
752
      errno = EINTR;
727
753
      goto mandos_end;
728
754
    }
729
755
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
733
759
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
734
760
      gnutls_perror(ret);
735
761
    }
 
762
    errno = EPROTO;
736
763
    goto mandos_end;
737
764
  }
738
765
  
746
773
  while(true){
747
774
    
748
775
    if(quit_now){
 
776
      errno = EINTR;
749
777
      goto mandos_end;
750
778
    }
751
779
    
752
780
    buffer_capacity = incbuffer(&buffer, buffer_length,
753
781
                                   buffer_capacity);
754
782
    if(buffer_capacity == 0){
 
783
      int e = errno;
755
784
      perror("incbuffer");
 
785
      errno = e;
756
786
      goto mandos_end;
757
787
    }
758
788
    
759
789
    if(quit_now){
 
790
      errno = EINTR;
760
791
      goto mandos_end;
761
792
    }
762
793
    
775
806
          ret = gnutls_handshake(session);
776
807
          
777
808
          if(quit_now){
 
809
            errno = EINTR;
778
810
            goto mandos_end;
779
811
          }
780
812
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
781
813
        if(ret < 0){
782
814
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
783
815
          gnutls_perror(ret);
 
816
          errno = EPROTO;
784
817
          goto mandos_end;
785
818
        }
786
819
        break;
788
821
        fprintf(stderr, "Unknown error while reading data from"
789
822
                " encrypted session with Mandos server\n");
790
823
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
824
        errno = EIO;
791
825
        goto mandos_end;
792
826
      }
793
827
    } else {
800
834
  }
801
835
  
802
836
  if(quit_now){
 
837
    errno = EINTR;
803
838
    goto mandos_end;
804
839
  }
805
840
  
806
841
  do {
807
842
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
808
843
    if(quit_now){
 
844
      errno = EINTR;
809
845
      goto mandos_end;
810
846
    }
811
847
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
820
856
      written = 0;
821
857
      while(written < (size_t) decrypted_buffer_size){
822
858
        if(quit_now){
 
859
          errno = EINTR;
823
860
          goto mandos_end;
824
861
        }
825
862
        
827
864
                          (size_t)decrypted_buffer_size - written,
828
865
                          stdout);
829
866
        if(ret == 0 and ferror(stdout)){
 
867
          int e = errno;
830
868
          if(debug){
831
869
            fprintf(stderr, "Error writing encrypted data: %s\n",
832
870
                    strerror(errno));
833
871
          }
 
872
          errno = e;
834
873
          goto mandos_end;
835
874
        }
836
875
        written += (size_t)ret;
842
881
  /* Shutdown procedure */
843
882
  
844
883
 mandos_end:
845
 
  free(decrypted_buffer);
846
 
  free(buffer);
847
 
  if(tcp_sd >= 0){
848
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
849
 
  }
850
 
  if(ret == -1){
851
 
    perror("close");
852
 
  }
853
 
  gnutls_deinit(session);
854
 
  if(quit_now){
855
 
    retval = -1;
 
884
  {
 
885
    int e = errno;
 
886
    free(decrypted_buffer);
 
887
    free(buffer);
 
888
    if(tcp_sd >= 0){
 
889
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
890
    }
 
891
    if(ret == -1){
 
892
      if(e == 0){
 
893
        e = errno;
 
894
      }
 
895
      perror("close");
 
896
    }
 
897
    gnutls_deinit(session);
 
898
    if(quit_now){
 
899
      e = EINTR;
 
900
      retval = -1;
 
901
    }
 
902
    errno = e;
856
903
  }
857
904
  return retval;
858
905
}
974
1021
  errno = old_errno;
975
1022
}
976
1023
 
 
1024
/* 
 
1025
 * This function determines if a directory entry in /sys/class/net
 
1026
 * corresponds to an acceptable network device.
 
1027
 * (This function is passed to scandir(3) as a filter function.)
 
1028
 */
 
1029
int good_interface(const struct dirent *if_entry){
 
1030
  ssize_t ssret;
 
1031
  char *flagname = NULL;
 
1032
  if(if_entry->d_name[0] == '.'){
 
1033
    return 0;
 
1034
  }
 
1035
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
 
1036
                     if_entry->d_name);
 
1037
  if(ret < 0){
 
1038
    perror("asprintf");
 
1039
    return 0;
 
1040
  }
 
1041
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
 
1042
  if(flags_fd == -1){
 
1043
    perror("open");
 
1044
    free(flagname);
 
1045
    return 0;
 
1046
  }
 
1047
  free(flagname);
 
1048
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
 
1049
  /* read line from flags_fd */
 
1050
  ssize_t to_read = 2+(sizeof(ifreq_flags)*2)+1; /* "0x1003\n" */
 
1051
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
 
1052
  flagstring[(size_t)to_read] = '\0';
 
1053
  if(flagstring == NULL){
 
1054
    perror("malloc");
 
1055
    close(flags_fd);
 
1056
    return 0;
 
1057
  }
 
1058
  while(to_read > 0){
 
1059
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
 
1060
                                             (size_t)to_read));
 
1061
    if(ssret == -1){
 
1062
      perror("read");
 
1063
      free(flagstring);
 
1064
      close(flags_fd);
 
1065
      return 0;
 
1066
    }
 
1067
    to_read -= ssret;
 
1068
    if(ssret == 0){
 
1069
      break;
 
1070
    }
 
1071
  }
 
1072
  close(flags_fd);
 
1073
  intmax_t tmpmax;
 
1074
  char *tmp;
 
1075
  errno = 0;
 
1076
  tmpmax = strtoimax(flagstring, &tmp, 0);
 
1077
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
 
1078
                                         and not (isspace(*tmp)))
 
1079
     or tmpmax != (ifreq_flags)tmpmax){
 
1080
    if(debug){
 
1081
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
 
1082
              flagstring, if_entry->d_name);
 
1083
    }
 
1084
    free(flagstring);
 
1085
    return 0;
 
1086
  }
 
1087
  free(flagstring);
 
1088
  ifreq_flags flags = (ifreq_flags)tmpmax;
 
1089
  /* Reject the loopback device */
 
1090
  if(flags & IFF_LOOPBACK){
 
1091
    if(debug){
 
1092
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
 
1093
              if_entry->d_name);
 
1094
    }
 
1095
    return 0;
 
1096
  }
 
1097
  /* Accept point-to-point devices only if connect_to is specified */
 
1098
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
 
1099
    if(debug){
 
1100
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
 
1101
              if_entry->d_name);
 
1102
    }
 
1103
    return 1;
 
1104
  }
 
1105
  /* Otherwise, reject non-broadcast-capable devices */
 
1106
  if(not (flags & IFF_BROADCAST)){
 
1107
    if(debug){
 
1108
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
 
1109
              if_entry->d_name);
 
1110
    }
 
1111
    return 0;
 
1112
  }
 
1113
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1114
  if(flags & IFF_NOARP){
 
1115
    if(debug){
 
1116
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1117
              if_entry->d_name);
 
1118
    }
 
1119
    return 0;
 
1120
  }
 
1121
  /* Accept this device */
 
1122
  if(debug){
 
1123
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
 
1124
            if_entry->d_name);
 
1125
  }
 
1126
  return 1;
 
1127
}
 
1128
 
977
1129
int main(int argc, char *argv[]){
978
1130
  AvahiSServiceBrowser *sb = NULL;
979
1131
  int error;
981
1133
  intmax_t tmpmax;
982
1134
  char *tmp;
983
1135
  int exitcode = EXIT_SUCCESS;
984
 
  const char *interface = "eth0";
 
1136
  const char *interface = "";
985
1137
  struct ifreq network;
986
1138
  int sd = -1;
987
1139
  bool take_down_interface = false;
988
1140
  uid_t uid;
989
1141
  gid_t gid;
990
 
  char *connect_to = NULL;
991
1142
  char tempdir[] = "/tmp/mandosXXXXXX";
992
1143
  bool tempdir_created = false;
993
1144
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1056
1207
        .arg = "SECONDS",
1057
1208
        .doc = "Maximum delay to wait for interface startup",
1058
1209
        .group = 2 },
 
1210
      /*
 
1211
       * These reproduce what we would get without ARGP_NO_HELP
 
1212
       */
 
1213
      { .name = "help", .key = '?',
 
1214
        .doc = "Give this help list", .group = -1 },
 
1215
      { .name = "usage", .key = -3,
 
1216
        .doc = "Give a short usage message", .group = -1 },
 
1217
      { .name = "version", .key = 'V',
 
1218
        .doc = "Print program version", .group = -1 },
1059
1219
      { .name = NULL }
1060
1220
    };
1061
1221
    
1062
1222
    error_t parse_opt(int key, char *arg,
1063
1223
                      struct argp_state *state){
 
1224
      errno = 0;
1064
1225
      switch(key){
1065
1226
      case 128:                 /* --debug */
1066
1227
        debug = true;
1082
1243
        tmpmax = strtoimax(arg, &tmp, 10);
1083
1244
        if(errno != 0 or tmp == arg or *tmp != '\0'
1084
1245
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1085
 
          fprintf(stderr, "Bad number of DH bits\n");
1086
 
          exit(EXIT_FAILURE);
 
1246
          argp_error(state, "Bad number of DH bits");
1087
1247
        }
1088
1248
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1089
1249
        break;
1094
1254
        errno = 0;
1095
1255
        delay = strtof(arg, &tmp);
1096
1256
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1097
 
          fprintf(stderr, "Bad delay\n");
1098
 
          exit(EXIT_FAILURE);
 
1257
          argp_error(state, "Bad delay");
1099
1258
        }
1100
1259
        break;
1101
 
      case ARGP_KEY_ARG:
1102
 
        argp_usage(state);
1103
 
      case ARGP_KEY_END:
 
1260
        /*
 
1261
         * These reproduce what we would get without ARGP_NO_HELP
 
1262
         */
 
1263
      case '?':                 /* --help */
 
1264
        argp_state_help(state, state->out_stream,
 
1265
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1266
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1267
      case -3:                  /* --usage */
 
1268
        argp_state_help(state, state->out_stream,
 
1269
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1270
      case 'V':                 /* --version */
 
1271
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1272
        exit(argp_err_exit_status);
1104
1273
        break;
1105
1274
      default:
1106
1275
        return ARGP_ERR_UNKNOWN;
1107
1276
      }
1108
 
      return 0;
 
1277
      return errno;
1109
1278
    }
1110
1279
    
1111
1280
    struct argp argp = { .options = options, .parser = parse_opt,
1112
1281
                         .args_doc = "",
1113
1282
                         .doc = "Mandos client -- Get and decrypt"
1114
1283
                         " passwords from a Mandos server" };
1115
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1116
 
    if(ret == ARGP_ERR_UNKNOWN){
1117
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1118
 
      exitcode = EXIT_FAILURE;
 
1284
    ret = argp_parse(&argp, argc, argv,
 
1285
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1286
    switch(ret){
 
1287
    case 0:
 
1288
      break;
 
1289
    case ENOMEM:
 
1290
    default:
 
1291
      errno = ret;
 
1292
      perror("argp_parse");
 
1293
      exitcode = EX_OSERR;
 
1294
      goto end;
 
1295
    case EINVAL:
 
1296
      exitcode = EX_USAGE;
1119
1297
      goto end;
1120
1298
    }
1121
1299
  }
1123
1301
  if(not debug){
1124
1302
    avahi_set_log_function(empty_log);
1125
1303
  }
 
1304
 
 
1305
  if(interface[0] == '\0'){
 
1306
    struct dirent **direntries;
 
1307
    ret = scandir(sys_class_net, &direntries, good_interface,
 
1308
                  alphasort);
 
1309
    if(ret >= 1){
 
1310
      /* Pick the first good interface */
 
1311
      interface = strdup(direntries[0]->d_name);
 
1312
      if(debug){
 
1313
        fprintf(stderr, "Using interface \"%s\"\n", interface);
 
1314
      }
 
1315
      if(interface == NULL){
 
1316
        perror("malloc");
 
1317
        free(direntries);
 
1318
        exitcode = EXIT_FAILURE;
 
1319
        goto end;
 
1320
      }
 
1321
      free(direntries);
 
1322
    } else {
 
1323
      free(direntries);
 
1324
      fprintf(stderr, "Could not find a network interface\n");
 
1325
      exitcode = EXIT_FAILURE;
 
1326
      goto end;
 
1327
    }
 
1328
  }
1126
1329
  
1127
1330
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1128
1331
     from the signal handler */
1131
1334
  mc.simple_poll = avahi_simple_poll_new();
1132
1335
  if(mc.simple_poll == NULL){
1133
1336
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1134
 
    exitcode = EXIT_FAILURE;
 
1337
    exitcode = EX_UNAVAILABLE;
1135
1338
    goto end;
1136
1339
  }
1137
1340
  
1139
1342
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1140
1343
  if(ret == -1){
1141
1344
    perror("sigaddset");
1142
 
    exitcode = EXIT_FAILURE;
 
1345
    exitcode = EX_OSERR;
1143
1346
    goto end;
1144
1347
  }
1145
1348
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1146
1349
  if(ret == -1){
1147
1350
    perror("sigaddset");
1148
 
    exitcode = EXIT_FAILURE;
 
1351
    exitcode = EX_OSERR;
1149
1352
    goto end;
1150
1353
  }
1151
1354
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1152
1355
  if(ret == -1){
1153
1356
    perror("sigaddset");
1154
 
    exitcode = EXIT_FAILURE;
 
1357
    exitcode = EX_OSERR;
1155
1358
    goto end;
1156
1359
  }
1157
1360
  /* Need to check if the handler is SIG_IGN before handling:
1161
1364
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1162
1365
  if(ret == -1){
1163
1366
    perror("sigaction");
1164
 
    return EXIT_FAILURE;
 
1367
    return EX_OSERR;
1165
1368
  }
1166
1369
  if(old_sigterm_action.sa_handler != SIG_IGN){
1167
1370
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1168
1371
    if(ret == -1){
1169
1372
      perror("sigaction");
1170
 
      exitcode = EXIT_FAILURE;
 
1373
      exitcode = EX_OSERR;
1171
1374
      goto end;
1172
1375
    }
1173
1376
  }
1174
1377
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1175
1378
  if(ret == -1){
1176
1379
    perror("sigaction");
1177
 
    return EXIT_FAILURE;
 
1380
    return EX_OSERR;
1178
1381
  }
1179
1382
  if(old_sigterm_action.sa_handler != SIG_IGN){
1180
1383
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1181
1384
    if(ret == -1){
1182
1385
      perror("sigaction");
1183
 
      exitcode = EXIT_FAILURE;
 
1386
      exitcode = EX_OSERR;
1184
1387
      goto end;
1185
1388
    }
1186
1389
  }
1187
1390
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1188
1391
  if(ret == -1){
1189
1392
    perror("sigaction");
1190
 
    return EXIT_FAILURE;
 
1393
    return EX_OSERR;
1191
1394
  }
1192
1395
  if(old_sigterm_action.sa_handler != SIG_IGN){
1193
1396
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1194
1397
    if(ret == -1){
1195
1398
      perror("sigaction");
1196
 
      exitcode = EXIT_FAILURE;
 
1399
      exitcode = EX_OSERR;
1197
1400
      goto end;
1198
1401
    }
1199
1402
  }
1200
1403
  
1201
1404
  /* If the interface is down, bring it up */
1202
 
  if(interface[0] != '\0'){
 
1405
  if(strcmp(interface, "none") != 0){
1203
1406
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1204
1407
    if(if_index == 0){
1205
1408
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1206
 
      exitcode = EXIT_FAILURE;
 
1409
      exitcode = EX_UNAVAILABLE;
1207
1410
      goto end;
1208
1411
    }
1209
1412
    
1220
1423
    
1221
1424
#ifdef __linux__
1222
1425
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1223
 
       messages to mess up the prompt */
 
1426
       messages about the network interface to mess up the prompt */
1224
1427
    ret = klogctl(8, NULL, 5);
1225
1428
    bool restore_loglevel = true;
1226
1429
    if(ret == -1){
1232
1435
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1233
1436
    if(sd < 0){
1234
1437
      perror("socket");
1235
 
      exitcode = EXIT_FAILURE;
 
1438
      exitcode = EX_OSERR;
1236
1439
#ifdef __linux__
1237
1440
      if(restore_loglevel){
1238
1441
        ret = klogctl(7, NULL, 0);
1261
1464
        }
1262
1465
      }
1263
1466
#endif  /* __linux__ */
1264
 
      exitcode = EXIT_FAILURE;
 
1467
      exitcode = EX_OSERR;
1265
1468
      /* Lower privileges */
1266
1469
      errno = 0;
1267
1470
      ret = seteuid(uid);
1276
1479
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1277
1480
      if(ret == -1){
1278
1481
        take_down_interface = false;
1279
 
        perror("ioctl SIOCSIFFLAGS");
1280
 
        exitcode = EXIT_FAILURE;
 
1482
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1483
        exitcode = EX_OSERR;
1281
1484
#ifdef __linux__
1282
1485
        if(restore_loglevel){
1283
1486
          ret = klogctl(7, NULL, 0);
1349
1552
  ret = init_gnutls_global(pubkey, seckey);
1350
1553
  if(ret == -1){
1351
1554
    fprintf(stderr, "init_gnutls_global failed\n");
1352
 
    exitcode = EXIT_FAILURE;
 
1555
    exitcode = EX_UNAVAILABLE;
1353
1556
    goto end;
1354
1557
  } else {
1355
1558
    gnutls_initialized = true;
1372
1575
  
1373
1576
  if(not init_gpgme(pubkey, seckey, tempdir)){
1374
1577
    fprintf(stderr, "init_gpgme failed\n");
1375
 
    exitcode = EXIT_FAILURE;
 
1578
    exitcode = EX_UNAVAILABLE;
1376
1579
    goto end;
1377
1580
  } else {
1378
1581
    gpgme_initialized = true;
1388
1591
    char *address = strrchr(connect_to, ':');
1389
1592
    if(address == NULL){
1390
1593
      fprintf(stderr, "No colon in address\n");
1391
 
      exitcode = EXIT_FAILURE;
 
1594
      exitcode = EX_USAGE;
1392
1595
      goto end;
1393
1596
    }
1394
1597
    
1402
1605
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1403
1606
       or tmpmax != (uint16_t)tmpmax){
1404
1607
      fprintf(stderr, "Bad port number\n");
1405
 
      exitcode = EXIT_FAILURE;
 
1608
      exitcode = EX_USAGE;
1406
1609
      goto end;
1407
1610
    }
1408
1611
  
1424
1627
    if(quit_now){
1425
1628
      goto end;
1426
1629
    }
1427
 
    
1428
 
    ret = start_mandos_communication(address, port, if_index, af);
1429
 
    if(ret < 0){
1430
 
      exitcode = EXIT_FAILURE;
1431
 
    } else {
 
1630
 
 
1631
    while(not quit_now){
 
1632
      ret = start_mandos_communication(address, port, if_index, af);
 
1633
      if(quit_now or ret == 0){
 
1634
        break;
 
1635
      }
 
1636
      sleep(15);
 
1637
    };
 
1638
 
 
1639
    if (not quit_now){
1432
1640
      exitcode = EXIT_SUCCESS;
1433
1641
    }
 
1642
 
1434
1643
    goto end;
1435
1644
  }
1436
1645
  
1460
1669
  if(mc.server == NULL){
1461
1670
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1462
1671
            avahi_strerror(error));
1463
 
    exitcode = EXIT_FAILURE;
 
1672
    exitcode = EX_UNAVAILABLE;
1464
1673
    goto end;
1465
1674
  }
1466
1675
  
1475
1684
  if(sb == NULL){
1476
1685
    fprintf(stderr, "Failed to create service browser: %s\n",
1477
1686
            avahi_strerror(avahi_server_errno(mc.server)));
1478
 
    exitcode = EXIT_FAILURE;
 
1687
    exitcode = EX_UNAVAILABLE;
1479
1688
    goto end;
1480
1689
  }
1481
1690
  
1530
1739
      if(ret == -1){
1531
1740
        perror("ioctl SIOCGIFFLAGS");
1532
1741
      } else if(network.ifr_flags & IFF_UP) {
1533
 
        network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1742
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1534
1743
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1535
1744
        if(ret == -1){
1536
 
          perror("ioctl SIOCSIFFLAGS");
 
1745
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
1537
1746
        }
1538
1747
      }
1539
1748
      ret = (int)TEMP_FAILURE_RETRY(close(sd));