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 */
619
629
__attribute__((unused)) const char *txt){}
621
631
/* Called when a Mandos server is found */
622
static int start_mandos_communication(const char *ip, uint16_t port,
632
static int start_mandos_communication(const char *ip, in_port_t port,
623
633
AvahiIfIndex if_index,
634
int af, mandos_context *mc){
625
635
int ret, tcp_sd = -1;
628
struct sockaddr_in in;
629
struct sockaddr_in6 in6;
637
struct sockaddr_storage to;
631
638
char *buffer = NULL;
632
639
char *decrypted_buffer = NULL;
633
640
size_t buffer_length = 0;
660
ret = init_gnutls_session(&session);
667
/* If the interface is specified and we have a list of interfaces */
668
if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
669
/* Check if the interface is one of the interfaces we are using */
672
char *interface = NULL;
673
while((interface=argz_next(mc->interfaces, mc->interfaces_size,
675
if(if_nametoindex(interface) == (unsigned int)if_index){
682
/* This interface does not match any in the list, so we don't
683
connect to the server */
685
char interface[IF_NAMESIZE];
686
if(if_indextoname((unsigned int)if_index, interface) == NULL){
687
perror_plus("if_indextoname");
689
fprintf_plus(stderr, "Skipping server on non-used interface"
691
if_indextoname((unsigned int)if_index,
699
ret = init_gnutls_session(&session, mc);
666
705
fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
667
PRIu16 "\n", ip, port);
706
PRIuMAX "\n", ip, (uintmax_t)port);
670
709
tcp_sd = socket(pf, SOCK_STREAM, 0);
683
722
memset(&to, 0, sizeof(to));
684
723
if(af == AF_INET6){
685
to.in6.sin6_family = (sa_family_t)af;
686
ret = inet_pton(af, ip, &to.in6.sin6_addr);
724
((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
725
ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
687
726
} else { /* IPv4 */
688
to.in.sin_family = (sa_family_t)af;
689
ret = inet_pton(af, ip, &to.in.sin_addr);
727
((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
728
ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
703
742
if(af == AF_INET6){
704
to.in6.sin6_port = htons(port); /* Spurious warnings from
706
-Wunreachable-code */
708
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
709
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
743
((struct sockaddr_in6 *)&to)->sin6_port = htons(port);
744
if(IN6_IS_ADDR_LINKLOCAL
745
(&((struct sockaddr_in6 *)&to)->sin6_addr)){
711
746
if(if_index == AVAHI_IF_UNSPEC){
712
747
fprintf_plus(stderr, "An IPv6 link-local address is"
713
748
" incomplete without a network interface\n");
734
767
if(if_indextoname((unsigned int)if_index, interface) == NULL){
735
768
perror_plus("if_indextoname");
737
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
738
"\n", ip, interface, port);
770
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
771
"\n", ip, interface, (uintmax_t)port);
741
fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
774
fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
775
ip, (uintmax_t)port);
744
777
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
745
778
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
747
779
if(af == AF_INET6){
748
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
780
ret = getnameinfo((struct sockaddr *)&to,
781
sizeof(struct sockaddr_in6),
782
addrstr, sizeof(addrstr), NULL, 0,
751
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
785
ret = getnameinfo((struct sockaddr *)&to,
786
sizeof(struct sockaddr_in),
787
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);
790
if(ret == EAI_SYSTEM){
791
perror_plus("getnameinfo");
792
} else if(ret != 0) {
793
fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
794
} else if(strcmp(addrstr, ip) != 0){
795
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
768
804
if(af == AF_INET6){
769
ret = connect(tcp_sd, &to.in6, sizeof(to));
805
ret = connect(tcp_sd, (struct sockaddr *)&to,
806
sizeof(struct sockaddr_in6));
771
ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
808
ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
809
sizeof(struct sockaddr_in));
774
812
if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
1033
1074
PRIdMAX ") on port %" PRIu16 "\n", name,
1034
1075
host_name, ip, (intmax_t)interface, port);
1036
int ret = start_mandos_communication(ip, port, interface,
1037
avahi_proto_to_af(proto));
1077
int ret = start_mandos_communication(ip, (in_port_t)port,
1079
avahi_proto_to_af(proto),
1039
avahi_simple_poll_quit(mc.simple_poll);
1082
avahi_simple_poll_quit(simple_poll);
1041
if(not add_server(ip, port, interface,
1042
avahi_proto_to_af(proto))){
1084
if(not add_server(ip, (in_port_t)port, interface,
1085
avahi_proto_to_af(proto),
1086
&((mandos_context*)mc)->current_server)){
1043
1087
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1044
1088
" list\n", name);
1083
1130
the callback function is called the Avahi server will free the
1084
1131
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)
1133
if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
1134
interface, protocol, name, type,
1135
domain, protocol, 0,
1136
resolve_callback, mc) == NULL)
1089
1137
fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1091
avahi_strerror(avahi_server_errno(mc.server)));
1139
avahi_strerror(avahi_server_errno
1140
(((mandos_context*)mc)->server)));
1094
1143
case AVAHI_BROWSER_REMOVE:
1113
1162
signal_received = sig;
1114
1163
int old_errno = errno;
1115
1164
/* set main loop to exit */
1116
if(mc.simple_poll != NULL){
1117
avahi_simple_poll_quit(mc.simple_poll);
1165
if(simple_poll != NULL){
1166
avahi_simple_poll_quit(simple_poll);
1119
1168
errno = old_errno;
1122
1171
bool get_flags(const char *ifname, struct ifreq *ifr){
1125
1175
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1127
1178
perror_plus("socket");
1130
1182
strcpy(ifr->ifr_name, ifname);
1131
1183
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1134
1187
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)){
1263
* This function determines if a network interface is up.
1265
bool interface_is_up(const char *interface){
1267
if(not get_flags(interface, &ifr)){
1269
fprintf_plus(stderr, "Failed to get flags for interface "
1270
"\"%s\"\n", interface);
1275
return (bool)(ifr.ifr_flags & IFF_UP);
1279
* This function determines if a network interface is running
1281
bool interface_is_running(const char *interface){
1283
if(not get_flags(interface, &ifr)){
1285
fprintf_plus(stderr, "Failed to get flags for interface "
1286
"\"%s\"\n", interface);
1291
return (bool)(ifr.ifr_flags & IFF_RUNNING);
1251
1294
int notdotentries(const struct dirent *direntry){
1347
1391
/* Calculating in ms how long time between now and server
1348
1392
who we visted longest time ago. Now - last seen. */
1349
1393
waited_time.tv_sec = (now.tv_sec
1350
- mc.current_server->last_seen.tv_sec);
1394
- mc->current_server->last_seen.tv_sec);
1351
1395
waited_time.tv_nsec = (now.tv_nsec
1352
- mc.current_server->last_seen.tv_nsec);
1396
- mc->current_server->last_seen.tv_nsec);
1353
1397
/* total time is 10s/10,000ms.
1354
1398
Converting to s from ms by dividing by 1,000,
1355
1399
and ns to ms by dividing by 1,000,000. */
1365
1409
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);
1410
ret = start_mandos_communication(mc->current_server->ip,
1411
mc->current_server->port,
1412
mc->current_server->if_index,
1413
mc->current_server->af, mc);
1371
avahi_simple_poll_quit(mc.simple_poll);
1415
avahi_simple_poll_quit(s);
1374
1418
ret = clock_gettime(CLOCK_MONOTONIC,
1375
&mc.current_server->last_seen);
1419
&mc->current_server->last_seen);
1377
1421
perror_plus("clock_gettime");
1380
mc.current_server = mc.current_server->next;
1424
mc->current_server = mc->current_server->next;
1381
1425
block_time = 0; /* Call avahi to find new Mandos
1382
1426
servers, but don't block */
1395
1439
/* Set effective uid to 0, return errno */
1396
int raise_privileges(void){
1397
int old_errno = errno;
1440
error_t raise_privileges(void){
1441
error_t old_errno = errno;
1442
error_t ret_errno = 0;
1400
1443
if(seteuid(0) == -1){
1401
1445
perror_plus("seteuid");
1404
1447
errno = old_errno;
1405
1448
return ret_errno;
1408
1451
/* 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();
1452
error_t raise_privileges_permanently(void){
1453
error_t old_errno = errno;
1454
error_t ret_errno = raise_privileges();
1412
1455
if(ret_errno != 0){
1413
1456
errno = old_errno;
1414
1457
return ret_errno;
1417
1459
if(setuid(0) == -1){
1418
1461
perror_plus("seteuid");
1421
1463
errno = old_errno;
1422
1464
return ret_errno;
1425
1467
/* Set effective user ID to unprivileged saved user ID */
1426
int lower_privileges(void){
1427
int old_errno = errno;
1468
error_t lower_privileges(void){
1469
error_t old_errno = errno;
1470
error_t ret_errno = 0;
1430
1471
if(seteuid(uid) == -1){
1431
1473
perror_plus("seteuid");
1479
/* Lower privileges permanently */
1480
error_t lower_privileges_permanently(void){
1481
error_t old_errno = errno;
1482
error_t ret_errno = 0;
1483
if(setuid(uid) == -1){
1485
perror_plus("setuid");
1434
1487
errno = old_errno;
1435
1488
return ret_errno;
1438
1491
bool run_network_hooks(const char *mode, const char *interface,
1439
1492
const float delay){
1440
1493
struct dirent **direntries;
1441
struct dirent *direntry;
1443
1494
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1445
1496
if(numhooks == -1){
1446
perror_plus("scandir");
1497
if(errno == ENOENT){
1499
fprintf_plus(stderr, "Network hook directory \"%s\" not"
1500
" found\n", hookdir);
1503
perror_plus("scandir");
1506
struct dirent *direntry;
1448
1508
int devnull = open("/dev/null", O_RDONLY);
1449
1509
for(int i = 0; i < numhooks; i++){
1450
1510
direntry = direntries[i];
1564
int bring_up_interface(const char * const interface, const float delay){
1624
error_t bring_up_interface(const char *const interface,
1566
int old_errno = errno;
1627
error_t old_errno = errno;
1628
error_t ret_errno = 0;
1629
int ret, ret_setflags;
1569
1630
struct ifreq network;
1570
AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
1631
unsigned int if_index = if_nametoindex(interface);
1571
1632
if(if_index == 0){
1572
1633
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1573
1634
errno = old_errno;
1582
/* Re-raise priviliges */
1586
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1587
messages about the network interface to mess up the prompt */
1588
ret = klogctl(8, NULL, 5);
1589
bool restore_loglevel = true;
1591
restore_loglevel = false;
1592
perror_plus("klogctl");
1594
#endif /* __linux__ */
1596
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1599
perror_plus("socket");
1601
if(restore_loglevel){
1602
ret = klogctl(7, NULL, 0);
1604
perror_plus("klogctl");
1607
#endif /* __linux__ */
1608
/* Lower privileges */
1613
strcpy(network.ifr_name, interface);
1614
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1617
perror_plus("ioctl SIOCGIFFLAGS");
1619
if(restore_loglevel){
1620
ret = klogctl(7, NULL, 0);
1622
perror_plus("klogctl");
1625
#endif /* __linux__ */
1626
/* Lower privileges */
1631
if((network.ifr_flags & IFF_UP) == 0){
1643
if(not interface_is_up(interface)){
1644
if(not get_flags(interface, &network) and debug){
1646
fprintf_plus(stderr, "Failed to get flags for interface "
1647
"\"%s\"\n", interface);
1632
1650
network.ifr_flags |= IFF_UP;
1633
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1652
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1655
perror_plus("socket");
1667
fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1671
/* Raise priviliges */
1675
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1676
messages about the network interface to mess up the prompt */
1677
int ret_linux = klogctl(8, NULL, 5);
1678
bool restore_loglevel = true;
1679
if(ret_linux == -1){
1680
restore_loglevel = false;
1681
perror_plus("klogctl");
1683
#endif /* __linux__ */
1684
ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1687
if(restore_loglevel){
1688
ret_linux = klogctl(7, NULL, 0);
1689
if(ret_linux == -1){
1690
perror_plus("klogctl");
1693
#endif /* __linux__ */
1695
/* Lower privileges */
1698
/* Close the socket */
1699
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1701
perror_plus("close");
1704
if(ret_setflags == -1){
1636
1706
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1638
if(restore_loglevel){
1639
ret = klogctl(7, NULL, 0);
1641
perror_plus("klogctl");
1644
#endif /* __linux__ */
1645
/* Lower privileges */
1647
1707
errno = old_errno;
1648
1708
return ret_errno;
1711
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1651
1715
/* Sleep checking until interface is running.
1652
1716
Check every 0.25s, up to total time of delay */
1653
1717
for(int i=0; i < delay * 4; i++){
1654
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1656
perror_plus("ioctl SIOCGIFFLAGS");
1657
} else if(network.ifr_flags & IFF_RUNNING){
1718
if(interface_is_running(interface)){
1660
1721
struct timespec sleeptime = { .tv_nsec = 250000000 };
1663
1724
perror_plus("nanosleep");
1666
/* Close the socket */
1667
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1669
perror_plus("close");
1732
error_t take_down_interface(const char *const interface){
1733
error_t old_errno = errno;
1734
struct ifreq network;
1735
unsigned int if_index = if_nametoindex(interface);
1737
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1672
if(restore_loglevel){
1673
/* Restores kernel loglevel to default */
1674
ret = klogctl(7, NULL, 0);
1741
if(interface_is_up(interface)){
1742
error_t ret_errno = 0;
1743
if(not get_flags(interface, &network) and debug){
1745
fprintf_plus(stderr, "Failed to get flags for interface "
1746
"\"%s\"\n", interface);
1749
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1751
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1754
perror_plus("socket");
1760
fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1764
/* Raise priviliges */
1767
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1770
/* Lower privileges */
1773
/* Close the socket */
1774
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1676
perror_plus("klogctl");
1776
perror_plus("close");
1779
if(ret_setflags == -1){
1781
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1786
fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1679
#endif /* __linux__ */
1680
/* Lower privileges */
1682
1790
errno = old_errno;
1686
1794
int main(int argc, char *argv[]){
1795
mandos_context mc = { .server = NULL, .dh_bits = 1024,
1796
.priority = "SECURE256:!CTYPE-X.509:"
1797
"+CTYPE-OPENPGP", .current_server = NULL,
1798
.interfaces = NULL, .interfaces_size = 0 };
1687
1799
AvahiSServiceBrowser *sb = NULL;
1690
1802
intmax_t tmpmax;
1692
1804
int exitcode = EXIT_SUCCESS;
1693
const char *interface = "";
1694
struct ifreq network;
1696
bool take_down_interface = false;
1805
char *interfaces_to_take_down = NULL;
1806
size_t interfaces_to_take_down_size = 0;
1697
1807
char tempdir[] = "/tmp/mandosXXXXXX";
1698
1808
bool tempdir_created = false;
1699
1809
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1700
1810
const char *seckey = PATHDIR "/" SECKEY;
1701
1811
const char *pubkey = PATHDIR "/" PUBKEY;
1812
char *interfaces_hooks = NULL;
1703
1814
bool gnutls_initialized = false;
1704
1815
bool gpgme_initialized = false;
1927
2042
/* Lower privileges */
1931
perror_plus("seteuid");
2047
/* Remove invalid interface names (except "none") */
2049
char *interface = NULL;
2050
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2052
if(strcmp(interface, "none") != 0
2053
and if_nametoindex(interface) == 0){
2054
if(interface[0] != '\0'){
2055
fprintf_plus(stderr, "Not using nonexisting interface"
2056
" \"%s\"\n", interface);
2058
argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
1936
2064
/* Run network hooks */
1937
if(not run_network_hooks("start", interface, delay)){
2066
if(mc.interfaces != NULL){
2067
interfaces_hooks = malloc(mc.interfaces_size);
2068
if(interfaces_hooks == NULL){
2069
perror_plus("malloc");
2072
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2073
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2075
if(not run_network_hooks("start", interfaces_hooks != NULL ?
2076
interfaces_hooks : "", delay)){
1942
2082
avahi_set_log_function(empty_log);
1945
if(interface[0] == '\0'){
1946
struct dirent **direntries;
1947
/* First look for interfaces that are up */
1948
ret = scandir(sys_class_net, &direntries, up_interface,
1951
/* No up interfaces, look for any good interfaces */
1953
ret = scandir(sys_class_net, &direntries, good_interface,
1957
/* Pick the first interface returned */
1958
interface = strdup(direntries[0]->d_name);
1960
fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1962
if(interface == NULL){
1963
perror_plus("malloc");
1965
exitcode = EXIT_FAILURE;
1971
fprintf_plus(stderr, "Could not find a network interface\n");
1972
exitcode = EXIT_FAILURE;
1977
2085
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1978
2086
from the signal handler */
1979
2087
/* Initialize the pseudo-RNG for Avahi */
1980
2088
srand((unsigned int) time(NULL));
1981
mc.simple_poll = avahi_simple_poll_new();
1982
if(mc.simple_poll == NULL){
2089
simple_poll = avahi_simple_poll_new();
2090
if(simple_poll == NULL){
1983
2091
fprintf_plus(stderr,
1984
2092
"Avahi: Failed to create simple poll object.\n");
1985
2093
exitcode = EX_UNAVAILABLE;
2052
/* If the interface is down, bring it up */
2053
if((interface[0] != '\0') and (strcmp(interface, "none") != 0)){
2054
ret = bring_up_interface(interface, delay);
2057
perror_plus("Failed to bring up interface");
2160
/* If no interfaces were specified, make a list */
2161
if(mc.interfaces == NULL){
2162
struct dirent **direntries;
2163
/* Look for any good interfaces */
2164
ret = scandir(sys_class_net, &direntries, good_interface,
2167
/* Add all found interfaces to interfaces list */
2168
for(int i = 0; i < ret; ++i){
2169
ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2170
direntries[i]->d_name);
2173
perror_plus("argz_add");
2177
fprintf_plus(stderr, "Will use interface \"%s\"\n",
2178
direntries[i]->d_name);
2184
fprintf_plus(stderr, "Could not find a network interface\n");
2185
exitcode = EXIT_FAILURE;
2190
/* Bring up interfaces which are down, and remove any "none"s */
2192
char *interface = NULL;
2193
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2195
/* If interface name is "none", stop bringing up interfaces.
2196
Also remove all instances of "none" from the list */
2197
if(strcmp(interface, "none") == 0){
2198
argz_delete(&mc.interfaces, &mc.interfaces_size,
2201
while((interface = argz_next(mc.interfaces,
2202
mc.interfaces_size, interface))){
2203
if(strcmp(interface, "none") == 0){
2204
argz_delete(&mc.interfaces, &mc.interfaces_size,
2211
bool interface_was_up = interface_is_up(interface);
2212
ret = bring_up_interface(interface, delay);
2213
if(not interface_was_up){
2216
perror_plus("Failed to bring up interface");
2218
ret_errno = argz_add(&interfaces_to_take_down,
2219
&interfaces_to_take_down_size,
2223
perror_plus("argz_add");
2228
if(debug and (interfaces_to_take_down == NULL)){
2229
fprintf_plus(stderr, "No interfaces were brought up\n");
2233
/* If we only got one interface, explicitly use only that one */
2234
if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2236
fprintf_plus(stderr, "Using only interface \"%s\"\n",
2239
if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
2065
ret = init_gnutls_global(pubkey, seckey);
2246
ret = init_gnutls_global(pubkey, seckey, &mc);
2067
2248
fprintf_plus(stderr, "init_gnutls_global failed\n");
2068
2249
exitcode = EX_UNAVAILABLE;
2117
2298
tmpmax = strtoimax(address+1, &tmp, 10);
2118
2299
if(errno != 0 or tmp == address+1 or *tmp != '\0'
2119
or tmpmax != (uint16_t)tmpmax){
2300
or tmpmax != (in_port_t)tmpmax){
2120
2301
fprintf_plus(stderr, "Bad port number\n");
2121
2302
exitcode = EX_USAGE;
2129
port = (uint16_t)tmpmax;
2310
port = (in_port_t)tmpmax;
2130
2311
*address = '\0';
2131
2312
/* Colon in address indicates IPv6 */
2180
2362
config.publish_domain = 0;
2182
2364
/* Allocate a new server */
2183
mc.server = avahi_server_new(avahi_simple_poll_get
2184
(mc.simple_poll), &config, NULL,
2365
mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
2366
&config, NULL, NULL, &ret_errno);
2187
2368
/* Free the Avahi configuration data */
2188
2369
avahi_server_config_free(&config);
2203
2384
/* Create the Avahi service browser */
2204
2385
sb = avahi_s_service_browser_new(mc.server, if_index,
2205
2386
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2206
NULL, 0, browse_callback, NULL);
2387
NULL, 0, browse_callback,
2207
2389
if(sb == NULL){
2208
2390
fprintf_plus(stderr, "Failed to create service browser: %s\n",
2209
2391
avahi_strerror(avahi_server_errno(mc.server)));
2221
2403
fprintf_plus(stderr, "Starting Avahi loop search\n");
2224
ret = avahi_loop_with_timeout(mc.simple_poll,
2225
(int)(retry_interval * 1000));
2406
ret = avahi_loop_with_timeout(simple_poll,
2407
(int)(retry_interval * 1000), &mc);
2227
2409
fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2228
2410
(ret == 0) ? "successfully" : "with error");
2268
/* Run network hooks */
2269
run_network_hooks("stop", interface, delay);
2271
2452
/* Re-raise priviliges */
2273
2454
raise_privileges();
2275
/* Take down the network interface */
2276
if(take_down_interface and geteuid() == 0){
2277
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2279
perror_plus("ioctl SIOCGIFFLAGS");
2280
} else if(network.ifr_flags & IFF_UP){
2281
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2282
ret = ioctl(sd, SIOCSIFFLAGS, &network);
2284
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2456
/* Run network hooks */
2457
run_network_hooks("stop", interfaces_hooks != NULL ?
2458
interfaces_hooks : "", delay);
2460
/* Take down the network interfaces which were brought up */
2462
char *interface = NULL;
2463
while((interface=argz_next(interfaces_to_take_down,
2464
interfaces_to_take_down_size,
2466
ret_errno = take_down_interface(interface);
2469
perror_plus("Failed to take down interface");
2287
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2289
perror_plus("close");
2472
if(debug and (interfaces_to_take_down == NULL)){
2473
fprintf_plus(stderr, "No interfaces needed to be taken"
2293
/* Lower privileges permanently */
2297
perror_plus("setuid");
2478
lower_privileges_permanently();
2481
free(interfaces_to_take_down);
2482
free(interfaces_hooks);
2300
2484
/* Removes the GPGME temp directory and all files inside */
2301
2485
if(tempdir_created){