/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

* Makefile (DOCBOOKTOMAN, DOCBOOKTOHTML, common.ent, mandos,
            mandos-keygen, mandos-ctl, mandos.lsm): Add $(strip) to
                                                    make commands
                                                    easier to read
                                                    when run.
           (plugins.d/mandos-client): Use $(LINK.c) to compile in the
                                      same way as the other programs -
                                      i.e. not via an object file.

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+1); /* +1 for final \0 */
1005
 
  flagstring[(size_t)to_read] = '\0';
1006
 
  if(flagstring == NULL){
1007
 
    perror("malloc");
1008
 
    close(flags_fd);
1009
 
    return 0;
1010
 
  }
1011
 
  while(to_read > 0){
1012
 
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1013
 
                                             (size_t)to_read));
1014
 
    if(ssret == -1){
1015
 
      perror("read");
1016
 
      free(flagstring);
1017
 
      close(flags_fd);
1018
 
      return 0;
1019
 
    }
1020
 
    to_read -= ssret;
1021
 
    if(ssret == 0){
1022
 
      break;
1023
 
    }
1024
 
  }
1025
 
  close(flags_fd);
1026
 
  intmax_t tmpmax;
1027
 
  char *tmp;
1028
 
  errno = 0;
1029
 
  tmpmax = strtoimax(flagstring, &tmp, 0);
1030
 
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1031
 
                                         and not (isspace(*tmp)))
1032
 
     or tmpmax != (ifreq_flags)tmpmax){
1033
 
    if(debug){
1034
 
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1035
 
              flagstring, if_entry->d_name);
1036
 
    }
1037
 
    free(flagstring);
1038
 
    return 0;
1039
 
  }
1040
 
  free(flagstring);
1041
 
  ifreq_flags flags = (ifreq_flags)tmpmax;
1042
 
  /* Reject the loopback device */
1043
 
  if(flags & IFF_LOOPBACK){
1044
 
    if(debug){
1045
 
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1046
 
              if_entry->d_name);
1047
 
    }
1048
 
    return 0;
1049
 
  }
1050
 
  /* Accept point-to-point devices only if connect_to is specified */
1051
 
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1052
 
    if(debug){
1053
 
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1054
 
              if_entry->d_name);
1055
 
    }
1056
 
    return 1;
1057
 
  }
1058
 
  /* Otherwise, reject non-broadcast-capable devices */
1059
 
  if(not (flags & IFF_BROADCAST)){
1060
 
    if(debug){
1061
 
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1062
 
              if_entry->d_name);
1063
 
    }
1064
 
    return 0;
1065
 
  }
1066
 
  /* Accept this device */
1067
 
  if(debug){
1068
 
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
1069
 
            if_entry->d_name);
1070
 
  }
1071
 
  return 1;
1072
 
}
1073
 
 
1074
978
int main(int argc, char *argv[]){
1075
979
  AvahiSServiceBrowser *sb = NULL;
1076
980
  int error;
1078
982
  intmax_t tmpmax;
1079
983
  char *tmp;
1080
984
  int exitcode = EXIT_SUCCESS;
1081
 
  const char *interface = "";
 
985
  const char *interface = "eth0";
1082
986
  struct ifreq network;
1083
987
  int sd = -1;
1084
988
  bool take_down_interface = false;
1085
989
  uid_t uid;
1086
990
  gid_t gid;
 
991
  char *connect_to = NULL;
1087
992
  char tempdir[] = "/tmp/mandosXXXXXX";
1088
993
  bool tempdir_created = false;
1089
994
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1152
1057
        .arg = "SECONDS",
1153
1058
        .doc = "Maximum delay to wait for interface startup",
1154
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 },
1155
1069
      { .name = NULL }
1156
1070
    };
1157
1071
    
