43
43
stdout, ferror(), remove() */
44
44
#include <stdint.h> /* uint16_t, uint32_t */
45
45
#include <stddef.h> /* NULL, size_t, ssize_t */
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, srand(),
48
48
#include <stdbool.h> /* bool, false, true */
49
49
#include <string.h> /* memset(), strcmp(), strlen(),
50
50
strerror(), asprintf(), strcpy() */
73
73
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
74
getuid(), getgid(), seteuid(),
76
76
#include <arpa/inet.h> /* inet_pton(), htons */
77
77
#include <iso646.h> /* not, or, and */
78
78
#include <argp.h> /* struct argp_option, error_t, struct
82
82
#include <signal.h> /* sigemptyset(), sigaddset(),
83
83
sigaction(), SIGTERM, sig_atomic_t,
85
#include <sysexits.h> /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
86
EX_NOHOST, EX_IOERR, EX_PROTOCOL */
87
89
#include <sys/klog.h> /* klogctl() */
142
144
.dh_bits = 1024, .priority = "SECURE256"
143
145
":!CTYPE-X.509:+CTYPE-OPENPGP" };
147
sig_atomic_t quit_now = 0;
148
int signal_received = 0;
146
151
* Make additional room in "buffer" for at least BUFFER_SIZE more
147
152
* bytes. "buffer_capacity" is how much is currently allocated,
476
481
/* GnuTLS session creation */
478
483
ret = gnutls_init(session, GNUTLS_SERVER);
479
487
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
480
488
if(ret != GNUTLS_E_SUCCESS){
481
489
fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
488
496
ret = gnutls_priority_set_direct(*session, mc.priority, &err);
498
gnutls_deinit(*session);
489
501
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
490
502
if(ret != GNUTLS_E_SUCCESS){
491
503
fprintf(stderr, "Syntax error at: %s\n", err);
500
512
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
515
gnutls_deinit(*session);
502
518
} while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
503
519
if(ret != GNUTLS_E_SUCCESS){
504
520
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
519
535
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
520
536
__attribute__((unused)) const char *txt){}
522
sig_atomic_t quit_now = 0;
523
int signal_received = 0;
525
538
/* Called when a Mandos server is found */
526
539
static int start_mandos_communication(const char *ip, uint16_t port,
527
540
AvahiIfIndex if_index,
533
546
struct sockaddr_in6 in6;
535
548
char *buffer = NULL;
536
char *decrypted_buffer;
549
char *decrypted_buffer = NULL;
537
550
size_t buffer_length = 0;
538
551
size_t buffer_capacity = 0;
541
554
gnutls_session_t session;
542
555
int pf; /* Protocol family */
607
628
if(if_index == AVAHI_IF_UNSPEC){
608
629
fprintf(stderr, "An IPv6 link-local address is incomplete"
609
630
" without a network interface\n");
613
634
/* Set the network interface number as scope */
772
805
ret = gnutls_handshake(session);
777
811
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
779
813
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
780
814
gnutls_perror(ret);
786
820
fprintf(stderr, "Unknown error while reading data from"
787
821
" encrypted session with Mandos server\n");
789
822
gnutls_bye(session, GNUTLS_SHUT_RDWR);
805
gnutls_bye(session, GNUTLS_SHUT_RDWR);
841
ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
846
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
811
848
if(buffer_length > 0){
812
849
ssize_t decrypted_buffer_size;
825
863
(size_t)decrypted_buffer_size - written,
827
865
if(ret == 0 and ferror(stdout)){
829
868
fprintf(stderr, "Error writing encrypted data: %s\n",
830
869
strerror(errno));
835
874
written += (size_t)ret;
837
free(decrypted_buffer);
845
880
/* Shutdown procedure */
850
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
855
gnutls_deinit(session);
885
free(decrypted_buffer);
888
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
896
gnutls_deinit(session);
1058
1102
.arg = "SECONDS",
1059
1103
.doc = "Maximum delay to wait for interface startup",
1106
* These reproduce what we would get without ARGP_NO_HELP
1108
{ .name = "help", .key = '?',
1109
.doc = "Give this help list", .group = -1 },
1110
{ .name = "usage", .key = -3,
1111
.doc = "Give a short usage message", .group = -1 },
1112
{ .name = "version", .key = 'V',
1113
.doc = "Print program version", .group = -1 },
1061
1114
{ .name = NULL }
1064
1117
error_t parse_opt(int key, char *arg,
1065
1118
struct argp_state *state){
1067
1121
case 128: /* --debug */
1084
1138
tmpmax = strtoimax(arg, &tmp, 10);
1085
1139
if(errno != 0 or tmp == arg or *tmp != '\0'
1086
1140
or tmpmax != (typeof(mc.dh_bits))tmpmax){
1087
fprintf(stderr, "Bad number of DH bits\n");
1141
argp_error(state, "Bad number of DH bits");
1090
1143
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1097
1150
delay = strtof(arg, &tmp);
1098
1151
if(errno != 0 or tmp == arg or *tmp != '\0'){
1099
fprintf(stderr, "Bad delay\n");
1152
argp_error(state, "Bad delay");
1156
* These reproduce what we would get without ARGP_NO_HELP
1158
case '?': /* --help */
1159
argp_state_help(state, state->out_stream,
1160
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1161
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1162
case -3: /* --usage */
1163
argp_state_help(state, state->out_stream,
1164
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1165
case 'V': /* --version */
1166
fprintf(state->out_stream, "%s\n", argp_program_version);
1167
exit(argp_err_exit_status);
1108
1170
return ARGP_ERR_UNKNOWN;
1113
1175
struct argp argp = { .options = options, .parser = parse_opt,
1114
1176
.args_doc = "",
1115
1177
.doc = "Mandos client -- Get and decrypt"
1116
1178
" passwords from a Mandos server" };
1117
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1118
if(ret == ARGP_ERR_UNKNOWN){
1119
fprintf(stderr, "Unknown error while parsing arguments\n");
1120
exitcode = EXIT_FAILURE;
1179
ret = argp_parse(&argp, argc, argv,
1180
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1187
perror("argp_parse");
1188
exitcode = EX_OSERR;
1191
exitcode = EX_USAGE;
1133
1204
mc.simple_poll = avahi_simple_poll_new();
1134
1205
if(mc.simple_poll == NULL){
1135
1206
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1136
exitcode = EXIT_FAILURE;
1207
exitcode = EX_UNAVAILABLE;
1141
1212
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1143
1214
perror("sigaddset");
1144
exitcode = EXIT_FAILURE;
1215
exitcode = EX_OSERR;
1147
1218
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1149
1220
perror("sigaddset");
1150
exitcode = EXIT_FAILURE;
1221
exitcode = EX_OSERR;
1153
1224
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1155
1226
perror("sigaddset");
1156
exitcode = EXIT_FAILURE;
1227
exitcode = EX_OSERR;
1159
1230
/* Need to check if the handler is SIG_IGN before handling:
1163
1234
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1165
1236
perror("sigaction");
1166
return EXIT_FAILURE;
1168
1239
if(old_sigterm_action.sa_handler != SIG_IGN){
1169
1240
ret = sigaction(SIGINT, &sigterm_action, NULL);
1171
1242
perror("sigaction");
1172
exitcode = EXIT_FAILURE;
1243
exitcode = EX_OSERR;
1176
1247
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1178
1249
perror("sigaction");
1179
return EXIT_FAILURE;
1181
1252
if(old_sigterm_action.sa_handler != SIG_IGN){
1182
1253
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1184
1255
perror("sigaction");
1185
exitcode = EXIT_FAILURE;
1256
exitcode = EX_OSERR;
1189
1260
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1191
1262
perror("sigaction");
1192
return EXIT_FAILURE;
1194
1265
if(old_sigterm_action.sa_handler != SIG_IGN){
1195
1266
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1197
1268
perror("sigaction");
1198
exitcode = EXIT_FAILURE;
1269
exitcode = EX_OSERR;
1223
1294
#ifdef __linux__
1224
1295
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1225
messages to mess up the prompt */
1296
messages about the network interface to mess up the prompt */
1226
1297
ret = klogctl(8, NULL, 5);
1227
1298
bool restore_loglevel = true;
1351
1422
ret = init_gnutls_global(pubkey, seckey);
1353
1424
fprintf(stderr, "init_gnutls_global failed\n");
1354
exitcode = EXIT_FAILURE;
1425
exitcode = EX_UNAVAILABLE;
1357
1428
gnutls_initialized = true;
1375
1446
if(not init_gpgme(pubkey, seckey, tempdir)){
1376
1447
fprintf(stderr, "init_gpgme failed\n");
1377
exitcode = EXIT_FAILURE;
1448
exitcode = EX_UNAVAILABLE;
1380
1451
gpgme_initialized = true;
1533
1622
perror("ioctl SIOCGIFFLAGS");
1534
1623
} else if(network.ifr_flags & IFF_UP) {
1535
network.ifr_flags &= ~IFF_UP; /* clear flag */
1624
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1536
1625
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1538
1627
perror("ioctl SIOCSIFFLAGS");
1599
1688
sigemptyset(&old_sigterm_action.sa_mask);
1600
1689
old_sigterm_action.sa_handler = SIG_DFL;
1601
ret = sigaction(signal_received, &old_sigterm_action, NULL);
1690
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
1691
&old_sigterm_action,
1603
1694
perror("sigaction");
1605
raise(signal_received);
1697
ret = raise(signal_received);
1698
} while(ret != 0 and errno == EINTR);
1703
TEMP_FAILURE_RETRY(pause());
1608
1706
return exitcode;