/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-09-17 02:42:49 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090917024249-y6j76xtzz3i2vptv
* plugins.d/mandos-client.c (init_gnutls_session): Always fail and
                                                   return immediately
                                                   if interrupted by
                                                   signal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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, srand(),
47
 
                                   strtof(), abort() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
47
                                   srand(), strtof() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
72
72
                                */
73
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
74
                                   getuid(), getgid(), seteuid(),
75
 
                                   setgid(), pause() */
 
75
                                   setgid() */
76
76
#include <arpa/inet.h>          /* inet_pton(), htons */
77
77
#include <iso646.h>             /* not, or, and */
78
78
#include <argp.h>               /* struct argp_option, error_t, struct
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 */
87
85
 
88
86
#ifdef __linux__
89
87
#include <sys/klog.h>           /* klogctl() */
127
125
static const char mandos_protocol_version[] = "1";
128
126
const char *argp_program_version = "mandos-client " VERSION;
129
127
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;
132
128
 
133
129
/* Used for passing in values through the Avahi callback functions */
134
130
typedef struct {
548
544
    struct sockaddr_in6 in6;
549
545
  } to;
550
546
  char *buffer = NULL;
551
 
  char *decrypted_buffer = NULL;
 
547
  char *decrypted_buffer;
552
548
  size_t buffer_length = 0;
553
549
  size_t buffer_capacity = 0;
554
550
  size_t written;
555
 
  int retval = -1;
 
551
  int retval = 0;
556
552
  gnutls_session_t session;
557
553
  int pf;                       /* Protocol family */
558
554
  
559
 
  errno = 0;
560
 
  
561
555
  if(quit_now){
562
 
    errno = EINTR;
563
556
    return -1;
564
557
  }
565
558
  
572
565
    break;
573
566
  default:
574
567
    fprintf(stderr, "Bad address family: %d\n", af);
575
 
    errno = EINVAL;
576
568
    return -1;
577
569
  }
578
570
  
588
580
  
589
581
  tcp_sd = socket(pf, SOCK_STREAM, 0);
590
582
  if(tcp_sd < 0){
591
 
    int e = errno;
592
583
    perror("socket");
593
 
    errno = e;
 
584
    retval = -1;
594
585
    goto mandos_end;
595
586
  }
596
587
  
597
588
  if(quit_now){
598
 
    errno = EINTR;
 
589
    retval = -1;
599
590
    goto mandos_end;
600
591
  }
601
592
  
608
599
    ret = inet_pton(af, ip, &to.in.sin_addr);
609
600
  }
610
601
  if(ret < 0 ){
611
 
    int e = errno;
612
602
    perror("inet_pton");
613
 
    errno = e;
 
603
    retval = -1;
614
604
    goto mandos_end;
615
605
  }
616
606
  if(ret == 0){
617
 
    int e = errno;
618
607
    fprintf(stderr, "Bad address: %s\n", ip);
619
 
    errno = e;
 
608
    retval = -1;
620
609
    goto mandos_end;
621
610
  }
622
611
  if(af == AF_INET6){
630
619
      if(if_index == AVAHI_IF_UNSPEC){
631
620
        fprintf(stderr, "An IPv6 link-local address is incomplete"
632
621
                " without a network interface\n");
633
 
        errno = EINVAL;
 
622
        retval = -1;
634
623
        goto mandos_end;
635
624
      }
636
625
      /* Set the network interface number as scope */
643
632
  }
644
633
  
645
634
  if(quit_now){
646
 
    errno = EINTR;
 
635
    retval = -1;
647
636
    goto mandos_end;
648
637
  }
649
638
  
680
669
  }
681
670
  
682
671
  if(quit_now){
683
 
    errno = EINTR;
 
672
    retval = -1;
684
673
    goto mandos_end;
685
674
  }
686
675
  
690
679
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
691
680
  }
692
681
  if(ret < 0){
693
 
    int e = errno;
694
682
    perror("connect");
695
 
    errno = e;
 
683
    retval = -1;
696
684
    goto mandos_end;
697
685
  }
