1451
1380
ret = avahi_simple_poll_iterate(s, (int)block_time);
1454
if(ret > 0 or errno != EINTR){
1383
if (ret > 0 or errno != EINTR){
1455
1384
return (ret != 1) ? ret : 0;
1461
/* Set effective uid to 0, return errno */
1462
__attribute__((warn_unused_result))
1463
error_t raise_privileges(void){
1464
error_t old_errno = errno;
1465
error_t ret_errno = 0;
1466
if(seteuid(0) == -1){
1468
perror_plus("seteuid");
1474
/* Set effective and real user ID to 0. Return errno. */
1475
__attribute__((warn_unused_result))
1476
error_t raise_privileges_permanently(void){
1477
error_t old_errno = errno;
1478
error_t ret_errno = raise_privileges();
1483
if(setuid(0) == -1){
1485
perror_plus("seteuid");
1491
/* Set effective user ID to unprivileged saved user ID */
1492
__attribute__((warn_unused_result))
1493
error_t lower_privileges(void){
1494
error_t old_errno = errno;
1495
error_t ret_errno = 0;
1496
if(seteuid(uid) == -1){
1498
perror_plus("seteuid");
1504
/* Lower privileges permanently */
1505
__attribute__((warn_unused_result))
1506
error_t lower_privileges_permanently(void){
1507
error_t old_errno = errno;
1508
error_t ret_errno = 0;
1509
if(setuid(uid) == -1){
1511
perror_plus("setuid");
1519
* Based on the example in the GNU LibC manual chapter 13.13 "File
1520
* Descriptor Flags".
1521
| [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
1523
__attribute__((warn_unused_result))
1524
static int set_cloexec_flag(int fd){
1525
int ret = (int)TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD, 0));
1526
/* If reading the flags failed, return error indication now. */
1530
/* Store modified flag word in the descriptor. */
1531
return (int)TEMP_FAILURE_RETRY(fcntl(fd, F_SETFD,
1534
#endif /* not O_CLOEXEC */
1536
__attribute__((nonnull))
1537
void run_network_hooks(const char *mode, const char *interface,
1390
bool run_network_hooks(const char *mode, const char *interface,
1538
1391
const float delay){
1539
1392
struct dirent **direntries;
1540
if(hookdir_fd == -1){
1541
hookdir_fd = open(hookdir, O_RDONLY |
1544
#else /* not O_CLOEXEC */
1546
#endif /* not O_CLOEXEC */
1548
if(hookdir_fd == -1){
1549
if(errno == ENOENT){
1551
fprintf_plus(stderr, "Network hook directory \"%s\" not"
1552
" found\n", hookdir);
1555
perror_plus("open");
1560
if(set_cloexec_flag(hookdir_fd) < 0){
1561
perror_plus("set_cloexec_flag");
1562
if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1563
perror_plus("close");
1569
#endif /* not O_CLOEXEC */
1572
#if __GLIBC_PREREQ(2, 15)
1573
int numhooks = scandirat(hookdir_fd, ".", &direntries,
1574
runnable_hook, alphasort);
1575
#else /* not __GLIBC_PREREQ(2, 15) */
1576
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1578
#endif /* not __GLIBC_PREREQ(2, 15) */
1579
#else /* not __GLIBC__ */
1580
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1582
#endif /* not __GLIBC__ */
1393
struct dirent *direntry;
1395
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1583
1397
if(numhooks == -1){
1584
1398
perror_plus("scandir");
1587
struct dirent *direntry;
1589
int devnull = open("/dev/null", O_RDONLY);
1590
for(int i = 0; i < numhooks; i++){
1591
direntry = direntries[i];
1593
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1596
pid_t hook_pid = fork();
1599
/* Raise privileges */
1600
if(raise_privileges_permanently() != 0){
1601
perror_plus("Failed to raise privileges");
1608
perror_plus("setgid");
1611
/* Reset supplementary groups */
1613
ret = setgroups(0, NULL);
1615
perror_plus("setgroups");
1618
ret = dup2(devnull, STDIN_FILENO);
1620
perror_plus("dup2(devnull, STDIN_FILENO)");
1623
ret = close(devnull);
1625
perror_plus("close");
1628
ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1630
perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1633
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1635
perror_plus("setenv");
1638
ret = setenv("DEVICE", interface, 1);
1640
perror_plus("setenv");
1643
ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1645
perror_plus("setenv");
1648
ret = setenv("MODE", mode, 1);
1650
perror_plus("setenv");
1654
ret = asprintf(&delaystring, "%f", (double)delay);
1400
int devnull = open("/dev/null", O_RDONLY);
1401
for(int i = 0; i < numhooks; i++){
1402
direntry = direntries[i];
1403
char *fullname = NULL;
1404
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1656
1406
perror_plus("asprintf");
1659
ret = setenv("DELAY", delaystring, 1);
1410
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1413
pid_t hook_pid = fork();
1416
/* Raise privileges */
1420
perror_plus("seteuid");
1422
/* Raise privileges even more */
1426
perror_plus("setuid");
1432
perror_plus("setgid");
1434
/* Reset supplementary groups */
1436
ret = setgroups(0, NULL);
1438
perror_plus("setgroups");
1440
dup2(devnull, STDIN_FILENO);
1442
dup2(STDERR_FILENO, STDOUT_FILENO);
1443
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1445
perror_plus("setenv");
1448
ret = setenv("DEVICE", interface, 1);
1450
perror_plus("setenv");
1453
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1455
perror_plus("setenv");
1458
ret = setenv("MODE", mode, 1);
1460
perror_plus("setenv");
1464
ret = asprintf(&delaystring, "%f", delay);
1466
perror_plus("asprintf");
1469
ret = setenv("DELAY", delaystring, 1);
1472
perror_plus("setenv");
1661
1475
free(delaystring);
1662
perror_plus("setenv");
1666
if(connect_to != NULL){
1667
ret = setenv("CONNECT", connect_to, 1);
1669
perror_plus("setenv");
1673
if(fexecve(hookdir_fd, (char *const [])
1674
{ direntry->d_name, NULL }, environ) == -1){
1675
perror_plus("fexecve");
1676
_exit(EXIT_FAILURE);
1680
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1681
perror_plus("waitpid");
1684
if(WIFEXITED(status)){
1685
if(WEXITSTATUS(status) != 0){
1686
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1687
" with status %d\n", direntry->d_name,
1688
WEXITSTATUS(status));
1691
} else if(WIFSIGNALED(status)){
1692
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1693
" signal %d\n", direntry->d_name,
1697
fprintf_plus(stderr, "Warning: network hook \"%s\""
1698
" crashed\n", direntry->d_name);
1703
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1707
if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1708
perror_plus("close");
1715
__attribute__((nonnull, warn_unused_result))
1716
error_t bring_up_interface(const char *const interface,
1718
error_t old_errno = errno;
1720
struct ifreq network;
1721
unsigned int if_index = if_nametoindex(interface);
1723
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1733
if(not interface_is_up(interface)){
1734
error_t ret_errno = 0, ioctl_errno = 0;
1735
if(not get_flags(interface, &network)){
1737
fprintf_plus(stderr, "Failed to get flags for interface "
1738
"\"%s\"\n", interface);
1742
network.ifr_flags |= IFF_UP; /* set flag */
1744
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1747
perror_plus("socket");
1753
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1755
perror_plus("close");
1762
fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1766
/* Raise privileges */
1767
ret_errno = raise_privileges();
1769
perror_plus("Failed to raise privileges");
1774
bool restore_loglevel = false;
1776
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1777
messages about the network interface to mess up the prompt */
1778
ret_linux = klogctl(8, NULL, 5);
1779
if(ret_linux == -1){
1780
perror_plus("klogctl");
1782
restore_loglevel = true;
1785
#endif /* __linux__ */
1786
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1787
ioctl_errno = errno;
1789
if(restore_loglevel){
1790
ret_linux = klogctl(7, NULL, 0);
1791
if(ret_linux == -1){
1792
perror_plus("klogctl");
1795
#endif /* __linux__ */
1797
/* If raise_privileges() succeeded above */
1799
/* Lower privileges */
1800
ret_errno = lower_privileges();
1803
perror_plus("Failed to lower privileges");
1807
/* Close the socket */
1808
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1810
perror_plus("close");
1813
if(ret_setflags == -1){
1814
errno = ioctl_errno;
1815
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1820
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1824
/* Sleep checking until interface is running.
1825
Check every 0.25s, up to total time of delay */
1826
for(int i=0; i < delay * 4; i++){
1827
if(interface_is_running(interface)){
1830
struct timespec sleeptime = { .tv_nsec = 250000000 };
1831
ret = nanosleep(&sleeptime, NULL);
1832
if(ret == -1 and errno != EINTR){
1833
perror_plus("nanosleep");
1841
__attribute__((nonnull, warn_unused_result))
1842
error_t take_down_interface(const char *const interface){
1843
error_t old_errno = errno;
1844
struct ifreq network;
1845
unsigned int if_index = if_nametoindex(interface);
1847
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1851
if(interface_is_up(interface)){
1852
error_t ret_errno = 0, ioctl_errno = 0;
1853
if(not get_flags(interface, &network) and debug){
1855
fprintf_plus(stderr, "Failed to get flags for interface "
1856
"\"%s\"\n", interface);
1860
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1862
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1865
perror_plus("socket");
1871
fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1875
/* Raise privileges */
1876
ret_errno = raise_privileges();
1878
perror_plus("Failed to raise privileges");
1881
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1882
ioctl_errno = errno;
1884
/* If raise_privileges() succeeded above */
1886
/* Lower privileges */
1887
ret_errno = lower_privileges();
1890
perror_plus("Failed to lower privileges");
1894
/* Close the socket */
1895
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1897
perror_plus("close");
1900
if(ret_setflags == -1){
1901
errno = ioctl_errno;
1902
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1907
fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1476
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1477
perror_plus("execl");
1478
_exit(EXIT_FAILURE);
1482
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1483
perror_plus("waitpid");
1487
if(WIFEXITED(status)){
1488
if(WEXITSTATUS(status) != 0){
1489
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1490
" with status %d\n", direntry->d_name,
1491
WEXITSTATUS(status));
1495
} else if(WIFSIGNALED(status)){
1496
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1497
" signal %d\n", direntry->d_name,
1502
fprintf_plus(stderr, "Warning: network hook \"%s\""
1503
" crashed\n", direntry->d_name);
1510
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1915
1519
int main(int argc, char *argv[]){
1916
mandos_context mc = { .server = NULL, .dh_bits = 1024,
1917
.priority = "SECURE256:!CTYPE-X.509:"
1918
"+CTYPE-OPENPGP", .current_server = NULL,
1919
.interfaces = NULL, .interfaces_size = 0 };
1920
1520
AvahiSServiceBrowser *sb = NULL;
1923
1523
intmax_t tmpmax;
1925
1525
int exitcode = EXIT_SUCCESS;
1926
char *interfaces_to_take_down = NULL;
1927
size_t interfaces_to_take_down_size = 0;
1928
char run_tempdir[] = "/run/tmp/mandosXXXXXX";
1929
char old_tempdir[] = "/tmp/mandosXXXXXX";
1930
char *tempdir = NULL;
1526
const char *interface = "";
1527
struct ifreq network;
1529
bool take_down_interface = false;
1532
char tempdir[] = "/tmp/mandosXXXXXX";
1533
bool tempdir_created = false;
1931
1534
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1932
1535
const char *seckey = PATHDIR "/" SECKEY;
1933
1536
const char *pubkey = PATHDIR "/" PUBKEY;
1934
char *interfaces_hooks = NULL;
1936
1538
bool gnutls_initialized = false;
1937
1539
bool gpgme_initialized = false;
2168
1766
/* Lower privileges */
2169
ret_errno = lower_privileges();
2172
perror_plus("Failed to lower privileges");
2177
/* Remove invalid interface names (except "none") */
2179
char *interface = NULL;
2180
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2182
if(strcmp(interface, "none") != 0
2183
and if_nametoindex(interface) == 0){
2184
if(interface[0] != '\0'){
2185
fprintf_plus(stderr, "Not using nonexisting interface"
2186
" \"%s\"\n", interface);
2188
argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
1770
perror_plus("seteuid");
2194
1775
/* Run network hooks */
2196
if(mc.interfaces != NULL){
2197
interfaces_hooks = malloc(mc.interfaces_size);
2198
if(interfaces_hooks == NULL){
2199
perror_plus("malloc");
2202
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2203
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2205
run_network_hooks("start", interfaces_hooks != NULL ?
2206
interfaces_hooks : "", delay);
1776
if(not run_network_hooks("start", interface, delay)){
2210
1781
avahi_set_log_function(empty_log);
1784
if(interface[0] == '\0'){
1785
struct dirent **direntries;
1786
/* First look for interfaces that are up */
1787
ret = scandir(sys_class_net, &direntries, up_interface,
1790
/* No up interfaces, look for any good interfaces */
1792
ret = scandir(sys_class_net, &direntries, good_interface,
1796
/* Pick the first interface returned */
1797
interface = strdup(direntries[0]->d_name);
1799
fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1801
if(interface == NULL){
1802
perror_plus("malloc");
1804
exitcode = EXIT_FAILURE;
1810
fprintf_plus(stderr, "Could not find a network interface\n");
1811
exitcode = EXIT_FAILURE;
2213
1816
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
2214
1817
from the signal handler */
2215
1818
/* Initialize the pseudo-RNG for Avahi */
2216
1819
srand((unsigned int) time(NULL));
2217
simple_poll = avahi_simple_poll_new();
2218
if(simple_poll == NULL){
1820
mc.simple_poll = avahi_simple_poll_new();
1821
if(mc.simple_poll == NULL){
2219
1822
fprintf_plus(stderr,
2220
1823
"Avahi: Failed to create simple poll object.\n");
2221
1824
exitcode = EX_UNAVAILABLE;
2288
/* If no interfaces were specified, make a list */
2289
if(mc.interfaces == NULL){
2290
struct dirent **direntries;
2291
/* Look for any good interfaces */
2292
ret = scandir(sys_class_net, &direntries, good_interface,
2295
/* Add all found interfaces to interfaces list */
2296
for(int i = 0; i < ret; ++i){
2297
ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2298
direntries[i]->d_name);
2301
perror_plus("argz_add");
2305
fprintf_plus(stderr, "Will use interface \"%s\"\n",
2306
direntries[i]->d_name);
2312
fprintf_plus(stderr, "Could not find a network interface\n");
2313
exitcode = EXIT_FAILURE;
2318
/* Bring up interfaces which are down, and remove any "none"s */
2320
char *interface = NULL;
2321
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2323
/* If interface name is "none", stop bringing up interfaces.
2324
Also remove all instances of "none" from the list */
2325
if(strcmp(interface, "none") == 0){
2326
argz_delete(&mc.interfaces, &mc.interfaces_size,
2329
while((interface = argz_next(mc.interfaces,
2330
mc.interfaces_size, interface))){
2331
if(strcmp(interface, "none") == 0){
2332
argz_delete(&mc.interfaces, &mc.interfaces_size,
1891
/* If the interface is down, bring it up */
1892
if(strcmp(interface, "none") != 0){
1893
if_index = (AvahiIfIndex) if_nametoindex(interface);
1895
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1896
exitcode = EX_UNAVAILABLE;
1904
/* Re-raise priviliges */
1908
perror_plus("seteuid");
1912
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1913
messages about the network interface to mess up the prompt */
1914
ret = klogctl(8, NULL, 5);
1915
bool restore_loglevel = true;
1917
restore_loglevel = false;
1918
perror_plus("klogctl");
1920
#endif /* __linux__ */
1922
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1924
perror_plus("socket");
1925
exitcode = EX_OSERR;
1927
if(restore_loglevel){
1928
ret = klogctl(7, NULL, 0);
1930
perror_plus("klogctl");
1933
#endif /* __linux__ */
1934
/* Lower privileges */
1938
perror_plus("seteuid");
1942
strcpy(network.ifr_name, interface);
1943
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1945
perror_plus("ioctl SIOCGIFFLAGS");
1947
if(restore_loglevel){
1948
ret = klogctl(7, NULL, 0);
1950
perror_plus("klogctl");
1953
#endif /* __linux__ */
1954
exitcode = EX_OSERR;
1955
/* Lower privileges */
1959
perror_plus("seteuid");
1963
if((network.ifr_flags & IFF_UP) == 0){
1964
network.ifr_flags |= IFF_UP;
1965
take_down_interface = true;
1966
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1968
take_down_interface = false;
1969
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1970
exitcode = EX_OSERR;
1972
if(restore_loglevel){
1973
ret = klogctl(7, NULL, 0);
1975
perror_plus("klogctl");
1978
#endif /* __linux__ */
1979
/* Lower privileges */
1983
perror_plus("seteuid");
1988
/* Sleep checking until interface is running.
1989
Check every 0.25s, up to total time of delay */
1990
for(int i=0; i < delay * 4; i++){
1991
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1993
perror_plus("ioctl SIOCGIFFLAGS");
1994
} else if(network.ifr_flags & IFF_RUNNING){
2339
bool interface_was_up = interface_is_up(interface);
2340
errno = bring_up_interface(interface, delay);
2341
if(not interface_was_up){
2343
perror_plus("Failed to bring up interface");
2345
errno = argz_add(&interfaces_to_take_down,
2346
&interfaces_to_take_down_size,
2349
perror_plus("argz_add");
2354
if(debug and (interfaces_to_take_down == NULL)){
2355
fprintf_plus(stderr, "No interfaces were brought up\n");
2359
/* If we only got one interface, explicitly use only that one */
2360
if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2362
fprintf_plus(stderr, "Using only interface \"%s\"\n",
2365
if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
1997
struct timespec sleeptime = { .tv_nsec = 250000000 };
1998
ret = nanosleep(&sleeptime, NULL);
1999
if(ret == -1 and errno != EINTR){
2000
perror_plus("nanosleep");
2003
if(not take_down_interface){
2004
/* We won't need the socket anymore */
2005
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2007
perror_plus("close");
2011
if(restore_loglevel){
2012
/* Restores kernel loglevel to default */
2013
ret = klogctl(7, NULL, 0);
2015
perror_plus("klogctl");
2018
#endif /* __linux__ */
2019
/* Lower privileges */
2021
/* Lower privileges */
2024
perror_plus("seteuid");
2372
ret = init_gnutls_global(pubkey, seckey, &mc);
2032
ret = init_gnutls_global(pubkey, seckey);
2374
2034
fprintf_plus(stderr, "init_gnutls_global failed\n");
2375
2035
exitcode = EX_UNAVAILABLE;