72
71
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
74
73
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
75
getuid(), getgid(), seteuid(),
77
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
74
getuid(), getgid(), setuid(),
76
#include <arpa/inet.h> /* inet_pton(), htons */
78
77
#include <iso646.h> /* not, or, and */
79
78
#include <argp.h> /* struct argp_option, error_t, struct
80
79
argp_state, struct argp,
81
80
argp_parse(), ARGP_KEY_ARG,
82
81
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
83
82
#include <signal.h> /* sigemptyset(), sigaddset(),
84
sigaction(), SIGTERM, sig_atomic_t,
86
#include <sysexits.h> /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
87
EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
89
WEXITSTATUS(), WTERMSIG() */
83
sigaction(), SIGTERM, sigaction,
92
87
#include <sys/klog.h> /* klogctl() */
249
173
* Helper function to insert pub and seckey to the engine keyring.
251
175
bool import_key(const char *filename){
254
177
gpgme_data_t pgp_data;
256
179
fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
262
185
rc = gpgme_data_new_from_fd(&pgp_data, fd);
263
186
if(rc != GPG_ERR_NO_ERROR){
264
fprintf(stderr, "Mandos plugin mandos-client: "
265
"bad gpgme_data_new_from_fd: %s: %s\n",
187
fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
266
188
gpgme_strsource(rc), gpgme_strerror(rc));
270
192
rc = gpgme_op_import(mc.ctx, pgp_data);
271
193
if(rc != GPG_ERR_NO_ERROR){
272
fprintf(stderr, "Mandos plugin mandos-client: "
273
"bad gpgme_op_import: %s: %s\n",
194
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
274
195
gpgme_strsource(rc), gpgme_strerror(rc));
278
199
ret = (int)TEMP_FAILURE_RETRY(close(fd));
280
perror_plus("close");
282
203
gpgme_data_release(pgp_data);
287
fprintf(stderr, "Mandos plugin mandos-client: "
288
"Initializing GPGME\n");
208
fprintf(stderr, "Initializing GPGME\n");
292
212
gpgme_check_version(NULL);
293
213
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
294
214
if(rc != GPG_ERR_NO_ERROR){
295
fprintf(stderr, "Mandos plugin mandos-client: "
296
"bad gpgme_engine_check_version: %s: %s\n",
215
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
297
216
gpgme_strsource(rc), gpgme_strerror(rc));
301
/* Set GPGME home directory for the OpenPGP engine only */
220
/* Set GPGME home directory for the OpenPGP engine only */
302
221
rc = gpgme_get_engine_info(&engine_info);
303
222
if(rc != GPG_ERR_NO_ERROR){
304
fprintf(stderr, "Mandos plugin mandos-client: "
305
"bad gpgme_get_engine_info: %s: %s\n",
223
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
306
224
gpgme_strsource(rc), gpgme_strerror(rc));
379
292
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
380
293
if(rc != GPG_ERR_NO_ERROR){
381
fprintf(stderr, "Mandos plugin mandos-client: "
382
"bad gpgme_op_decrypt: %s: %s\n",
294
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
383
295
gpgme_strsource(rc), gpgme_strerror(rc));
384
296
plaintext_length = -1;
386
298
gpgme_decrypt_result_t result;
387
299
result = gpgme_op_decrypt_result(mc.ctx);
388
300
if(result == NULL){
389
fprintf(stderr, "Mandos plugin mandos-client: "
390
"gpgme_op_decrypt_result failed\n");
301
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
392
fprintf(stderr, "Mandos plugin mandos-client: "
393
"Unsupported algorithm: %s\n",
303
fprintf(stderr, "Unsupported algorithm: %s\n",
394
304
result->unsupported_algorithm);
395
fprintf(stderr, "Mandos plugin mandos-client: "
396
"Wrong key usage: %u\n",
305
fprintf(stderr, "Wrong key usage: %u\n",
397
306
result->wrong_key_usage);
398
307
if(result->file_name != NULL){
399
fprintf(stderr, "Mandos plugin mandos-client: "
400
"File name: %s\n", result->file_name);
308
fprintf(stderr, "File name: %s\n", result->file_name);
402
310
gpgme_recipient_t recipient;
403
311
recipient = result->recipients;
404
312
while(recipient != NULL){
405
fprintf(stderr, "Mandos plugin mandos-client: "
406
"Public key algorithm: %s\n",
313
fprintf(stderr, "Public key algorithm: %s\n",
407
314
gpgme_pubkey_algo_name(recipient->pubkey_algo));
408
fprintf(stderr, "Mandos plugin mandos-client: "
409
"Key ID: %s\n", recipient->keyid);
410
fprintf(stderr, "Mandos plugin mandos-client: "
411
"Secret key available: %s\n",
315
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
316
fprintf(stderr, "Secret key available: %s\n",
412
317
recipient->status == GPG_ERR_NO_SECKEY
414
319
recipient = recipient->next;
534
438
GNUTLS_OPENPGP_FMT_BASE64);
535
439
if(ret != GNUTLS_E_SUCCESS){
537
"Mandos plugin mandos-client: "
538
441
"Error[%d] while reading the OpenPGP key pair ('%s',"
539
442
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
540
fprintf(stderr, "Mandos plugin mandos-client: "
541
"The GnuTLS error is: %s\n", safer_gnutls_strerror(ret));
443
fprintf(stderr, "The GnuTLS error is: %s\n",
444
safer_gnutls_strerror(ret));
545
448
/* GnuTLS server initialization */
546
449
ret = gnutls_dh_params_init(&mc.dh_params);
547
450
if(ret != GNUTLS_E_SUCCESS){
548
fprintf(stderr, "Mandos plugin mandos-client: "
549
"Error in GnuTLS DH parameter initialization:"
451
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
550
452
" %s\n", safer_gnutls_strerror(ret));
553
455
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
554
456
if(ret != GNUTLS_E_SUCCESS){
555
fprintf(stderr, "Mandos plugin mandos-client: "
556
"Error in GnuTLS prime generation: %s\n",
457
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
557
458
safer_gnutls_strerror(ret));
573
474
static int init_gnutls_session(gnutls_session_t *session){
575
476
/* GnuTLS session creation */
577
ret = gnutls_init(session, GNUTLS_SERVER);
581
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
477
ret = gnutls_init(session, GNUTLS_SERVER);
582
478
if(ret != GNUTLS_E_SUCCESS){
583
fprintf(stderr, "Mandos plugin mandos-client: "
584
"Error in GnuTLS session initialization: %s\n",
479
fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
585
480
safer_gnutls_strerror(ret));
591
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
593
gnutls_deinit(*session);
596
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
485
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
597
486
if(ret != GNUTLS_E_SUCCESS){
598
fprintf(stderr, "Mandos plugin mandos-client: "
599
"Syntax error at: %s\n", err);
600
fprintf(stderr, "Mandos plugin mandos-client: "
601
"GnuTLS error: %s\n", safer_gnutls_strerror(ret));
487
fprintf(stderr, "Syntax error at: %s\n", err);
488
fprintf(stderr, "GnuTLS error: %s\n",
489
safer_gnutls_strerror(ret));
602
490
gnutls_deinit(*session);
608
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
611
gnutls_deinit(*session);
614
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
495
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
615
497
if(ret != GNUTLS_E_SUCCESS){
616
fprintf(stderr, "Mandos plugin mandos-client: "
617
"Error setting GnuTLS credentials: %s\n",
498
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
618
499
safer_gnutls_strerror(ret));
619
500
gnutls_deinit(*session);
623
504
/* ignore client certificate if any. */
624
gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
505
gnutls_certificate_server_set_request(*session,
626
508
gnutls_dh_set_prime_bits(*session, mc.dh_bits);
942
fprintf(stderr, "Mandos plugin mandos-client: "
943
"Closing TLS session\n");
952
ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
957
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
738
fprintf(stderr, "Closing TLS session\n");
741
gnutls_bye(session, GNUTLS_SHUT_RDWR);
959
743
if(buffer_length > 0){
960
ssize_t decrypted_buffer_size;
961
decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
744
decrypted_buffer_size = pgp_packet_decrypt(buffer,
962
746
&decrypted_buffer);
963
747
if(decrypted_buffer_size >= 0){
966
749
while(written < (size_t) decrypted_buffer_size){
972
750
ret = (int)fwrite(decrypted_buffer + written, 1,
973
751
(size_t)decrypted_buffer_size - written,
975
753
if(ret == 0 and ferror(stdout)){
978
fprintf(stderr, "Mandos plugin mandos-client: "
979
"Error writing encrypted data: %s\n",
755
fprintf(stderr, "Error writing encrypted data: %s\n",
980
756
strerror(errno));
985
761
written += (size_t)ret;
763
free(decrypted_buffer);
991
771
/* Shutdown procedure */
996
free(decrypted_buffer);
999
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
1005
perror_plus("close");
1007
gnutls_deinit(session);
775
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
779
gnutls_deinit(session);
783
sig_atomic_t quit_now = 0;
1017
785
static void resolve_callback(AvahiSServiceResolver *r,
1018
786
AvahiIfIndex interface,
1019
787
AvahiProtocol proto,
1118
875
case AVAHI_BROWSER_ALL_FOR_NOW:
1119
876
case AVAHI_BROWSER_CACHE_EXHAUSTED:
1121
fprintf(stderr, "Mandos plugin mandos-client: "
1122
"No Mandos server found, still searching...\n");
878
fprintf(stderr, "No Mandos server found, still searching...\n");
1128
/* Signal handler that stops main loop after SIGTERM */
1129
static void handle_sigterm(int sig){
884
/* stop main loop after sigterm has been called */
885
static void handle_sigterm(__attribute__((unused)) int sig){
1134
signal_received = sig;
1135
890
int old_errno = errno;
1136
/* set main loop to exit */
1137
891
if(mc.simple_poll != NULL){
1138
892
avahi_simple_poll_quit(mc.simple_poll);
1140
894
errno = old_errno;
1143
bool get_flags(const char *ifname, struct ifreq *ifr){
1146
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1148
perror_plus("socket");
1151
strcpy(ifr->ifr_name, ifname);
1152
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1155
perror_plus("ioctl SIOCGIFFLAGS");
1162
bool good_flags(const char *ifname, const struct ifreq *ifr){
1164
/* Reject the loopback device */
1165
if(ifr->ifr_flags & IFF_LOOPBACK){
1167
fprintf(stderr, "Mandos plugin mandos-client: "
1168
"Rejecting loopback interface \"%s\"\n", ifname);
1172
/* Accept point-to-point devices only if connect_to is specified */
1173
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1175
fprintf(stderr, "Mandos plugin mandos-client: "
1176
"Accepting point-to-point interface \"%s\"\n", ifname);
1180
/* Otherwise, reject non-broadcast-capable devices */
1181
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1183
fprintf(stderr, "Mandos plugin mandos-client: "
1184
"Rejecting non-broadcast interface \"%s\"\n", ifname);
1188
/* Reject non-ARP interfaces (including dummy interfaces) */
1189
if(ifr->ifr_flags & IFF_NOARP){
1191
fprintf(stderr, "Mandos plugin mandos-client: "
1192
"Rejecting non-ARP interface \"%s\"\n", ifname);
1197
/* Accept this device */
1199
fprintf(stderr, "Mandos plugin mandos-client: "
1200
"Interface \"%s\" is good\n", ifname);
1206
* This function determines if a directory entry in /sys/class/net
1207
* corresponds to an acceptable network device.
1208
* (This function is passed to scandir(3) as a filter function.)
1210
int good_interface(const struct dirent *if_entry){
1211
if(if_entry->d_name[0] == '.'){
1216
if(not get_flags(if_entry->d_name, &ifr)){
1218
fprintf(stderr, "Mandos plugin mandos-client: "
1219
"Failed to get flags for interface \"%s\"\n",
1225
if(not good_flags(if_entry->d_name, &ifr)){
1232
* This function determines if a directory entry in /sys/class/net
1233
* corresponds to an acceptable network device which is up.
1234
* (This function is passed to scandir(3) as a filter function.)
1236
int up_interface(const struct dirent *if_entry){
1237
if(if_entry->d_name[0] == '.'){
1242
if(not get_flags(if_entry->d_name, &ifr)){
1244
fprintf(stderr, "Mandos plugin mandos-client: "
1245
"Failed to get flags for interface \"%s\"\n",
1251
/* Reject down interfaces */
1252
if(not (ifr.ifr_flags & IFF_UP)){
1254
fprintf(stderr, "Mandos plugin mandos-client: "
1255
"Rejecting down interface \"%s\"\n",
1261
/* Reject non-running interfaces */
1262
if(not (ifr.ifr_flags & IFF_RUNNING)){
1264
fprintf(stderr, "Mandos plugin mandos-client: "
1265
"Rejecting non-running interface \"%s\"\n",
1271
if(not good_flags(if_entry->d_name, &ifr)){
1277
int notdotentries(const struct dirent *direntry){
1278
/* Skip "." and ".." */
1279
if(direntry->d_name[0] == '.'
1280
and (direntry->d_name[1] == '\0'
1281
or (direntry->d_name[1] == '.'
1282
and direntry->d_name[2] == '\0'))){
1288
/* Is this directory entry a runnable program? */
1289
int runnable_hook(const struct dirent *direntry){
1294
if((direntry->d_name)[0] == '\0'){
1299
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1300
"abcdefghijklmnopqrstuvwxyz"
1303
if((direntry->d_name)[sret] != '\0'){
1304
/* Contains non-allowed characters */
1306
fprintf(stderr, "Mandos plugin mandos-client: "
1307
"Ignoring hook \"%s\" with bad name\n",
1313
char *fullname = NULL;
1314
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1316
perror_plus("asprintf");
1320
ret = stat(fullname, &st);
1323
perror_plus("Could not stat hook");
1327
if(not (S_ISREG(st.st_mode))){
1328
/* Not a regular file */
1330
fprintf(stderr, "Mandos plugin mandos-client: "
1331
"Ignoring hook \"%s\" - not a file\n",
1336
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1337
/* Not executable */
1339
fprintf(stderr, "Mandos plugin mandos-client: "
1340
"Ignoring hook \"%s\" - not executable\n",
1348
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1350
struct timespec now;
1351
struct timespec waited_time;
1352
intmax_t block_time;
1355
if(mc.current_server == NULL){
1357
fprintf(stderr, "Mandos plugin mandos-client: "
1358
"Wait until first server is found. No timeout!\n");
1360
ret = avahi_simple_poll_iterate(s, -1);
1363
fprintf(stderr, "Mandos plugin mandos-client: "
1364
"Check current_server if we should run it,"
1367
/* the current time */
1368
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1370
perror_plus("clock_gettime");
1373
/* Calculating in ms how long time between now and server
1374
who we visted longest time ago. Now - last seen. */
1375
waited_time.tv_sec = (now.tv_sec
1376
- mc.current_server->last_seen.tv_sec);
1377
waited_time.tv_nsec = (now.tv_nsec
1378
- mc.current_server->last_seen.tv_nsec);
1379
/* total time is 10s/10,000ms.
1380
Converting to s from ms by dividing by 1,000,
1381
and ns to ms by dividing by 1,000,000. */
1382
block_time = ((retry_interval
1383
- ((intmax_t)waited_time.tv_sec * 1000))
1384
- ((intmax_t)waited_time.tv_nsec / 1000000));
1387
fprintf(stderr, "Mandos plugin mandos-client: "
1388
"Blocking for %" PRIdMAX " ms\n", block_time);
1391
if(block_time <= 0){
1392
ret = start_mandos_communication(mc.current_server->ip,
1393
mc.current_server->port,
1394
mc.current_server->if_index,
1395
mc.current_server->af);
1397
avahi_simple_poll_quit(mc.simple_poll);
1400
ret = clock_gettime(CLOCK_MONOTONIC,
1401
&mc.current_server->last_seen);
1403
perror_plus("clock_gettime");
1406
mc.current_server = mc.current_server->next;
1407
block_time = 0; /* Call avahi to find new Mandos
1408
servers, but don't block */
1411
ret = avahi_simple_poll_iterate(s, (int)block_time);
1414
if (ret > 0 or errno != EINTR){
1415
return (ret != 1) ? ret : 0;
1421
897
int main(int argc, char *argv[]){
1422
898
AvahiSServiceBrowser *sb = NULL;
1557
994
delay = strtof(arg, &tmp);
1558
995
if(errno != 0 or tmp == arg or *tmp != '\0'){
1559
argp_error(state, "Bad delay");
1561
case 132: /* --retry */
1563
retry_interval = strtod(arg, &tmp);
1564
if(errno != 0 or tmp == arg or *tmp != '\0'
1565
or (retry_interval * 1000) > INT_MAX
1566
or retry_interval < 0){
1567
argp_error(state, "Bad retry interval");
1570
case 133: /* --network-hook-dir */
1574
* These reproduce what we would get without ARGP_NO_HELP
1576
case '?': /* --help */
1577
argp_state_help(state, state->out_stream,
1578
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1579
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1580
case -3: /* --usage */
1581
argp_state_help(state, state->out_stream,
1582
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1583
case 'V': /* --version */
1584
fprintf(state->out_stream, "Mandos plugin mandos-client: ");
1585
fprintf(state->out_stream, "%s\n", argp_program_version);
1586
exit(argp_err_exit_status);
996
fprintf(stderr, "Bad delay\n");
1589
1005
return ARGP_ERR_UNKNOWN;
1594
1010
struct argp argp = { .options = options, .parser = parse_opt,
1595
1011
.args_doc = "",
1596
1012
.doc = "Mandos client -- Get and decrypt"
1597
1013
" passwords from a Mandos server" };
1598
ret = argp_parse(&argp, argc, argv,
1599
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1606
perror_plus("argp_parse");
1607
exitcode = EX_OSERR;
1610
exitcode = EX_USAGE;
1616
/* Work around Debian bug #633582:
1617
<http://bugs.debian.org/633582> */
1620
/* Re-raise priviliges */
1624
perror_plus("seteuid");
1627
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1628
int seckey_fd = open(seckey, O_RDONLY);
1629
if(seckey_fd == -1){
1630
perror_plus("open");
1632
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1634
perror_plus("fstat");
1636
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1637
ret = fchown(seckey_fd, uid, gid);
1639
perror_plus("fchown");
1643
TEMP_FAILURE_RETRY(close(seckey_fd));
1647
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1648
int pubkey_fd = open(pubkey, O_RDONLY);
1649
if(pubkey_fd == -1){
1650
perror_plus("open");
1652
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1654
perror_plus("fstat");
1656
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1657
ret = fchown(pubkey_fd, uid, gid);
1659
perror_plus("fchown");
1663
TEMP_FAILURE_RETRY(close(pubkey_fd));
1667
/* Lower privileges */
1671
perror_plus("seteuid");
1675
/* Find network hooks and run them */
1677
struct dirent **direntries;
1678
struct dirent *direntry;
1679
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1682
perror_plus("scandir");
1684
int devnull = open("/dev/null", O_RDONLY);
1685
for(int i = 0; i < numhooks; i++){
1686
direntry = direntries[0];
1687
char *fullname = NULL;
1688
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1690
perror_plus("asprintf");
1693
pid_t hook_pid = fork();
1696
dup2(devnull, STDIN_FILENO);
1698
dup2(STDERR_FILENO, STDOUT_FILENO);
1699
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1701
perror_plus("setenv");
1704
ret = setenv("DEVICE", interface, 1);
1706
perror_plus("setenv");
1709
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1711
perror_plus("setenv");
1714
ret = setenv("MODE", "start", 1);
1716
perror_plus("setenv");
1720
ret = asprintf(&delaystring, "%f", delay);
1722
perror_plus("asprintf");
1725
ret = setenv("DELAY", delaystring, 1);
1728
perror_plus("setenv");
1732
ret = execl(fullname, direntry->d_name, "start", NULL);
1733
perror_plus("execl");
1736
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1737
perror_plus("waitpid");
1741
if(WIFEXITED(status)){
1742
if(WEXITSTATUS(status) != 0){
1743
fprintf(stderr, "Mandos plugin mandos-client: "
1744
"Warning: network hook \"%s\" exited"
1745
" with status %d\n", direntry->d_name,
1746
WEXITSTATUS(status));
1750
} else if(WIFSIGNALED(status)){
1751
fprintf(stderr, "Mandos plugin mandos-client: "
1752
"Warning: network hook \"%s\" died by"
1753
" signal %d\n", direntry->d_name,
1758
fprintf(stderr, "Mandos plugin mandos-client: "
1759
"Warning: network hook \"%s\" crashed\n",
1014
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1015
if(ret == ARGP_ERR_UNKNOWN){
1016
fprintf(stderr, "Unknown error while parsing arguments\n");
1017
exitcode = EXIT_FAILURE;
1775
1023
avahi_set_log_function(empty_log);
1778
if(interface[0] == '\0'){
1779
struct dirent **direntries;
1780
/* First look for interfaces that are up */
1781
ret = scandir(sys_class_net, &direntries, up_interface,
1784
/* No up interfaces, look for any good interfaces */
1786
ret = scandir(sys_class_net, &direntries, good_interface,
1790
/* Pick the first interface returned */
1791
interface = strdup(direntries[0]->d_name);
1793
fprintf(stderr, "Mandos plugin mandos-client: "
1794
"Using interface \"%s\"\n", interface);
1796
if(interface == NULL){
1797
perror_plus("malloc");
1799
exitcode = EXIT_FAILURE;
1805
fprintf(stderr, "Mandos plugin mandos-client: "
1806
"Could not find a network interface\n");
1807
exitcode = EXIT_FAILURE;
1812
1026
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1813
1027
from the signal handler */
1814
1028
/* Initialize the pseudo-RNG for Avahi */
1815
1029
srand((unsigned int) time(NULL));
1816
1030
mc.simple_poll = avahi_simple_poll_new();
1817
1031
if(mc.simple_poll == NULL){
1818
fprintf(stderr, "Mandos plugin mandos-client: "
1819
"Avahi: Failed to create simple poll object.\n");
1820
exitcode = EX_UNAVAILABLE;
1032
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1033
exitcode = EXIT_FAILURE;
1824
1037
sigemptyset(&sigterm_action.sa_mask);
1825
1038
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1827
perror_plus("sigaddset");
1828
exitcode = EX_OSERR;
1040
perror("sigaddset");
1041
exitcode = EXIT_FAILURE;
1831
1044
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1833
perror_plus("sigaddset");
1834
exitcode = EX_OSERR;
1046
perror("sigaddset");
1047
exitcode = EXIT_FAILURE;
1837
1050
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1839
perror_plus("sigaddset");
1840
exitcode = EX_OSERR;
1843
/* Need to check if the handler is SIG_IGN before handling:
1844
| [[info:libc:Initial Signal Actions]] |
1845
| [[info:libc:Basic Signal Handling]] |
1847
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1849
perror_plus("sigaction");
1852
if(old_sigterm_action.sa_handler != SIG_IGN){
1853
ret = sigaction(SIGINT, &sigterm_action, NULL);
1855
perror_plus("sigaction");
1856
exitcode = EX_OSERR;
1860
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1862
perror_plus("sigaction");
1865
if(old_sigterm_action.sa_handler != SIG_IGN){
1866
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1868
perror_plus("sigaction");
1869
exitcode = EX_OSERR;
1873
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1875
perror_plus("sigaction");
1878
if(old_sigterm_action.sa_handler != SIG_IGN){
1879
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1881
perror_plus("sigaction");
1882
exitcode = EX_OSERR;
1052
perror("sigaddset");
1053
exitcode = EXIT_FAILURE;
1056
ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1058
perror("sigaction");
1059
exitcode = EXIT_FAILURE;
1887
1063
/* If the interface is down, bring it up */
1888
if(strcmp(interface, "none") != 0){
1064
if(interface[0] != '\0'){
1889
1065
if_index = (AvahiIfIndex) if_nametoindex(interface);
1890
1066
if(if_index == 0){
1891
fprintf(stderr, "Mandos plugin mandos-client: "
1892
"No such interface: \"%s\"\n", interface);
1893
exitcode = EX_UNAVAILABLE;
1067
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1068
exitcode = EXIT_FAILURE;
2233
1356
if(gpgme_initialized){
2234
1357
gpgme_release(mc.ctx);
2237
/* Cleans up the circular linked list of Mandos servers the client
2239
if(mc.current_server != NULL){
2240
mc.current_server->prev->next = NULL;
2241
while(mc.current_server != NULL){
2242
server *next = mc.current_server->next;
2243
free(mc.current_server);
2244
mc.current_server = next;
2248
/* XXX run network hooks "stop" here */
2250
1360
/* Take down the network interface */
2251
1361
if(take_down_interface){
2252
/* Re-raise priviliges */
1362
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2256
perror_plus("seteuid");
1364
perror("ioctl SIOCGIFFLAGS");
1365
} else if(network.ifr_flags & IFF_UP) {
1366
network.ifr_flags &= ~IFF_UP; /* clear flag */
1367
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1369
perror("ioctl SIOCSIFFLAGS");
2259
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2261
perror_plus("ioctl SIOCGIFFLAGS");
2262
} else if(network.ifr_flags & IFF_UP){
2263
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2264
ret = ioctl(sd, SIOCSIFFLAGS, &network);
2266
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2269
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2271
perror_plus("close");
2273
/* Lower privileges permanently */
2277
perror_plus("setuid");
1372
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2282
/* Removes the GPGME temp directory and all files inside */
1378
/* Removes the temp directory used by GPGME */
2283
1379
if(tempdir_created){
2284
struct dirent **direntries = NULL;
2285
struct dirent *direntry = NULL;
2286
int numentries = scandir(tempdir, &direntries, notdotentries,
2288
if (numentries > 0){
2289
for(int i = 0; i < numentries; i++){
2290
direntry = direntries[i];
1381
struct dirent *direntry;
1382
d = opendir(tempdir);
1384
if(errno != ENOENT){
1389
direntry = readdir(d);
1390
if(direntry == NULL){
1393
/* Skip "." and ".." */
1394
if(direntry->d_name[0] == '.'
1395
and (direntry->d_name[1] == '\0'
1396
or (direntry->d_name[1] == '.'
1397
and direntry->d_name[2] == '\0'))){
2291
1400
char *fullname = NULL;
2292
1401
ret = asprintf(&fullname, "%s/%s", tempdir,
2293
1402
direntry->d_name);
2295
perror_plus("asprintf");
2298
1407
ret = remove(fullname);
2300
fprintf(stderr, "Mandos plugin mandos-client: "
2301
"remove(\"%s\"): %s\n", fullname, strerror(errno));
1409
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
2303
1412
free(fullname);
2307
/* need to clean even if 0 because man page doesn't specify */
2309
if (numentries == -1){
2310
perror_plus("scandir");
2312
1416
ret = rmdir(tempdir);
2313
1417
if(ret == -1 and errno != ENOENT){
2314
perror_plus("rmdir");
2319
sigemptyset(&old_sigterm_action.sa_mask);
2320
old_sigterm_action.sa_handler = SIG_DFL;
2321
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
2322
&old_sigterm_action,
2325
perror_plus("sigaction");
2328
ret = raise(signal_received);
2329
} while(ret != 0 and errno == EINTR);
2331
perror_plus("raise");
2334
TEMP_FAILURE_RETRY(pause());
2337
1422
return exitcode;