698
686
  
699
687
  if(quit_now){
700
 
    errno = EINTR;
 
688
    retval = -1;
701
689
    goto mandos_end;
702
690
  }
703
691
  
708
696
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
709
697
                                   out_size - written));
710
698
    if(ret == -1){
711
 
      int e = errno;
712
699
      perror("write");
713
 
      errno = e;
 
700
      retval = -1;
714
701
      goto mandos_end;
715
702
    }
716
703
    written += (size_t)ret;
726
713
    }
727
714
  
728
715
    if(quit_now){
729
 
      errno = EINTR;
 
716
      retval = -1;
730
717
      goto mandos_end;
731
718
    }
732
719
  }
736
723
  }
737
724
  
738
725
  if(quit_now){
739
 
    errno = EINTR;
 
726
    retval = -1;
740
727
    goto mandos_end;
741
728
  }
742
729
  
743
730
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
744
731
  
745
732
  if(quit_now){
746
 
    errno = EINTR;
 
733
    retval = -1;
747
734
    goto mandos_end;
748
735
  }
749
736
  
750
737
  do {
751
738
    ret = gnutls_handshake(session);
752
739
    if(quit_now){
753
 
      errno = EINTR;
 
740
      retval = -1;
754
741
      goto mandos_end;
755
742
    }
756
743
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
760
747
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
761
748
      gnutls_perror(ret);
762
749
    }
763
 
    errno = EPROTO;
 
750
    retval = -1;
764
751
    goto mandos_end;
765
752
  }
766
753
  
774
761
  while(true){
775
762
    
776
763
    if(quit_now){
777
 
      errno = EINTR;
 
764
      retval = -1;
778
765
      goto mandos_end;
779
766
    }
780
767
    
781
768
    buffer_capacity = incbuffer(&buffer, buffer_length,
782
769
                                   buffer_capacity);
783
770
    if(buffer_capacity == 0){
784
 
      int e = errno;
785
771
      perror("incbuffer");
786
 
      errno = e;
 
772
      retval = -1;
787
773
      goto mandos_end;
788
774
    }
789
775
    
790
776
    if(quit_now){
791
 
      errno = EINTR;
 
777
      retval = -1;
792
778
      goto mandos_end;
793
779
    }
794
780
    
807
793
          ret = gnutls_handshake(session);
808
794
          
809
795
          if(quit_now){
810
 
            errno = EINTR;
 
796
            retval = -1;
811
797
            goto mandos_end;
812
798
          }
813
799
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
814
800
        if(ret < 0){
815
801
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
816
802
          gnutls_perror(ret);
817
 
          errno = EPROTO;
 
803
          retval = -1;
818
804
          goto mandos_end;
819
805
        }
820
806
        break;
821
807
      default:
822
808
        fprintf(stderr, "Unknown error while reading data from"
823
809
                " encrypted session with Mandos server\n");
 
810
        retval = -1;
824
811
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
825
 
        errno = EIO;
826
812
        goto mandos_end;
827
813
      }
828
814
    } else {
835
821
  }
836
822
  
837
823
  if(quit_now){
838
 
    errno = EINTR;
 
824
    retval = -1;
839
825
    goto mandos_end;
840
826
  }
841
827
  
842
828
  do {
843
829
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
844
830
    if(quit_now){
845
 
      errno = EINTR;
 
831
      retval = -1;
846
832
      goto mandos_end;
847
833
    }
848
834
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
857
843
      written = 0;
858
844
      while(written < (size_t) decrypted_buffer_size){
859
845
        if(quit_now){
860
 
          errno = EINTR;
 
846
          retval = -1;
861
847
          goto mandos_end;
862
848
        }
863
849
        
865
851
                          (size_t)decrypted_buffer_size - written,
866
852
                          stdout);
867
853
        if(ret == 0 and ferror(stdout)){
868
 
          int e = errno;
869
854
          if(debug){
870
855
            fprintf(stderr, "Error writing encrypted data: %s\n",
871
856
                    strerror(errno));
872
857
          }
873
 
          errno = e;
874
 
          goto mandos_end;
 
858
          retval = -1;
 
859
          break;
875
860
        }
876
861
        written += (size_t)ret;
877
862
      }
