/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: Björn Påhlsson
  • Date: 2011-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
64
#include <assert.h>             /* assert() */
65
 
#include <errno.h>              /* perror(), errno */
 
65
#include <errno.h>              /* perror(), errno, program_invocation_short_name */
66
66
#include <time.h>               /* nanosleep(), time(), sleep() */
67
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
68
                                   SIOCSIFFLAGS, if_indextoname(),
130
130
static const char sys_class_net[] = "/sys/class/net";
131
131
char *connect_to = NULL;
132
132
 
 
133
/* Doubly linked list that need to be circular linked when ever used */
 
134
typedef struct server{
 
135
  const char *ip;
 
136
  uint16_t port;
 
137
  AvahiIfIndex if_index;
 
138
  int af;
 
139
  struct timespec last_seen;
 
140
  struct server *next;
 
141
  struct server *prev;
 
142
} server;
 
143
 
133
144
/* Used for passing in values through the Avahi callback functions */
134
145
typedef struct {
135
146
  AvahiSimplePoll *simple_poll;
139
150
  gnutls_dh_params_t dh_params;
140
151
  const char *priority;
141
152
  gpgme_ctx_t ctx;
 
153
  server *current_server;
142
154
} mandos_context;
143
155
 
144
156
/* global context so signal handler can reach it*/
145
157
mandos_context mc = { .simple_poll = NULL, .server = NULL,
146
158
                      .dh_bits = 1024, .priority = "SECURE256"
147
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
159
                      ":!CTYPE-X.509:+CTYPE-OPENPGP", .current_server = NULL };
148
160
 
149
161
sig_atomic_t quit_now = 0;
150
162
int signal_received = 0;
151
163
 
 
164
/* Function to use when printing errors */
 
165
void perror_plus(const char *print_text){
 
166
  fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
 
167
  perror(print_text);
 
168
}
 
169
 
152
170
/*
153
171
 * Make additional room in "buffer" for at least BUFFER_SIZE more
154
172
 * bytes. "buffer_capacity" is how much is currently allocated,
166
184
  return buffer_capacity;
167
185
}
168
186
 
 
187
int add_server(const char *ip, uint16_t port,
 
188
                 AvahiIfIndex if_index,
 
189
                 int af){
 
190
  int ret;
 
191
  server *new_server = malloc(sizeof(server));
 
192
  if(new_server == NULL){
 
193
    perror_plus("malloc");
 
194
    return -1;
 
195
  }
 
196
  *new_server = (server){ .ip = strdup(ip),
 
197
                         .port = port,
 
198
                         .if_index = if_index,
 
199
                         .af = af };
 
200
  if(new_server->ip == NULL){
 
201
    perror_plus("strdup");
 
202
    return -1;    
 
203
  }
 
204
  /* uniqe case of first server */
 
205
  if (mc.current_server == NULL){
 
206
    new_server->next = new_server;
 
207
    new_server->prev = new_server;
 
208
    mc.current_server = new_server;
 
209
  /* Placing the new server last in the list */
 
210
  } else {
 
211
    new_server->next = mc.current_server;
 
212
    new_server->prev = mc.current_server->prev;
 
213
    new_server->prev->next = new_server;
 
214
    mc.current_server->prev = new_server;
 
215
  }
 
216
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
 
217
  if(ret == -1){
 
218
    perror_plus("clock_gettime");
 
219
    return -1;
 
220
  }
 
221
  return 0;
 
222
}
 
223
 
169
224
/* 
170
225
 * Initialize GPGME.
171
226
 */
185
240
    
186
241
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
187
242
    if(fd == -1){
188
 
      perror("open");
 
243
      perror_plus("open");
189
244
      return false;
190
245
    }
191
246
    
205
260
    
206
261
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
207
262
    if(ret == -1){
208
 
      perror("close");
 
263
      perror_plus("close");
209
264
    }
210
265
    gpgme_data_release(pgp_data);
211
266
    return true;
336
391
  
337
392
  /* Seek back to the beginning of the GPGME plaintext data buffer */
338
393
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
339
 
    perror("gpgme_data_seek");
 
394
    perror_plus("gpgme_data_seek");
340
395
    plaintext_length = -1;
341
396
    goto decrypt_end;
342
397
  }
347
402
                                      (size_t)plaintext_length,
348
403
                                      plaintext_capacity);
