9
9
* "browse_callback", and parts of "main".
11
11
* Everything else is
12
* Copyright © 2008-2011 Teddy Hogeborn
13
* Copyright © 2008-2011 Björn Påhlsson
12
* Copyright © 2008,2009 Teddy Hogeborn
13
* Copyright © 2008,2009 Björn Påhlsson
15
15
* This program is free software: you can redistribute it and/or
16
16
* modify it under the terms of the GNU General Public License as
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
#ifndef _LARGEFILE_SOURCE
34
33
#define _LARGEFILE_SOURCE
36
#ifndef _FILE_OFFSET_BITS
37
34
#define _FILE_OFFSET_BITS 64
40
36
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
43
39
stdout, ferror(), remove() */
44
40
#include <stdint.h> /* uint16_t, uint32_t */
45
41
#include <stddef.h> /* NULL, size_t, ssize_t */
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, srand(),
42
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
48
44
#include <stdbool.h> /* bool, false, true */
49
45
#include <string.h> /* memset(), strcmp(), strlen(),
50
46
strerror(), asprintf(), strcpy() */
64
60
#include <assert.h> /* assert() */
65
61
#include <errno.h> /* perror(), errno */
66
#include <time.h> /* nanosleep(), time(), sleep() */
62
#include <time.h> /* nanosleep(), time() */
67
63
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
64
SIOCSIFFLAGS, if_indextoname(),
69
65
if_nametoindex(), IF_NAMESIZE */
71
67
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
73
69
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
getuid(), getgid(), seteuid(),
76
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
70
getuid(), getgid(), setuid(),
72
#include <arpa/inet.h> /* inet_pton(), htons */
77
73
#include <iso646.h> /* not, or, and */
78
74
#include <argp.h> /* struct argp_option, error_t, struct
79
75
argp_state, struct argp,
80
76
argp_parse(), ARGP_KEY_ARG,
81
77
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
78
#include <signal.h> /* sigemptyset(), sigaddset(),
83
sigaction(), SIGTERM, sig_atomic_t,
85
#include <sysexits.h> /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
86
EX_NOHOST, EX_IOERR, EX_PROTOCOL */
79
sigaction(), SIGTERM, sigaction,
89
83
#include <sys/klog.h> /* klogctl() */
146
138
.dh_bits = 1024, .priority = "SECURE256"
147
139
":!CTYPE-X.509:+CTYPE-OPENPGP" };
149
sig_atomic_t quit_now = 0;
150
int signal_received = 0;
153
142
* Make additional room in "buffer" for at least BUFFER_SIZE more
154
143
* bytes. "buffer_capacity" is how much is currently allocated,
317
306
gpgme_recipient_t recipient;
318
307
recipient = result->recipients;
319
while(recipient != NULL){
320
fprintf(stderr, "Public key algorithm: %s\n",
321
gpgme_pubkey_algo_name(recipient->pubkey_algo));
322
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
323
fprintf(stderr, "Secret key available: %s\n",
324
recipient->status == GPG_ERR_NO_SECKEY
326
recipient = recipient->next;
309
while(recipient != NULL){
310
fprintf(stderr, "Public key algorithm: %s\n",
311
gpgme_pubkey_algo_name(recipient->pubkey_algo));
312
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
313
fprintf(stderr, "Secret key available: %s\n",
314
recipient->status == GPG_ERR_NO_SECKEY
316
recipient = recipient->next;
425
416
/* OpenPGP credentials */
426
ret = gnutls_certificate_allocate_credentials(&mc.cred);
417
gnutls_certificate_allocate_credentials(&mc.cred);
427
418
if(ret != GNUTLS_E_SUCCESS){
428
fprintf(stderr, "GnuTLS memory error: %s\n",
419
fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
429
423
safer_gnutls_strerror(ret));
430
424
gnutls_global_deinit();
478
472
static int init_gnutls_session(gnutls_session_t *session){
480
474
/* GnuTLS session creation */
482
ret = gnutls_init(session, GNUTLS_SERVER);
486
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
475
ret = gnutls_init(session, GNUTLS_SERVER);
487
476
if(ret != GNUTLS_E_SUCCESS){
488
477
fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
489
478
safer_gnutls_strerror(ret));
495
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
497
gnutls_deinit(*session);
500
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
483
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
501
484
if(ret != GNUTLS_E_SUCCESS){
502
485
fprintf(stderr, "Syntax error at: %s\n", err);
503
486
fprintf(stderr, "GnuTLS error: %s\n",
511
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
514
gnutls_deinit(*session);
517
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
493
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
518
495
if(ret != GNUTLS_E_SUCCESS){
519
496
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
520
497
safer_gnutls_strerror(ret));
538
516
static int start_mandos_communication(const char *ip, uint16_t port,
539
517
AvahiIfIndex if_index,
541
int ret, tcp_sd = -1;
544
522
struct sockaddr_in in;
545
523
struct sockaddr_in6 in6;
547
525
char *buffer = NULL;
548
char *decrypted_buffer = NULL;
526
char *decrypted_buffer;
549
527
size_t buffer_length = 0;
550
528
size_t buffer_capacity = 0;
529
ssize_t decrypted_buffer_size;
553
532
gnutls_session_t session;
554
533
int pf; /* Protocol family */
586
557
tcp_sd = socket(pf, SOCK_STREAM, 0);
589
559
perror("socket");
599
563
memset(&to, 0, sizeof(to));
600
564
if(af == AF_INET6){
601
to.in6.sin6_family = (sa_family_t)af;
565
to.in6.sin6_family = (uint16_t)af;
602
566
ret = inet_pton(af, ip, &to.in6.sin6_addr);
603
567
} else { /* IPv4 */
604
568
to.in.sin_family = (sa_family_t)af;
605
569
ret = inet_pton(af, ip, &to.in.sin_addr);
609
572
perror("inet_pton");
615
576
fprintf(stderr, "Bad address: %s\n", ip);
619
579
if(af == AF_INET6){
620
580
to.in6.sin6_port = htons(port); /* Spurious warnings from
627
587
if(if_index == AVAHI_IF_UNSPEC){
628
588
fprintf(stderr, "An IPv6 link-local address is incomplete"
629
589
" without a network interface\n");
633
592
/* Set the network interface number as scope */
634
593
to.in6.sin6_scope_id = (uint32_t)if_index;
684
633
if(af == AF_INET6){
685
634
ret = connect(tcp_sd, &to.in6, sizeof(to));
687
636
ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
690
if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
703
643
const char *out = mandos_protocol_version;
734
668
fprintf(stderr, "Establishing TLS session with %s\n", ip);
742
671
gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
750
674
ret = gnutls_handshake(session);
755
675
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
757
677
if(ret != GNUTLS_E_SUCCESS){
802
710
case GNUTLS_E_AGAIN:
804
712
case GNUTLS_E_REHANDSHAKE:
806
714
ret = gnutls_handshake(session);
812
715
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
814
717
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
815
718
gnutls_perror(ret);
821
724
fprintf(stderr, "Unknown error while reading data from"
822
725
" encrypted session with Mandos server\n");
823
727
gnutls_bye(session, GNUTLS_SHUT_RDWR);
833
736
fprintf(stderr, "Closing TLS session\n");
842
ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
847
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
739
gnutls_bye(session, GNUTLS_SHUT_RDWR);
849
741
if(buffer_length > 0){
850
ssize_t decrypted_buffer_size;
851
742
decrypted_buffer_size = pgp_packet_decrypt(buffer,
853
744
&decrypted_buffer);
854
745
if(decrypted_buffer_size >= 0){
857
747
while(written < (size_t) decrypted_buffer_size){
863
748
ret = (int)fwrite(decrypted_buffer + written, 1,
864
749
(size_t)decrypted_buffer_size - written,
866
751
if(ret == 0 and ferror(stdout)){
869
753
fprintf(stderr, "Error writing encrypted data: %s\n",
870
754
strerror(errno));
875
759
written += (size_t)ret;
761
free(decrypted_buffer);
881
769
/* Shutdown procedure */
886
free(decrypted_buffer);
889
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
897
gnutls_deinit(session);
773
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
777
gnutls_deinit(session);
988
854
the callback function is called the Avahi server will free the
989
855
resolver for us. */
991
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
992
name, type, domain, protocol, 0,
993
resolve_callback, NULL) == NULL)
857
if(!(avahi_s_service_resolver_new(mc.server, interface,
858
protocol, name, type, domain,
859
AVAHI_PROTO_INET6, 0,
860
resolve_callback, NULL)))
994
861
fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
995
862
name, avahi_strerror(avahi_server_errno(mc.server)));
877
sig_atomic_t quit_now = 0;
1010
879
/* stop main loop after sigterm has been called */
1011
static void handle_sigterm(int sig){
880
static void handle_sigterm(__attribute__((unused)) int sig){
1016
signal_received = sig;
1017
885
int old_errno = errno;
1018
886
if(mc.simple_poll != NULL){
1019
887
avahi_simple_poll_quit(mc.simple_poll);
1021
889
errno = old_errno;
1025
* This function determines if a directory entry in /sys/class/net
1026
* corresponds to an acceptable network device.
1027
* (This function is passed to scandir(3) as a filter function.)
1029
int good_interface(const struct dirent *if_entry){
1031
char *flagname = NULL;
1032
if(if_entry->d_name[0] == '.'){
1035
int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1041
int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1048
typedef short ifreq_flags; /* ifreq.ifr_flags in netdevice(7) */
1049
/* read line from flags_fd */
1050
ssize_t to_read = 2+(sizeof(ifreq_flags)*2)+1; /* "0x1003\n" */
1051
char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1052
flagstring[(size_t)to_read] = '\0';
1053
if(flagstring == NULL){
1059
ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1076
tmpmax = strtoimax(flagstring, &tmp, 0);
1077
if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1078
and not (isspace(*tmp)))
1079
or tmpmax != (ifreq_flags)tmpmax){
1081
fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1082
flagstring, if_entry->d_name);
1088
ifreq_flags flags = (ifreq_flags)tmpmax;
1089
/* Reject the loopback device */
1090
if(flags & IFF_LOOPBACK){
1092
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1097
/* Accept point-to-point devices only if connect_to is specified */
1098
if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1100
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1105
/* Otherwise, reject non-broadcast-capable devices */
1106
if(not (flags & IFF_BROADCAST)){
1108
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1113
/* Reject non-ARP interfaces (including dummy interfaces) */
1114
if(flags & IFF_NOARP){
1116
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
1121
/* Accept this device */
1123
fprintf(stderr, "Interface \"%s\" is acceptable\n",
1129
892
int main(int argc, char *argv[]){
1130
893
AvahiSServiceBrowser *sb = NULL;
1133
896
intmax_t tmpmax;
1135
898
int exitcode = EXIT_SUCCESS;
1136
const char *interface = "";
899
const char *interface = "eth0";
1137
900
struct ifreq network;
1139
bool take_down_interface = false;
904
char *connect_to = NULL;
1142
905
char tempdir[] = "/tmp/mandosXXXXXX";
1143
906
bool tempdir_created = false;
1144
907
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1145
908
const char *seckey = PATHDIR "/" SECKEY;
1146
909
const char *pubkey = PATHDIR "/" PUBKEY;
911
/* Initialize Mandos context */
912
mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
913
.dh_bits = 1024, .priority = "SECURE256"
914
":!CTYPE-X.509:+CTYPE-OPENPGP" };
1148
915
bool gnutls_initialized = false;
1149
916
bool gpgme_initialized = false;
1150
917
float delay = 2.5f;
1152
struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
919
struct sigaction old_sigterm_action;
1153
920
struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1158
/* Lower any group privileges we might have, just to be safe */
1165
/* Lower user privileges (temporarily) */
1177
923
struct argp_option options[] = {
1178
924
{ .name = "debug", .key = 128,
1207
953
.arg = "SECONDS",
1208
954
.doc = "Maximum delay to wait for interface startup",
1211
* These reproduce what we would get without ARGP_NO_HELP
1213
{ .name = "help", .key = '?',
1214
.doc = "Give this help list", .group = -1 },
1215
{ .name = "usage", .key = -3,
1216
.doc = "Give a short usage message", .group = -1 },
1217
{ .name = "version", .key = 'V',
1218
.doc = "Print program version", .group = -1 },
1219
956
{ .name = NULL }
1222
959
error_t parse_opt(int key, char *arg,
1223
960
struct argp_state *state){
1226
962
case 128: /* --debug */
1243
979
tmpmax = strtoimax(arg, &tmp, 10);
1244
980
if(errno != 0 or tmp == arg or *tmp != '\0'
1245
981
or tmpmax != (typeof(mc.dh_bits))tmpmax){
1246
argp_error(state, "Bad number of DH bits");
982
fprintf(stderr, "Bad number of DH bits\n");
1248
985
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1255
992
delay = strtof(arg, &tmp);
1256
993
if(errno != 0 or tmp == arg or *tmp != '\0'){
1257
argp_error(state, "Bad delay");
994
fprintf(stderr, "Bad delay\n");
1261
* These reproduce what we would get without ARGP_NO_HELP
1263
case '?': /* --help */
1264
argp_state_help(state, state->out_stream,
1265
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1266
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1267
case -3: /* --usage */
1268
argp_state_help(state, state->out_stream,
1269
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1270
case 'V': /* --version */
1271
fprintf(state->out_stream, "%s\n", argp_program_version);
1272
exit(argp_err_exit_status);
1275
1003
return ARGP_ERR_UNKNOWN;
1280
1008
struct argp argp = { .options = options, .parser = parse_opt,
1281
1009
.args_doc = "",
1282
1010
.doc = "Mandos client -- Get and decrypt"
1283
1011
" passwords from a Mandos server" };
1284
ret = argp_parse(&argp, argc, argv,
1285
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1292
perror("argp_parse");
1293
exitcode = EX_OSERR;
1296
exitcode = EX_USAGE;
1012
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1013
if(ret == ARGP_ERR_UNKNOWN){
1014
fprintf(stderr, "Unknown error while parsing arguments\n");
1015
exitcode = EXIT_FAILURE;
1302
1021
avahi_set_log_function(empty_log);
1305
if(interface[0] == '\0'){
1306
struct dirent **direntries;
1307
ret = scandir(sys_class_net, &direntries, good_interface,
1310
/* Pick the first good interface */
1311
interface = strdup(direntries[0]->d_name);
1313
fprintf(stderr, "Using interface \"%s\"\n", interface);
1315
if(interface == NULL){
1318
exitcode = EXIT_FAILURE;
1324
fprintf(stderr, "Could not find a network interface\n");
1325
exitcode = EXIT_FAILURE;
1330
1024
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1331
1025
from the signal handler */
1342
1036
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1344
1038
perror("sigaddset");
1345
exitcode = EX_OSERR;
1039
exitcode = EXIT_FAILURE;
1348
1042
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1350
1044
perror("sigaddset");
1351
exitcode = EX_OSERR;
1045
exitcode = EXIT_FAILURE;
1354
1048
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1356
1050
perror("sigaddset");
1357
exitcode = EX_OSERR;
1360
/* Need to check if the handler is SIG_IGN before handling:
1361
| [[info:libc:Initial Signal Actions]] |
1362
| [[info:libc:Basic Signal Handling]] |
1364
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1366
perror("sigaction");
1369
if(old_sigterm_action.sa_handler != SIG_IGN){
1370
ret = sigaction(SIGINT, &sigterm_action, NULL);
1372
perror("sigaction");
1373
exitcode = EX_OSERR;
1377
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1379
perror("sigaction");
1382
if(old_sigterm_action.sa_handler != SIG_IGN){
1383
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1385
perror("sigaction");
1386
exitcode = EX_OSERR;
1390
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1392
perror("sigaction");
1395
if(old_sigterm_action.sa_handler != SIG_IGN){
1396
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1398
perror("sigaction");
1399
exitcode = EX_OSERR;
1051
exitcode = EXIT_FAILURE;
1054
ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1056
perror("sigaction");
1057
exitcode = EXIT_FAILURE;
1404
1061
/* If the interface is down, bring it up */
1405
if(strcmp(interface, "none") != 0){
1406
if_index = (AvahiIfIndex) if_nametoindex(interface);
1408
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1409
exitcode = EX_UNAVAILABLE;
1417
/* Re-raise priviliges */
1062
if(interface[0] != '\0'){
1424
1063
#ifdef __linux__
1425
1064
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1426
messages about the network interface to mess up the prompt */
1065
messages to mess up the prompt */
1427
1066
ret = klogctl(8, NULL, 5);
1428
1067
bool restore_loglevel = true;
1466
1099
#endif /* __linux__ */
1467
exitcode = EX_OSERR;
1468
/* Lower privileges */
1100
exitcode = EXIT_FAILURE;
1476
1103
if((network.ifr_flags & IFF_UP) == 0){
1477
1104
network.ifr_flags |= IFF_UP;
1478
take_down_interface = true;
1479
1105
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1481
take_down_interface = false;
1482
perror("ioctl SIOCSIFFLAGS +IFF_UP");
1483
exitcode = EX_OSERR;
1107
perror("ioctl SIOCSIFFLAGS");
1108
exitcode = EXIT_FAILURE;
1484
1109
#ifdef __linux__
1485
1110
if(restore_loglevel){
1486
1111
ret = klogctl(7, NULL, 0);
1530
1146
#endif /* __linux__ */
1531
/* Lower privileges */
1533
if(take_down_interface){
1534
/* Lower privileges */
1540
/* Lower privileges permanently */
1552
1163
ret = init_gnutls_global(pubkey, seckey);
1554
1165
fprintf(stderr, "init_gnutls_global failed\n");
1555
exitcode = EX_UNAVAILABLE;
1166
exitcode = EXIT_FAILURE;
1558
1169
gnutls_initialized = true;
1565
tempdir_created = true;
1566
1172
if(mkdtemp(tempdir) == NULL){
1567
tempdir_created = false;
1568
1173
perror("mkdtemp");
1176
tempdir_created = true;
1576
1178
if(not init_gpgme(pubkey, seckey, tempdir)){
1577
1179
fprintf(stderr, "init_gpgme failed\n");
1578
exitcode = EX_UNAVAILABLE;
1180
exitcode = EXIT_FAILURE;
1581
1183
gpgme_initialized = true;
1186
if(interface[0] != '\0'){
1187
if_index = (AvahiIfIndex) if_nametoindex(interface);
1189
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1190
exitcode = EXIT_FAILURE;
1588
1195
if(connect_to != NULL){
1591
1198
char *address = strrchr(connect_to, ':');
1592
1199
if(address == NULL){
1593
1200
fprintf(stderr, "No colon in address\n");
1594
exitcode = EX_USAGE;
1201
exitcode = EXIT_FAILURE;
1604
1206
tmpmax = strtoimax(address+1, &tmp, 10);
1605
1207
if(errno != 0 or tmp == address+1 or *tmp != '\0'
1606
1208
or tmpmax != (uint16_t)tmpmax){
1607
1209
fprintf(stderr, "Bad port number\n");
1608
exitcode = EX_USAGE;
1210
exitcode = EXIT_FAILURE;
1616
1213
port = (uint16_t)tmpmax;
1617
1214
*address = '\0';
1618
1215
address = connect_to;
1631
while(not quit_now){
1632
ret = start_mandos_communication(address, port, if_index, af);
1633
if(quit_now or ret == 0){
1223
ret = start_mandos_communication(address, port, if_index, af);
1225
exitcode = EXIT_FAILURE;
1640
1227
exitcode = EXIT_SUCCESS;
1651
1233
AvahiServerConfig config;
1652
1234
/* Do not publish any local Zeroconf records */
1669
1251
if(mc.server == NULL){
1670
1252
fprintf(stderr, "Failed to create Avahi server: %s\n",
1671
1253
avahi_strerror(error));
1672
exitcode = EX_UNAVAILABLE;
1254
exitcode = EXIT_FAILURE;
1680
1258
/* Create the Avahi service browser */
1681
1259
sb = avahi_s_service_browser_new(mc.server, if_index,
1682
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1260
AVAHI_PROTO_INET6, "_mandos._tcp",
1683
1261
NULL, 0, browse_callback, NULL);
1684
1262
if(sb == NULL){
1685
1263
fprintf(stderr, "Failed to create service browser: %s\n",
1686
1264
avahi_strerror(avahi_server_errno(mc.server)));
1687
exitcode = EX_UNAVAILABLE;
1265
exitcode = EXIT_FAILURE;
1726
1300
gpgme_release(mc.ctx);
1729
/* Take down the network interface */
1730
if(take_down_interface){
1731
/* Re-raise priviliges */
1738
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1740
perror("ioctl SIOCGIFFLAGS");
1741
} else if(network.ifr_flags & IFF_UP) {
1742
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1743
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1745
perror("ioctl SIOCSIFFLAGS -IFF_UP");
1748
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1752
/* Lower privileges permanently */
1761
1303
/* Removes the temp directory used by GPGME */
1762
1304
if(tempdir_created){
1806
sigemptyset(&old_sigterm_action.sa_mask);
1807
old_sigterm_action.sa_handler = SIG_DFL;
1808
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
1809
&old_sigterm_action,
1812
perror("sigaction");
1815
ret = raise(signal_received);
1816
} while(ret != 0 and errno == EINTR);
1821
TEMP_FAILURE_RETRY(pause());
1824
1347
return exitcode;