878
 
      retval = 0;
 
863
      free(decrypted_buffer);
 
864
    } else {
 
865
      retval = -1;
879
866
    }
 
867
  } else {
 
868
    retval = -1;
880
869
  }
881
870
  
882
871
  /* Shutdown procedure */
883
872
  
884
873
 mandos_end:
885
 
  {
886
 
    int e = errno;
887
 
    free(decrypted_buffer);
888
 
    free(buffer);
889
 
    if(tcp_sd >= 0){
890
 
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
891
 
    }
892
 
    if(ret == -1){
893
 
      if(e == 0){
894
 
        e = errno;
895
 
      }
896
 
      perror("close");
897
 
    }
898
 
    gnutls_deinit(session);
899
 
    if(quit_now){
900
 
      e = EINTR;
901
 
      retval = -1;
902
 
    }
903
 
    errno = e;
 
874
  free(buffer);
 
875
  if(tcp_sd >= 0){
 
876
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
877
  }
 
878
  if(ret == -1){
 
879
    perror("close");
 
880
  }
 
881
  gnutls_deinit(session);
 
882
  if(quit_now){
 
883
    retval = -1;
904
884
  }
905
885
  return retval;
906
886
}
1022
1002
  errno = old_errno;
1023
1003
}
1024
1004
 
1025
 
/* 
1026
 
 * This function determines if a directory entry in /sys/class/net
1027
 
 * corresponds to an acceptable network device.
1028
 
 * (This function is passed to scandir(3) as a filter function.)
1029
 
 */
1030
 
int good_interface(const struct dirent *if_entry){
1031
 
  ssize_t ssret;
1032
 
  char *flagname = NULL;
1033
 
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1034
 
                     if_entry->d_name);
1035
 
  if(ret < 0){
1036
 
    perror("asprintf");
1037
 
    return 0;
1038
 
  }
1039
 
  if(if_entry->d_name[0] == '.'){
1040
 
    return 0;
1041
 
  }
1042
 
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1043
 
  if(flags_fd == -1){
1044
 
    perror("open");
1045
 
    return 0;
1046
 
  }
1047
 
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
1048
 
  /* read line from flags_fd */
1049
 
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1050
 
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1051
 
  flagstring[(size_t)to_read] = '\0';
1052
 
  if(flagstring == NULL){
1053
 
    perror("malloc");
1054
 
    close(flags_fd);
1055
 
    return 0;
1056
 
  }
1057
 
  while(to_read > 0){
1058
 
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1059
 
                                             (size_t)to_read));
1060
 
    if(ssret == -1){
1061
 
      perror("read");
1062
 
      free(flagstring);
1063
 
      close(flags_fd);
1064
 
      return 0;
1065
 
    }
1066
 
    to_read -= ssret;
1067
 
    if(ssret == 0){
1068
 
      break;
1069
 
    }
1070
 
  }
1071
 
  close(flags_fd);
1072
 
  intmax_t tmpmax;
1073
 
  char *tmp;
1074
 
  errno = 0;
1075
 
  tmpmax = strtoimax(flagstring, &tmp, 0);
1076
 
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1077
 
                                         and not (isspace(*tmp)))
1078
 
     or tmpmax != (ifreq_flags)tmpmax){
1079
 
    if(debug){
1080
 
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1081
 
              flagstring, if_entry->d_name);
1082
 
    }
1083
 
    free(flagstring);
1084
 
    return 0;
1085
 
  }
1086
 
  free(flagstring);
1087
 
  ifreq_flags flags = (ifreq_flags)tmpmax;
1088
 
  /* Reject the loopback device */