349
404
    if(plaintext_capacity == 0){
350
 
        perror("incbuffer");
 
405
        perror_plus("incbuffer");
351
406
        plaintext_length = -1;
352
407
        goto decrypt_end;
353
408
    }
360
415
      break;
361
416
    }
362
417
    if(ret < 0){
363
 
      perror("gpgme_data_read");
 
418
      perror_plus("gpgme_data_read");
364
419
      plaintext_length = -1;
365
420
      goto decrypt_end;
366
421
    }
589
644
  tcp_sd = socket(pf, SOCK_STREAM, 0);
590
645
  if(tcp_sd < 0){
591
646
    int e = errno;
592
 
    perror("socket");
 
647
    perror_plus("socket");
593
648
    errno = e;
594
649
    goto mandos_end;
595
650
  }
609
664
  }
610
665
  if(ret < 0 ){
611
666
    int e = errno;
612
 
    perror("inet_pton");
 
667
    perror_plus("inet_pton");
613
668
    errno = e;
614
669
    goto mandos_end;
615
670
  }
651
706
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
652
707
      char interface[IF_NAMESIZE];
653
708
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
654
 
        perror("if_indextoname");
 
709
        perror_plus("if_indextoname");
655
710
      } else {
656
711
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
657
712
                ip, interface, port);
671
726
                        sizeof(addrstr));
672
727
    }
673
728
    if(pcret == NULL){
674
 
      perror("inet_ntop");
 
729
      perror_plus("inet_ntop");
675
730
    } else {
676
731
      if(strcmp(addrstr, ip) != 0){
677
732
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
692
747
  if(ret < 0){
693
748
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
694
749
      int e = errno;
695
 
      perror("connect");
 
750
      perror_plus("connect");
696
751
      errno = e;
697
752
    }
698
753
    goto mandos_end;
711
766
                                   out_size - written));
712
767
    if(ret == -1){
713
768
      int e = errno;
714
 
      perror("write");
 
769
      perror_plus("write");
715
770
      errno = e;
716
771
      goto mandos_end;
717
772
    }
741
796
    errno = EINTR;
742
797
    goto mandos_end;
743
798
  }
744
 
  
 
799
 
 
800
  /* Spurious warnings from -Wint-to-pointer-cast */
745
801
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
746
802
  
747
803
  if(quit_now){
784
840
                                   buffer_capacity);
785
841
    if(buffer_capacity == 0){
786
842
      int e = errno;
787
 
      perror("incbuffer");
 
843
      perror_plus("incbuffer");
788
844
      errno = e;
789
845
      goto mandos_end;
790
846
    }
895
951
      if(e == 0){
896
952
        e = errno;
897
953
      }
898
 
      perror("close");
 
954
      perror_plus("close");
899
955
    }
900
956
    gnutls_deinit(session);
 
957
    errno = e;
901
958
    if(quit_now){
902
 
      e = EINTR;
 
959
      errno = EINTR;
903
960
      retval = -1;
904
961
    }
905
 
    errno = e;
906
962
  }
907
963
  return retval;
908
964
}
951
1007
                                           avahi_proto_to_af(proto));
952
1008
      if(ret == 0){
953
1009
        avahi_simple_poll_quit(mc.simple_poll);
 
1010
      } else {
 
1011
        ret = add_server(ip, port, interface,
 
1012
                         avahi_proto_to_af(proto));
954
1013
      }
955
1014
    }
956
1015
  }
1010
1069
  }
1011
1070
}
1012
1071
 
1013
 
/* stop main loop after sigterm has been called */
 
