/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

* plugins.d/usplash.c: Use <sysexits.h> exit codes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
86
 
86
87
#ifdef __linux__
87
88
#include <sys/klog.h>           /* klogctl() */
125
126
static const char mandos_protocol_version[] = "1";
126
127
const char *argp_program_version = "mandos-client " VERSION;
127
128
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
128
 
static const char sys_class_net[] = "/sys/class/net";
129
 
char *connect_to = NULL;
130
129
 
131
130
/* Used for passing in values through the Avahi callback functions */
132
131
typedef struct {
976
975
  errno = old_errno;
977
976
}
978
977
 
979
 
/* 
980
 
 * This function determines if a directory entry in /sys/class/net
981
 
 * corresponds to an acceptable network device.
982
 
 * (This function is passed to scandir(3) as a filter function.)
983
 
 */
984
 
int good_interface(const struct dirent *if_entry){
985
 
  ssize_t ssret;
986
 
  char *flagname = NULL;
987
 
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
988
 
                     if_entry->d_name);
989
 
  if(ret < 0){
990
 
    perror("asprintf");
991
 
    return 0;
992
 
  }
993
 
  if(if_entry->d_name[0] == '.'){
994
 
    return 0;
995
 
  }
996
 
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
997
 
  if(flags_fd == -1){
998
 
    perror("open");
999
 
    return 0;
1000
 
  }
1001
 
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
1002
 
  /* read line from flags_fd */
1003
 
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1004
 
  char *flagstring = malloc((size_t)to_read);
1005
 
  if(flagstring == NULL){
1006
 
    perror("malloc");
1007
 
    close(flags_fd);
1008
 
    return 0;
1009
 
  }
1010
 
  while(to_read > 0){
1011
 
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1012
 
                                             (size_t)to_read));
1013
 
    if(ssret == -1){
1014
 
      perror("read");
1015
 
      free(flagstring);
1016
 
      close(flags_fd);
1017
 
      return 0;
1018
 
    }
1019
 
    to_read -= ssret;
1020
 
    if(ssret == 0){
1021
 
      break;
1022
 
    }
1023
 
  }
1024
 
  close(flags_fd);
1025
 
  intmax_t tmpmax;
1026
 
  char *tmp;
1027
 
  errno = 0;
1028
 
  tmpmax = strtoimax(flagstring, &tmp, 0);
1029
 
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1030
 
                                         and not (isspace(*tmp)))
1031
 
     or tmpmax != (ifreq_flags)tmpmax){
1032
 
    free(flagstring);
1033
 
    return 0;
1034
 
  }
1035
 
  free(flagstring);
1036
 
  ifreq_flags flags = (ifreq_flags)tmpmax;
1037
 
  /* Reject the loopback device */
1038
 
  if(flags & IFF_LOOPBACK){
1039
 
    return 0;
1040
 
  }
1041
 
  /* Accept point-to-point devices only if connect_to is specified */
1042
 
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1043
 
    return 1;
1044
 
  }
1045
 
  /* Otherwise, reject non-broadcast-capable devices */
1046
 
  if(not (flags & IFF_BROADCAST)){
1047
 
    return 0;
1048
 
  }
1049
 
  /* Accept this device */
1050
 
  return 1;
1051
 
}
1052
 
 
1053
978
int main(int argc, char *argv[]){
1054
979
  AvahiSServiceBrowser *sb = NULL;
1055
980
  int error;
1057
982
  intmax_t tmpmax;
1058
983
  char *tmp;
1059
984
  int exitcode = EXIT_SUCCESS;
1060
 
  const char *interface = "";
 
985
  const char *interface = "eth0";
1061
986
  struct ifreq network;
1062
987
  int sd = -1;
1063
988
  bool take_down_interface = false;
1064
989
  uid_t uid;
1065
990
  gid_t gid;
 
991
  char *connect_to = NULL;
1066
992
  char tempdir[] = "/tmp/mandosXXXXXX";
1067
993
  bool tempdir_created = false;
1068
994
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1131
1057
        .arg = "SECONDS",
1132
1058
        .doc = "Maximum delay to wait for interface startup",
1133
1059
        .group = 2 },
 
1060
      /*
 
1061
       * These reproduce what we would get without ARGP_NO_HELP
 
1062
       */
 
1063
      { .name = "help", .key = '?',
 
1064
        .doc = "Give this help list", .group = -1 },
 
1065
      { .name = "usage", .key = -3,
 
1066
        .doc = "Give a short usage message", .group = -1 },
 
1067
      { .name = "version", .key = 'V',
 
1068
        .doc = "Print program version", .group = -1 },
1134
1069
      { .name = NULL }
1135
1070
    };
