254
247
rc = gpgme_data_new_from_fd(&pgp_data, fd);
255
248
if(rc != GPG_ERR_NO_ERROR){
256
fprintf(stderr, "Mandos plugin mandos-client: "
257
"bad gpgme_data_new_from_fd: %s: %s\n",
249
fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
258
250
gpgme_strsource(rc), gpgme_strerror(rc));
262
254
rc = gpgme_op_import(mc.ctx, pgp_data);
263
255
if(rc != GPG_ERR_NO_ERROR){
264
fprintf(stderr, "Mandos plugin mandos-client: "
265
"bad gpgme_op_import: %s: %s\n",
256
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
266
257
gpgme_strsource(rc), gpgme_strerror(rc));
279
fprintf(stderr, "Mandos plugin mandos-client: "
280
"Initializing GPGME\n");
270
fprintf(stderr, "Initializing GPGME\n");
284
274
gpgme_check_version(NULL);
285
275
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
286
276
if(rc != GPG_ERR_NO_ERROR){
287
fprintf(stderr, "Mandos plugin mandos-client: "
288
"bad gpgme_engine_check_version: %s: %s\n",
277
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
289
278
gpgme_strsource(rc), gpgme_strerror(rc));
293
/* Set GPGME home directory for the OpenPGP engine only */
282
/* Set GPGME home directory for the OpenPGP engine only */
294
283
rc = gpgme_get_engine_info(&engine_info);
295
284
if(rc != GPG_ERR_NO_ERROR){
296
fprintf(stderr, "Mandos plugin mandos-client: "
297
"bad gpgme_get_engine_info: %s: %s\n",
285
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
298
286
gpgme_strsource(rc), gpgme_strerror(rc));
371
354
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
372
355
if(rc != GPG_ERR_NO_ERROR){
373
fprintf(stderr, "Mandos plugin mandos-client: "
374
"bad gpgme_op_decrypt: %s: %s\n",
356
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
375
357
gpgme_strsource(rc), gpgme_strerror(rc));
376
358
plaintext_length = -1;
378
360
gpgme_decrypt_result_t result;
379
361
result = gpgme_op_decrypt_result(mc.ctx);
380
362
if(result == NULL){
381
fprintf(stderr, "Mandos plugin mandos-client: "
382
"gpgme_op_decrypt_result failed\n");
363
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
384
fprintf(stderr, "Mandos plugin mandos-client: "
385
"Unsupported algorithm: %s\n",
365
fprintf(stderr, "Unsupported algorithm: %s\n",
386
366
result->unsupported_algorithm);
387
fprintf(stderr, "Mandos plugin mandos-client: "
388
"Wrong key usage: %u\n",
367
fprintf(stderr, "Wrong key usage: %u\n",
389
368
result->wrong_key_usage);
390
369
if(result->file_name != NULL){
391
fprintf(stderr, "Mandos plugin mandos-client: "
392
"File name: %s\n", result->file_name);
370
fprintf(stderr, "File name: %s\n", result->file_name);
394
372
gpgme_recipient_t recipient;
395
373
recipient = result->recipients;
396
374
while(recipient != NULL){
397
fprintf(stderr, "Mandos plugin mandos-client: "
398
"Public key algorithm: %s\n",
375
fprintf(stderr, "Public key algorithm: %s\n",
399
376
gpgme_pubkey_algo_name(recipient->pubkey_algo));
400
fprintf(stderr, "Mandos plugin mandos-client: "
401
"Key ID: %s\n", recipient->keyid);
402
fprintf(stderr, "Mandos plugin mandos-client: "
403
"Secret key available: %s\n",
377
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
378
fprintf(stderr, "Secret key available: %s\n",
404
379
recipient->status == GPG_ERR_NO_SECKEY
406
381
recipient = recipient->next;
526
500
GNUTLS_OPENPGP_FMT_BASE64);
527
501
if(ret != GNUTLS_E_SUCCESS){
529
"Mandos plugin mandos-client: "
530
503
"Error[%d] while reading the OpenPGP key pair ('%s',"
531
504
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
532
fprintf(stderr, "Mandos plugin mandos-client: "
533
"The GnuTLS error is: %s\n", safer_gnutls_strerror(ret));
505
fprintf(stderr, "The GnuTLS error is: %s\n",
506
safer_gnutls_strerror(ret));
537
510
/* GnuTLS server initialization */
538
511
ret = gnutls_dh_params_init(&mc.dh_params);
539
512
if(ret != GNUTLS_E_SUCCESS){
540
fprintf(stderr, "Mandos plugin mandos-client: "
541
"Error in GnuTLS DH parameter initialization:"
513
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
542
514
" %s\n", safer_gnutls_strerror(ret));
545
517
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
546
518
if(ret != GNUTLS_E_SUCCESS){
547
fprintf(stderr, "Mandos plugin mandos-client: "
548
"Error in GnuTLS prime generation: %s\n",
519
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
549
520
safer_gnutls_strerror(ret));
1132
1084
errno = old_errno;
1135
bool get_flags(const char *ifname, struct ifreq *ifr){
1138
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1140
perror_plus("socket");
1143
strcpy(ifr->ifr_name, ifname);
1144
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1088
* This function determines if a directory entry in /sys/class/net
1089
* corresponds to an acceptable network device.
1090
* (This function is passed to scandir(3) as a filter function.)
1092
int good_interface(const struct dirent *if_entry){
1094
char *flagname = NULL;
1095
if(if_entry->d_name[0] == '.'){
1098
int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1101
perror_plus("asprintf");
1104
int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1106
perror_plus("open");
1111
typedef short ifreq_flags; /* ifreq.ifr_flags in netdevice(7) */
1112
/* read line from flags_fd */
1113
ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1114
char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1115
flagstring[(size_t)to_read] = '\0';
1116
if(flagstring == NULL){
1117
perror_plus("malloc");
1122
ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1125
perror_plus("read");
1139
tmpmax = strtoimax(flagstring, &tmp, 0);
1140
if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1141
and not (isspace(*tmp)))
1142
or tmpmax != (ifreq_flags)tmpmax){
1147
perror_plus("ioctl SIOCGIFFLAGS");
1144
fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1145
flagstring, if_entry->d_name);
1154
bool good_flags(const char *ifname, const struct ifreq *ifr){
1151
ifreq_flags flags = (ifreq_flags)tmpmax;
1156
1152
/* Reject the loopback device */
1157
if(ifr->ifr_flags & IFF_LOOPBACK){
1153
if(flags & IFF_LOOPBACK){
1159
fprintf(stderr, "Mandos plugin mandos-client: "
1160
"Rejecting loopback interface \"%s\"\n", ifname);
1155
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1164
1160
/* Accept point-to-point devices only if connect_to is specified */
1165
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1161
if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1167
fprintf(stderr, "Mandos plugin mandos-client: "
1168
"Accepting point-to-point interface \"%s\"\n", ifname);
1163
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1172
1168
/* Otherwise, reject non-broadcast-capable devices */
1173
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1169
if(not (flags & IFF_BROADCAST)){
1175
fprintf(stderr, "Mandos plugin mandos-client: "
1176
"Rejecting non-broadcast interface \"%s\"\n", ifname);
1171
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1180
1176
/* Reject non-ARP interfaces (including dummy interfaces) */
1181
if(ifr->ifr_flags & IFF_NOARP){
1177
if(flags & IFF_NOARP){
1183
fprintf(stderr, "Mandos plugin mandos-client: "
1184
"Rejecting non-ARP interface \"%s\"\n", ifname);
1179
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
1189
1184
/* Accept this device */
1191
fprintf(stderr, "Mandos plugin mandos-client: "
1192
"Interface \"%s\" is good\n", ifname);
1198
* This function determines if a directory entry in /sys/class/net
1199
* corresponds to an acceptable network device.
1200
* (This function is passed to scandir(3) as a filter function.)
1202
int good_interface(const struct dirent *if_entry){
1203
if(if_entry->d_name[0] == '.'){
1208
if(not get_flags(if_entry->d_name, &ifr)){
1210
fprintf(stderr, "Mandos plugin mandos-client: "
1211
"Failed to get flags for interface \"%s\"\n",
1217
if(not good_flags(if_entry->d_name, &ifr)){
1224
* This function determines if a directory entry in /sys/class/net
1225
* corresponds to an acceptable network device which is up.
1226
* (This function is passed to scandir(3) as a filter function.)
1228
int up_interface(const struct dirent *if_entry){
1229
if(if_entry->d_name[0] == '.'){
1234
if(not get_flags(if_entry->d_name, &ifr)){
1236
fprintf(stderr, "Mandos plugin mandos-client: "
1237
"Failed to get flags for interface \"%s\"\n",
1243
/* Reject down interfaces */
1244
if(not (ifr.ifr_flags & IFF_UP)){
1246
fprintf(stderr, "Mandos plugin mandos-client: "
1247
"Rejecting down interface \"%s\"\n",
1253
/* Reject non-running interfaces */
1254
if(not (ifr.ifr_flags & IFF_RUNNING)){
1256
fprintf(stderr, "Mandos plugin mandos-client: "
1257
"Rejecting non-running interface \"%s\"\n",
1263
if(not good_flags(if_entry->d_name, &ifr)){
1186
fprintf(stderr, "Interface \"%s\" is acceptable\n",
1280
/* Is this directory entry a runnable program? */
1281
int runnable_hook(const struct dirent *direntry){
1286
if((direntry->d_name)[0] == '\0'){
1291
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1292
"abcdefghijklmnopqrstuvwxyz"
1295
if((direntry->d_name)[sret] != '\0'){
1296
/* Contains non-allowed characters */
1298
fprintf(stderr, "Mandos plugin mandos-client: "
1299
"Ignoring hook \"%s\" with bad name\n",
1305
char *fullname = NULL;
1306
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1308
perror_plus("asprintf");
1312
ret = stat(fullname, &st);
1315
perror_plus("Could not stat hook");
1319
if(not (S_ISREG(st.st_mode))){
1320
/* Not a regular file */
1322
fprintf(stderr, "Mandos plugin mandos-client: "
1323
"Ignoring hook \"%s\" - not a file\n",
1328
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1329
/* Not executable */
1331
fprintf(stderr, "Mandos plugin mandos-client: "
1332
"Ignoring hook \"%s\" - not executable\n",
1340
1203
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1342
1205
struct timespec now;
1343
1206
struct timespec waited_time;
1344
1207
intmax_t block_time;
1347
1210
if(mc.current_server == NULL){
1349
fprintf(stderr, "Mandos plugin mandos-client: "
1350
"Wait until first server is found. No timeout!\n");
1212
fprintf(stderr, "Wait until first server is found. No timeout!\n");
1352
1214
ret = avahi_simple_poll_iterate(s, -1);
1355
fprintf(stderr, "Mandos plugin mandos-client: "
1356
"Check current_server if we should run it,"
1217
fprintf(stderr, "Check current_server if we should run it, or wait\n");
1359
1219
/* the current time */
1360
1220
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1365
1225
/* Calculating in ms how long time between now and server
1366
1226
who we visted longest time ago. Now - last seen. */
1367
waited_time.tv_sec = (now.tv_sec
1368
- mc.current_server->last_seen.tv_sec);
1369
waited_time.tv_nsec = (now.tv_nsec
1370
- mc.current_server->last_seen.tv_nsec);
1371
/* total time is 10s/10,000ms.
1372
Converting to s from ms by dividing by 1,000,
1373
and ns to ms by dividing by 1,000,000. */
1374
block_time = ((retry_interval
1375
- ((intmax_t)waited_time.tv_sec * 1000))
1376
- ((intmax_t)waited_time.tv_nsec / 1000000));
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);
1379
fprintf(stderr, "Mandos plugin mandos-client: "
1380
"Blocking for %" PRIdMAX " ms\n", block_time);
1233
fprintf(stderr, "Blocking for %ld ms\n", block_time);
1383
1236
if(block_time <= 0){
1384
1237
ret = start_mandos_communication(mc.current_server->ip,
1385
mc.current_server->port,
1386
mc.current_server->if_index,
1387
mc.current_server->af);
1238
mc.current_server->port,
1239
mc.current_server->if_index,
1240
mc.current_server->af);
1389
1242
avahi_simple_poll_quit(mc.simple_poll);
1392
ret = clock_gettime(CLOCK_MONOTONIC,
1393
&mc.current_server->last_seen);
1245
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
1395
1247
perror_plus("clock_gettime");
1398
1250
mc.current_server = mc.current_server->next;
1399
block_time = 0; /* Call avahi to find new Mandos
1400
servers, but don't block */
1251
block_time = 0; /* call avahi to find new mandos servers, but dont block */
1403
1254
ret = avahi_simple_poll_iterate(s, (int)block_time);
1406
if (ret > 0 or errno != EINTR){
1257
if (ret > 0 or errno != EINTR) {
1407
1258
return (ret != 1) ? ret : 0;
1413
bool run_network_hooks(const char *mode, const char *interface,
1415
struct dirent **direntries;
1416
struct dirent *direntry;
1418
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1421
perror_plus("scandir");
1423
int devnull = open("/dev/null", O_RDONLY);
1424
for(int i = 0; i < numhooks; i++){
1425
direntry = direntries[0];
1426
char *fullname = NULL;
1427
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1429
perror_plus("asprintf");
1432
pid_t hook_pid = fork();
1435
dup2(devnull, STDIN_FILENO);
1437
dup2(STDERR_FILENO, STDOUT_FILENO);
1438
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1440
perror_plus("setenv");
1443
ret = setenv("DEVICE", interface, 1);
1445
perror_plus("setenv");
1448
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1450
perror_plus("setenv");
1453
ret = setenv("MODE", mode, 1);
1455
perror_plus("setenv");
1459
ret = asprintf(&delaystring, "%f", delay);
1461
perror_plus("asprintf");
1464
ret = setenv("DELAY", delaystring, 1);
1467
perror_plus("setenv");
1471
ret = execl(fullname, direntry->d_name, mode, NULL);
1472
perror_plus("execl");
1475
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1476
perror_plus("waitpid");
1480
if(WIFEXITED(status)){
1481
if(WEXITSTATUS(status) != 0){
1482
fprintf(stderr, "Mandos plugin mandos-client: "
1483
"Warning: network hook \"%s\" exited"
1484
" with status %d\n", direntry->d_name,
1485
WEXITSTATUS(status));
1489
} else if(WIFSIGNALED(status)){
1490
fprintf(stderr, "Mandos plugin mandos-client: "
1491
"Warning: network hook \"%s\" died by"
1492
" signal %d\n", direntry->d_name,
1497
fprintf(stderr, "Mandos plugin mandos-client: "
1498
"Warning: network hook \"%s\" crashed\n",
1514
1264
int main(int argc, char *argv[]){
1515
1265
AvahiSServiceBrowser *sb = NULL;
1709
/* Work around Debian bug #633582:
1710
<http://bugs.debian.org/633582> */
1713
/* Re-raise priviliges */
1717
perror_plus("seteuid");
1720
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1721
int seckey_fd = open(seckey, O_RDONLY);
1722
if(seckey_fd == -1){
1723
perror_plus("open");
1725
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1727
perror_plus("fstat");
1729
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1730
ret = fchown(seckey_fd, uid, gid);
1732
perror_plus("fchown");
1736
TEMP_FAILURE_RETRY(close(seckey_fd));
1740
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1741
int pubkey_fd = open(pubkey, O_RDONLY);
1742
if(pubkey_fd == -1){
1743
perror_plus("open");
1745
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1747
perror_plus("fstat");
1749
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1750
ret = fchown(pubkey_fd, uid, gid);
1752
perror_plus("fchown");
1756
TEMP_FAILURE_RETRY(close(pubkey_fd));
1760
/* Lower privileges */
1764
perror_plus("seteuid");
1768
/* Run network hooks */
1770
/* Re-raise priviliges */
1774
perror_plus("seteuid");
1776
if(not run_network_hooks("start", interface, delay)){
1779
/* Lower privileges */
1783
perror_plus("seteuid");
1788
1449
avahi_set_log_function(empty_log);
1791
1452
if(interface[0] == '\0'){
1792
1453
struct dirent **direntries;
1793
/* First look for interfaces that are up */
1794
ret = scandir(sys_class_net, &direntries, up_interface,
1454
ret = scandir(sys_class_net, &direntries, good_interface,
1797
/* No up interfaces, look for any good interfaces */
1799
ret = scandir(sys_class_net, &direntries, good_interface,
1803
/* Pick the first interface returned */
1457
/* Pick the first good interface */
1804
1458
interface = strdup(direntries[0]->d_name);
1806
fprintf(stderr, "Mandos plugin mandos-client: "
1807
"Using interface \"%s\"\n", interface);
1460
fprintf(stderr, "Using interface \"%s\"\n", interface);
1809
1462
if(interface == NULL){
1810
1463
perror_plus("malloc");
2200
1841
/* Run the main loop */
2203
fprintf(stderr, "Mandos plugin mandos-client: "
2204
"Starting Avahi loop search\n");
1844
fprintf(stderr, "Starting Avahi loop search\n");
2207
ret = avahi_loop_with_timeout(mc.simple_poll,
2208
(int)(retry_interval * 1000));
1847
ret = avahi_loop_with_timeout(mc.simple_poll, (int)(retry_interval * 1000));
2210
fprintf(stderr, "Mandos plugin mandos-client: "
2211
"avahi_loop_with_timeout exited %s\n",
1849
fprintf(stderr, "avahi_loop_with_timeout exited %s\n",
2212
1850
(ret == 0) ? "successfully" : "with error");
2218
fprintf(stderr, "Mandos plugin mandos-client: "
2219
"%s exiting\n", argv[0]);
1856
fprintf(stderr, "%s exiting\n", argv[0]);
2222
1859
/* Cleanup things */