74
74
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
75
75
getuid(), getgid(), seteuid(),
76
setgid(), pause(), _exit() */
77
77
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
78
78
#include <iso646.h> /* not, or, and */
79
79
#include <argp.h> /* struct argp_option, error_t, struct
86
86
#include <sysexits.h> /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
87
87
EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
89
WEXITSTATUS(), WTERMSIG() */
90
#include <grp.h> /* setgroups() */
93
90
#include <sys/klog.h> /* klogctl() */
175
171
perror(print_text);
178
int fprintf_plus(FILE *stream, const char *format, ...){
180
va_start (ap, format);
182
TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
183
program_invocation_short_name));
184
return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
188
175
* Make additional room in "buffer" for at least BUFFER_SIZE more
189
176
* bytes. "buffer_capacity" is how much is currently allocated,
190
177
* "buffer_length" is how much is already used.
192
179
size_t incbuffer(char **buffer, size_t buffer_length,
193
size_t buffer_capacity){
180
size_t buffer_capacity){
194
181
if(buffer_length + BUFFER_SIZE > buffer_capacity){
195
182
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
196
183
if(buffer == NULL){
264
252
rc = gpgme_data_new_from_fd(&pgp_data, fd);
265
253
if(rc != GPG_ERR_NO_ERROR){
266
fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
267
gpgme_strsource(rc), gpgme_strerror(rc));
254
fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
255
gpgme_strsource(rc), gpgme_strerror(rc));
271
259
rc = gpgme_op_import(mc.ctx, pgp_data);
272
260
if(rc != GPG_ERR_NO_ERROR){
273
fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
274
gpgme_strsource(rc), gpgme_strerror(rc));
261
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
262
gpgme_strsource(rc), gpgme_strerror(rc));
287
fprintf_plus(stderr, "Initializing GPGME\n");
275
fprintf(stderr, "Initializing GPGME\n");
291
279
gpgme_check_version(NULL);
292
280
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
293
281
if(rc != GPG_ERR_NO_ERROR){
294
fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
295
gpgme_strsource(rc), gpgme_strerror(rc));
282
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
283
gpgme_strsource(rc), gpgme_strerror(rc));
299
287
/* Set GPGME home directory for the OpenPGP engine only */
300
288
rc = gpgme_get_engine_info(&engine_info);
301
289
if(rc != GPG_ERR_NO_ERROR){
302
fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
303
gpgme_strsource(rc), gpgme_strerror(rc));
290
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
291
gpgme_strsource(rc), gpgme_strerror(rc));
306
294
while(engine_info != NULL){
312
300
engine_info = engine_info->next;
314
302
if(engine_info == NULL){
315
fprintf_plus(stderr, "Could not set GPGME home dir to %s\n",
303
fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
320
307
/* Create new GPGME "context" */
321
308
rc = gpgme_new(&(mc.ctx));
322
309
if(rc != GPG_ERR_NO_ERROR){
323
fprintf_plus(stderr, "Mandos plugin mandos-client: "
324
"bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
310
fprintf(stderr, "bad gpgme_new: %s: %s\n",
311
gpgme_strsource(rc), gpgme_strerror(rc));
347
333
ssize_t plaintext_length = 0;
350
fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
336
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
353
339
/* Create new GPGME data buffer from memory cryptotext */
354
340
rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
356
342
if(rc != GPG_ERR_NO_ERROR){
357
fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
358
gpgme_strsource(rc), gpgme_strerror(rc));
343
fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
344
gpgme_strsource(rc), gpgme_strerror(rc));
362
348
/* Create new empty GPGME data buffer for the plaintext */
363
349
rc = gpgme_data_new(&dh_plain);
364
350
if(rc != GPG_ERR_NO_ERROR){
365
fprintf_plus(stderr, "Mandos plugin mandos-client: "
366
"bad gpgme_data_new: %s: %s\n",
367
gpgme_strsource(rc), gpgme_strerror(rc));
351
fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
352
gpgme_strsource(rc), gpgme_strerror(rc));
368
353
gpgme_data_release(dh_crypto);
374
359
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
375
360
if(rc != GPG_ERR_NO_ERROR){
376
fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
377
gpgme_strsource(rc), gpgme_strerror(rc));
361
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
362
gpgme_strsource(rc), gpgme_strerror(rc));
378
363
plaintext_length = -1;
380
365
gpgme_decrypt_result_t result;
381
366
result = gpgme_op_decrypt_result(mc.ctx);
382
367
if(result == NULL){
383
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
368
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
385
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
386
result->unsupported_algorithm);
387
fprintf_plus(stderr, "Wrong key usage: %u\n",
388
result->wrong_key_usage);
370
fprintf(stderr, "Unsupported algorithm: %s\n",
371
result->unsupported_algorithm);
372
fprintf(stderr, "Wrong key usage: %u\n",
373
result->wrong_key_usage);
389
374
if(result->file_name != NULL){
390
fprintf_plus(stderr, "File name: %s\n", result->file_name);
375
fprintf(stderr, "File name: %s\n", result->file_name);
392
377
gpgme_recipient_t recipient;
393
378
recipient = result->recipients;
394
379
while(recipient != NULL){
395
fprintf_plus(stderr, "Public key algorithm: %s\n",
396
gpgme_pubkey_algo_name
397
(recipient->pubkey_algo));
398
fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
399
fprintf_plus(stderr, "Secret key available: %s\n",
400
recipient->status == GPG_ERR_NO_SECKEY
380
fprintf(stderr, "Public key algorithm: %s\n",
381
gpgme_pubkey_algo_name(recipient->pubkey_algo));
382
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
383
fprintf(stderr, "Secret key available: %s\n",
384
recipient->status == GPG_ERR_NO_SECKEY
402
386
recipient = recipient->next;
420
404
*plaintext = NULL;
422
406
plaintext_capacity = incbuffer(plaintext,
423
(size_t)plaintext_length,
407
(size_t)plaintext_length,
425
409
if(plaintext_capacity == 0){
426
perror_plus("incbuffer");
427
plaintext_length = -1;
410
perror_plus("incbuffer");
411
plaintext_length = -1;
431
415
ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
483
fprintf_plus(stderr, "Initializing GnuTLS\n");
467
fprintf(stderr, "Initializing GnuTLS\n");
486
470
ret = gnutls_global_init();
487
471
if(ret != GNUTLS_E_SUCCESS){
488
fprintf_plus(stderr, "GnuTLS global_init: %s\n",
489
safer_gnutls_strerror(ret));
472
fprintf(stderr, "GnuTLS global_init: %s\n",
473
safer_gnutls_strerror(ret));
501
485
/* OpenPGP credentials */
502
486
ret = gnutls_certificate_allocate_credentials(&mc.cred);
503
487
if(ret != GNUTLS_E_SUCCESS){
504
fprintf_plus(stderr, "GnuTLS memory error: %s\n",
505
safer_gnutls_strerror(ret));
488
fprintf(stderr, "GnuTLS memory error: %s\n",
489
safer_gnutls_strerror(ret));
506
490
gnutls_global_deinit();
511
fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
512
" secret key %s as GnuTLS credentials\n",
495
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
496
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
517
500
ret = gnutls_certificate_set_openpgp_key_file
518
501
(mc.cred, pubkeyfilename, seckeyfilename,
519
502
GNUTLS_OPENPGP_FMT_BASE64);
520
503
if(ret != GNUTLS_E_SUCCESS){
522
"Error[%d] while reading the OpenPGP key pair ('%s',"
523
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
524
fprintf_plus(stderr, "The GnuTLS error is: %s\n",
525
safer_gnutls_strerror(ret));
505
"Error[%d] while reading the OpenPGP key pair ('%s',"
506
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
507
fprintf(stderr, "The GnuTLS error is: %s\n",
508
safer_gnutls_strerror(ret));
529
512
/* GnuTLS server initialization */
530
513
ret = gnutls_dh_params_init(&mc.dh_params);
531
514
if(ret != GNUTLS_E_SUCCESS){
532
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
533
" initialization: %s\n",
534
safer_gnutls_strerror(ret));
515
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
516
" %s\n", safer_gnutls_strerror(ret));
537
519
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
538
520
if(ret != GNUTLS_E_SUCCESS){
539
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
540
safer_gnutls_strerror(ret));
521
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
522
safer_gnutls_strerror(ret));
579
560
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
580
561
if(ret != GNUTLS_E_SUCCESS){
581
fprintf_plus(stderr, "Syntax error at: %s\n", err);
582
fprintf_plus(stderr, "GnuTLS error: %s\n",
583
safer_gnutls_strerror(ret));
562
fprintf(stderr, "Syntax error at: %s\n", err);
563
fprintf(stderr, "GnuTLS error: %s\n",
564
safer_gnutls_strerror(ret));
584
565
gnutls_deinit(*session);
729
710
if(if_indextoname((unsigned int)if_index, interface) == NULL){
730
711
perror_plus("if_indextoname");
732
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
733
"\n", ip, interface, port);
713
fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
714
ip, interface, port);
736
fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
717
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
739
720
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
740
721
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
892
873
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
894
fprintf_plus(stderr, "*** GnuTLS Re-handshake failed "
875
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
896
876
gnutls_perror(ret);
902
fprintf_plus(stderr, "Unknown error while reading data from"
903
" encrypted session with Mandos server\n");
882
fprintf(stderr, "Unknown error while reading data from"
883
" encrypted session with Mandos server\n");
904
884
gnutls_bye(session, GNUTLS_SHUT_RDWR);
1012
993
case AVAHI_RESOLVER_FAILURE:
1013
fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
1014
"'%s' of type '%s' in domain '%s': %s\n", name, type,
1016
avahi_strerror(avahi_server_errno(mc.server)));
994
fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
995
" of type '%s' in domain '%s': %s\n", name, type, domain,
996
avahi_strerror(avahi_server_errno(mc.server)));
1019
999
case AVAHI_RESOLVER_FOUND:
1021
1001
char ip[AVAHI_ADDRESS_STR_MAX];
1022
1002
avahi_address_snprint(ip, sizeof(ip), address);
1024
fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
1025
PRIdMAX ") on port %" PRIu16 "\n", name,
1026
host_name, ip, (intmax_t)interface, port);
1004
fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
1005
PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
1006
ip, (intmax_t)interface, port);
1028
1008
int ret = start_mandos_communication(ip, port, interface,
1029
1009
avahi_proto_to_af(proto));
1075
1055
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1076
1056
name, type, domain, protocol, 0,
1077
1057
resolve_callback, NULL) == NULL)
1078
fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1080
avahi_strerror(avahi_server_errno(mc.server)));
1058
fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
1059
name, avahi_strerror(avahi_server_errno(mc.server)));
1083
1062
case AVAHI_BROWSER_REMOVE:
1132
1110
/* Reject the loopback device */
1133
1111
if(ifr->ifr_flags & IFF_LOOPBACK){
1135
fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
1113
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1140
1118
/* Accept point-to-point devices only if connect_to is specified */
1141
1119
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1143
fprintf_plus(stderr, "Accepting point-to-point interface"
1144
" \"%s\"\n", ifname);
1121
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1148
1126
/* Otherwise, reject non-broadcast-capable devices */
1149
1127
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1151
fprintf_plus(stderr, "Rejecting non-broadcast interface"
1152
" \"%s\"\n", ifname);
1129
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1156
1134
/* Reject non-ARP interfaces (including dummy interfaces) */
1157
1135
if(ifr->ifr_flags & IFF_NOARP){
1159
fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
1137
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n", ifname);
1165
1142
/* Accept this device */
1167
fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
1144
fprintf(stderr, "Interface \"%s\" is good\n", ifname);
1262
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1263
"abcdefghijklmnopqrstuvwxyz"
1266
if((direntry->d_name)[sret] != '\0'){
1267
/* Contains non-allowed characters */
1269
fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
1275
char *fullname = NULL;
1276
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1278
perror_plus("asprintf");
1282
ret = stat(fullname, &st);
1238
/* Save pointer to last character */
1239
char *end = strchr(direntry->d_name, '\0')-1;
1246
if(((direntry->d_name)[0] == '#')
1248
/* Temporary #name# */
1252
/* XXX more rules here */
1254
ret = stat(direntry->d_name, &st);
1285
perror_plus("Could not stat hook");
1257
perror_plus("Could not stat plugin");
1289
1261
if(not (S_ISREG(st.st_mode))){
1290
1262
/* Not a regular file */
1292
fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
1297
1265
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1298
1266
/* Not executable */
1300
fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
1306
fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1319
1279
if(mc.current_server == NULL){
1321
fprintf_plus(stderr, "Wait until first server is found."
1282
"Wait until first server is found. No timeout!\n");
1324
1284
ret = avahi_simple_poll_iterate(s, -1);
1327
fprintf_plus(stderr, "Check current_server if we should run"
1287
fprintf(stderr, "Check current_server if we should run it,"
1330
1290
/* the current time */
1331
1291
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1374
1333
ret = avahi_simple_poll_iterate(s, (int)block_time);
1377
if (ret > 0 or errno != EINTR){
1336
if (ret > 0 or errno != EINTR) {
1378
1337
return (ret != 1) ? ret : 0;
1384
bool run_network_hooks(const char *mode, const char *interface,
1386
struct dirent **direntries;
1387
struct dirent *direntry;
1389
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1392
perror_plus("scandir");
1394
int devnull = open("/dev/null", O_RDONLY);
1395
for(int i = 0; i < numhooks; i++){
1396
direntry = direntries[i];
1397
char *fullname = NULL;
1398
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1400
perror_plus("asprintf");
1404
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1407
pid_t hook_pid = fork();
1410
/* Raise privileges */
1414
perror_plus("seteuid");
1416
/* Raise privileges even more */
1420
perror_plus("setuid");
1426
perror_plus("setgid");
1428
/* Reset supplementary groups */
1430
ret = setgroups(0, NULL);
1432
perror_plus("setgroups");
1434
dup2(devnull, STDIN_FILENO);
1436
dup2(STDERR_FILENO, STDOUT_FILENO);
1437
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1439
perror_plus("setenv");
1442
ret = setenv("DEVICE", interface, 1);
1444
perror_plus("setenv");
1447
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1449
perror_plus("setenv");
1452
ret = setenv("MODE", mode, 1);
1454
perror_plus("setenv");
1458
ret = asprintf(&delaystring, "%f", delay);
1460
perror_plus("asprintf");
1463
ret = setenv("DELAY", delaystring, 1);
1466
perror_plus("setenv");
1470
ret = execl(fullname, direntry->d_name, mode, NULL);
1471
perror_plus("execl");
1474
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1475
perror_plus("waitpid");
1479
if(WIFEXITED(status)){
1480
if(WEXITSTATUS(status) != 0){
1481
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1482
" with status %d\n", direntry->d_name,
1483
WEXITSTATUS(status));
1487
} else if(WIFSIGNALED(status)){
1488
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1489
" signal %d\n", direntry->d_name,
1494
fprintf_plus(stderr, "Warning: network hook \"%s\""
1495
" crashed\n", direntry->d_name);
1502
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1511
1343
int main(int argc, char *argv[]){
1512
1344
AvahiSServiceBrowser *sb = NULL;
1671
1496
argp_state_help(state, state->out_stream,
1672
1497
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1673
1498
case 'V': /* --version */
1674
fprintf_plus(state->out_stream,
1675
"Mandos plugin mandos-client: ");
1676
fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1499
fprintf(state->out_stream, "%s\n", argp_program_version);
1677
1500
exit(argp_err_exit_status);
1707
1530
/* Work around Debian bug #633582:
1708
1531
<http://bugs.debian.org/633582> */
1710
1534
/* Re-raise priviliges */
1712
1536
ret = seteuid(0);
1714
1538
perror_plus("seteuid");
1718
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1719
int seckey_fd = open(seckey, O_RDONLY);
1720
if(seckey_fd == -1){
1721
perror_plus("open");
1723
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1725
perror_plus("fstat");
1727
if(S_ISREG(st.st_mode)
1728
and st.st_uid == 0 and st.st_gid == 0){
1729
ret = fchown(seckey_fd, uid, gid);
1731
perror_plus("fchown");
1735
TEMP_FAILURE_RETRY(close(seckey_fd));
1739
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1740
int pubkey_fd = open(pubkey, O_RDONLY);
1741
if(pubkey_fd == -1){
1742
perror_plus("open");
1744
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1746
perror_plus("fstat");
1748
if(S_ISREG(st.st_mode)
1749
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");
1541
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1542
int seckey_fd = open(seckey, O_RDONLY);
1543
if(seckey_fd == -1){
1544
perror_plus("open");
1546
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1548
perror_plus("fstat");
1550
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1551
ret = fchown(seckey_fd, uid, gid);
1553
perror_plus("fchown");
1557
TEMP_FAILURE_RETRY(close(seckey_fd));
1561
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1562
int pubkey_fd = open(pubkey, O_RDONLY);
1563
if(pubkey_fd == -1){
1564
perror_plus("open");
1566
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1568
perror_plus("fstat");
1570
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1571
ret = fchown(pubkey_fd, uid, gid);
1573
perror_plus("fchown");
1577
TEMP_FAILURE_RETRY(close(pubkey_fd));
1581
/* Lower privileges */
1585
perror_plus("seteuid");
1769
/* Run network hooks */
1770
if(not run_network_hooks("start", interface, delay)){
1589
/* Find network hooks and run them */
1591
struct dirent **direntries;
1592
struct dirent *direntry;
1593
int numhooks = scandir(HOOKDIR, &direntries, runnable_hook,
1595
int devnull = open("/dev/null", O_RDONLY);
1596
for(int i = 0; i < numhooks; i++){
1597
direntry = direntries[0];
1598
char *fullname = NULL;
1599
ret = asprintf(&fullname, "%s/%s", tempdir,
1602
perror_plus("asprintf");
1605
pid_t hook_pid = fork();
1608
dup2(devnull, STDIN_FILENO);
1610
dup2(STDERR_FILENO, STDOUT_FILENO);
1611
setenv("DEVICE", interface, 1);
1612
setenv("VERBOSE", debug ? "1" : "0", 1);
1613
setenv("MODE", "start", 1);
1614
/* setenv( XXX more here */
1615
ret = execl(fullname, direntry->d_name, "start", NULL);
1616
perror_plus("execl");
2165
2024
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2166
2025
NULL, 0, browse_callback, NULL);
2167
2026
if(sb == NULL){
2168
fprintf_plus(stderr, "Failed to create service browser: %s\n",
2169
avahi_strerror(avahi_server_errno(mc.server)));
2027
fprintf(stderr, "Failed to create service browser: %s\n",
2028
avahi_strerror(avahi_server_errno(mc.server)));
2170
2029
exitcode = EX_UNAVAILABLE;
2178
2037
/* Run the main loop */
2181
fprintf_plus(stderr, "Starting Avahi loop search\n");
2040
fprintf(stderr, "Starting Avahi loop search\n");
2184
2043
ret = avahi_loop_with_timeout(mc.simple_poll,
2185
2044
(int)(retry_interval * 1000));
2187
fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2188
(ret == 0) ? "successfully" : "with error");
2046
fprintf(stderr, "avahi_loop_with_timeout exited %s\n",
2047
(ret == 0) ? "successfully" : "with error");
2194
fprintf_plus(stderr, "%s exiting\n", argv[0]);
2053
fprintf(stderr, "%s exiting\n", argv[0]);
2197
2056
/* Cleanup things */
2228
/* Run network hooks */
2229
run_network_hooks("stop", interface, delay);
2087
/* XXX run network hooks "stop" here */
2231
/* Re-raise priviliges */
2089
/* Take down the network interface */
2090
if(take_down_interface){
2091
/* Re-raise priviliges */
2234
2093
ret = seteuid(0);
2236
2095
perror_plus("seteuid");
2239
/* Take down the network interface */
2240
if(take_down_interface and geteuid() == 0){
2241
2098
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2243
2100
perror_plus("ioctl SIOCGIFFLAGS");
2244
} else if(network.ifr_flags & IFF_UP){
2101
} else if(network.ifr_flags & IFF_UP) {
2245
2102
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2246
2103
ret = ioctl(sd, SIOCSIFFLAGS, &network);