1072
/* Signal handler that stops main loop after sigterm has been called */
1014
1073
static void handle_sigterm(int sig){
1015
1074
  if(quit_now){
1016
1075
    return;
1018
1077
  quit_now = 1;
1019
1078
  signal_received = sig;
1020
1079
  int old_errno = errno;
 
1080
  /* set main loop to exit */
1021
1081
  if(mc.simple_poll != NULL){
1022
1082
    avahi_simple_poll_quit(mc.simple_poll);
1023
1083
  }
1032
1092
int good_interface(const struct dirent *if_entry){
1033
1093
  ssize_t ssret;
1034
1094
  char *flagname = NULL;
 
1095
  if(if_entry->d_name[0] == '.'){
 
1096
    return 0;
 
1097
  }
1035
1098
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1036
1099
                     if_entry->d_name);
1037
1100
  if(ret < 0){
1038
 
    perror("asprintf");
1039
 
    return 0;
1040
 
  }
1041
 
  if(if_entry->d_name[0] == '.'){
 
1101
    perror_plus("asprintf");
1042
1102
    return 0;
1043
1103
  }
1044
1104
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1045
1105
  if(flags_fd == -1){
1046
 
    perror("open");
 
1106
    perror_plus("open");
 
1107
    free(flagname);
1047
1108
    return 0;
1048
1109
  }
 
1110
  free(flagname);
1049
1111
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
1050
1112
  /* read line from flags_fd */
1051
1113
  ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1052
1114
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1053
1115
  flagstring[(size_t)to_read] = '\0';
1054
1116
  if(flagstring == NULL){
1055
 
    perror("malloc");
 
1117
    perror_plus("malloc");
1056
1118
    close(flags_fd);
1057
1119
    return 0;
1058
1120
  }
1060
1122
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1061
1123
                                             (size_t)to_read));
1062
1124
    if(ssret == -1){
1063
 
      perror("read");
 
1125
      perror_plus("read");
1064
1126
      free(flagstring);
1065
1127
      close(flags_fd);
1066
1128
      return 0;
1111
1173
    }
1112
1174
    return 0;
1113
1175
  }
 
1176
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1177
  if(flags & IFF_NOARP){
 
1178
    if(debug){
 
1179
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1180
              if_entry->d_name);
 
1181
    }
 
1182
    return 0;
 
1183
  }
1114
1184
  /* Accept this device */
1115
1185
  if(debug){
1116
1186
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
1119
1189
  return 1;
1120
1190
}
1121
1191
 
 
1192
int notdotentries(const struct dirent *direntry){
 
1193
  /* Skip "." and ".." */
 
1194
  if(direntry->d_name[0] == '.'
 
1195
     and (direntry->d_name[1] == '\0'
 
1196
          or (direntry->d_name[1] == '.'
 
1197
              and direntry->d_name[2] == '\0'))){
 
1198
    return 0;
 
1199
  }
 
1200
  return 1;
 
1201
}
 
1202
 
 
1203
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
 
1204
  int ret;
 
1205
  struct timespec now;
 
1206
  struct timespec waited_time;
 
1207
  intmax_t block_time;
 
1208
 
 
1209
  while(true){
 
1210
    if(mc.current_server == NULL){
 
1211
      if (debug){
 
1212
        fprintf(stderr, "Wait until first server is found. No timeout!\n");     
 
1213
      }
 
1214
      ret = avahi_simple_poll_iterate(s, -1);
 
1215
    } else {
 
1216
      if (debug){
 
1217
        fprintf(stderr, "Check current_server if we should run it, or wait\n"); 
 
1218
      }
 
1219
      /* the current time */
 
1220
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
 
1221
      if(ret == -1){
 
1222
        perror_plus("clock_gettime");
 
1223
        return -1;
 
1224
      }
 
1225
      /* Calculating in ms how long time between now and server
 
1226
         who we visted longest time ago. Now - last seen.  */
 
1227
      waited_time.tv_sec = now.tv_sec - mc.current_server->last_seen.tv_sec;
 
1228
      waited_time.tv_nsec = now.tv_nsec - mc.current_server->last_seen.tv_nsec;
 
1229
      /* total time is 10s/10000ms. Converting to s to ms by 1000/s, and ns to ms by divind by 1000000. */
 
1230
      block_time = (retry_interval - ((intmax_t)waited_time.tv_sec * 1000)) - ((intmax_t)waited_time.tv_nsec / 1000000);
 
1231
 
 
1232
      if (debug){
 
1233
        fprintf(stderr, "Blocking for %ld ms\n", block_time);   
 
1234
      }
 
1235
 
 
1236
      if(block_time <= 0){
 
1237
        ret = start_mandos_communication(mc.current_server->ip,
 
1238
                                   mc.current_server->port,
 
1239
                                   mc.current_server->if_index,
 
1240
                                   mc.current_server->af);
 
1241
        if(ret == 0){
 
1242
          avahi_simple_poll_quit(mc.simple_poll);
 
1243
          return 0;
 
1244
        }
 
1245
        ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
 
1246
        if(ret == -1){
 
1247
          perror_plus("clock_gettime");
 
1248
          return -1;
 
1249
        }
 
1250
        mc.current_server = mc.current_server->next;
 
1251
        block_time = 0;         /* call avahi to find new mandos servers, but dont block */
 
1252
      }
 
1253
      
 
1254
      ret = avahi_simple_poll_iterate(s, (int)block_time);
 
1255
    }
 
1256
    if(ret != 0){
 
1257
      if (ret > 0 or errno != EINTR) {
 
1258
        return (ret != 1) ? ret : 0;
 
1259
      }
 
1260
    }
 
1261
  }
 