1136
1071
    
1137
1072
    error_t parse_opt(int key, char *arg,
1138
1073
                      struct argp_state *state){
 
1074
      errno = 0;
1139
1075
      switch(key){
1140
1076
      case 128:                 /* --debug */
1141
1077
        debug = true;
1157
1093
        tmpmax = strtoimax(arg, &tmp, 10);
1158
1094
        if(errno != 0 or tmp == arg or *tmp != '\0'
1159
1095
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1160
 
          fprintf(stderr, "Bad number of DH bits\n");
1161
 
          exit(EXIT_FAILURE);
 
1096
          argp_error(state, "Bad number of DH bits");
1162
1097
        }
1163
1098
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1164
1099
        break;
1169
1104
        errno = 0;
1170
1105
        delay = strtof(arg, &tmp);
1171
1106
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1172
 
          fprintf(stderr, "Bad delay\n");
1173
 
          exit(EXIT_FAILURE);
 
1107
          argp_error(state, "Bad delay");
1174
1108
        }
1175
1109
        break;
1176
 
      case ARGP_KEY_ARG:
1177
 
        argp_usage(state);
1178
 
      case ARGP_KEY_END:
 
1110
        /*
 
1111
         * These reproduce what we would get without ARGP_NO_HELP
 
1112
         */
 
1113
      case '?':                 /* --help */
 
1114
        argp_state_help(state, state->out_stream,
 
1115
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1116
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1117
      case -3:                  /* --usage */
 
1118
        argp_state_help(state, state->out_stream,
 
1119
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1120
      case 'V':                 /* --version */
 
1121
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1122
        exit(argp_err_exit_status);
1179
1123
        break;
1180
1124
      default:
1181
1125
        return ARGP_ERR_UNKNOWN;
1182
1126
      }
1183
 
      return 0;
 
1127
      return errno;
1184
1128
    }
1185
1129
    
1186
1130
    struct argp argp = { .options = options, .parser = parse_opt,
1187
1131
                         .args_doc = "",
1188
1132
                         .doc = "Mandos client -- Get and decrypt"
1189
1133
                         " 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;
 
1134
    ret = argp_parse(&argp, argc, argv,
 
1135
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1136
    switch(ret){
 
1137
    case 0:
 
1138
      break;
 
1139
    case ENOMEM:
 
1140
    default:
 
1141
      errno = ret;
 
1142
      perror("argp_parse");
 
1143
      exitcode = EX_OSERR;
 
1144
      goto end;
 
1145
    case EINVAL:
 
1146
      exitcode = EX_USAGE;
1194
1147
      goto end;
1195
1148
    }
1196
1149
  }
1198
1151
  if(not debug){
1199
1152
    avahi_set_log_function(empty_log);
1200
1153
  }
1201
 
 
1202
 
  if(interface[0] == '\0'){
1203
 
    struct dirent **direntries;
1204
 
    ret = scandir(sys_class_net, &direntries, good_interface,
1205
 
                  alphasort);
1206
 
    if(ret >= 1){
1207
 
      /* Pick the first good interface */
1208
 
      interface = strdup(direntries[0]->d_name);
1209
 
      if(interface == NULL){
1210
 
        perror("malloc");
1211
 
        free(direntries);
1212
 
        exitcode = EXIT_FAILURE;
1213
 
        goto end;
1214
 
      }
1215
 
      free(direntries);
1216
 
    } else {
1217
 
      free(direntries);
1218
 
      fprintf(stderr, "Could not find a network interface\n");
1219
 
      exitcode = EXIT_FAILURE;
1220
 
      goto end;
1221
 
    }
1222
 
  }
1223
1154
  
1224
1155
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1225
1156
     from the signal handler */
1296
1227
  }
1297
1228
  
1298
1229
  /* If the interface is down, bring it up */
1299
 
  if(strcmp(interface, "none") != 0){
 
1230
  if(interface[0] != '\0'){
1300
1231
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1301
1232
    if(if_index == 0){
1302
1233
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1317
1248
    
1318
1249
#ifdef __linux__
1319
1250
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1320
 
       messages to mess up the prompt */
 
1251
       messages about the network interface to mess up the prompt */
1321
1252
    ret = klogctl(8, NULL, 5);
1322
1253
    bool restore_loglevel = true;
1323
1254
    if(ret == -1){
1627
1558
      if(ret == -1){
1628
1559
        perror("ioctl SIOCGIFFLAGS");
1629
1560
      } else if(network.ifr_flags & IFF_UP) {
1630
 
        network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1561
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1631
1562
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1632
1563
        if(ret == -1){
1633
1564
          perror("ioctl SIOCSIFFLAGS");