42
42
#include <stddef.h> /* NULL, size_t, ssize_t */
43
43
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
45
#include <stdbool.h> /* bool, true */
45
#include <stdbool.h> /* bool, false, true */
46
46
#include <string.h> /* memset(), strcmp(), strlen(),
47
47
strerror(), asprintf(), strcpy() */
48
#include <sys/ioctl.h> /* ioctl */
48
#include <sys/ioctl.h> /* ioctl */
49
49
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
50
50
sockaddr_in6, PF_INET6,
51
SOCK_STREAM, INET6_ADDRSTRLEN,
52
uid_t, gid_t, open(), opendir(),
51
SOCK_STREAM, uid_t, gid_t, open(),
54
53
#include <sys/stat.h> /* open() */
55
54
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
56
struct in6_addr, inet_pton(),
55
inet_pton(), connect() */
58
56
#include <fcntl.h> /* open() */
59
57
#include <dirent.h> /* opendir(), struct dirent, readdir()
65
63
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
66
64
SIOCSIFFLAGS, if_indextoname(),
67
65
if_nametoindex(), IF_NAMESIZE */
68
#include <netinet/in.h>
66
#include <netinet/in.h> /* IN6_IS_ADDR_LINKLOCAL,
67
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
69
69
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
70
70
getuid(), getgid(), setuid(),
72
72
#include <arpa/inet.h> /* inet_pton(), htons */
73
#include <iso646.h> /* not, and, or */
73
#include <iso646.h> /* not, or, and */
74
74
#include <argp.h> /* struct argp_option, error_t, struct
75
75
argp_state, struct argp,
76
76
argp_parse(), ARGP_KEY_ARG,
77
77
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
78
#include <signal.h> /* sigemptyset(), sigaddset(),
79
sigaction(), SIGTERM, sigaction,
79
83
#include <sys/klog.h> /* klogctl() */
84
#endif /* __linux__ */
83
87
/* All Avahi types, constants and functions
130
134
} mandos_context;
136
/* global context so signal handler can reach it*/
133
* Make room in "buffer" for at least BUFFER_SIZE additional bytes.
134
* "buffer_capacity" is how much is currently allocated,
140
* Make additional room in "buffer" for at least BUFFER_SIZE more
141
* bytes. "buffer_capacity" is how much is currently allocated,
135
142
* "buffer_length" is how much is already used.
137
size_t adjustbuffer(char **buffer, size_t buffer_length,
144
size_t incbuffer(char **buffer, size_t buffer_length,
138
145
size_t buffer_capacity){
139
146
if(buffer_length + BUFFER_SIZE > buffer_capacity){
140
147
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
150
157
* Initialize GPGME.
152
static bool init_gpgme(mandos_context *mc, const char *seckey,
159
static bool init_gpgme(const char *seckey,
153
160
const char *pubkey, const char *tempdir){
155
162
gpgme_error_t rc;
179
rc = gpgme_op_import(mc->ctx, pgp_data);
186
rc = gpgme_op_import(mc.ctx, pgp_data);
180
187
if(rc != GPG_ERR_NO_ERROR){
181
188
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
182
189
gpgme_strsource(rc), gpgme_strerror(rc));
227
234
/* Create new GPGME "context" */
228
rc = gpgme_new(&(mc->ctx));
235
rc = gpgme_new(&(mc.ctx));
229
236
if(rc != GPG_ERR_NO_ERROR){
230
237
fprintf(stderr, "bad gpgme_new: %s: %s\n",
231
238
gpgme_strsource(rc), gpgme_strerror(rc));
243
250
* Decrypt OpenPGP data.
244
251
* Returns -1 on error
246
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
247
const char *cryptotext,
253
static ssize_t pgp_packet_decrypt(const char *cryptotext,
248
254
size_t crypto_size,
249
255
char **plaintext){
250
256
gpgme_data_t dh_crypto, dh_plain;
278
284
/* Decrypt data from the cryptotext data buffer to the plaintext
280
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
286
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
281
287
if(rc != GPG_ERR_NO_ERROR){
282
288
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
283
289
gpgme_strsource(rc), gpgme_strerror(rc));
284
290
plaintext_length = -1;
286
292
gpgme_decrypt_result_t result;
287
result = gpgme_op_decrypt_result(mc->ctx);
293
result = gpgme_op_decrypt_result(mc.ctx);
288
294
if(result == NULL){
289
295
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
327
333
*plaintext = NULL;
329
plaintext_capacity = adjustbuffer(plaintext,
335
plaintext_capacity = incbuffer(plaintext,
330
336
(size_t)plaintext_length,
331
337
plaintext_capacity);
332
338
if(plaintext_capacity == 0){
333
perror("adjustbuffer");
334
340
plaintext_length = -1;
335
341
goto decrypt_end;
382
388
fprintf(stderr, "GnuTLS: %s", string);
385
static int init_gnutls_global(mandos_context *mc,
386
const char *pubkeyfilename,
391
static int init_gnutls_global(const char *pubkeyfilename,
387
392
const char *seckeyfilename){
409
414
/* OpenPGP credentials */
410
gnutls_certificate_allocate_credentials(&mc->cred);
415
gnutls_certificate_allocate_credentials(&mc.cred);
411
416
if(ret != GNUTLS_E_SUCCESS){
412
417
fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
416
421
safer_gnutls_strerror(ret));
417
422
gnutls_global_deinit();
427
432
ret = gnutls_certificate_set_openpgp_key_file
428
(mc->cred, pubkeyfilename, seckeyfilename,
433
(mc.cred, pubkeyfilename, seckeyfilename,
429
434
GNUTLS_OPENPGP_FMT_BASE64);
430
435
if(ret != GNUTLS_E_SUCCESS){
439
444
/* GnuTLS server initialization */
440
ret = gnutls_dh_params_init(&mc->dh_params);
445
ret = gnutls_dh_params_init(&mc.dh_params);
441
446
if(ret != GNUTLS_E_SUCCESS){
442
447
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
443
448
" %s\n", safer_gnutls_strerror(ret));
446
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
451
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
447
452
if(ret != GNUTLS_E_SUCCESS){
448
453
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
449
454
safer_gnutls_strerror(ret));
453
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
458
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
459
gnutls_certificate_free_credentials(mc->cred);
464
gnutls_certificate_free_credentials(mc.cred);
460
465
gnutls_global_deinit();
461
gnutls_dh_params_deinit(mc->dh_params);
466
gnutls_dh_params_deinit(mc.dh_params);
465
static int init_gnutls_session(mandos_context *mc,
466
gnutls_session_t *session){
470
static int init_gnutls_session(gnutls_session_t *session){
468
472
/* GnuTLS session creation */
469
473
ret = gnutls_init(session, GNUTLS_SERVER);
477
ret = gnutls_priority_set_direct(*session, mc->priority, &err);
481
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
478
482
if(ret != GNUTLS_E_SUCCESS){
479
483
fprintf(stderr, "Syntax error at: %s\n", err);
480
484
fprintf(stderr, "GnuTLS error: %s\n",
487
491
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
489
493
if(ret != GNUTLS_E_SUCCESS){
490
494
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
491
495
safer_gnutls_strerror(ret));
497
501
gnutls_certificate_server_set_request(*session,
498
502
GNUTLS_CERT_IGNORE);
500
gnutls_dh_set_prime_bits(*session, mc->dh_bits);
504
gnutls_dh_set_prime_bits(*session, mc.dh_bits);
509
513
/* Called when a Mandos server is found */
510
514
static int start_mandos_communication(const char *ip, uint16_t port,
511
515
AvahiIfIndex if_index,
515
union { struct sockaddr in; struct sockaddr_in6 in6; } to;
520
struct sockaddr_in in;
521
struct sockaddr_in6 in6;
516
523
char *buffer = NULL;
517
524
char *decrypted_buffer;
518
525
size_t buffer_length = 0;
520
527
ssize_t decrypted_buffer_size;
523
char interface[IF_NAMESIZE];
524
530
gnutls_session_t session;
526
ret = init_gnutls_session(mc, &session);
531
int pf; /* Protocol family */
541
fprintf(stderr, "Bad address family: %d\n", af);
545
ret = init_gnutls_session(&session);
532
fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
551
fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
536
tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
555
tcp_sd = socket(pf, SOCK_STREAM, 0);
538
557
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
561
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);
563
to.in6.sin6_family = (uint16_t)af;
564
ret = inet_pton(af, ip, &to.in6.sin6_addr);
566
to.in.sin_family = (sa_family_t)af;
567
ret = inet_pton(af, ip, &to.in.sin_addr);
556
570
perror("inet_pton");
560
574
fprintf(stderr, "Bad address: %s\n", ip);
563
to.in6.sin6_port = htons(port); /* Spurious warnings from
578
to.in6.sin6_port = htons(port); /* Spurious warnings from
580
-Wunreachable-code */
582
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
583
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
585
if(if_index == AVAHI_IF_UNSPEC){
586
fprintf(stderr, "An IPv6 link-local address is incomplete"
587
" without a network interface\n");
590
/* Set the network interface number as scope */
591
to.in6.sin6_scope_id = (uint32_t)if_index;
594
to.in.sin_port = htons(port); /* Spurious warnings from
565
596
-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){
600
if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
601
char interface[IF_NAMESIZE];
602
if(if_indextoname((unsigned int)if_index, interface) == NULL){
603
perror("if_indextoname");
605
fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
606
ip, interface, port);
609
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
612
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
613
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
616
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
619
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
575
623
perror("inet_ntop");
577
625
if(strcmp(addrstr, ip) != 0){
583
ret = connect(tcp_sd, &to.in, sizeof(to));
632
ret = connect(tcp_sd, &to.in6, sizeof(to));
634
ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
585
637
perror("connect");
632
684
/* Read OpenPGP packet that contains the wanted password */
635
fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
687
fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
640
buffer_capacity = adjustbuffer(&buffer, buffer_length,
692
buffer_capacity = incbuffer(&buffer, buffer_length,
641
693
buffer_capacity);
642
694
if(buffer_capacity == 0){
643
perror("adjustbuffer");
685
737
gnutls_bye(session, GNUTLS_SHUT_RDWR);
687
739
if(buffer_length > 0){
688
decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
740
decrypted_buffer_size = pgp_packet_decrypt(buffer,
690
742
&decrypted_buffer);
691
743
if(decrypted_buffer_size >= 0){
737
789
AVAHI_GCC_UNUSED AvahiStringList *txt,
738
790
AVAHI_GCC_UNUSED AvahiLookupResultFlags
741
mandos_context *mc = userdata;
792
AVAHI_GCC_UNUSED void* userdata){
744
795
/* Called whenever a service has been resolved successfully or
749
800
case AVAHI_RESOLVER_FAILURE:
750
801
fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
751
802
" of type '%s' in domain '%s': %s\n", name, type, domain,
752
avahi_strerror(avahi_server_errno(mc->server)));
803
avahi_strerror(avahi_server_errno(mc.server)));
755
806
case AVAHI_RESOLVER_FOUND:
761
812
PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
762
813
ip, (intmax_t)interface, port);
764
int ret = start_mandos_communication(ip, port, interface, mc);
815
int ret = start_mandos_communication(ip, port, interface,
816
avahi_proto_to_af(proto));
766
avahi_simple_poll_quit(mc->simple_poll);
818
avahi_simple_poll_quit(mc.simple_poll);
791
842
case AVAHI_BROWSER_FAILURE:
793
844
fprintf(stderr, "(Avahi browser) %s\n",
794
avahi_strerror(avahi_server_errno(mc->server)));
795
avahi_simple_poll_quit(mc->simple_poll);
845
avahi_strerror(avahi_server_errno(mc.server)));
846
avahi_simple_poll_quit(mc.simple_poll);
798
849
case AVAHI_BROWSER_NEW:
801
852
the callback function is called the Avahi server will free the
802
853
resolver for us. */
804
if(!(avahi_s_service_resolver_new(mc->server, interface,
855
if(!(avahi_s_service_resolver_new(mc.server, interface,
805
856
protocol, name, type, domain,
806
857
AVAHI_PROTO_INET6, 0,
807
resolve_callback, mc)))
858
resolve_callback, NULL)))
808
859
fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
809
name, avahi_strerror(avahi_server_errno(mc->server)));
860
name, avahi_strerror(avahi_server_errno(mc.server)));
812
863
case AVAHI_BROWSER_REMOVE:
875
sig_atomic_t quit_now = 0;
877
static void handle_sigterm(__attribute__((unused)) int sig){
882
int old_errno = errno;
883
if(mc.simple_poll != NULL){
884
avahi_simple_poll_quit(mc.simple_poll);
824
889
int main(int argc, char *argv[]){
825
890
AvahiSServiceBrowser *sb = NULL;
840
905
const char *seckey = PATHDIR "/" SECKEY;
841
906
const char *pubkey = PATHDIR "/" PUBKEY;
843
mandos_context mc = { .simple_poll = NULL, .server = NULL,
844
.dh_bits = 1024, .priority = "SECURE256"
845
":!CTYPE-X.509:+CTYPE-OPENPGP" };
908
/* Initialize Mandos context */
909
mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
910
.dh_bits = 1024, .priority = "SECURE256"
911
":!CTYPE-X.509:+CTYPE-OPENPGP" };
846
912
bool gnutls_initialized = false;
847
913
bool gpgme_initialized = false;
848
914
double delay = 2.5;
916
struct sigaction old_sigterm_action;
917
struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
851
920
struct argp_option options[] = {
858
927
{ .name = "interface", .key = 'i',
860
.doc = "Interface that will be used to search for Mandos"
929
.doc = "Network interface that will be used to search for"
863
932
{ .name = "seckey", .key = 's',
946
1015
/* If the interface is down, bring it up */
1016
if(interface[0] != '\0'){
948
1017
#ifdef __linux__
949
1018
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
950
1019
messages to mess up the prompt */
951
1020
ret = klogctl(8, NULL, 5);
1021
bool restore_loglevel = true;
1023
restore_loglevel = false;
953
1024
perror("klogctl");
1026
#endif /* __linux__ */
957
1028
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
959
1030
perror("socket");
960
1031
exitcode = EXIT_FAILURE;
961
1032
#ifdef __linux__
962
ret = klogctl(7, NULL, 0);
1033
if(restore_loglevel){
1034
ret = klogctl(7, NULL, 0);
1039
#endif /* __linux__ */
969
1042
strcpy(network.ifr_name, interface);
972
1045
perror("ioctl SIOCGIFFLAGS");
973
1046
#ifdef __linux__
974
ret = klogctl(7, NULL, 0);
1047
if(restore_loglevel){
1048
ret = klogctl(7, NULL, 0);
1053
#endif /* __linux__ */
979
1054
exitcode = EXIT_FAILURE;
986
1061
perror("ioctl SIOCSIFFLAGS");
987
1062
exitcode = EXIT_FAILURE;
988
1063
#ifdef __linux__
989
ret = klogctl(7, NULL, 0);
1064
if(restore_loglevel){
1065
ret = klogctl(7, NULL, 0);
1070
#endif /* __linux__ */
1013
1090
perror("close");
1015
1092
#ifdef __linux__
1016
/* Restores kernel loglevel to default */
1017
ret = klogctl(7, NULL, 0);
1093
if(restore_loglevel){
1094
/* Restores kernel loglevel to default */
1095
ret = klogctl(7, NULL, 0);
1100
#endif /* __linux__ */
1024
1103
uid = getuid();
1025
1104
gid = getgid();
1029
1109
perror("setgid");
1034
1114
perror("setuid");
1037
ret = init_gnutls_global(&mc, pubkey, seckey);
1117
ret = init_gnutls_global(pubkey, seckey);
1039
1119
fprintf(stderr, "init_gnutls_global failed\n");
1040
1120
exitcode = EXIT_FAILURE;
1050
1130
tempdir_created = true;
1052
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
1132
if(not init_gpgme(pubkey, seckey, tempdir)){
1053
1133
fprintf(stderr, "init_gpgme failed\n");
1054
1134
exitcode = EXIT_FAILURE;
1057
1137
gpgme_initialized = true;
1060
if_index = (AvahiIfIndex) if_nametoindex(interface);
1062
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1063
exitcode = EXIT_FAILURE;
1140
if(interface[0] != '\0'){
1141
if_index = (AvahiIfIndex) if_nametoindex(interface);
1143
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1144
exitcode = EXIT_FAILURE;
1067
1149
if(connect_to != NULL){
1084
1166
port = (uint16_t)tmpmax;
1085
1167
*address = '\0';
1086
1168
address = connect_to;
1087
ret = start_mandos_communication(address, port, if_index, &mc);
1169
/* Colon in address indicates IPv6 */
1171
if(strchr(address, ':') != NULL){
1176
ret = start_mandos_communication(address, port, if_index, af);
1089
1178
exitcode = EXIT_FAILURE;
1137
1226
/* Create the Avahi service browser */
1138
1227
sb = avahi_s_service_browser_new(mc.server, if_index,
1139
1228
AVAHI_PROTO_INET6, "_mandos._tcp",
1140
NULL, 0, browse_callback, &mc);
1229
NULL, 0, browse_callback, NULL);
1141
1230
if(sb == NULL){
1142
1231
fprintf(stderr, "Failed to create service browser: %s\n",
1143
1232
avahi_strerror(avahi_server_errno(mc.server)));
1237
sigemptyset(&sigterm_action.sa_mask);
1238
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1240
perror("sigaddset");
1241
exitcode = EXIT_FAILURE;
1244
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1246
perror("sigaddset");
1247
exitcode = EXIT_FAILURE;
1250
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1252
perror("sigaddset");
1253
exitcode = EXIT_FAILURE;
1256
ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1258
perror("sigaction");
1259
exitcode = EXIT_FAILURE;
1148
1263
/* Run the main loop */