1262
}
 
1263
 
1122
1264
int main(int argc, char *argv[]){
1123
1265
  AvahiSServiceBrowser *sb = NULL;
1124
1266
  int error;
1141
1283
  bool gnutls_initialized = false;
1142
1284
  bool gpgme_initialized = false;
1143
1285
  float delay = 2.5f;
 
1286
  double retry_interval = 10; /* 10s between retrying a server and checking again*/
1144
1287
  
1145
1288
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
1146
1289
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1152
1295
  errno = 0;
1153
1296
  ret = setgid(gid);
1154
1297
  if(ret == -1){
1155
 
    perror("setgid");
 
1298
    perror_plus("setgid");
1156
1299
  }
1157
1300
  
1158
1301
  /* Lower user privileges (temporarily) */
1159
1302
  errno = 0;
1160
1303
  ret = seteuid(uid);
1161
1304
  if(ret == -1){
1162
 
    perror("seteuid");
 
1305
    perror_plus("seteuid");
1163
1306
  }
1164
1307
  
1165
1308
  if(quit_now){
1200
1343
        .arg = "SECONDS",
1201
1344
        .doc = "Maximum delay to wait for interface startup",
1202
1345
        .group = 2 },
 
1346
      { .name = "retry", .key = 132,
 
1347
        .arg = "SECONDS",
 
1348
        .doc = "Retry interval used when denied by the mandos server",
 
1349
        .group = 2 },
1203
1350
      /*
1204
1351
       * These reproduce what we would get without ARGP_NO_HELP
1205
1352
       */
1249
1396
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1250
1397
          argp_error(state, "Bad delay");
1251
1398
        }
 
1399
      case 132:                 /* --retry */
 
1400
        errno = 0;
 
1401
        retry_interval = strtod(arg, &tmp);
 
1402
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1403
           or (retry_interval * 1000) > INT_MAX){
 
1404
          argp_error(state, "Bad retry interval");
 
1405
        }
1252
1406
        break;
1253
1407
        /*
1254
1408
         * These reproduce what we would get without ARGP_NO_HELP
1282
1436
    case ENOMEM:
1283
1437
    default:
1284
1438
      errno = ret;
1285
 
      perror("argp_parse");
 
1439
      perror_plus("argp_parse");
1286
1440
      exitcode = EX_OSERR;
1287
1441
      goto end;
1288
1442
    case EINVAL:
1306
1460
        fprintf(stderr, "Using interface \"%s\"\n", interface);
1307
1461
      }
1308
1462
      if(interface == NULL){
1309
 
        perror("malloc");
 
1463
        perror_plus("malloc");
1310
1464
        free(direntries);
1311
1465
        exitcode = EXIT_FAILURE;
1312
1466
        goto end;
1334
1488
  sigemptyset(&sigterm_action.sa_mask);
1335
1489
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1336
1490
  if(ret == -1){
1337
 
    perror("sigaddset");
 
1491
    perror_plus("sigaddset");
1338
1492
    exitcode = EX_OSERR;
1339
1493
    goto end;
1340
1494
  }
1341
1495
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1342
1496
  if(ret == -1){
1343
 
    perror("sigaddset");
 
1497
    perror_plus("sigaddset");
1344
1498
    exitcode = EX_OSERR;
1345
1499
    goto end;
1346
1500
  }
1347
1501
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1348
1502
  if(ret == -1){
1349
 
    perror("sigaddset");
 
1503
    perror_plus("sigaddset");
1350
1504
    exitcode = EX_OSERR;
1351
1505
    goto end;
1352
1506
  }
1356
1510
  */
1357
1511
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1358
1512
  if(ret == -1){
1359
 
    perror("sigaction");
 
1513
    perror_plus("sigaction");
1360
1514
    return EX_OSERR;
1361
1515
  }
