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() */
42
38
#include <stdio.h> /* fprintf(), stderr, fwrite(),
43
stdout, ferror(), remove() */
39
stdout, ferror(), sscanf(),
44
41
#include <stdint.h> /* uint16_t, uint32_t */
45
42
#include <stddef.h> /* NULL, size_t, ssize_t */
46
43
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
48
#include <stdbool.h> /* bool, false, true */
45
#include <stdbool.h> /* bool, true */
49
46
#include <string.h> /* memset(), strcmp(), strlen(),
50
47
strerror(), asprintf(), strcpy() */
51
#include <sys/ioctl.h> /* ioctl */
48
#include <sys/ioctl.h> /* ioctl */
52
49
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
53
50
sockaddr_in6, PF_INET6,
54
SOCK_STREAM, uid_t, gid_t, open(),
51
SOCK_STREAM, INET6_ADDRSTRLEN,
52
uid_t, gid_t, open(), opendir(),
56
54
#include <sys/stat.h> /* open() */
57
55
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
inet_pton(), connect() */
56
struct in6_addr, inet_pton(),
59
58
#include <fcntl.h> /* open() */
60
59
#include <dirent.h> /* opendir(), struct dirent, readdir()
62
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
61
#include <inttypes.h> /* PRIu16, intmax_t, SCNdMAX */
64
62
#include <assert.h> /* assert() */
65
63
#include <errno.h> /* perror(), errno */
66
64
#include <time.h> /* nanosleep(), time() */
67
65
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
66
SIOCSIFFLAGS, if_indextoname(),
69
67
if_nametoindex(), IF_NAMESIZE */
70
#include <netinet/in.h> /* IN6_IS_ADDR_LINKLOCAL,
71
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
68
#include <netinet/in.h>
73
69
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
70
getuid(), getgid(), setuid(),
76
72
#include <arpa/inet.h> /* inet_pton(), htons */
77
#include <iso646.h> /* not, or, and */
73
#include <iso646.h> /* not, and, or */
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
#include <signal.h> /* sigemptyset(), sigaddset(),
83
sigaction(), SIGTERM, sig_atomic_t,
87
79
#include <sys/klog.h> /* klogctl() */
88
#endif /* __linux__ */
91
83
/* All Avahi types, constants and functions
138
130
} mandos_context;
140
/* global context so signal handler can reach it*/
141
mandos_context mc = { .simple_poll = NULL, .server = NULL,
142
.dh_bits = 1024, .priority = "SECURE256"
143
":!CTYPE-X.509:+CTYPE-OPENPGP" };
146
* Make additional room in "buffer" for at least BUFFER_SIZE more
147
* bytes. "buffer_capacity" is how much is currently allocated,
133
* Make room in "buffer" for at least BUFFER_SIZE additional bytes.
134
* "buffer_capacity" is how much is currently allocated,
148
135
* "buffer_length" is how much is already used.
150
size_t incbuffer(char **buffer, size_t buffer_length,
137
size_t adjustbuffer(char **buffer, size_t buffer_length,
151
138
size_t buffer_capacity){
152
139
if(buffer_length + BUFFER_SIZE > buffer_capacity){
153
140
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
310
298
gpgme_recipient_t recipient;
311
299
recipient = result->recipients;
312
while(recipient != NULL){
313
fprintf(stderr, "Public key algorithm: %s\n",
314
gpgme_pubkey_algo_name(recipient->pubkey_algo));
315
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
316
fprintf(stderr, "Secret key available: %s\n",
317
recipient->status == GPG_ERR_NO_SECKEY
319
recipient = recipient->next;
301
while(recipient != NULL){
302
fprintf(stderr, "Public key algorithm: %s\n",
303
gpgme_pubkey_algo_name(recipient->pubkey_algo));
304
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
305
fprintf(stderr, "Secret key available: %s\n",
306
recipient->status == GPG_ERR_NO_SECKEY
308
recipient = recipient->next;
448
439
/* GnuTLS server initialization */
449
ret = gnutls_dh_params_init(&mc.dh_params);
440
ret = gnutls_dh_params_init(&mc->dh_params);
450
441
if(ret != GNUTLS_E_SUCCESS){
451
442
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
452
443
" %s\n", safer_gnutls_strerror(ret));
455
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
446
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
456
447
if(ret != GNUTLS_E_SUCCESS){
457
448
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
458
449
safer_gnutls_strerror(ret));
462
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
453
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
468
gnutls_certificate_free_credentials(mc.cred);
459
gnutls_certificate_free_credentials(mc->cred);
469
460
gnutls_global_deinit();
470
gnutls_dh_params_deinit(mc.dh_params);
461
gnutls_dh_params_deinit(mc->dh_params);
474
static int init_gnutls_session(gnutls_session_t *session){
465
static int init_gnutls_session(mandos_context *mc,
466
gnutls_session_t *session){
476
468
/* GnuTLS session creation */
477
469
ret = gnutls_init(session, GNUTLS_SERVER);
534
520
ssize_t decrypted_buffer_size;
523
char interface[IF_NAMESIZE];
537
524
gnutls_session_t session;
538
int pf; /* Protocol family */
552
fprintf(stderr, "Bad address family: %d\n", af);
556
ret = init_gnutls_session(&session);
526
ret = init_gnutls_session(mc, &session);
562
fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
532
fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
566
tcp_sd = socket(pf, SOCK_STREAM, 0);
536
tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
568
538
perror("socket");
543
if(if_indextoname((unsigned int)if_index, interface) == NULL){
544
perror("if_indextoname");
547
fprintf(stderr, "Binding to interface %s\n", interface);
577
550
memset(&to, 0, sizeof(to));
579
to.in6.sin6_family = (sa_family_t)af;
580
ret = inet_pton(af, ip, &to.in6.sin6_addr);
582
to.in.sin_family = (sa_family_t)af;
583
ret = inet_pton(af, ip, &to.in.sin_addr);
551
to.in6.sin6_family = AF_INET6;
552
/* It would be nice to have a way to detect if we were passed an
553
IPv4 address here. Now we assume an IPv6 address. */
554
ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
586
556
perror("inet_pton");
591
560
fprintf(stderr, "Bad address: %s\n", ip);
596
to.in6.sin6_port = htons(port); /* Spurious warnings from
598
-Wunreachable-code */
600
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
601
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
603
if(if_index == AVAHI_IF_UNSPEC){
604
fprintf(stderr, "An IPv6 link-local address is incomplete"
605
" without a network interface\n");
609
/* Set the network interface number as scope */
610
to.in6.sin6_scope_id = (uint32_t)if_index;
613
to.in.sin_port = htons(port); /* Spurious warnings from
563
to.in6.sin6_port = htons(port); /* Spurious warnings from
615
565
-Wunreachable-code */
567
to.in6.sin6_scope_id = (uint32_t)if_index;
623
if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
624
char interface[IF_NAMESIZE];
625
if(if_indextoname((unsigned int)if_index, interface) == NULL){
626
perror("if_indextoname");
628
fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
629
ip, interface, port);
632
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
635
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
636
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
639
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
642
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
570
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
572
char addrstr[INET6_ADDRSTRLEN] = "";
573
if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
574
sizeof(addrstr)) == NULL){
646
575
perror("inet_ntop");
648
577
if(strcmp(addrstr, ip) != 0){
866
737
AVAHI_GCC_UNUSED AvahiStringList *txt,
867
738
AVAHI_GCC_UNUSED AvahiLookupResultFlags
869
AVAHI_GCC_UNUSED void* userdata){
741
mandos_context *mc = userdata;
872
744
/* Called whenever a service has been resolved successfully or
881
749
case AVAHI_RESOLVER_FAILURE:
882
750
fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
883
751
" of type '%s' in domain '%s': %s\n", name, type, domain,
884
avahi_strerror(avahi_server_errno(mc.server)));
752
avahi_strerror(avahi_server_errno(mc->server)));
887
755
case AVAHI_RESOLVER_FOUND:
937
801
the callback function is called the Avahi server will free the
938
802
resolver for us. */
940
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
941
name, type, domain, protocol, 0,
942
resolve_callback, NULL) == NULL)
804
if(!(avahi_s_service_resolver_new(mc->server, interface,
805
protocol, name, type, domain,
806
AVAHI_PROTO_INET6, 0,
807
resolve_callback, mc)))
943
808
fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
944
name, avahi_strerror(avahi_server_errno(mc.server)));
809
name, avahi_strerror(avahi_server_errno(mc->server)));
947
812
case AVAHI_BROWSER_REMOVE:
1099
avahi_set_log_function(empty_log);
1102
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1103
from the signal handler */
1104
/* Initialize the pseudo-RNG for Avahi */
1105
srand((unsigned int) time(NULL));
1106
mc.simple_poll = avahi_simple_poll_new();
1107
if(mc.simple_poll == NULL){
1108
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1109
exitcode = EXIT_FAILURE;
1113
sigemptyset(&sigterm_action.sa_mask);
1114
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1116
perror("sigaddset");
1117
exitcode = EXIT_FAILURE;
1120
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1122
perror("sigaddset");
1123
exitcode = EXIT_FAILURE;
1126
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1128
perror("sigaddset");
1129
exitcode = EXIT_FAILURE;
1132
/* Need to check if the handler is SIG_IGN before handling:
1133
| [[info:libc:Initial Signal Actions]] |
1134
| [[info:libc:Basic Signal Handling]] |
1136
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1138
perror("sigaction");
1139
return EXIT_FAILURE;
1141
if(old_sigterm_action.sa_handler != SIG_IGN){
1142
ret = sigaction(SIGINT, &sigterm_action, NULL);
1144
perror("sigaction");
1145
exitcode = EXIT_FAILURE;
1149
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1151
perror("sigaction");
1152
return EXIT_FAILURE;
1154
if(old_sigterm_action.sa_handler != SIG_IGN){
1155
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1157
perror("sigaction");
1158
exitcode = EXIT_FAILURE;
1162
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1164
perror("sigaction");
1165
return EXIT_FAILURE;
1167
if(old_sigterm_action.sa_handler != SIG_IGN){
1168
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1170
perror("sigaction");
1171
exitcode = EXIT_FAILURE;
1176
946
/* If the interface is down, bring it up */
1177
if(interface[0] != '\0'){
1178
if_index = (AvahiIfIndex) if_nametoindex(interface);
1180
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1181
exitcode = EXIT_FAILURE;
1189
948
#ifdef __linux__
1190
949
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1191
950
messages to mess up the prompt */
1192
951
ret = klogctl(8, NULL, 5);
1193
bool restore_loglevel = true;
1195
restore_loglevel = false;
1196
953
perror("klogctl");
1198
#endif /* __linux__ */
1200
957
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1202
959
perror("socket");
1203
960
exitcode = EXIT_FAILURE;
1204
961
#ifdef __linux__
1205
if(restore_loglevel){
1206
ret = klogctl(7, NULL, 0);
962
ret = klogctl(7, NULL, 0);
1211
#endif /* __linux__ */
1214
969
strcpy(network.ifr_name, interface);
1217
972
perror("ioctl SIOCGIFFLAGS");
1218
973
#ifdef __linux__
1219
if(restore_loglevel){
1220
ret = klogctl(7, NULL, 0);
974
ret = klogctl(7, NULL, 0);
1225
#endif /* __linux__ */
1226
979
exitcode = EXIT_FAILURE;
1229
982
if((network.ifr_flags & IFF_UP) == 0){
1230
983
network.ifr_flags |= IFF_UP;
1231
take_down_interface = true;
1232
984
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
take_down_interface = false;
1235
986
perror("ioctl SIOCSIFFLAGS");
1236
987
exitcode = EXIT_FAILURE;
1237
988
#ifdef __linux__
1238
if(restore_loglevel){
1239
ret = klogctl(7, NULL, 0);
989
ret = klogctl(7, NULL, 0);
1244
#endif /* __linux__ */
1344
1073
exitcode = EXIT_FAILURE;
1354
tmpmax = strtoimax(address+1, &tmp, 10);
1355
if(errno != 0 or tmp == address+1 or *tmp != '\0'
1356
or tmpmax != (uint16_t)tmpmax){
1077
ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1078
if(ret < 1 or tmpmax != (uint16_t)tmpmax
1079
or address[numchars+1] != '\0'){
1357
1080
fprintf(stderr, "Bad port number\n");
1358
1081
exitcode = EXIT_FAILURE;
1366
1084
port = (uint16_t)tmpmax;
1367
1085
*address = '\0';
1368
1086
address = connect_to;
1369
/* Colon in address indicates IPv6 */
1371
if(strchr(address, ':') != NULL){
1381
ret = start_mandos_communication(address, port, if_index, af);
1087
ret = start_mandos_communication(address, port, if_index, &mc);
1383
1089
exitcode = EXIT_FAILURE;
1424
1137
/* Create the Avahi service browser */
1425
1138
sb = avahi_s_service_browser_new(mc.server, if_index,
1426
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1427
NULL, 0, browse_callback, NULL);
1139
AVAHI_PROTO_INET6, "_mandos._tcp",
1140
NULL, 0, browse_callback, &mc);
1428
1141
if(sb == NULL){
1429
1142
fprintf(stderr, "Failed to create service browser: %s\n",
1430
1143
avahi_strerror(avahi_server_errno(mc.server)));