256
169
* Helper function to insert pub and seckey to the engine keyring.
258
171
bool import_key(const char *filename){
261
173
gpgme_data_t pgp_data;
263
175
fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
269
181
rc = gpgme_data_new_from_fd(&pgp_data, fd);
270
182
if(rc != GPG_ERR_NO_ERROR){
271
fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
272
gpgme_strsource(rc), gpgme_strerror(rc));
183
fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
184
gpgme_strsource(rc), gpgme_strerror(rc));
276
188
rc = gpgme_op_import(mc.ctx, pgp_data);
277
189
if(rc != GPG_ERR_NO_ERROR){
278
fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
279
gpgme_strsource(rc), gpgme_strerror(rc));
190
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
191
gpgme_strsource(rc), gpgme_strerror(rc));
283
195
ret = (int)TEMP_FAILURE_RETRY(close(fd));
285
perror_plus("close");
287
199
gpgme_data_release(pgp_data);
292
fprintf_plus(stderr, "Initializing GPGME\n");
204
fprintf(stderr, "Initializing GPGME\n");
296
208
gpgme_check_version(NULL);
297
209
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
298
210
if(rc != GPG_ERR_NO_ERROR){
299
fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
300
gpgme_strsource(rc), gpgme_strerror(rc));
211
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
212
gpgme_strsource(rc), gpgme_strerror(rc));
304
/* Set GPGME home directory for the OpenPGP engine only */
216
/* Set GPGME home directory for the OpenPGP engine only */
305
217
rc = gpgme_get_engine_info(&engine_info);
306
218
if(rc != GPG_ERR_NO_ERROR){
307
fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
308
gpgme_strsource(rc), gpgme_strerror(rc));
219
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
220
gpgme_strsource(rc), gpgme_strerror(rc));
311
223
while(engine_info != NULL){
379
288
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
380
289
if(rc != GPG_ERR_NO_ERROR){
381
fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
382
gpgme_strsource(rc), gpgme_strerror(rc));
290
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
291
gpgme_strsource(rc), gpgme_strerror(rc));
383
292
plaintext_length = -1;
385
294
gpgme_decrypt_result_t result;
386
295
result = gpgme_op_decrypt_result(mc.ctx);
387
296
if(result == NULL){
388
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
297
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
390
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
391
result->unsupported_algorithm);
392
fprintf_plus(stderr, "Wrong key usage: %u\n",
393
result->wrong_key_usage);
299
fprintf(stderr, "Unsupported algorithm: %s\n",
300
result->unsupported_algorithm);
301
fprintf(stderr, "Wrong key usage: %u\n",
302
result->wrong_key_usage);
394
303
if(result->file_name != NULL){
395
fprintf_plus(stderr, "File name: %s\n", result->file_name);
304
fprintf(stderr, "File name: %s\n", result->file_name);
397
306
gpgme_recipient_t recipient;
398
307
recipient = result->recipients;
399
while(recipient != NULL){
400
fprintf_plus(stderr, "Public key algorithm: %s\n",
401
gpgme_pubkey_algo_name
402
(recipient->pubkey_algo));
403
fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
404
fprintf_plus(stderr, "Secret key available: %s\n",
405
recipient->status == GPG_ERR_NO_SECKEY
407
recipient = recipient->next;
309
while(recipient != NULL){
310
fprintf(stderr, "Public key algorithm: %s\n",
311
gpgme_pubkey_algo_name(recipient->pubkey_algo));
312
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
313
fprintf(stderr, "Secret key available: %s\n",
314
recipient->status == GPG_ERR_NO_SECKEY
316
recipient = recipient->next;
506
416
/* OpenPGP credentials */
507
ret = gnutls_certificate_allocate_credentials(&mc.cred);
417
gnutls_certificate_allocate_credentials(&mc.cred);
508
418
if(ret != GNUTLS_E_SUCCESS){
509
fprintf_plus(stderr, "GnuTLS memory error: %s\n",
510
safer_gnutls_strerror(ret));
419
fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
423
safer_gnutls_strerror(ret));
511
424
gnutls_global_deinit();
516
fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
517
" secret key %s as GnuTLS credentials\n",
429
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
430
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
522
434
ret = gnutls_certificate_set_openpgp_key_file
523
435
(mc.cred, pubkeyfilename, seckeyfilename,
524
436
GNUTLS_OPENPGP_FMT_BASE64);
525
437
if(ret != GNUTLS_E_SUCCESS){
527
"Error[%d] while reading the OpenPGP key pair ('%s',"
528
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
529
fprintf_plus(stderr, "The GnuTLS error is: %s\n",
530
safer_gnutls_strerror(ret));
439
"Error[%d] while reading the OpenPGP key pair ('%s',"
440
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
441
fprintf(stderr, "The GnuTLS error is: %s\n",
442
safer_gnutls_strerror(ret));
534
446
/* GnuTLS server initialization */
535
447
ret = gnutls_dh_params_init(&mc.dh_params);
536
448
if(ret != GNUTLS_E_SUCCESS){
537
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
538
" initialization: %s\n",
539
safer_gnutls_strerror(ret));
449
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
450
" %s\n", safer_gnutls_strerror(ret));
542
453
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
543
454
if(ret != GNUTLS_E_SUCCESS){
544
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
545
safer_gnutls_strerror(ret));
455
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
456
safer_gnutls_strerror(ret));
1097
868
case AVAHI_BROWSER_ALL_FOR_NOW:
1098
869
case AVAHI_BROWSER_CACHE_EXHAUSTED:
1100
fprintf_plus(stderr, "No Mandos server found, still"
871
fprintf(stderr, "No Mandos server found, still searching...\n");
1107
/* Signal handler that stops main loop after SIGTERM */
1108
static void handle_sigterm(int sig){
877
sig_atomic_t quit_now = 0;
879
/* stop main loop after sigterm has been called */
880
static void handle_sigterm(__attribute__((unused)) int sig){
1113
signal_received = sig;
1114
885
int old_errno = errno;
1115
/* set main loop to exit */
1116
886
if(mc.simple_poll != NULL){
1117
887
avahi_simple_poll_quit(mc.simple_poll);
1119
889
errno = old_errno;
1122
bool get_flags(const char *ifname, struct ifreq *ifr){
1125
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1127
perror_plus("socket");
1130
strcpy(ifr->ifr_name, ifname);
1131
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1134
perror_plus("ioctl SIOCGIFFLAGS");
1141
bool good_flags(const char *ifname, const struct ifreq *ifr){
1143
/* Reject the loopback device */
1144
if(ifr->ifr_flags & IFF_LOOPBACK){
1146
fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
1151
/* Accept point-to-point devices only if connect_to is specified */
1152
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1154
fprintf_plus(stderr, "Accepting point-to-point interface"
1155
" \"%s\"\n", ifname);
1159
/* Otherwise, reject non-broadcast-capable devices */
1160
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1162
fprintf_plus(stderr, "Rejecting non-broadcast interface"
1163
" \"%s\"\n", ifname);
1167
/* Reject non-ARP interfaces (including dummy interfaces) */
1168
if(ifr->ifr_flags & IFF_NOARP){
1170
fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
1176
/* Accept this device */
1178
fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
1184
* This function determines if a directory entry in /sys/class/net
1185
* corresponds to an acceptable network device.
1186
* (This function is passed to scandir(3) as a filter function.)
1188
int good_interface(const struct dirent *if_entry){
1189
if(if_entry->d_name[0] == '.'){
1194
if(not get_flags(if_entry->d_name, &ifr)){
1196
fprintf_plus(stderr, "Failed to get flags for interface "
1197
"\"%s\"\n", if_entry->d_name);
1202
if(not good_flags(if_entry->d_name, &ifr)){
1209
* This function determines if a directory entry in /sys/class/net
1210
* corresponds to an acceptable network device which is up.
1211
* (This function is passed to scandir(3) as a filter function.)
1213
int up_interface(const struct dirent *if_entry){
1214
if(if_entry->d_name[0] == '.'){
1219
if(not get_flags(if_entry->d_name, &ifr)){
1221
fprintf_plus(stderr, "Failed to get flags for interface "
1222
"\"%s\"\n", if_entry->d_name);
1227
/* Reject down interfaces */
1228
if(not (ifr.ifr_flags & IFF_UP)){
1230
fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
1236
/* Reject non-running interfaces */
1237
if(not (ifr.ifr_flags & IFF_RUNNING)){
1239
fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
1245
if(not good_flags(if_entry->d_name, &ifr)){
1251
int notdotentries(const struct dirent *direntry){
1252
/* Skip "." and ".." */
1253
if(direntry->d_name[0] == '.'
1254
and (direntry->d_name[1] == '\0'
1255
or (direntry->d_name[1] == '.'
1256
and direntry->d_name[2] == '\0'))){
1262
/* Is this directory entry a runnable program? */
1263
int runnable_hook(const struct dirent *direntry){
1268
if((direntry->d_name)[0] == '\0'){
1273
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1274
"abcdefghijklmnopqrstuvwxyz"
1277
if((direntry->d_name)[sret] != '\0'){
1278
/* Contains non-allowed characters */
1280
fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
1286
char *fullname = NULL;
1287
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1289
perror_plus("asprintf");
1293
ret = stat(fullname, &st);
1296
perror_plus("Could not stat hook");
1300
if(not (S_ISREG(st.st_mode))){
1301
/* Not a regular file */
1303
fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
1308
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1309
/* Not executable */
1311
fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
1317
fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1323
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1325
struct timespec now;
1326
struct timespec waited_time;
1327
intmax_t block_time;
1330
if(mc.current_server == NULL){
1332
fprintf_plus(stderr, "Wait until first server is found."
1335
ret = avahi_simple_poll_iterate(s, -1);
1338
fprintf_plus(stderr, "Check current_server if we should run"
1341
/* the current time */
1342
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1344
perror_plus("clock_gettime");
1347
/* Calculating in ms how long time between now and server
1348
who we visted longest time ago. Now - last seen. */
1349
waited_time.tv_sec = (now.tv_sec
1350
- mc.current_server->last_seen.tv_sec);
1351
waited_time.tv_nsec = (now.tv_nsec
1352
- mc.current_server->last_seen.tv_nsec);
1353
/* total time is 10s/10,000ms.
1354
Converting to s from ms by dividing by 1,000,
1355
and ns to ms by dividing by 1,000,000. */
1356
block_time = ((retry_interval
1357
- ((intmax_t)waited_time.tv_sec * 1000))
1358
- ((intmax_t)waited_time.tv_nsec / 1000000));
1361
fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
1365
if(block_time <= 0){
1366
ret = start_mandos_communication(mc.current_server->ip,
1367
mc.current_server->port,
1368
mc.current_server->if_index,
1369
mc.current_server->af);
1371
avahi_simple_poll_quit(mc.simple_poll);
1374
ret = clock_gettime(CLOCK_MONOTONIC,
1375
&mc.current_server->last_seen);
1377
perror_plus("clock_gettime");
1380
mc.current_server = mc.current_server->next;
1381
block_time = 0; /* Call avahi to find new Mandos
1382
servers, but don't block */
1385
ret = avahi_simple_poll_iterate(s, (int)block_time);
1388
if (ret > 0 or errno != EINTR){
1389
return (ret != 1) ? ret : 0;
1395
/* Set effective uid to 0, return errno */
1396
int raise_privileges(void){
1397
int old_errno = errno;
1400
if(seteuid(0) == -1){
1401
perror_plus("seteuid");
1408
/* Set effective and real user ID to 0. Return errno. */
1409
int raise_privileges_permanently(void){
1410
int old_errno = errno;
1411
int ret_errno = raise_privileges();
1417
if(setuid(0) == -1){
1418
perror_plus("seteuid");
1425
/* Set effective user ID to unprivileged saved user ID */
1426
int lower_privileges(void){
1427
int old_errno = errno;
1430
if(seteuid(uid) == -1){
1431
perror_plus("seteuid");
1438
bool run_network_hooks(const char *mode, const char *interface,
1440
struct dirent **direntries;
1441
struct dirent *direntry;
1443
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1446
perror_plus("scandir");
1448
int devnull = open("/dev/null", O_RDONLY);
1449
for(int i = 0; i < numhooks; i++){
1450
direntry = direntries[i];
1451
char *fullname = NULL;
1452
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1454
perror_plus("asprintf");
1458
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1461
pid_t hook_pid = fork();
1464
/* Raise privileges */
1465
raise_privileges_permanently();
1470
perror_plus("setgid");
1472
/* Reset supplementary groups */
1474
ret = setgroups(0, NULL);
1476
perror_plus("setgroups");
1478
dup2(devnull, STDIN_FILENO);
1480
dup2(STDERR_FILENO, STDOUT_FILENO);
1481
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1483
perror_plus("setenv");
1486
ret = setenv("DEVICE", interface, 1);
1488
perror_plus("setenv");
1491
ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1493
perror_plus("setenv");
1496
ret = setenv("MODE", mode, 1);
1498
perror_plus("setenv");
1502
ret = asprintf(&delaystring, "%f", delay);
1504
perror_plus("asprintf");
1507
ret = setenv("DELAY", delaystring, 1);
1510
perror_plus("setenv");
1514
if(connect_to != NULL){
1515
ret = setenv("CONNECT", connect_to, 1);
1517
perror_plus("setenv");
1521
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1522
perror_plus("execl");
1523
_exit(EXIT_FAILURE);
1527
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1528
perror_plus("waitpid");
1532
if(WIFEXITED(status)){
1533
if(WEXITSTATUS(status) != 0){
1534
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1535
" with status %d\n", direntry->d_name,
1536
WEXITSTATUS(status));
1540
} else if(WIFSIGNALED(status)){
1541
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1542
" signal %d\n", direntry->d_name,
1547
fprintf_plus(stderr, "Warning: network hook \"%s\""
1548
" crashed\n", direntry->d_name);
1555
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1564
int bring_up_interface(const char * const interface, const float delay){
1567
struct ifreq network;
1568
AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
1570
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1571
return EX_UNAVAILABLE;
1578
/* Re-raise priviliges */
1582
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1583
messages about the network interface to mess up the prompt */
1584
ret = klogctl(8, NULL, 5);
1585
bool restore_loglevel = true;
1587
restore_loglevel = false;
1588
perror_plus("klogctl");
1590
#endif /* __linux__ */
1592
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1594
perror_plus("socket");
1596
if(restore_loglevel){
1597
ret = klogctl(7, NULL, 0);
1599
perror_plus("klogctl");
1602
#endif /* __linux__ */
1603
/* Lower privileges */
1608
strcpy(network.ifr_name, interface);
1609
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1611
perror_plus("ioctl SIOCGIFFLAGS");
1613
if(restore_loglevel){
1614
ret = klogctl(7, NULL, 0);
1616
perror_plus("klogctl");
1619
#endif /* __linux__ */
1620
/* Lower privileges */
1624
if((network.ifr_flags & IFF_UP) == 0){
1625
network.ifr_flags |= IFF_UP;
1626
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1628
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1630
if(restore_loglevel){
1631
ret = klogctl(7, NULL, 0);
1633
perror_plus("klogctl");
1636
#endif /* __linux__ */
1637
/* Lower privileges */
1642
/* Sleep checking until interface is running.
1643
Check every 0.25s, up to total time of delay */
1644
for(int i=0; i < delay * 4; i++){
1645
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1647
perror_plus("ioctl SIOCGIFFLAGS");
1648
} else if(network.ifr_flags & IFF_RUNNING){
1651
struct timespec sleeptime = { .tv_nsec = 250000000 };
1652
ret = nanosleep(&sleeptime, NULL);
1653
if(ret == -1 and errno != EINTR){
1654
perror_plus("nanosleep");
1657
/* Close the socket */
1658
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1660
perror_plus("close");
1663
if(restore_loglevel){
1664
/* Restores kernel loglevel to default */
1665
ret = klogctl(7, NULL, 0);
1667
perror_plus("klogctl");
1670
#endif /* __linux__ */
1671
/* Lower privileges */
1676
892
int main(int argc, char *argv[]){
1677
893
AvahiSServiceBrowser *sb = NULL;
1810
992
delay = strtof(arg, &tmp);
1811
993
if(errno != 0 or tmp == arg or *tmp != '\0'){
1812
argp_error(state, "Bad delay");
1814
case 132: /* --retry */
1816
retry_interval = strtod(arg, &tmp);
1817
if(errno != 0 or tmp == arg or *tmp != '\0'
1818
or (retry_interval * 1000) > INT_MAX
1819
or retry_interval < 0){
1820
argp_error(state, "Bad retry interval");
1823
case 133: /* --network-hook-dir */
1827
* These reproduce what we would get without ARGP_NO_HELP
1829
case '?': /* --help */
1830
argp_state_help(state, state->out_stream,
1831
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1832
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1833
case -3: /* --usage */
1834
argp_state_help(state, state->out_stream,
1835
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1836
case 'V': /* --version */
1837
fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1838
exit(argp_err_exit_status);
994
fprintf(stderr, "Bad delay\n");
1841
1003
return ARGP_ERR_UNKNOWN;
1846
1008
struct argp argp = { .options = options, .parser = parse_opt,
1847
1009
.args_doc = "",
1848
1010
.doc = "Mandos client -- Get and decrypt"
1849
1011
" passwords from a Mandos server" };
1850
ret = argp_parse(&argp, argc, argv,
1851
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1858
perror_plus("argp_parse");
1859
exitcode = EX_OSERR;
1862
exitcode = EX_USAGE;
1868
/* Work around Debian bug #633582:
1869
<http://bugs.debian.org/633582> */
1871
/* Re-raise priviliges */
1872
if(raise_privileges() == 0){
1875
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1876
int seckey_fd = open(seckey, O_RDONLY);
1877
if(seckey_fd == -1){
1878
perror_plus("open");
1880
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1882
perror_plus("fstat");
1884
if(S_ISREG(st.st_mode)
1885
and st.st_uid == 0 and st.st_gid == 0){
1886
ret = fchown(seckey_fd, uid, gid);
1888
perror_plus("fchown");
1892
TEMP_FAILURE_RETRY(close(seckey_fd));
1896
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1897
int pubkey_fd = open(pubkey, O_RDONLY);
1898
if(pubkey_fd == -1){
1899
perror_plus("open");
1901
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1903
perror_plus("fstat");
1905
if(S_ISREG(st.st_mode)
1906
and st.st_uid == 0 and st.st_gid == 0){
1907
ret = fchown(pubkey_fd, uid, gid);
1909
perror_plus("fchown");
1913
TEMP_FAILURE_RETRY(close(pubkey_fd));
1917
/* Lower privileges */
1921
perror_plus("seteuid");
1926
/* Run network hooks */
1927
if(not run_network_hooks("start", interface, delay)){
1012
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1013
if(ret == ARGP_ERR_UNKNOWN){
1014
fprintf(stderr, "Unknown error while parsing arguments\n");
1015
exitcode = EXIT_FAILURE;
1932
1021
avahi_set_log_function(empty_log);
1935
if(interface[0] == '\0'){
1936
struct dirent **direntries;
1937
/* First look for interfaces that are up */
1938
ret = scandir(sys_class_net, &direntries, up_interface,
1941
/* No up interfaces, look for any good interfaces */
1943
ret = scandir(sys_class_net, &direntries, good_interface,
1947
/* Pick the first interface returned */
1948
interface = strdup(direntries[0]->d_name);
1950
fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1952
if(interface == NULL){
1953
perror_plus("malloc");
1955
exitcode = EXIT_FAILURE;
1961
fprintf_plus(stderr, "Could not find a network interface\n");
1962
exitcode = EXIT_FAILURE;
1967
1024
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1968
1025
from the signal handler */
1969
1026
/* Initialize the pseudo-RNG for Avahi */
1970
1027
srand((unsigned int) time(NULL));
1971
1028
mc.simple_poll = avahi_simple_poll_new();
1972
1029
if(mc.simple_poll == NULL){
1973
fprintf_plus(stderr,
1974
"Avahi: Failed to create simple poll object.\n");
1975
exitcode = EX_UNAVAILABLE;
1030
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1031
exitcode = EXIT_FAILURE;
1979
1035
sigemptyset(&sigterm_action.sa_mask);
1980
1036
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1982
perror_plus("sigaddset");
1983
exitcode = EX_OSERR;
1038
perror("sigaddset");
1039
exitcode = EXIT_FAILURE;
1986
1042
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1988
perror_plus("sigaddset");
1989
exitcode = EX_OSERR;
1044
perror("sigaddset");
1045
exitcode = EXIT_FAILURE;
1992
1048
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1994
perror_plus("sigaddset");
1995
exitcode = EX_OSERR;
1998
/* Need to check if the handler is SIG_IGN before handling:
1999
| [[info:libc:Initial Signal Actions]] |
2000
| [[info:libc:Basic Signal Handling]] |
2002
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
2004
perror_plus("sigaction");
2007
if(old_sigterm_action.sa_handler != SIG_IGN){
2008
ret = sigaction(SIGINT, &sigterm_action, NULL);
2010
perror_plus("sigaction");
2011
exitcode = EX_OSERR;
2015
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
2017
perror_plus("sigaction");
2020
if(old_sigterm_action.sa_handler != SIG_IGN){
2021
ret = sigaction(SIGHUP, &sigterm_action, NULL);
2023
perror_plus("sigaction");
2024
exitcode = EX_OSERR;
2028
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
2030
perror_plus("sigaction");
2033
if(old_sigterm_action.sa_handler != SIG_IGN){
2034
ret = sigaction(SIGTERM, &sigterm_action, NULL);
2036
perror_plus("sigaction");
2037
exitcode = EX_OSERR;
1050
perror("sigaddset");
1051
exitcode = EXIT_FAILURE;
1054
ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1056
perror("sigaction");
1057
exitcode = EXIT_FAILURE;
2042
1061
/* If the interface is down, bring it up */
2043
if((interface[0] != '\0') and (strcmp(interface, "none") != 0)){
2044
ret = bring_up_interface(interface, delay);
2047
perror_plus("Failed to bring up interface");
1062
if(interface[0] != '\0'){
1064
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1065
messages to mess up the prompt */
1066
ret = klogctl(8, NULL, 5);
1067
bool restore_loglevel = true;
1069
restore_loglevel = false;
1072
#endif /* __linux__ */
1074
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1077
exitcode = EXIT_FAILURE;
1079
if(restore_loglevel){
1080
ret = klogctl(7, NULL, 0);
1085
#endif /* __linux__ */
1088
strcpy(network.ifr_name, interface);
1089
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1091
perror("ioctl SIOCGIFFLAGS");
1093
if(restore_loglevel){
1094
ret = klogctl(7, NULL, 0);
1099
#endif /* __linux__ */
1100
exitcode = EXIT_FAILURE;
1103
if((network.ifr_flags & IFF_UP) == 0){
1104
network.ifr_flags |= IFF_UP;
1105
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1107
perror("ioctl SIOCSIFFLAGS");
1108
exitcode = EXIT_FAILURE;
1110
if(restore_loglevel){
1111
ret = klogctl(7, NULL, 0);
1116
#endif /* __linux__ */
1120
/* sleep checking until interface is running */
1121
for(int i=0; i < delay * 4; i++){
1122
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1124
perror("ioctl SIOCGIFFLAGS");
1125
} else if(network.ifr_flags & IFF_RUNNING){
1128
struct timespec sleeptime = { .tv_nsec = 250000000 };
1129
ret = nanosleep(&sleeptime, NULL);
1130
if(ret == -1 and errno != EINTR){
1131
perror("nanosleep");
1134
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1139
if(restore_loglevel){
1140
/* Restores kernel loglevel to default */
1141
ret = klogctl(7, NULL, 0);
1146
#endif /* __linux__ */
2055
1163
ret = init_gnutls_global(pubkey, seckey);
2057
fprintf_plus(stderr, "init_gnutls_global failed\n");
2058
exitcode = EX_UNAVAILABLE;
1165
fprintf(stderr, "init_gnutls_global failed\n");
1166
exitcode = EXIT_FAILURE;
2061
1169
gnutls_initialized = true;
2068
1172
if(mkdtemp(tempdir) == NULL){
2069
perror_plus("mkdtemp");
2072
1176
tempdir_created = true;
2078
1178
if(not init_gpgme(pubkey, seckey, tempdir)){
2079
fprintf_plus(stderr, "init_gpgme failed\n");
2080
exitcode = EX_UNAVAILABLE;
1179
fprintf(stderr, "init_gpgme failed\n");
1180
exitcode = EXIT_FAILURE;
2083
1183
gpgme_initialized = true;
1186
if(interface[0] != '\0'){
1187
if_index = (AvahiIfIndex) if_nametoindex(interface);
1189
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1190
exitcode = EXIT_FAILURE;
2090
1195
if(connect_to != NULL){
2091
1196
/* Connect directly, do not use Zeroconf */
2092
1197
/* (Mainly meant for debugging) */
2093
1198
char *address = strrchr(connect_to, ':');
2095
1199
if(address == NULL){
2096
fprintf_plus(stderr, "No colon in address\n");
2097
exitcode = EX_USAGE;
1200
fprintf(stderr, "No colon in address\n");
1201
exitcode = EXIT_FAILURE;
2107
1206
tmpmax = strtoimax(address+1, &tmp, 10);
2108
1207
if(errno != 0 or tmp == address+1 or *tmp != '\0'
2109
1208
or tmpmax != (uint16_t)tmpmax){
2110
fprintf_plus(stderr, "Bad port number\n");
2111
exitcode = EX_USAGE;
1209
fprintf(stderr, "Bad port number\n");
1210
exitcode = EXIT_FAILURE;
2119
1213
port = (uint16_t)tmpmax;
2120
1214
*address = '\0';
1215
address = connect_to;
2121
1216
/* Colon in address indicates IPv6 */
2123
if(strchr(connect_to, ':') != NULL){
1218
if(strchr(address, ':') != NULL){
2125
/* Accept [] around IPv6 address - see RFC 5952 */
2126
if(connect_to[0] == '[' and address[-1] == ']')
2134
address = connect_to;
2140
while(not quit_now){
2141
ret = start_mandos_communication(address, port, if_index, af);
2142
if(quit_now or ret == 0){
2146
fprintf_plus(stderr, "Retrying in %d seconds\n",
2147
(int)retry_interval);
2149
sleep((int)retry_interval);
1223
ret = start_mandos_communication(address, port, if_index, af);
1225
exitcode = EXIT_FAILURE;
2153
1227
exitcode = EXIT_SUCCESS;
2164
1233
AvahiServerConfig config;
2165
1234
/* Do not publish any local Zeroconf records */
2244
1300
gpgme_release(mc.ctx);
2247
/* Cleans up the circular linked list of Mandos servers the client
2249
if(mc.current_server != NULL){
2250
mc.current_server->prev->next = NULL;
2251
while(mc.current_server != NULL){
2252
server *next = mc.current_server->next;
2253
free(mc.current_server);
2254
mc.current_server = next;
2258
/* Run network hooks */
2259
run_network_hooks("stop", interface, delay);
2261
/* Re-raise priviliges */
2265
/* Take down the network interface */
2266
if(take_down_interface and geteuid() == 0){
2267
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2269
perror_plus("ioctl SIOCGIFFLAGS");
2270
} else if(network.ifr_flags & IFF_UP){
2271
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2272
ret = ioctl(sd, SIOCSIFFLAGS, &network);
2274
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2277
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2279
perror_plus("close");
2283
/* Lower privileges permanently */
2287
perror_plus("setuid");
2290
/* Removes the GPGME temp directory and all files inside */
1303
/* Removes the temp directory used by GPGME */
2291
1304
if(tempdir_created){
2292
struct dirent **direntries = NULL;
2293
struct dirent *direntry = NULL;
2294
int numentries = scandir(tempdir, &direntries, notdotentries,
2296
if (numentries > 0){
2297
for(int i = 0; i < numentries; i++){
2298
direntry = direntries[i];
1306
struct dirent *direntry;
1307
d = opendir(tempdir);
1309
if(errno != ENOENT){
1314
direntry = readdir(d);
1315
if(direntry == NULL){
1318
/* Skip "." and ".." */
1319
if(direntry->d_name[0] == '.'
1320
and (direntry->d_name[1] == '\0'
1321
or (direntry->d_name[1] == '.'
1322
and direntry->d_name[2] == '\0'))){
2299
1325
char *fullname = NULL;
2300
1326
ret = asprintf(&fullname, "%s/%s", tempdir,
2301
1327
direntry->d_name);
2303
perror_plus("asprintf");
2306
1332
ret = remove(fullname);
2308
fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
1334
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
2311
1337
free(fullname);
2315
/* need to clean even if 0 because man page doesn't specify */
2317
if (numentries == -1){
2318
perror_plus("scandir");
2320
1341
ret = rmdir(tempdir);
2321
1342
if(ret == -1 and errno != ENOENT){
2322
perror_plus("rmdir");
2327
sigemptyset(&old_sigterm_action.sa_mask);
2328
old_sigterm_action.sa_handler = SIG_DFL;
2329
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
2330
&old_sigterm_action,
2333
perror_plus("sigaction");
2336
ret = raise(signal_received);
2337
} while(ret != 0 and errno == EINTR);
2339
perror_plus("raise");
2342
TEMP_FAILURE_RETRY(pause());
2345
1347
return exitcode;