1362
1516
  if(old_sigterm_action.sa_handler != SIG_IGN){
1363
1517
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1364
1518
    if(ret == -1){
1365
 
      perror("sigaction");
 
1519
      perror_plus("sigaction");
1366
1520
      exitcode = EX_OSERR;
1367
1521
      goto end;
1368
1522
    }
1369
1523
  }
1370
1524
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1371
1525
  if(ret == -1){
1372
 
    perror("sigaction");
 
1526
    perror_plus("sigaction");
1373
1527
    return EX_OSERR;
1374
1528
  }
1375
1529
  if(old_sigterm_action.sa_handler != SIG_IGN){
1376
1530
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1377
1531
    if(ret == -1){
1378
 
      perror("sigaction");
 
1532
      perror_plus("sigaction");
1379
1533
      exitcode = EX_OSERR;
1380
1534
      goto end;
1381
1535
    }
1382
1536
  }
1383
1537
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1384
1538
  if(ret == -1){
1385
 
    perror("sigaction");
 
1539
    perror_plus("sigaction");
1386
1540
    return EX_OSERR;
1387
1541
  }
1388
1542
  if(old_sigterm_action.sa_handler != SIG_IGN){
1389
1543
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1390
1544
    if(ret == -1){
1391
 
      perror("sigaction");
 
1545
      perror_plus("sigaction");
1392
1546
      exitcode = EX_OSERR;
1393
1547
      goto end;
1394
1548
    }
1411
1565
    errno = 0;
1412
1566
    ret = seteuid(0);
1413
1567
    if(ret == -1){
1414
 
      perror("seteuid");
 
1568
      perror_plus("seteuid");
1415
1569
    }
1416
1570
    
1417
1571
#ifdef __linux__
1421
1575
    bool restore_loglevel = true;
1422
1576
    if(ret == -1){
1423
1577
      restore_loglevel = false;
1424
 
      perror("klogctl");
 
1578
      perror_plus("klogctl");
1425
1579
    }
1426
1580
#endif  /* __linux__ */
1427
1581
    
1428
1582
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1429
1583
    if(sd < 0){
1430
 
      perror("socket");
 
1584
      perror_plus("socket");
1431
1585
      exitcode = EX_OSERR;
1432
1586
#ifdef __linux__
1433
1587
      if(restore_loglevel){
1434
1588
        ret = klogctl(7, NULL, 0);
1435
1589
        if(ret == -1){
1436
 
          perror("klogctl");
 
1590
          perror_plus("klogctl");
1437
1591
        }
1438
1592
      }
1439
1593
#endif  /* __linux__ */
1441
1595
      errno = 0;
1442
1596
      ret = seteuid(uid);
1443
1597
      if(ret == -1){
1444
 
        perror("seteuid");
 
1598
        perror_plus("seteuid");
1445
1599
      }
1446
1600
      goto end;
1447
1601
    }
1448
1602
    strcpy(network.ifr_name, interface);
1449
1603
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1450
1604
    if(ret == -1){
1451
 
      perror("ioctl SIOCGIFFLAGS");
 
1605
      perror_plus("ioctl SIOCGIFFLAGS");
1452
1606
#ifdef __linux__
1453
1607
      if(restore_loglevel){
1454
1608
        ret = klogctl(7, NULL, 0);
1455
1609
        if(ret == -1){
1456
 
          perror("klogctl");
 
1610
          perror_plus("klogctl");
1457
1611
        }
1458
1612
      }
1459
1613
#endif  /* __linux__ */
1462
1616
      errno = 0;
1463
1617
      ret = seteuid(uid);
1464
1618
      if(ret == -1){
1465
 
        perror("seteuid");
 
1619
        perror_plus("seteuid");
1466
1620
      }
1467
1621
      goto end;
1468
1622
    }
1472
1626
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1473
1627
      if(ret == -1){
1474
1628
        take_down_interface = false;
1475
 
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1629
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1476
1630
        exitcode = EX_OSERR;
1477
1631
#ifdef __linux__
1478
1632
        if(restore_loglevel){
1479
1633
          ret = klogctl(7, NULL, 0);
1480
1634
          if(ret == -1){
1481
 
            perror("klogctl");
 
1635
            perror_plus("klogctl");
1482
1636
          }
1483
1637
        }
1484
1638
#endif  /* __linux__ */
1486
1640
        errno = 0;
1487
1641
        ret = seteuid(uid);
1488
1642
        if(ret == -1){
1489
 
          perror("seteuid");
 
1643
          perror_plus("seteuid");
1490
1644
        }
1491
1645
        goto end;
1492
1646
      }
1493
1647
    }
