1074
/* Signal handler that stops main loop after SIGTERM */
1075
static void handle_sigterm(int sig){
1080
signal_received = sig;
1081
int old_errno = errno;
1082
/* set main loop to exit */
1083
if(mc.simple_poll != NULL){
1084
avahi_simple_poll_quit(mc.simple_poll);
1089
bool get_flags(const char *ifname, struct ifreq *ifr){
1092
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1094
perror_plus("socket");
1097
strcpy(ifr->ifr_name, ifname);
1098
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1101
perror_plus("ioctl SIOCGIFFLAGS");
1108
bool good_flags(const char *ifname, const struct ifreq *ifr){
1110
/* Reject the loopback device */
1111
if(ifr->ifr_flags & IFF_LOOPBACK){
1113
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1118
/* Accept point-to-point devices only if connect_to is specified */
1119
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1121
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1126
/* Otherwise, reject non-broadcast-capable devices */
1127
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1129
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1134
/* Reject non-ARP interfaces (including dummy interfaces) */
1135
if(ifr->ifr_flags & IFF_NOARP){
1137
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n", ifname);
1142
/* Accept this device */
1144
fprintf(stderr, "Interface \"%s\" is good\n", ifname);
1150
* This function determines if a directory entry in /sys/class/net
1151
* corresponds to an acceptable network device.
1152
* (This function is passed to scandir(3) as a filter function.)
1154
int good_interface(const struct dirent *if_entry){
1155
if(if_entry->d_name[0] == '.'){
1160
if(not get_flags(if_entry->d_name, &ifr)){
1162
fprintf(stderr, "Failed to get flags for interface \"%s\"\n",
1168
if(not good_flags(if_entry->d_name, &ifr)){
1175
* This function determines if a directory entry in /sys/class/net
1176
* corresponds to an acceptable network device which is up.
1177
* (This function is passed to scandir(3) as a filter function.)
1179
int up_interface(const struct dirent *if_entry){
1180
if(if_entry->d_name[0] == '.'){
1185
if(not get_flags(if_entry->d_name, &ifr)){
1187
fprintf(stderr, "Failed to get flags for interface \"%s\"\n",
1193
/* Reject down interfaces */
1194
if(not (ifr.ifr_flags & IFF_UP)){
1196
fprintf(stderr, "Rejecting down interface \"%s\"\n",
1202
/* Reject non-running interfaces */
1203
if(not (ifr.ifr_flags & IFF_RUNNING)){
1205
fprintf(stderr, "Rejecting non-running interface \"%s\"\n",
1211
if(not good_flags(if_entry->d_name, &ifr)){
1217
int notdotentries(const struct dirent *direntry){
1218
/* Skip "." and ".." */
1219
if(direntry->d_name[0] == '.'
1220
and (direntry->d_name[1] == '\0'
1221
or (direntry->d_name[1] == '.'
1222
and direntry->d_name[2] == '\0'))){
1228
/* Is this directory entry a runnable program? */
1229
int runnable_hook(const struct dirent *direntry){
1233
if((direntry->d_name)[0] == '\0'){
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);
1257
perror_plus("Could not stat plugin");
1261
if(not (S_ISREG(st.st_mode))){
1262
/* Not a regular file */
1265
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1266
/* Not executable */
1272
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1274
struct timespec now;
1275
struct timespec waited_time;
1276
intmax_t block_time;
1279
if(mc.current_server == NULL){
1282
"Wait until first server is found. No timeout!\n");
1284
ret = avahi_simple_poll_iterate(s, -1);
1287
fprintf(stderr, "Check current_server if we should run it,"
1290
/* the current time */
1291
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1293
perror_plus("clock_gettime");
1296
/* Calculating in ms how long time between now and server
1297
who we visted longest time ago. Now - last seen. */
1298
waited_time.tv_sec = (now.tv_sec
1299
- mc.current_server->last_seen.tv_sec);
1300
waited_time.tv_nsec = (now.tv_nsec
1301
- mc.current_server->last_seen.tv_nsec);
1302
/* total time is 10s/10,000ms.
1303
Converting to s from ms by dividing by 1,000,
1304
and ns to ms by dividing by 1,000,000. */
1305
block_time = ((retry_interval
1306
- ((intmax_t)waited_time.tv_sec * 1000))
1307
- ((intmax_t)waited_time.tv_nsec / 1000000));
1310
fprintf(stderr, "Blocking for %" PRIdMAX " ms\n", block_time);
1313
if(block_time <= 0){
1314
ret = start_mandos_communication(mc.current_server->ip,
1315
mc.current_server->port,
1316
mc.current_server->if_index,
1317
mc.current_server->af);
1319
avahi_simple_poll_quit(mc.simple_poll);
1322
ret = clock_gettime(CLOCK_MONOTONIC,
1323
&mc.current_server->last_seen);
1325
perror_plus("clock_gettime");
1328
mc.current_server = mc.current_server->next;
1329
block_time = 0; /* Call avahi to find new Mandos
1330
servers, but don't block */
1333
ret = avahi_simple_poll_iterate(s, (int)block_time);
1336
if (ret > 0 or errno != EINTR) {
1337
return (ret != 1) ? ret : 0;
814
1343
int main(int argc, char *argv[]){
815
AvahiSServiceBrowser *sb = NULL;
818
int exitcode = EXIT_SUCCESS;
819
const char *interface = "eth0";
820
struct ifreq network;
824
char *connect_to = NULL;
825
char tempdir[] = "/tmp/mandosXXXXXX";
826
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
827
const char *seckey = PATHDIR "/" SECKEY;
828
const char *pubkey = PATHDIR "/" PUBKEY;
830
mandos_context mc = { .simple_poll = NULL, .server = NULL,
831
.dh_bits = 1024, .priority = "SECURE256"
832
":!CTYPE-X.509:+CTYPE-OPENPGP" };
833
bool gnutls_initalized = false;
834
bool gpgme_initalized = false;
837
struct argp_option options[] = {
838
{ .name = "debug", .key = 128,
839
.doc = "Debug mode", .group = 3 },
840
{ .name = "connect", .key = 'c',
841
.arg = "ADDRESS:PORT",
842
.doc = "Connect directly to a specific Mandos server",
844
{ .name = "interface", .key = 'i',
846
.doc = "Interface that will be used to search for Mandos"
849
{ .name = "seckey", .key = 's',
851
.doc = "OpenPGP secret key file base name",
853
{ .name = "pubkey", .key = 'p',
855
.doc = "OpenPGP public key file base name",
857
{ .name = "dh-bits", .key = 129,
859
.doc = "Bit length of the prime number used in the"
860
" Diffie-Hellman key exchange",
862
{ .name = "priority", .key = 130,
864
.doc = "GnuTLS priority string for the TLS handshake",
869
error_t parse_opt (int key, char *arg,
870
struct argp_state *state) {
871
/* Get the INPUT argument from `argp_parse', which we know is
872
a pointer to our plugin list pointer. */
874
case 128: /* --debug */
877
case 'c': /* --connect */
880
case 'i': /* --interface */
883
case 's': /* --seckey */
886
case 'p': /* --pubkey */
889
case 129: /* --dh-bits */
891
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
897
case 130: /* --priority */
905
return ARGP_ERR_UNKNOWN;
910
struct argp argp = { .options = options, .parser = parse_opt,
912
.doc = "Mandos client -- Get and decrypt"
913
" passwords from a Mandos server" };
914
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
915
if (ret == ARGP_ERR_UNKNOWN){
916
fprintf(stderr, "Unknown error while parsing arguments\n");
917
exitcode = EXIT_FAILURE;
922
/* If the interface is down, bring it up */
924
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
927
exitcode = EXIT_FAILURE;
930
strcpy(network.ifr_name, interface);
931
ret = ioctl(sd, SIOCGIFFLAGS, &network);
933
perror("ioctl SIOCGIFFLAGS");
934
exitcode = EXIT_FAILURE;
937
if((network.ifr_flags & IFF_UP) == 0){
938
network.ifr_flags |= IFF_UP;
939
ret = ioctl(sd, SIOCSIFFLAGS, &network);
941
perror("ioctl SIOCSIFFLAGS");
942
exitcode = EXIT_FAILURE;
946
ret = TEMP_FAILURE_RETRY(close(sd));
965
ret = init_gnutls_global(&mc, pubkey, seckey);
967
fprintf(stderr, "init_gnutls_global failed\n");
968
exitcode = EXIT_FAILURE;
971
gnutls_initalized = true;
974
if(mkdtemp(tempdir) == NULL){
980
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
981
fprintf(stderr, "gpgme_initalized failed\n");
982
exitcode = EXIT_FAILURE;
985
gpgme_initalized = true;
1344
AvahiSServiceBrowser *sb = NULL;
1349
int exitcode = EXIT_SUCCESS;
1350
const char *interface = "";
1351
struct ifreq network;
1353
bool take_down_interface = false;
1356
char tempdir[] = "/tmp/mandosXXXXXX";
1357
bool tempdir_created = false;
1358
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1359
const char *seckey = PATHDIR "/" SECKEY;
1360
const char *pubkey = PATHDIR "/" PUBKEY;
1362
bool gnutls_initialized = false;
1363
bool gpgme_initialized = false;
1365
double retry_interval = 10; /* 10s between trying a server and
1366
retrying the same server again */
1368
struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
1369
struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1374
/* Lower any group privileges we might have, just to be safe */
1378
perror_plus("setgid");
1381
/* Lower user privileges (temporarily) */
1385
perror_plus("seteuid");
1393
struct argp_option options[] = {
1394
{ .name = "debug", .key = 128,
1395
.doc = "Debug mode", .group = 3 },
1396
{ .name = "connect", .key = 'c',
1397
.arg = "ADDRESS:PORT",
1398
.doc = "Connect directly to a specific Mandos server",
1400
{ .name = "interface", .key = 'i',
1402
.doc = "Network interface that will be used to search for"
1405
{ .name = "seckey", .key = 's',
1407
.doc = "OpenPGP secret key file base name",
1409
{ .name = "pubkey", .key = 'p',
1411
.doc = "OpenPGP public key file base name",
1413
{ .name = "dh-bits", .key = 129,
1415
.doc = "Bit length of the prime number used in the"
1416
" Diffie-Hellman key exchange",
1418
{ .name = "priority", .key = 130,
1420
.doc = "GnuTLS priority string for the TLS handshake",
1422
{ .name = "delay", .key = 131,
1424
.doc = "Maximum delay to wait for interface startup",
1426
{ .name = "retry", .key = 132,
1428
.doc = "Retry interval used when denied by the mandos server",
1431
* These reproduce what we would get without ARGP_NO_HELP
1433
{ .name = "help", .key = '?',
1434
.doc = "Give this help list", .group = -1 },
1435
{ .name = "usage", .key = -3,
1436
.doc = "Give a short usage message", .group = -1 },
1437
{ .name = "version", .key = 'V',
1438
.doc = "Print program version", .group = -1 },
1442
error_t parse_opt(int key, char *arg,
1443
struct argp_state *state){
1446
case 128: /* --debug */
1449
case 'c': /* --connect */
1452
case 'i': /* --interface */
1455
case 's': /* --seckey */
1458
case 'p': /* --pubkey */
1461
case 129: /* --dh-bits */
1463
tmpmax = strtoimax(arg, &tmp, 10);
1464
if(errno != 0 or tmp == arg or *tmp != '\0'
1465
or tmpmax != (typeof(mc.dh_bits))tmpmax){
1466
argp_error(state, "Bad number of DH bits");
1468
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1470
case 130: /* --priority */
1473
case 131: /* --delay */
1475
delay = strtof(arg, &tmp);
1476
if(errno != 0 or tmp == arg or *tmp != '\0'){
1477
argp_error(state, "Bad delay");
1479
case 132: /* --retry */
1481
retry_interval = strtod(arg, &tmp);
1482
if(errno != 0 or tmp == arg or *tmp != '\0'
1483
or (retry_interval * 1000) > INT_MAX
1484
or retry_interval < 0){
1485
argp_error(state, "Bad retry interval");
1489
* These reproduce what we would get without ARGP_NO_HELP
1491
case '?': /* --help */
1492
argp_state_help(state, state->out_stream,
1493
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1494
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1495
case -3: /* --usage */
1496
argp_state_help(state, state->out_stream,
1497
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1498
case 'V': /* --version */
1499
fprintf(state->out_stream, "%s\n", argp_program_version);
1500
exit(argp_err_exit_status);
1503
return ARGP_ERR_UNKNOWN;
1508
struct argp argp = { .options = options, .parser = parse_opt,
1510
.doc = "Mandos client -- Get and decrypt"
1511
" passwords from a Mandos server" };
1512
ret = argp_parse(&argp, argc, argv,
1513
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1520
perror_plus("argp_parse");
1521
exitcode = EX_OSERR;
1524
exitcode = EX_USAGE;
1530
/* Work around Debian bug #633582:
1531
<http://bugs.debian.org/633582> */
1534
/* Re-raise priviliges */
1538
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");
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");
1627
avahi_set_log_function(empty_log);
1630
if(interface[0] == '\0'){
1631
struct dirent **direntries;
1632
/* First look for interfaces that are up */
1633
ret = scandir(sys_class_net, &direntries, up_interface,
1636
/* No up interfaces, look for any good interfaces */
1638
ret = scandir(sys_class_net, &direntries, good_interface,
1642
/* Pick the first interface returned */
1643
interface = strdup(direntries[0]->d_name);
1645
fprintf(stderr, "Using interface \"%s\"\n", interface);
1647
if(interface == NULL){
1648
perror_plus("malloc");
1650
exitcode = EXIT_FAILURE;
1656
fprintf(stderr, "Could not find a network interface\n");
1657
exitcode = EXIT_FAILURE;
1662
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1663
from the signal handler */
1664
/* Initialize the pseudo-RNG for Avahi */
1665
srand((unsigned int) time(NULL));
1666
mc.simple_poll = avahi_simple_poll_new();
1667
if(mc.simple_poll == NULL){
1668
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1669
exitcode = EX_UNAVAILABLE;
1673
sigemptyset(&sigterm_action.sa_mask);
1674
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1676
perror_plus("sigaddset");
1677
exitcode = EX_OSERR;
1680
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1682
perror_plus("sigaddset");
1683
exitcode = EX_OSERR;
1686
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1688
perror_plus("sigaddset");
1689
exitcode = EX_OSERR;
1692
/* Need to check if the handler is SIG_IGN before handling:
1693
| [[info:libc:Initial Signal Actions]] |
1694
| [[info:libc:Basic Signal Handling]] |
1696
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1698
perror_plus("sigaction");
1701
if(old_sigterm_action.sa_handler != SIG_IGN){
1702
ret = sigaction(SIGINT, &sigterm_action, NULL);
1704
perror_plus("sigaction");
1705
exitcode = EX_OSERR;
1709
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1711
perror_plus("sigaction");
1714
if(old_sigterm_action.sa_handler != SIG_IGN){
1715
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1717
perror_plus("sigaction");
1718
exitcode = EX_OSERR;
1722
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1724
perror_plus("sigaction");
1727
if(old_sigterm_action.sa_handler != SIG_IGN){
1728
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1730
perror_plus("sigaction");
1731
exitcode = EX_OSERR;
1736
/* If the interface is down, bring it up */
1737
if(strcmp(interface, "none") != 0){
988
1738
if_index = (AvahiIfIndex) if_nametoindex(interface);
989
1739
if(if_index == 0){
990
1740
fprintf(stderr, "No such interface: \"%s\"\n", interface);
994
if(connect_to != NULL){
995
/* Connect directly, do not use Zeroconf */
996
/* (Mainly meant for debugging) */
997
char *address = strrchr(connect_to, ':');
999
fprintf(stderr, "No colon in address\n");
1000
exitcode = EXIT_FAILURE;
1004
uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
1006
perror("Bad port number");
1007
exitcode = EXIT_FAILURE;
1011
address = connect_to;
1012
ret = start_mandos_communication(address, port, if_index, &mc);
1014
exitcode = EXIT_FAILURE;
1016
exitcode = EXIT_SUCCESS;
1022
avahi_set_log_function(empty_log);
1025
/* Initialize the pseudo-RNG for Avahi */
1026
srand((unsigned int) time(NULL));
1028
/* Allocate main Avahi loop object */
1029
mc.simple_poll = avahi_simple_poll_new();
1030
if (mc.simple_poll == NULL) {
1031
fprintf(stderr, "Avahi: Failed to create simple poll"
1033
exitcode = EXIT_FAILURE;
1038
AvahiServerConfig config;
1039
/* Do not publish any local Zeroconf records */
1040
avahi_server_config_init(&config);
1041
config.publish_hinfo = 0;
1042
config.publish_addresses = 0;
1043
config.publish_workstation = 0;
1044
config.publish_domain = 0;
1046
/* Allocate a new server */
1047
mc.server = avahi_server_new(avahi_simple_poll_get
1048
(mc.simple_poll), &config, NULL,
1051
/* Free the Avahi configuration data */
1052
avahi_server_config_free(&config);
1055
/* Check if creating the Avahi server object succeeded */
1056
if (mc.server == NULL) {
1057
fprintf(stderr, "Failed to create Avahi server: %s\n",
1058
avahi_strerror(error));
1059
exitcode = EXIT_FAILURE;
1063
/* Create the Avahi service browser */
1064
sb = avahi_s_service_browser_new(mc.server, if_index,
1066
"_mandos._tcp", NULL, 0,
1067
browse_callback, &mc);
1069
fprintf(stderr, "Failed to create service browser: %s\n",
1070
avahi_strerror(avahi_server_errno(mc.server)));
1071
exitcode = EXIT_FAILURE;
1075
/* Run the main loop */
1078
fprintf(stderr, "Starting Avahi loop search\n");
1081
avahi_simple_poll_loop(mc.simple_poll);
1741
exitcode = EX_UNAVAILABLE;
1749
/* Re-raise priviliges */
1753
perror_plus("seteuid");
1757
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1758
messages about the network interface to mess up the prompt */
1759
ret = klogctl(8, NULL, 5);
1760
bool restore_loglevel = true;
1762
restore_loglevel = false;
1763
perror_plus("klogctl");
1765
#endif /* __linux__ */
1767
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1769
perror_plus("socket");
1770
exitcode = EX_OSERR;
1772
if(restore_loglevel){
1773
ret = klogctl(7, NULL, 0);
1775
perror_plus("klogctl");
1778
#endif /* __linux__ */
1779
/* Lower privileges */
1783
perror_plus("seteuid");
1787
strcpy(network.ifr_name, interface);
1788
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1790
perror_plus("ioctl SIOCGIFFLAGS");
1792
if(restore_loglevel){
1793
ret = klogctl(7, NULL, 0);
1795
perror_plus("klogctl");
1798
#endif /* __linux__ */
1799
exitcode = EX_OSERR;
1800
/* Lower privileges */
1804
perror_plus("seteuid");
1808
if((network.ifr_flags & IFF_UP) == 0){
1809
network.ifr_flags |= IFF_UP;
1810
take_down_interface = true;
1811
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1813
take_down_interface = false;
1814
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1815
exitcode = EX_OSERR;
1817
if(restore_loglevel){
1818
ret = klogctl(7, NULL, 0);
1820
perror_plus("klogctl");
1823
#endif /* __linux__ */
1824
/* Lower privileges */
1828
perror_plus("seteuid");
1833
/* Sleep checking until interface is running.
1834
Check every 0.25s, up to total time of delay */
1835
for(int i=0; i < delay * 4; i++){
1836
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1838
perror_plus("ioctl SIOCGIFFLAGS");
1839
} else if(network.ifr_flags & IFF_RUNNING){
1842
struct timespec sleeptime = { .tv_nsec = 250000000 };
1843
ret = nanosleep(&sleeptime, NULL);
1844
if(ret == -1 and errno != EINTR){
1845
perror_plus("nanosleep");
1848
if(not take_down_interface){
1849
/* We won't need the socket anymore */
1850
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1852
perror_plus("close");
1856
if(restore_loglevel){
1857
/* Restores kernel loglevel to default */
1858
ret = klogctl(7, NULL, 0);
1860
perror_plus("klogctl");
1863
#endif /* __linux__ */
1864
/* Lower privileges */
1866
if(take_down_interface){
1867
/* Lower privileges */
1870
perror_plus("seteuid");
1873
/* Lower privileges permanently */
1876
perror_plus("setuid");
1885
ret = init_gnutls_global(pubkey, seckey);
1887
fprintf(stderr, "init_gnutls_global failed\n");
1888
exitcode = EX_UNAVAILABLE;
1891
gnutls_initialized = true;
1898
if(mkdtemp(tempdir) == NULL){
1899
perror_plus("mkdtemp");
1902
tempdir_created = true;
1908
if(not init_gpgme(pubkey, seckey, tempdir)){
1909
fprintf(stderr, "init_gpgme failed\n");
1910
exitcode = EX_UNAVAILABLE;
1913
gpgme_initialized = true;
1920
if(connect_to != NULL){
1921
/* Connect directly, do not use Zeroconf */
1922
/* (Mainly meant for debugging) */
1923
char *address = strrchr(connect_to, ':');
1924
if(address == NULL){
1925
fprintf(stderr, "No colon in address\n");
1926
exitcode = EX_USAGE;
1936
tmpmax = strtoimax(address+1, &tmp, 10);
1937
if(errno != 0 or tmp == address+1 or *tmp != '\0'
1938
or tmpmax != (uint16_t)tmpmax){
1939
fprintf(stderr, "Bad port number\n");
1940
exitcode = EX_USAGE;
1948
port = (uint16_t)tmpmax;
1950
/* Colon in address indicates IPv6 */
1952
if(strchr(connect_to, ':') != NULL){
1954
/* Accept [] around IPv6 address - see RFC 5952 */
1955
if(connect_to[0] == '[' and address[-1] == ']')
1963
address = connect_to;
1969
while(not quit_now){
1970
ret = start_mandos_communication(address, port, if_index, af);
1971
if(quit_now or ret == 0){
1975
fprintf(stderr, "Retrying in %d seconds\n",
1976
(int)retry_interval);
1978
sleep((int)retry_interval);
1982
exitcode = EXIT_SUCCESS;
1993
AvahiServerConfig config;
1994
/* Do not publish any local Zeroconf records */
1995
avahi_server_config_init(&config);
1996
config.publish_hinfo = 0;
1997
config.publish_addresses = 0;
1998
config.publish_workstation = 0;
1999
config.publish_domain = 0;
2001
/* Allocate a new server */
2002
mc.server = avahi_server_new(avahi_simple_poll_get
2003
(mc.simple_poll), &config, NULL,
2006
/* Free the Avahi configuration data */
2007
avahi_server_config_free(&config);
2010
/* Check if creating the Avahi server object succeeded */
2011
if(mc.server == NULL){
2012
fprintf(stderr, "Failed to create Avahi server: %s\n",
2013
avahi_strerror(error));
2014
exitcode = EX_UNAVAILABLE;
2022
/* Create the Avahi service browser */
2023
sb = avahi_s_service_browser_new(mc.server, if_index,
2024
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2025
NULL, 0, browse_callback, NULL);
2027
fprintf(stderr, "Failed to create service browser: %s\n",
2028
avahi_strerror(avahi_server_errno(mc.server)));
2029
exitcode = EX_UNAVAILABLE;
2037
/* Run the main loop */
2040
fprintf(stderr, "Starting Avahi loop search\n");
2043
ret = avahi_loop_with_timeout(mc.simple_poll,
2044
(int)(retry_interval * 1000));
2046
fprintf(stderr, "avahi_loop_with_timeout exited %s\n",
2047
(ret == 0) ? "successfully" : "with error");
1086
fprintf(stderr, "%s exiting\n", argv[0]);
1089
/* Cleanup things */
1091
avahi_s_service_browser_free(sb);
1093
if (mc.server != NULL)
1094
avahi_server_free(mc.server);
1096
if (mc.simple_poll != NULL)
1097
avahi_simple_poll_free(mc.simple_poll);
1099
if (gnutls_initalized){
1100
gnutls_certificate_free_credentials(mc.cred);
1101
gnutls_global_deinit ();
1102
gnutls_dh_params_deinit(mc.dh_params);
1105
if(gpgme_initalized){
1106
gpgme_release(mc.ctx);
1109
/* Removes the temp directory used by GPGME */
1110
if(tempdir[0] != '\0'){
1112
struct dirent *direntry;
1113
d = opendir(tempdir);
1118
direntry = readdir(d);
1119
if(direntry == NULL){
1122
if (direntry->d_type == DT_REG){
1123
char *fullname = NULL;
1124
ret = asprintf(&fullname, "%s/%s", tempdir,
1130
ret = unlink(fullname);
1132
fprintf(stderr, "unlink(\"%s\"): %s",
1133
fullname, strerror(errno));
1140
ret = rmdir(tempdir);
2053
fprintf(stderr, "%s exiting\n", argv[0]);
2056
/* Cleanup things */
2058
avahi_s_service_browser_free(sb);
2060
if(mc.server != NULL)
2061
avahi_server_free(mc.server);
2063
if(mc.simple_poll != NULL)
2064
avahi_simple_poll_free(mc.simple_poll);
2066
if(gnutls_initialized){
2067
gnutls_certificate_free_credentials(mc.cred);
2068
gnutls_global_deinit();
2069
gnutls_dh_params_deinit(mc.dh_params);
2072
if(gpgme_initialized){
2073
gpgme_release(mc.ctx);
2076
/* Cleans up the circular linked list of Mandos servers the client
2078
if(mc.current_server != NULL){
2079
mc.current_server->prev->next = NULL;
2080
while(mc.current_server != NULL){
2081
server *next = mc.current_server->next;
2082
free(mc.current_server);
2083
mc.current_server = next;
2087
/* XXX run network hooks "stop" here */
2089
/* Take down the network interface */
2090
if(take_down_interface){
2091
/* Re-raise priviliges */
2095
perror_plus("seteuid");
2098
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2100
perror_plus("ioctl SIOCGIFFLAGS");
2101
} else if(network.ifr_flags & IFF_UP) {
2102
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2103
ret = ioctl(sd, SIOCSIFFLAGS, &network);
2105
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2108
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2110
perror_plus("close");
2112
/* Lower privileges permanently */
2116
perror_plus("setuid");
2121
/* Removes the GPGME temp directory and all files inside */
2122
if(tempdir_created){
2123
struct dirent **direntries = NULL;
2124
struct dirent *direntry = NULL;
2125
int numentries = scandir(tempdir, &direntries, notdotentries,
2127
if (numentries > 0){
2128
for(int i = 0; i < numentries; i++){
2129
direntry = direntries[i];
2130
char *fullname = NULL;
2131
ret = asprintf(&fullname, "%s/%s", tempdir,
2134
perror_plus("asprintf");
2137
ret = remove(fullname);
2139
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
2146
/* need to clean even if 0 because man page doesn't specify */
2148
if (numentries == -1){
2149
perror_plus("scandir");
2151
ret = rmdir(tempdir);
2152
if(ret == -1 and errno != ENOENT){
2153
perror_plus("rmdir");
2158
sigemptyset(&old_sigterm_action.sa_mask);
2159
old_sigterm_action.sa_handler = SIG_DFL;
2160
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
2161
&old_sigterm_action,
2164
perror_plus("sigaction");
2167
ret = raise(signal_received);
2168
} while(ret != 0 and errno == EINTR);
2170
perror_plus("raise");
2173
TEMP_FAILURE_RETRY(pause());