56
56
#include <sys/stat.h> /* open(), S_ISREG */
57
57
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
inet_pton(), connect() */
58
inet_pton(), connect(),
59
60
#include <fcntl.h> /* open() */
60
61
#include <dirent.h> /* opendir(), struct dirent, readdir()
62
63
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
64
#include <assert.h> /* assert() */
65
65
#include <errno.h> /* perror(), errno,
66
66
program_invocation_short_name */
67
67
#include <time.h> /* nanosleep(), time(), sleep() */
74
74
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
75
75
getuid(), getgid(), seteuid(),
76
76
setgid(), pause(), _exit() */
77
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
77
#include <arpa/inet.h> /* inet_pton(), htons() */
78
78
#include <iso646.h> /* not, or, and */
79
79
#include <argp.h> /* struct argp_option, error_t, struct
80
80
argp_state, struct argp,
88
88
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
89
89
WEXITSTATUS(), WTERMSIG() */
90
90
#include <grp.h> /* setgroups() */
91
#include <argz.h> /* argz_add_sep(), argz_next(),
92
argz_delete(), argz_append(),
93
argz_stringify(), argz_add(),
95
#include <netdb.h> /* getnameinfo(), NI_NUMERICHOST,
96
EAI_SYSTEM, gai_strerror() */
93
99
#include <sys/klog.h> /* klogctl() */
159
164
const char *priority;
161
166
server *current_server;
168
size_t interfaces_size;
162
169
} mandos_context;
164
/* global context so signal handler can reach it*/
165
mandos_context mc = { .simple_poll = NULL, .server = NULL,
166
.dh_bits = 1024, .priority = "SECURE256"
167
":!CTYPE-X.509:+CTYPE-OPENPGP",
168
.current_server = NULL };
171
/* global so signal handler can reach it*/
172
AvahiSimplePoll *simple_poll;
170
174
sig_atomic_t quit_now = 0;
171
175
int signal_received = 0;
197
201
size_t incbuffer(char **buffer, size_t buffer_length,
198
202
size_t buffer_capacity){
199
203
if(buffer_length + BUFFER_SIZE > buffer_capacity){
200
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
204
char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
206
int old_errno = errno;
204
213
buffer_capacity += BUFFER_SIZE;
206
215
return buffer_capacity;
209
218
/* Add server to set of servers to retry periodically */
210
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
219
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
220
int af, server **current_server){
213
222
server *new_server = malloc(sizeof(server));
214
223
if(new_server == NULL){
223
232
perror_plus("strdup");
235
ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
237
perror_plus("clock_gettime");
226
240
/* Special case of first server */
227
if (mc.current_server == NULL){
241
if(*current_server == NULL){
228
242
new_server->next = new_server;
229
243
new_server->prev = new_server;
230
mc.current_server = new_server;
244
*current_server = new_server;
231
245
/* Place the new server last in the list */
233
new_server->next = mc.current_server;
234
new_server->prev = mc.current_server->prev;
247
new_server->next = *current_server;
248
new_server->prev = (*current_server)->prev;
235
249
new_server->prev->next = new_server;
236
mc.current_server->prev = new_server;
238
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
240
perror_plus("clock_gettime");
250
(*current_server)->prev = new_server;
377
386
/* Decrypt data from the cryptotext data buffer to the plaintext
379
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
388
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
380
389
if(rc != GPG_ERR_NO_ERROR){
381
390
fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
382
391
gpgme_strsource(rc), gpgme_strerror(rc));
383
392
plaintext_length = -1;
385
394
gpgme_decrypt_result_t result;
386
result = gpgme_op_decrypt_result(mc.ctx);
395
result = gpgme_op_decrypt_result(mc->ctx);
387
396
if(result == NULL){
388
397
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
534
543
/* GnuTLS server initialization */
535
ret = gnutls_dh_params_init(&mc.dh_params);
544
ret = gnutls_dh_params_init(&mc->dh_params);
536
545
if(ret != GNUTLS_E_SUCCESS){
537
546
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
538
547
" initialization: %s\n",
539
548
safer_gnutls_strerror(ret));
542
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
551
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
543
552
if(ret != GNUTLS_E_SUCCESS){
544
553
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
545
554
safer_gnutls_strerror(ret));
549
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
558
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
555
gnutls_certificate_free_credentials(mc.cred);
564
gnutls_certificate_free_credentials(mc->cred);
556
565
gnutls_global_deinit();
557
gnutls_dh_params_deinit(mc.dh_params);
566
gnutls_dh_params_deinit(mc->dh_params);
561
static int init_gnutls_session(gnutls_session_t *session){
570
static int init_gnutls_session(gnutls_session_t *session,
563
573
/* GnuTLS session creation */
660
ret = init_gnutls_session(&session);
670
/* If the interface is specified and we have a list of interfaces */
671
if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
672
/* Check if the interface is one of the interfaces we are using */
675
char *interface = NULL;
676
while((interface=argz_next(mc->interfaces, mc->interfaces_size,
678
if(if_nametoindex(interface) == (unsigned int)if_index){
685
/* This interface does not match any in the list, so we don't
686
connect to the server */
688
char interface[IF_NAMESIZE];
689
if(if_indextoname((unsigned int)if_index, interface) == NULL){
690
perror_plus("if_indextoname");
692
fprintf_plus(stderr, "Skipping server on non-used interface"
694
if_indextoname((unsigned int)if_index,
702
ret = init_gnutls_session(&session, mc);
666
708
fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
667
PRIu16 "\n", ip, port);
709
PRIuMAX "\n", ip, (uintmax_t)port);
670
712
tcp_sd = socket(pf, SOCK_STREAM, 0);
703
745
if(af == AF_INET6){
704
to.in6.sin6_port = htons(port); /* Spurious warnings from
706
-Wunreachable-code */
746
to.in6.sin6_port = htons(port);
748
#pragma GCC diagnostic push
749
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
708
751
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
709
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
752
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower */
754
#pragma GCC diagnostic pop
711
756
if(if_index == AVAHI_IF_UNSPEC){
712
757
fprintf_plus(stderr, "An IPv6 link-local address is"
713
758
" incomplete without a network interface\n");
734
777
if(if_indextoname((unsigned int)if_index, interface) == NULL){
735
778
perror_plus("if_indextoname");
737
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
738
"\n", ip, interface, port);
780
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
781
"\n", ip, interface, (uintmax_t)port);
741
fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
784
fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
785
ip, (uintmax_t)port);
744
787
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
745
788
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
747
789
if(af == AF_INET6){
748
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
790
ret = getnameinfo((struct sockaddr *)&(to.in6), sizeof(to.in6),
791
addrstr, sizeof(addrstr), NULL, 0,
751
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
794
ret = getnameinfo((struct sockaddr *)&(to.in), sizeof(to.in),
795
addrstr, sizeof(addrstr), NULL, 0,
755
perror_plus("inet_ntop");
757
if(strcmp(addrstr, ip) != 0){
758
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
798
if(ret == EAI_SYSTEM){
799
perror_plus("getnameinfo");
800
} else if(ret != 0) {
801
fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
802
} else if(strcmp(addrstr, ip) != 0){
803
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
1033
1080
PRIdMAX ") on port %" PRIu16 "\n", name,
1034
1081
host_name, ip, (intmax_t)interface, port);
1036
int ret = start_mandos_communication(ip, port, interface,
1037
avahi_proto_to_af(proto));
1083
int ret = start_mandos_communication(ip, (in_port_t)port,
1085
avahi_proto_to_af(proto),
1039
avahi_simple_poll_quit(mc.simple_poll);
1088
avahi_simple_poll_quit(simple_poll);
1041
if(not add_server(ip, port, interface,
1042
avahi_proto_to_af(proto))){
1090
if(not add_server(ip, (in_port_t)port, interface,
1091
avahi_proto_to_af(proto),
1092
&((mandos_context*)mc)->current_server)){
1043
1093
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1044
1094
" list\n", name);
1083
1136
the callback function is called the Avahi server will free the
1084
1137
resolver for us. */
1086
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1087
name, type, domain, protocol, 0,
1088
resolve_callback, NULL) == NULL)
1139
if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
1140
interface, protocol, name, type,
1141
domain, protocol, 0,
1142
resolve_callback, mc) == NULL)
1089
1143
fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1091
avahi_strerror(avahi_server_errno(mc.server)));
1145
avahi_strerror(avahi_server_errno
1146
(((mandos_context*)mc)->server)));
1094
1149
case AVAHI_BROWSER_REMOVE:
1113
1168
signal_received = sig;
1114
1169
int old_errno = errno;
1115
1170
/* set main loop to exit */
1116
if(mc.simple_poll != NULL){
1117
avahi_simple_poll_quit(mc.simple_poll);
1171
if(simple_poll != NULL){
1172
avahi_simple_poll_quit(simple_poll);
1119
1174
errno = old_errno;
1122
1177
bool get_flags(const char *ifname, struct ifreq *ifr){
1125
1181
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1127
1184
perror_plus("socket");
1130
1188
strcpy(ifr->ifr_name, ifname);
1131
1189
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1134
1193
perror_plus("ioctl SIOCGIFFLAGS");
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)){
1269
* This function determines if a network interface is up.
1271
bool interface_is_up(const char *interface){
1273
if(not get_flags(interface, &ifr)){
1275
fprintf_plus(stderr, "Failed to get flags for interface "
1276
"\"%s\"\n", interface);
1281
return (bool)(ifr.ifr_flags & IFF_UP);
1285
* This function determines if a network interface is running
1287
bool interface_is_running(const char *interface){
1289
if(not get_flags(interface, &ifr)){
1291
fprintf_plus(stderr, "Failed to get flags for interface "
1292
"\"%s\"\n", interface);
1297
return (bool)(ifr.ifr_flags & IFF_RUNNING);
1251
1300
int notdotentries(const struct dirent *direntry){
1347
1397
/* Calculating in ms how long time between now and server
1348
1398
who we visted longest time ago. Now - last seen. */
1349
1399
waited_time.tv_sec = (now.tv_sec
1350
- mc.current_server->last_seen.tv_sec);
1400
- mc->current_server->last_seen.tv_sec);
1351
1401
waited_time.tv_nsec = (now.tv_nsec
1352
- mc.current_server->last_seen.tv_nsec);
1402
- mc->current_server->last_seen.tv_nsec);
1353
1403
/* total time is 10s/10,000ms.
1354
1404
Converting to s from ms by dividing by 1,000,
1355
1405
and ns to ms by dividing by 1,000,000. */
1365
1415
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);
1416
ret = start_mandos_communication(mc->current_server->ip,
1417
mc->current_server->port,
1418
mc->current_server->if_index,
1419
mc->current_server->af, mc);
1371
avahi_simple_poll_quit(mc.simple_poll);
1421
avahi_simple_poll_quit(s);
1374
1424
ret = clock_gettime(CLOCK_MONOTONIC,
1375
&mc.current_server->last_seen);
1425
&mc->current_server->last_seen);
1377
1427
perror_plus("clock_gettime");
1380
mc.current_server = mc.current_server->next;
1430
mc->current_server = mc->current_server->next;
1381
1431
block_time = 0; /* Call avahi to find new Mandos
1382
1432
servers, but don't block */
1395
1445
/* Set effective uid to 0, return errno */
1396
int raise_privileges(void){
1397
int old_errno = errno;
1446
error_t raise_privileges(void){
1447
error_t old_errno = errno;
1448
error_t ret_errno = 0;
1400
1449
if(seteuid(0) == -1){
1401
1451
perror_plus("seteuid");
1404
1453
errno = old_errno;
1405
1454
return ret_errno;
1408
1457
/* 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();
1458
error_t raise_privileges_permanently(void){
1459
error_t old_errno = errno;
1460
error_t ret_errno = raise_privileges();
1412
1461
if(ret_errno != 0){
1413
1462
errno = old_errno;
1414
1463
return ret_errno;
1417
1465
if(setuid(0) == -1){
1418
1467
perror_plus("seteuid");
1421
1469
errno = old_errno;
1422
1470
return ret_errno;
1425
1473
/* Set effective user ID to unprivileged saved user ID */
1426
int lower_privileges(void){
1427
int old_errno = errno;
1474
error_t lower_privileges(void){
1475
error_t old_errno = errno;
1476
error_t ret_errno = 0;
1430
1477
if(seteuid(uid) == -1){
1431
1479
perror_plus("seteuid");
1485
/* Lower privileges permanently */
1486
error_t lower_privileges_permanently(void){
1487
error_t old_errno = errno;
1488
error_t ret_errno = 0;
1489
if(setuid(uid) == -1){
1491
perror_plus("setuid");
1434
1493
errno = old_errno;
1435
1494
return ret_errno;
1438
1497
bool run_network_hooks(const char *mode, const char *interface,
1439
1498
const float delay){
1440
1499
struct dirent **direntries;
1441
struct dirent *direntry;
1443
1500
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1445
1502
if(numhooks == -1){
1446
perror_plus("scandir");
1503
if(errno == ENOENT){
1505
fprintf_plus(stderr, "Network hook directory \"%s\" not"
1506
" found\n", hookdir);
1509
perror_plus("scandir");
1512
struct dirent *direntry;
1448
1514
int devnull = open("/dev/null", O_RDONLY);
1449
1515
for(int i = 0; i < numhooks; i++){
1450
1516
direntry = direntries[i];
1564
int bring_up_interface(const char * const interface, const float delay){
1630
error_t bring_up_interface(const char *const interface,
1633
error_t old_errno = errno;
1634
error_t ret_errno = 0;
1635
int ret, ret_setflags;
1567
1636
struct ifreq network;
1568
AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
1637
unsigned int if_index = if_nametoindex(interface);
1569
1638
if(if_index == 0){
1570
1639
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){
1649
if(not interface_is_up(interface)){
1650
if(not get_flags(interface, &network) and debug){
1652
fprintf_plus(stderr, "Failed to get flags for interface "
1653
"\"%s\"\n", interface);
1625
1656
network.ifr_flags |= IFF_UP;
1626
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1658
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1661
perror_plus("socket");
1673
fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1677
/* Raise priviliges */
1681
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1682
messages about the network interface to mess up the prompt */
1683
int ret_linux = klogctl(8, NULL, 5);
1684
bool restore_loglevel = true;
1685
if(ret_linux == -1){
1686
restore_loglevel = false;
1687
perror_plus("klogctl");
1689
#endif /* __linux__ */
1690
ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1693
if(restore_loglevel){
1694
ret_linux = klogctl(7, NULL, 0);
1695
if(ret_linux == -1){
1696
perror_plus("klogctl");
1699
#endif /* __linux__ */
1701
/* Lower privileges */
1704
/* Close the socket */
1705
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1707
perror_plus("close");
1710
if(ret_setflags == -1){
1628
1712
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 */
1717
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1642
1721
/* Sleep checking until interface is running.
1643
1722
Check every 0.25s, up to total time of delay */
1644
1723
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){
1724
if(interface_is_running(interface)){
1651
1727
struct timespec sleeptime = { .tv_nsec = 250000000 };
1654
1730
perror_plus("nanosleep");
1657
/* Close the socket */
1658
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1660
perror_plus("close");
1738
error_t take_down_interface(const char *const interface){
1739
error_t old_errno = errno;
1740
struct ifreq network;
1741
unsigned int if_index = if_nametoindex(interface);
1743
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1663
if(restore_loglevel){
1664
/* Restores kernel loglevel to default */
1665
ret = klogctl(7, NULL, 0);
1747
if(interface_is_up(interface)){
1748
error_t ret_errno = 0;
1749
if(not get_flags(interface, &network) and debug){
1751
fprintf_plus(stderr, "Failed to get flags for interface "
1752
"\"%s\"\n", interface);
1755
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1757
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1760
perror_plus("socket");
1766
fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1770
/* Raise priviliges */
1773
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1776
/* Lower privileges */
1779
/* Close the socket */
1780
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1667
perror_plus("klogctl");
1782
perror_plus("close");
1785
if(ret_setflags == -1){
1787
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1792
fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1670
#endif /* __linux__ */
1671
/* Lower privileges */
1676
1800
int main(int argc, char *argv[]){
1801
mandos_context mc = { .server = NULL, .dh_bits = 1024,
1802
.priority = "SECURE256:!CTYPE-X.509:"
1803
"+CTYPE-OPENPGP", .current_server = NULL,
1804
.interfaces = NULL, .interfaces_size = 0 };
1677
1805
AvahiSServiceBrowser *sb = NULL;
1680
1808
intmax_t tmpmax;
1682
1810
int exitcode = EXIT_SUCCESS;
1683
const char *interface = "";
1684
struct ifreq network;
1686
bool take_down_interface = false;
1811
char *interfaces_to_take_down = NULL;
1812
size_t interfaces_to_take_down_size = 0;
1687
1813
char tempdir[] = "/tmp/mandosXXXXXX";
1688
1814
bool tempdir_created = false;
1689
1815
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1690
1816
const char *seckey = PATHDIR "/" SECKEY;
1691
1817
const char *pubkey = PATHDIR "/" PUBKEY;
1818
char *interfaces_hooks = NULL;
1693
1820
bool gnutls_initialized = false;
1694
1821
bool gpgme_initialized = false;
1917
2048
/* Lower privileges */
1921
perror_plus("seteuid");
2053
/* Remove invalid interface names (except "none") */
2055
char *interface = NULL;
2056
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2058
if(strcmp(interface, "none") != 0
2059
and if_nametoindex(interface) == 0){
2060
if(interface[0] != '\0'){
2061
fprintf_plus(stderr, "Not using nonexisting interface"
2062
" \"%s\"\n", interface);
2064
argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
1926
2070
/* Run network hooks */
1927
if(not run_network_hooks("start", interface, delay)){
2072
if(mc.interfaces != NULL){
2073
interfaces_hooks = malloc(mc.interfaces_size);
2074
if(interfaces_hooks == NULL){
2075
perror_plus("malloc");
2078
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2079
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2081
if(not run_network_hooks("start", interfaces_hooks != NULL ?
2082
interfaces_hooks : "", delay)){
1932
2088
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
2091
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1968
2092
from the signal handler */
1969
2093
/* Initialize the pseudo-RNG for Avahi */
1970
2094
srand((unsigned int) time(NULL));
1971
mc.simple_poll = avahi_simple_poll_new();
1972
if(mc.simple_poll == NULL){
2095
simple_poll = avahi_simple_poll_new();
2096
if(simple_poll == NULL){
1973
2097
fprintf_plus(stderr,
1974
2098
"Avahi: Failed to create simple poll object.\n");
1975
2099
exitcode = EX_UNAVAILABLE;
2042
/* 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");
2166
/* If no interfaces were specified, make a list */
2167
if(mc.interfaces == NULL){
2168
struct dirent **direntries;
2169
/* Look for any good interfaces */
2170
ret = scandir(sys_class_net, &direntries, good_interface,
2173
/* Add all found interfaces to interfaces list */
2174
for(int i = 0; i < ret; ++i){
2175
ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2176
direntries[i]->d_name);
2179
perror_plus("argz_add");
2183
fprintf_plus(stderr, "Will use interface \"%s\"\n",
2184
direntries[i]->d_name);
2190
fprintf_plus(stderr, "Could not find a network interface\n");
2191
exitcode = EXIT_FAILURE;
2196
/* Bring up interfaces which are down, and remove any "none"s */
2198
char *interface = NULL;
2199
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2201
/* If interface name is "none", stop bringing up interfaces.
2202
Also remove all instances of "none" from the list */
2203
if(strcmp(interface, "none") == 0){
2204
argz_delete(&mc.interfaces, &mc.interfaces_size,
2207
while((interface = argz_next(mc.interfaces,
2208
mc.interfaces_size, interface))){
2209
if(strcmp(interface, "none") == 0){
2210
argz_delete(&mc.interfaces, &mc.interfaces_size,
2217
bool interface_was_up = interface_is_up(interface);
2218
ret = bring_up_interface(interface, delay);
2219
if(not interface_was_up){
2222
perror_plus("Failed to bring up interface");
2224
ret_errno = argz_add(&interfaces_to_take_down,
2225
&interfaces_to_take_down_size,
2229
perror_plus("argz_add");
2234
if(debug and (interfaces_to_take_down == NULL)){
2235
fprintf_plus(stderr, "No interfaces were brought up\n");
2239
/* If we only got one interface, explicitly use only that one */
2240
if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2242
fprintf_plus(stderr, "Using only interface \"%s\"\n",
2245
if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2055
ret = init_gnutls_global(pubkey, seckey);
2252
ret = init_gnutls_global(pubkey, seckey, &mc);
2057
2254
fprintf_plus(stderr, "init_gnutls_global failed\n");
2058
2255
exitcode = EX_UNAVAILABLE;
2170
2368
config.publish_domain = 0;
2172
2370
/* Allocate a new server */
2173
mc.server = avahi_server_new(avahi_simple_poll_get
2174
(mc.simple_poll), &config, NULL,
2371
mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
2372
&config, NULL, NULL, &ret_errno);
2177
2374
/* Free the Avahi configuration data */
2178
2375
avahi_server_config_free(&config);
2193
2390
/* Create the Avahi service browser */
2194
2391
sb = avahi_s_service_browser_new(mc.server, if_index,
2195
2392
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2196
NULL, 0, browse_callback, NULL);
2393
NULL, 0, browse_callback,
2197
2395
if(sb == NULL){
2198
2396
fprintf_plus(stderr, "Failed to create service browser: %s\n",
2199
2397
avahi_strerror(avahi_server_errno(mc.server)));
2211
2409
fprintf_plus(stderr, "Starting Avahi loop search\n");
2214
ret = avahi_loop_with_timeout(mc.simple_poll,
2215
(int)(retry_interval * 1000));
2412
ret = avahi_loop_with_timeout(simple_poll,
2413
(int)(retry_interval * 1000), &mc);
2217
2415
fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2218
2416
(ret == 0) ? "successfully" : "with error");
2258
/* Run network hooks */
2259
run_network_hooks("stop", interface, delay);
2261
2458
/* Re-raise priviliges */
2263
2460
raise_privileges();
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");
2462
/* Run network hooks */
2463
run_network_hooks("stop", interfaces_hooks != NULL ?
2464
interfaces_hooks : "", delay);
2466
/* Take down the network interfaces which were brought up */
2468
char *interface = NULL;
2469
while((interface=argz_next(interfaces_to_take_down,
2470
interfaces_to_take_down_size,
2472
ret_errno = take_down_interface(interface);
2475
perror_plus("Failed to take down interface");
2277
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2279
perror_plus("close");
2478
if(debug and (interfaces_to_take_down == NULL)){
2479
fprintf_plus(stderr, "No interfaces needed to be taken"
2283
/* Lower privileges permanently */
2287
perror_plus("setuid");
2484
lower_privileges_permanently();
2487
free(interfaces_to_take_down);
2488
free(interfaces_hooks);
2290
2490
/* Removes the GPGME temp directory and all files inside */
2291
2491
if(tempdir_created){