1494
 
    /* sleep checking until interface is running */
 
1648
    /* sleep checking until interface is running. Check every 0.25s, up to total time of delay */
1495
1649
    for(int i=0; i < delay * 4; i++){
1496
1650
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1497
1651
      if(ret == -1){
1498
 
        perror("ioctl SIOCGIFFLAGS");
 
1652
        perror_plus("ioctl SIOCGIFFLAGS");
1499
1653
      } else if(network.ifr_flags & IFF_RUNNING){
1500
1654
        break;
1501
1655
      }
1502
1656
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1503
1657
      ret = nanosleep(&sleeptime, NULL);
1504
1658
      if(ret == -1 and errno != EINTR){
1505
 
        perror("nanosleep");
 
1659
        perror_plus("nanosleep");
1506
1660
      }
1507
1661
    }
1508
1662
    if(not take_down_interface){
1509
1663
      /* We won't need the socket anymore */
1510
1664
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1511
1665
      if(ret == -1){
1512
 
        perror("close");
 
1666
        perror_plus("close");
1513
1667
      }
1514
1668
    }
1515
1669
#ifdef __linux__
1517
1671
      /* Restores kernel loglevel to default */
1518
1672
      ret = klogctl(7, NULL, 0);
1519
1673
      if(ret == -1){
1520
 
        perror("klogctl");
 
1674
        perror_plus("klogctl");
1521
1675
      }
1522
1676
    }
1523
1677
#endif  /* __linux__ */
1527
1681
      /* Lower privileges */
1528
1682
      ret = seteuid(uid);
1529
1683
      if(ret == -1){
1530
 
        perror("seteuid");
 
1684
        perror_plus("seteuid");
1531
1685
      }
1532
1686
    } else {
1533
1687
      /* Lower privileges permanently */
1534
1688
      ret = setuid(uid);
1535
1689
      if(ret == -1){
1536
 
        perror("setuid");
 
1690
        perror_plus("setuid");
1537
1691
      }
1538
1692
    }
1539
1693
  }
1555
1709
    goto end;
1556
1710
  }
1557
1711
  
 
1712
  if(mkdtemp(tempdir) == NULL){
 
1713
    perror_plus("mkdtemp");
 
1714
    goto end;
 
1715
  }
1558
1716
  tempdir_created = true;
1559
 
  if(mkdtemp(tempdir) == NULL){
1560
 
    tempdir_created = false;
1561
 
    perror("mkdtemp");
1562
 
    goto end;
1563
 
  }
1564
1717
  
1565
1718
  if(quit_now){
1566
1719
    goto end;
1626
1779
      if(quit_now or ret == 0){
1627
1780
        break;
1628
1781
      }
1629
 
      sleep(15);
 
1782
      sleep((int)retry_interval or 1);
1630
1783
    };
1631
1784
 