1089
 
  if(flags & IFF_LOOPBACK){
1090
 
    if(debug){
1091
 
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1092
 
              if_entry->d_name);
1093
 
    }
1094
 
    return 0;
1095
 
  }
1096
 
  /* Accept point-to-point devices only if connect_to is specified */
1097
 
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1098
 
    if(debug){
1099
 
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1100
 
              if_entry->d_name);
1101
 
    }
1102
 
    return 1;
1103
 
  }
1104
 
  /* Otherwise, reject non-broadcast-capable devices */
1105
 
  if(not (flags & IFF_BROADCAST)){
1106
 
    if(debug){
1107
 
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1108
 
              if_entry->d_name);
1109
 
    }
1110
 
    return 0;
1111
 
  }
1112
 
  /* Accept this device */
1113
 
  if(debug){
1114
 
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
1115
 
            if_entry->d_name);
1116
 
  }
1117
 
  return 1;
1118
 
}
1119
 
 
1120
1005
int main(int argc, char *argv[]){
1121
1006
  AvahiSServiceBrowser *sb = NULL;
1122
1007
  int error;
1124
1009
  intmax_t tmpmax;
1125
1010
  char *tmp;
1126
1011
  int exitcode = EXIT_SUCCESS;
1127
 
  const char *interface = "";
 
1012
  const char *interface = "eth0";
1128
1013
  struct ifreq network;
1129
1014
  int sd = -1;
1130
1015
  bool take_down_interface = false;
1131
1016
  uid_t uid;
1132
1017
  gid_t gid;
 
1018
  char *connect_to = NULL;
1133
1019
  char tempdir[] = "/tmp/mandosXXXXXX";
1134
1020
  bool tempdir_created = false;
1135
1021
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1198
1084
        .arg = "SECONDS",
1199
1085
        .doc = "Maximum delay to wait for interface startup",
1200
1086
        .group = 2 },
1201
 
      /*
1202
 
       * These reproduce what we would get without ARGP_NO_HELP
1203
 
       */
1204
 
      { .name = "help", .key = '?',
1205
 
        .doc = "Give this help list", .group = -1 },
1206
 
      { .name = "usage", .key = -3,
1207
 
        .doc = "Give a short usage message", .group = -1 },
1208
 
      { .name = "version", .key = 'V',
1209
 
        .doc = "Print program version", .group = -1 },
1210
1087
      { .name = NULL }
1211
1088
    };
1212
1089
    
