32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
#ifndef _LARGEFILE_SOURCE
33
34
#define _LARGEFILE_SOURCE
36
#ifndef _FILE_OFFSET_BITS
34
37
#define _FILE_OFFSET_BITS 64
36
40
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
38
42
#include <stdio.h> /* fprintf(), stderr, fwrite(),
39
stdout, ferror(), sscanf(),
43
stdout, ferror(), remove() */
41
44
#include <stdint.h> /* uint16_t, uint32_t */
42
45
#include <stddef.h> /* NULL, size_t, ssize_t */
43
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
45
#include <stdbool.h> /* bool, true */
48
#include <stdbool.h> /* bool, false, true */
46
49
#include <string.h> /* memset(), strcmp(), strlen(),
47
50
strerror(), asprintf(), strcpy() */
48
#include <sys/ioctl.h> /* ioctl */
51
#include <sys/ioctl.h> /* ioctl */
49
52
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
50
53
sockaddr_in6, PF_INET6,
51
SOCK_STREAM, INET6_ADDRSTRLEN,
52
uid_t, gid_t, open(), opendir(),
54
SOCK_STREAM, uid_t, gid_t, open(),
54
56
#include <sys/stat.h> /* open() */
55
57
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
56
struct in6_addr, inet_pton(),
58
inet_pton(), connect() */
58
59
#include <fcntl.h> /* open() */
59
60
#include <dirent.h> /* opendir(), struct dirent, readdir()
61
#include <inttypes.h> /* PRIu16, intmax_t, SCNdMAX */
62
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
62
64
#include <assert.h> /* assert() */
63
65
#include <errno.h> /* perror(), errno */
64
66
#include <time.h> /* nanosleep(), time() */
65
67
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
66
68
SIOCSIFFLAGS, if_indextoname(),
67
69
if_nametoindex(), IF_NAMESIZE */
68
#include <netinet/in.h>
70
#include <netinet/in.h> /* IN6_IS_ADDR_LINKLOCAL,
71
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
69
73
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
70
74
getuid(), getgid(), setuid(),
72
76
#include <arpa/inet.h> /* inet_pton(), htons */
73
#include <iso646.h> /* not, and, or */
77
#include <iso646.h> /* not, or, and */
74
78
#include <argp.h> /* struct argp_option, error_t, struct
75
79
argp_state, struct argp,
76
80
argp_parse(), ARGP_KEY_ARG,
77
81
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
#include <signal.h> /* sigemptyset(), sigaddset(),
83
sigaction(), SIGTERM, sig_atomic_t,
79
87
#include <sys/klog.h> /* klogctl() */
88
#endif /* __linux__ */
83
91
/* All Avahi types, constants and functions
130
138
} 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" };
133
* Make room in "buffer" for at least BUFFER_SIZE additional bytes.
134
* "buffer_capacity" is how much is currently allocated,
146
* Make additional room in "buffer" for at least BUFFER_SIZE more
147
* bytes. "buffer_capacity" is how much is currently allocated,
135
148
* "buffer_length" is how much is already used.
137
size_t adjustbuffer(char **buffer, size_t buffer_length,
150
size_t incbuffer(char **buffer, size_t buffer_length,
138
151
size_t buffer_capacity){
139
152
if(buffer_length + BUFFER_SIZE > buffer_capacity){
140
153
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
298
310
gpgme_recipient_t recipient;
299
311
recipient = result->recipients;
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;
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;
439
448
/* GnuTLS server initialization */
440
ret = gnutls_dh_params_init(&mc->dh_params);
449
ret = gnutls_dh_params_init(&mc.dh_params);
441
450
if(ret != GNUTLS_E_SUCCESS){
442
451
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
443
452
" %s\n", safer_gnutls_strerror(ret));
446
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
455
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
447
456
if(ret != GNUTLS_E_SUCCESS){
448
457
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
449
458
safer_gnutls_strerror(ret));
453
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
462
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
459
gnutls_certificate_free_credentials(mc->cred);
468
gnutls_certificate_free_credentials(mc.cred);
460
469
gnutls_global_deinit();
461
gnutls_dh_params_deinit(mc->dh_params);
470
gnutls_dh_params_deinit(mc.dh_params);
465
static int init_gnutls_session(mandos_context *mc,
466
gnutls_session_t *session){
474
static int init_gnutls_session(gnutls_session_t *session){
468
476
/* GnuTLS session creation */
469
477
ret = gnutls_init(session, GNUTLS_SERVER);
520
534
ssize_t decrypted_buffer_size;
523
char interface[IF_NAMESIZE];
524
537
gnutls_session_t session;
526
ret = init_gnutls_session(mc, &session);
538
int pf; /* Protocol family */
552
fprintf(stderr, "Bad address family: %d\n", af);
556
ret = init_gnutls_session(&session);
532
fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
562
fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
536
tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
566
tcp_sd = socket(pf, SOCK_STREAM, 0);
538
568
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);
550
577
memset(&to, 0, sizeof(to));
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);
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);
556
586
perror("inet_pton");
560
591
fprintf(stderr, "Bad address: %s\n", ip);
563
to.in6.sin6_port = htons(port); /* Spurious warnings from
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
565
615
-Wunreachable-code */
567
to.in6.sin6_scope_id = (uint32_t)if_index;
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){
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,
575
646
perror("inet_ntop");
577
648
if(strcmp(addrstr, ip) != 0){
737
866
AVAHI_GCC_UNUSED AvahiStringList *txt,
738
867
AVAHI_GCC_UNUSED AvahiLookupResultFlags
741
mandos_context *mc = userdata;
869
AVAHI_GCC_UNUSED void* userdata){
744
872
/* Called whenever a service has been resolved successfully or
749
881
case AVAHI_RESOLVER_FAILURE:
750
882
fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
751
883
" of type '%s' in domain '%s': %s\n", name, type, domain,
752
avahi_strerror(avahi_server_errno(mc->server)));
884
avahi_strerror(avahi_server_errno(mc.server)));
755
887
case AVAHI_RESOLVER_FOUND:
801
937
the callback function is called the Avahi server will free the
802
938
resolver for us. */
804
if(!(avahi_s_service_resolver_new(mc->server, interface,
805
protocol, name, type, domain,
806
AVAHI_PROTO_INET6, 0,
807
resolve_callback, mc)))
940
if(avahi_s_service_resolver_new(mc.server, interface, protocol,
941
name, type, domain, protocol, 0,
942
resolve_callback, NULL) == NULL)
808
943
fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
809
name, avahi_strerror(avahi_server_errno(mc->server)));
944
name, avahi_strerror(avahi_server_errno(mc.server)));
812
947
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;
946
1176
/* 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;
948
1189
#ifdef __linux__
949
1190
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
950
1191
messages to mess up the prompt */
951
1192
ret = klogctl(8, NULL, 5);
1193
bool restore_loglevel = true;
1195
restore_loglevel = false;
953
1196
perror("klogctl");
1198
#endif /* __linux__ */
957
1200
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
959
1202
perror("socket");
960
1203
exitcode = EXIT_FAILURE;
961
1204
#ifdef __linux__
962
ret = klogctl(7, NULL, 0);
1205
if(restore_loglevel){
1206
ret = klogctl(7, NULL, 0);
1211
#endif /* __linux__ */
969
1214
strcpy(network.ifr_name, interface);
972
1217
perror("ioctl SIOCGIFFLAGS");
973
1218
#ifdef __linux__
974
ret = klogctl(7, NULL, 0);
1219
if(restore_loglevel){
1220
ret = klogctl(7, NULL, 0);
1225
#endif /* __linux__ */
979
1226
exitcode = EXIT_FAILURE;
982
1229
if((network.ifr_flags & IFF_UP) == 0){
983
1230
network.ifr_flags |= IFF_UP;
1231
take_down_interface = true;
984
1232
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
take_down_interface = false;
986
1235
perror("ioctl SIOCSIFFLAGS");
987
1236
exitcode = EXIT_FAILURE;
988
1237
#ifdef __linux__
989
ret = klogctl(7, NULL, 0);
1238
if(restore_loglevel){
1239
ret = klogctl(7, NULL, 0);
1244
#endif /* __linux__ */
1073
1344
exitcode = EXIT_FAILURE;
1077
ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
1078
if(ret < 1 or tmpmax != (uint16_t)tmpmax
1079
or address[numchars+1] != '\0'){
1354
tmpmax = strtoimax(address+1, &tmp, 10);
1355
if(errno != 0 or tmp == address+1 or *tmp != '\0'
1356
or tmpmax != (uint16_t)tmpmax){
1080
1357
fprintf(stderr, "Bad port number\n");
1081
1358
exitcode = EXIT_FAILURE;
1084
1366
port = (uint16_t)tmpmax;
1085
1367
*address = '\0';
1086
1368
address = connect_to;
1087
ret = start_mandos_communication(address, port, if_index, &mc);
1369
/* Colon in address indicates IPv6 */
1371
if(strchr(address, ':') != NULL){
1381
ret = start_mandos_communication(address, port, if_index, af);
1089
1383
exitcode = EXIT_FAILURE;
1137
1424
/* Create the Avahi service browser */
1138
1425
sb = avahi_s_service_browser_new(mc.server, if_index,
1139
AVAHI_PROTO_INET6, "_mandos._tcp",
1140
NULL, 0, browse_callback, &mc);
1426
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1427
NULL, 0, browse_callback, NULL);
1141
1428
if(sb == NULL){
1142
1429
fprintf(stderr, "Failed to create service browser: %s\n",
1143
1430
avahi_strerror(avahi_server_errno(mc.server)));