1632
1785
    if (not quit_now){
1690
1843
  if(debug){
1691
1844
    fprintf(stderr, "Starting Avahi loop search\n");
1692
1845
  }
1693
 
  
1694
 
  avahi_simple_poll_loop(mc.simple_poll);
 
1846
 
 
1847
  ret = avahi_loop_with_timeout(mc.simple_poll, (int)(retry_interval * 1000));
 
1848
  if(debug){
 
1849
    fprintf(stderr, "avahi_loop_with_timeout exited %s\n",
 
1850
            (ret == 0) ? "successfully" : "with error");
 
1851
  }
1695
1852
  
1696
1853
 end:
1697
1854
  
1718
1875
  if(gpgme_initialized){
1719
1876
    gpgme_release(mc.ctx);
1720
1877
  }
 
1878
 
 
1879
  /* cleans up the circular linked list of mandos servers the client has seen */
 
1880
  if(mc.current_server != NULL){
 
1881
    mc.current_server->prev->next = NULL;
 
1882
    while(mc.current_server != NULL){
 
1883
      server *next = mc.current_server->next;
 
1884
      free(mc.current_server);
 
1885
      mc.current_server = next;
 
1886
    }
 
1887
  }
1721
1888
  
1722
1889
  /* Take down the network interface */
1723
1890
  if(take_down_interface){
1725
1892
    errno = 0;
1726
1893
    ret = seteuid(0);
1727
1894
    if(ret == -1){
1728
 
      perror("seteuid");
 
1895
      perror_plus("seteuid");
1729
1896
    }
1730
1897
    if(geteuid() == 0){
1731
1898
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1732
1899
      if(ret == -1){
1733
 
        perror("ioctl SIOCGIFFLAGS");
 
1900
        perror_plus("ioctl SIOCGIFFLAGS");
1734
1901
      } else if(network.ifr_flags & IFF_UP) {
1735
1902
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1736
1903
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
1737
1904
        if(ret == -1){
1738
 
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
 
1905
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1739
1906
        }
1740
1907
      }
1741
1908
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1742
1909
      if(ret == -1){
1743
 
        perror("close");
 
1910
        perror_plus("close");
1744
1911
      }
1745
1912
      /* Lower privileges permanently */
1746
1913
      errno = 0;
1747
1914
      ret = setuid(uid);
1748
1915
      if(ret == -1){
1749
 
        perror("setuid");
 
1916
        perror_plus("setuid");
1750
1917
      }
1751
1918
    }
1752
1919
  }
1753
1920
  
1754
 
  /* Removes the temp directory used by GPGME */
 
1921
  /* Removes the GPGME temp directory and all files inside */
1755
1922
  if(tempdir_created){
1756
 
    DIR *d;
1757
 
    struct dirent *direntry;
1758
 
    d = opendir(tempdir);
1759
 
    if(d == NULL){
1760
 
      if(errno != ENOENT){
1761
 
        perror("opendir");
1762
 
      }
1763
 
    } else {
1764
 
      while(true){
1765
 
        direntry = readdir(d);
1766
 
        if(direntry == NULL){
1767
 
          break;
1768
 
        }
1769
 
        /* Skip "." and ".." */
1770
 
        if(direntry->d_name[0] == '.'
1771
 
           and (direntry->d_name[1] == '\0'
1772
 
                or (direntry->d_name[1] == '.'
1773
 
                    and direntry->d_name[2] == '\0'))){
1774
 
          continue;
1775
 
        }
 
1923
    struct dirent **direntries = NULL;
 
1924
    struct dirent *direntry = NULL;
 
1925
    ret = scandir(tempdir, &direntries, notdotentries, alphasort);
 
1926
    if (ret > 0){
 
1927
      for(int i = 0; i < ret; i++){
 
1928
        direntry = direntries[i];
1776
1929
        char *fullname = NULL;
1777
1930
        ret = asprintf(&fullname, "%s/%s", tempdir,
1778
1931
                       direntry->d_name);
1779
1932
        if(ret < 0){
1780
 
          perror("asprintf");
 
1933
          perror_plus("asprintf");
1781
1934
          continue;
1782
1935
        }
1783
1936
        ret = remove(fullname);
1787
1940
        }
1788
1941
        free(fullname);
1789
1942
      }
1790
 
      closedir(d);
 
1943
    }
 
1944
 
 
1945
    /* need to be cleaned even if ret == 0 because man page dont specify */
 
1946
    free(direntries);
 
1947
    if (ret == -1){
 
1948
      perror_plus("scandir");
1791
1949
    }
1792
1950
    ret = rmdir(tempdir);
1793
1951
    if(ret == -1 and errno != ENOENT){
1794
 
      perror("rmdir");
 
1952
      perror_plus("rmdir");
1795
1953
    }
1796
1954
  }
1797
1955
  
1802
1960
                                            &old_sigterm_action,
1803
1961
                                            NULL));
1804
1962
    if(ret == -1){
1805
 
      perror("sigaction");
 
1963
      perror_plus("sigaction");
1806
1964
    }
1807
1965
    do {
1808
1966
      ret = raise(signal_received);
1809
1967
    } while(ret != 0 and errno == EINTR);
1810
1968
    if(ret != 0){
1811
 
      perror("raise");
 
1969
      perror_plus("raise");
1812
1970
      abort();
1813
1971
    }
1814
1972
    TEMP_FAILURE_RETRY(pause());