1158
1072
    error_t parse_opt(int key, char *arg,
1159
1073
                      struct argp_state *state){
 
1074
      errno = 0;
1160
1075
      switch(key){
1161
1076
      case 128:                 /* --debug */
1162
1077
        debug = true;
1178
1093
        tmpmax = strtoimax(arg, &tmp, 10);
1179
1094
        if(errno != 0 or tmp == arg or *tmp != '\0'
1180
1095
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1181
 
          fprintf(stderr, "Bad number of DH bits\n");
1182
 
          exit(EXIT_FAILURE);
 
1096
          argp_error(state, "Bad number of DH bits");
1183
1097
        }
1184
1098
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1185
1099
        break;
1190
1104
        errno = 0;
1191
1105
        delay = strtof(arg, &tmp);
1192
1106
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1193
 
          fprintf(stderr, "Bad delay\n");
1194
 
          exit(EXIT_FAILURE);
 
1107
          argp_error(state, "Bad delay");
1195
1108
        }
1196
1109
        break;
1197
 
      case ARGP_KEY_ARG:
1198
 
        argp_usage(state);
1199
 
      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);
1200
1123
        break;
1201
1124
      default:
1202
1125
        return ARGP_ERR_UNKNOWN;
1203
1126
      }
1204
 
      return 0;
 
1127
      return errno;
1205
1128
    }
1206
1129
    
1207
1130
    struct argp argp = { .options = options, .parser = parse_opt,
1208
1131
                         .args_doc = "",
1209
1132
                         .doc = "Mandos client -- Get and decrypt"
1210
1133
                         " passwords from a Mandos server" };
1211
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1212
 
    if(ret == ARGP_ERR_UNKNOWN){
1213
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1214
 
      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;
1215
1147
      goto end;
1216
1148
    }
1217
1149
  }
1219
1151
  if(not debug){
1220
1152
    avahi_set_log_function(empty_log);
1221
1153
  }
1222
 
 
1223
 
  if(interface[0] == '\0'){
1224
 
    struct dirent **direntries;
1225
 
    ret = scandir(sys_class_net, &direntries, good_interface,
1226
 
                  alphasort);
1227
 
    if(ret >= 1){
1228
 
      /* Pick the first good interface */
1229
 
      interface = strdup(direntries[0]->d_name);
1230
 
      if(debug){
1231
 
        fprintf(stderr, "Using interface \"%s\"\n", interface);
1232
 
      }
1233
 
      if(interface == NULL){
1234
 
        perror("malloc");
1235
 
        free(direntries);
1236
 
        exitcode = EXIT_FAILURE;
1237
 
        goto end;
1238
 
      }
1239
 
      free(direntries);
1240
 
    } else {
1241
 
      free(direntries);
1242
 
      fprintf(stderr, "Could not find a network interface\n");
1243
 
      exitcode = EXIT_FAILURE;
1244
 
      goto end;
1245
 
    }
1246
 
  }
1247
1154
  
1248
1155
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1249
1156
     from the signal handler */
1320
1227
  }
1321
1228
  
1322
1229
  /* If the interface is down, bring it up */
1323
 
  if(strcmp(interface, "none") != 0){
 
1230
  if(interface[0] != '\0'){
1324
1231
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1325
1232
    if(if_index == 0){
1326
1233
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1341
1248
    
1342
1249
#ifdef __linux__
1343
1250
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1344
 
       messages to mess up the prompt */
 
1251
       messages about the network interface to mess up the prompt */
1345
1252
    ret = klogctl(8, NULL, 5);
1346
1253
    bool restore_loglevel = true;
1347
1254
    if(ret == -1){
1397
1304
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1398
1305
      if(ret == -1){
1399
1306
        take_down_interface = false;
1400
 
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1307
        perror("ioctl SIOCSIFFLAGS");
1401
1308
        exitcode = EXIT_FAILURE;
1402
1309
#ifdef __linux__
1403
1310
        if(restore_loglevel){
1651
1558
      if(ret == -1){
1652
1559
        perror("ioctl SIOCGIFFLAGS");
1653
1560
      } else if(network.ifr_flags & IFF_UP) {
1654
 
        network.ifr_flags &= ~IFF_UP; /* clear flag */
 
1561
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1655
1562
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1656
1563
        if(ret == -1){
1657
 
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
 
1564
          perror("ioctl SIOCSIFFLAGS");
1658
1565
        }
1659
1566
      }
1660
1567
      ret = (int)TEMP_FAILURE_RETRY(close(sd));