1213
1090
    error_t parse_opt(int key, char *arg,
1214
1091
                      struct argp_state *state){
1215
 
      errno = 0;
1216
1092
      switch(key){
1217
1093
      case 128:                 /* --debug */
1218
1094
        debug = true;
1234
1110
        tmpmax = strtoimax(arg, &tmp, 10);
1235
1111
        if(errno != 0 or tmp == arg or *tmp != '\0'
1236
1112
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1237
 
          argp_error(state, "Bad number of DH bits");
 
1113
          fprintf(stderr, "Bad number of DH bits\n");
 
1114
          exit(EXIT_FAILURE);
1238
1115
        }
1239
1116
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1240
1117
        break;
1245
1122
        errno = 0;
1246
1123
        delay = strtof(arg, &tmp);
1247
1124
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1248
 
          argp_error(state, "Bad delay");
 
1125
          fprintf(stderr, "Bad delay\n");
 
1126
          exit(EXIT_FAILURE);
1249
1127
        }
1250
1128
        break;
1251
 
        /*
1252
 
         * These reproduce what we would get without ARGP_NO_HELP
1253
 
         */
1254
 
      case '?':                 /* --help */
1255
 
        argp_state_help(state, state->out_stream,
1256
 
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1257
 
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
1258
 
      case -3:                  /* --usage */
1259
 
        argp_state_help(state, state->out_stream,
1260
 
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1261
 
      case 'V':                 /* --version */
1262
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
1263
 
        exit(argp_err_exit_status);
 
1129
      case ARGP_KEY_ARG:
 
1130
        argp_usage(state);
 
1131
      case ARGP_KEY_END:
1264
1132
        break;
1265
1133
      default:
1266
1134
        return ARGP_ERR_UNKNOWN;
1267
1135
      }
1268
 
      return errno;
 
1136
      return 0;
1269
1137
    }
1270
1138
    
1271
1139
    struct argp argp = { .options = options, .parser = parse_opt,
1272
1140
                         .args_doc = "",
1273
1141
                         .doc = "Mandos client -- Get and decrypt"
1274
1142
                         " passwords from a Mandos server" };
1275
 
    ret = argp_parse(&argp, argc, argv,
1276
 
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1277
 
    switch(ret){
1278
 
    case 0:
1279
 
      break;
1280
 
    case ENOMEM:
1281
 
    default:
1282
 
      errno = ret;
1283
 
      perror("argp_parse");
1284
 
      exitcode = EX_OSERR;
1285
 
      goto end;
1286
 
    case EINVAL:
1287
 
      exitcode = EX_USAGE;
 
1143
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
1144
    if(ret == ARGP_ERR_UNKNOWN){
 
1145
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
1146
      exitcode = EXIT_FAILURE;
1288
1147
      goto end;
1289
1148
    }
1290
1149
  }
1292
1151
  if(not debug){
1293
1152
    avahi_set_log_function(empty_log);
1294
1153
  }
1295
 
 
1296
 
  if(interface[0] == '\0'){
1297
 
    struct dirent **direntries;
1298
 
    ret = scandir(sys_class_net, &direntries, good_interface,
1299
 
                  alphasort);
1300
 
    if(ret >= 1){
1301
 
      /* Pick the first good interface */
1302
 
      interface = strdup(direntries[0]->d_name);
1303
 
      if(debug){
1304
 
        fprintf(stderr, "Using interface \"%s\"\n", interface);
1305
 
      }
1306
 
      if(interface == NULL){
1307
 
        perror("malloc");
1308
 
        free(direntries);
1309
 
        exitcode = EXIT_FAILURE;
1310
 
        goto end;
1311
 
      }
1312
 
      free(direntries);
1313
 
    } else {
1314
 
      free(direntries);
1315
 
      fprintf(stderr, "Could not find a network interface\n");
1316
 
      exitcode = EXIT_FAILURE;
1317
 
      goto end;
1318
 
    }
1319
 
  }
1320
1154
  
1321
1155
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1322
1156
     from the signal handler */
1325
1159
  mc.simple_poll = avahi_simple_poll_new();
1326
1160
  if(mc.simple_poll == NULL){
1327
1161
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1328
 
    exitcode = EX_UNAVAILABLE;
 
1162
    exitcode = EXIT_FAILURE;
1329
1163
    goto end;
1330
1164
  }
1331
1165
  
1333
1167
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1334
1168
  if(ret == -1){
1335
1169
    perror("sigaddset");
1336
 
    exitcode = EX_OSERR;
 
1170
    exitcode = EXIT_FAILURE;
1337
1171
    goto end;
1338
1172
  }
1339
1173
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1340
1174
  if(ret == -1){
1341
1175
    perror("sigaddset");
1342
 
    exitcode = EX_OSERR;
 
1176
    exitcode = EXIT_FAILURE;
1343
1177
    goto end;
1344
1178
  }
1345
1179
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1346
1180
  if(ret == -1){
1347
1181
    perror("sigaddset");
1348
 
    exitcode = EX_OSERR;
 
1182
    exitcode = EXIT_FAILURE;
1349
1183
    goto end;
1350
1184
  }
1351
1185
  /* Need to check if the handler is SIG_IGN before handling:
1355
1189
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1356
1190
  if(ret == -1){
1357
1191
    perror("sigaction");
1358
 
    return EX_OSERR;
 
1192
    return EXIT_FAILURE;
1359
1193
  }
1360
1194
  if(old_sigterm_action.sa_handler != SIG_IGN){
1361
1195
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1362
1196
    if(ret == -1){
1363
1197
      perror("sigaction");
1364
 
      exitcode = EX_OSERR;
 
1198
      exitcode = EXIT_FAILURE;
1365
1199
      goto end;
1366
1200
    }
1367
1201
  }
1368
1202
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1369
1203
  if(ret == -1){
1370
1204
    perror("sigaction");
1371
 
    return EX_OSERR;
 
1205
    return EXIT_FAILURE;
1372
1206
  }
1373
1207
  if(old_sigterm_action.sa_handler != SIG_IGN){
1374
1208
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1375
1209
    if(ret == -1){
1376
1210
      perror("sigaction");
1377
 
      exitcode = EX_OSERR;
 
1211
      exitcode = EXIT_FAILURE;
1378
1212
      goto end;
1379
1213
    }
1380
1214
  }
1381
1215
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1382
1216
  if(ret == -1){
1383
1217
    perror("sigaction");
1384
 
    return EX_OSERR;
 
1218
    return EXIT_FAILURE;
1385
1219
  }
1386
1220
  if(old_sigterm_action.sa_handler != SIG_IGN){
1387
1221
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1388
1222
    if(ret == -1){
1389
1223
      perror("sigaction");
1390
 
      exitcode = EX_OSERR;
 
1224
      exitcode = EXIT_FAILURE;
1391
1225
      goto end;
1392
1226
    }
1393
1227
  }
1394
1228
  
1395
1229
  /* If the interface is down, bring it up */
1396
 
  if(strcmp(interface, "none") != 0){
 
1230
  if(interface[0] != '\0'){
1397
1231
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1398
1232
    if(if_index == 0){
1399
1233
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1400
 
      exitcode = EX_UNAVAILABLE;
 
1234
      exitcode = EXIT_FAILURE;
1401
1235
      goto end;
1402
1236
    }
1403
1237
    
1414
1248
    
1415
1249
#ifdef __linux__
1416
1250
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1417
 
       messages about the network interface to mess up the prompt */
 
1251
       messages to mess up the prompt */
1418
1252
    ret = klogctl(8, NULL, 5);
1419
1253
    bool restore_loglevel = true;
1420
1254
    if(ret == -1){
1426
1260
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1427
1261
    if(sd < 0){
1428
1262
      perror("socket");
1429
 
      exitcode = EX_OSERR;
 
1263
      exitcode = EXIT_FAILURE;
1430
1264
#ifdef __linux__
1431
1265
      if(restore_loglevel){
1432
1266
        ret = klogctl(7, NULL, 0);
1455
1289
        }
1456
1290
      }
1457
1291
#endif  /* __linux__ */
1458
 
      exitcode = EX_OSERR;
 
1292
      exitcode = EXIT_FAILURE;
1459
1293
      /* Lower privileges */
1460
1294
      errno = 0;
1461
1295
      ret = seteuid(uid);
1470
1304
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1471
1305
      if(ret == -1){
1472
1306
        take_down_interface = false;
1473
 
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
1474
 
        exitcode = EX_OSERR;
 
1307
        perror("ioctl SIOCSIFFLAGS");
 
1308
        exitcode = EXIT_FAILURE;
1475
1309
#ifdef __linux__
1476
1310
        if(restore_loglevel){
1477
1311
          ret = klogctl(7, NULL, 0);
1543
1377
  ret = init_gnutls_global(pubkey, seckey);
1544
1378
  if(ret == -1){
1545
1379
    fprintf(stderr, "init_gnutls_global failed\n");
1546
 
    exitcode = EX_UNAVAILABLE;
 
1380
    exitcode = EXIT_FAILURE;
1547
1381
    goto end;
1548
1382
  } else {
1549
1383
    gnutls_initialized = true;
1566
1400
  
1567
1401
  if(not init_gpgme(pubkey, seckey, tempdir)){
1568
1402
    fprintf(stderr, "init_gpgme failed\n");
1569
 
    exitcode = EX_UNAVAILABLE;
 
1403
    exitcode = EXIT_FAILURE;
1570
1404
    goto end;
1571
1405
  } else {
1572
1406
    gpgme_initialized = true;
1582
1416
    char *address = strrchr(connect_to, ':');
1583
1417
    if(address == NULL){
1584
1418
      fprintf(stderr, "No colon in address\n");
1585
 
      exitcode = EX_USAGE;
 
1419
      exitcode = EXIT_FAILURE;
1586
1420
      goto end;
1587
1421
    }
1588
1422
    
1596
1430
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1597
1431
       or tmpmax != (uint16_t)tmpmax){
1598
1432
      fprintf(stderr, "Bad port number\n");
1599
 
      exitcode = EX_USAGE;
 
1433
      exitcode = EXIT_FAILURE;
1600
1434
      goto end;
1601
1435
    }
1602
1436
  
1621
1455
    
1622
1456
    ret = start_mandos_communication(address, port, if_index, af);
1623
1457
    if(ret < 0){
1624
 
      switch(errno){
1625
 
      case ENETUNREACH:
1626
 
      case EHOSTDOWN:
1627
 
      case EHOSTUNREACH:
1628
 
        exitcode = EX_NOHOST;
1629
 
        break;
1630
 
      case EINVAL:
1631
 
        exitcode = EX_USAGE;
1632
 
        break;
1633
 
      case EIO:
1634
 
        exitcode = EX_IOERR;
1635
 
        break;
1636
 
      case EPROTO:
1637
 
        exitcode = EX_PROTOCOL;
1638
 
        break;
1639
 
      default:
1640
 
        exitcode = EX_OSERR;
1641
 
        break;
1642
 
      }
 
1458
      exitcode = EXIT_FAILURE;
1643
1459
    } else {
1644
1460
      exitcode = EXIT_SUCCESS;
1645
1461
    }
1672
1488
  if(mc.server == NULL){
1673
1489
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1674
1490
            avahi_strerror(error));
1675
 
    exitcode = EX_UNAVAILABLE;
 
1491
    exitcode = EXIT_FAILURE;
1676
1492
    goto end;
1677
1493
  }
1678
1494
  
1687
1503
  if(sb == NULL){
1688
1504
    fprintf(stderr, "Failed to create service browser: %s\n",
1689
1505
            avahi_strerror(avahi_server_errno(mc.server)));
1690
 
    exitcode = EX_UNAVAILABLE;
 
1506
    exitcode = EXIT_FAILURE;
1691
1507
    goto end;
1692
1508
  }
1693
1509
  
1742
1558
      if(ret == -1){
1743
1559
        perror("ioctl SIOCGIFFLAGS");
1744
1560
      } else if(network.ifr_flags & IFF_UP) {
1745
 
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1561
        network.ifr_flags &= ~IFF_UP; /* clear flag */
1746
1562
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1747
1563
        if(ret == -1){
1748
 
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
 
1564
          perror("ioctl SIOCSIFFLAGS");
1749
1565
        }
1750
1566
      }
1751
1567
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1808
1624
  if(quit_now){
1809
1625
    sigemptyset(&old_sigterm_action.sa_mask);
1810
1626
    old_sigterm_action.sa_handler = SIG_DFL;
1811
 
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
1812
 
                                            &old_sigterm_action,
1813
 
                                            NULL));
 
1627
    ret = sigaction(signal_received, &old_sigterm_action, NULL);
1814
1628
    if(ret == -1){
1815
1629
      perror("sigaction");
1816
1630
    }
1817
 
    do {
1818
 
      ret = raise(signal_received);
1819
 
    } while(ret != 0 and errno == EINTR);
1820
 
    if(ret != 0){
1821
 
      perror("raise");
1822
 
      abort();
1823
 
    }
1824
 
    TEMP_FAILURE_RETRY(pause());
 
1631
    raise(signal_received);
1825
1632
  }
1826
1633
  
1827
1634
  return exitcode;