221
232
perror_plus("strdup");
235
ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
237
perror_plus("clock_gettime");
224
240
/* Special case of first server */
225
if (mc.current_server == NULL){
241
if(*current_server == NULL){
226
242
new_server->next = new_server;
227
243
new_server->prev = new_server;
228
mc.current_server = new_server;
244
*current_server = new_server;
229
245
/* Place the new server last in the list */
231
new_server->next = mc.current_server;
232
new_server->prev = mc.current_server->prev;
247
new_server->next = *current_server;
248
new_server->prev = (*current_server)->prev;
233
249
new_server->prev->next = new_server;
234
mc.current_server->prev = new_server;
236
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
238
perror_plus("clock_gettime");
250
(*current_server)->prev = new_server;
532
543
/* GnuTLS server initialization */
533
ret = gnutls_dh_params_init(&mc.dh_params);
544
ret = gnutls_dh_params_init(&mc->dh_params);
534
545
if(ret != GNUTLS_E_SUCCESS){
535
546
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
536
547
" initialization: %s\n",
537
548
safer_gnutls_strerror(ret));
540
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
551
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
541
552
if(ret != GNUTLS_E_SUCCESS){
542
553
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
543
554
safer_gnutls_strerror(ret));
547
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
558
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
553
gnutls_certificate_free_credentials(mc.cred);
564
gnutls_certificate_free_credentials(mc->cred);
554
565
gnutls_global_deinit();
555
gnutls_dh_params_deinit(mc.dh_params);
566
gnutls_dh_params_deinit(mc->dh_params);
559
static int init_gnutls_session(gnutls_session_t *session){
570
static int init_gnutls_session(gnutls_session_t *session,
561
573
/* GnuTLS session creation */
658
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);
664
708
fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
665
PRIu16 "\n", ip, port);
709
PRIuMAX "\n", ip, (uintmax_t)port);
668
712
tcp_sd = socket(pf, SOCK_STREAM, 0);
732
777
if(if_indextoname((unsigned int)if_index, interface) == NULL){
733
778
perror_plus("if_indextoname");
735
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
736
"\n", ip, interface, port);
780
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
781
"\n", ip, interface, (uintmax_t)port);
739
fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
784
fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
785
ip, (uintmax_t)port);
742
787
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
743
788
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
745
789
if(af == AF_INET6){
746
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,
749
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,
753
perror_plus("inet_ntop");
755
if(strcmp(addrstr, ip) != 0){
756
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);
1028
1080
PRIdMAX ") on port %" PRIu16 "\n", name,
1029
1081
host_name, ip, (intmax_t)interface, port);
1031
int ret = start_mandos_communication(ip, port, interface,
1032
avahi_proto_to_af(proto));
1083
int ret = start_mandos_communication(ip, (in_port_t)port,
1085
avahi_proto_to_af(proto),
1034
avahi_simple_poll_quit(mc.simple_poll);
1088
avahi_simple_poll_quit(simple_poll);
1036
if(not add_server(ip, port, interface,
1037
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)){
1038
1093
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1039
1094
" list\n", name);
1078
1136
the callback function is called the Avahi server will free the
1079
1137
resolver for us. */
1081
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1082
name, type, domain, protocol, 0,
1083
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)
1084
1143
fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1086
avahi_strerror(avahi_server_errno(mc.server)));
1145
avahi_strerror(avahi_server_errno
1146
(((mandos_context*)mc)->server)));
1089
1149
case AVAHI_BROWSER_REMOVE:
1204
* This function determines if a directory entry in /sys/class/net
1205
* corresponds to an acceptable network device which is up.
1206
* (This function is passed to scandir(3) as a filter function.)
1208
int up_interface(const struct dirent *if_entry){
1209
if(if_entry->d_name[0] == '.'){
1214
if(not get_flags(if_entry->d_name, &ifr)){
1216
fprintf_plus(stderr, "Failed to get flags for interface "
1217
"\"%s\"\n", if_entry->d_name);
1222
/* Reject down interfaces */
1223
if(not (ifr.ifr_flags & IFF_UP)){
1225
fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
1231
/* Reject non-running interfaces */
1232
if(not (ifr.ifr_flags & IFF_RUNNING)){
1234
fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
1240
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);
1246
1300
int notdotentries(const struct dirent *direntry){
1360
1415
if(block_time <= 0){
1361
ret = start_mandos_communication(mc.current_server->ip,
1362
mc.current_server->port,
1363
mc.current_server->if_index,
1364
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);
1366
avahi_simple_poll_quit(mc.simple_poll);
1421
avahi_simple_poll_quit(s);
1369
1424
ret = clock_gettime(CLOCK_MONOTONIC,
1370
&mc.current_server->last_seen);
1425
&mc->current_server->last_seen);
1372
1427
perror_plus("clock_gettime");
1375
mc.current_server = mc.current_server->next;
1430
mc->current_server = mc->current_server->next;
1376
1431
block_time = 0; /* Call avahi to find new Mandos
1377
1432
servers, but don't block */
1445
/* Set effective uid to 0, return errno */
1446
error_t raise_privileges(void){
1447
error_t old_errno = errno;
1448
error_t ret_errno = 0;
1449
if(seteuid(0) == -1){
1451
perror_plus("seteuid");
1457
/* Set effective and real user ID to 0. Return errno. */
1458
error_t raise_privileges_permanently(void){
1459
error_t old_errno = errno;
1460
error_t ret_errno = raise_privileges();
1465
if(setuid(0) == -1){
1467
perror_plus("seteuid");
1473
/* Set effective user ID to unprivileged saved user ID */
1474
error_t lower_privileges(void){
1475
error_t old_errno = errno;
1476
error_t ret_errno = 0;
1477
if(seteuid(uid) == -1){
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");
1390
1497
bool run_network_hooks(const char *mode, const char *interface,
1391
1498
const float delay){
1392
1499
struct dirent **direntries;
1393
struct dirent *direntry;
1395
1500
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1397
1502
if(numhooks == -1){
1398
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;
1400
1514
int devnull = open("/dev/null", O_RDONLY);
1401
1515
for(int i = 0; i < numhooks; i++){
1402
1516
direntry = direntries[i];
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;
1636
struct ifreq network;
1637
unsigned int if_index = if_nametoindex(interface);
1639
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
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);
1656
network.ifr_flags |= IFF_UP;
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){
1712
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1717
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1721
/* Sleep checking until interface is running.
1722
Check every 0.25s, up to total time of delay */
1723
for(int i=0; i < delay * 4; i++){
1724
if(interface_is_running(interface)){
1727
struct timespec sleeptime = { .tv_nsec = 250000000 };
1728
ret = nanosleep(&sleeptime, NULL);
1729
if(ret == -1 and errno != EINTR){
1730
perror_plus("nanosleep");
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);
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));
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",
1519
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 };
1520
1805
AvahiSServiceBrowser *sb = NULL;
1523
1808
intmax_t tmpmax;
1525
1810
int exitcode = EXIT_SUCCESS;
1526
const char *interface = "";
1527
struct ifreq network;
1529
bool take_down_interface = false;
1811
char *interfaces_to_take_down = NULL;
1812
size_t interfaces_to_take_down_size = 0;
1532
1813
char tempdir[] = "/tmp/mandosXXXXXX";
1533
1814
bool tempdir_created = false;
1534
1815
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1535
1816
const char *seckey = PATHDIR "/" SECKEY;
1536
1817
const char *pubkey = PATHDIR "/" PUBKEY;
1818
char *interfaces_hooks = NULL;
1538
1820
bool gnutls_initialized = false;
1539
1821
bool gpgme_initialized = false;
1766
2048
/* Lower privileges */
1770
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);
1775
2070
/* Run network hooks */
1776
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)){
1781
2088
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;
1816
2091
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1817
2092
from the signal handler */
1818
2093
/* Initialize the pseudo-RNG for Avahi */
1819
2094
srand((unsigned int) time(NULL));
1820
mc.simple_poll = avahi_simple_poll_new();
1821
if(mc.simple_poll == NULL){
2095
simple_poll = avahi_simple_poll_new();
2096
if(simple_poll == NULL){
1822
2097
fprintf_plus(stderr,
1823
2098
"Avahi: Failed to create simple poll object.\n");
1824
2099
exitcode = EX_UNAVAILABLE;
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");
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,
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){
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");
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);
2032
ret = init_gnutls_global(pubkey, seckey);
2252
ret = init_gnutls_global(pubkey, seckey, &mc);
2034
2254
fprintf_plus(stderr, "init_gnutls_global failed\n");
2035
2255
exitcode = EX_UNAVAILABLE;
2234
/* Run network hooks */
2235
run_network_hooks("stop", interface, delay);
2237
2458
/* Re-raise priviliges */
2242
perror_plus("seteuid");
2245
/* Take down the network interface */
2246
if(take_down_interface and geteuid() == 0){
2247
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2249
perror_plus("ioctl SIOCGIFFLAGS");
2250
} else if(network.ifr_flags & IFF_UP){
2251
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
2252
ret = ioctl(sd, SIOCSIFFLAGS, &network);
2254
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");
2257
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2259
perror_plus("close");
2478
if(debug and (interfaces_to_take_down == NULL)){
2479
fprintf_plus(stderr, "No interfaces needed to be taken"
2263
/* Lower privileges permanently */
2267
perror_plus("setuid");
2484
lower_privileges_permanently();
2487
free(interfaces_to_take_down);
2488
free(interfaces_hooks);
2270
2490
/* Removes the GPGME temp directory and all files inside */
2271
2491
if(tempdir_created){