164
152
const char *priority;
166
154
server *current_server;
168
size_t interfaces_size;
169
155
} mandos_context;
171
/* global so signal handler can reach it*/
172
AvahiSimplePoll *simple_poll;
157
/* global context so signal handler can reach it*/
158
mandos_context mc = { .simple_poll = NULL, .server = NULL,
159
.dh_bits = 1024, .priority = "SECURE256"
160
":!CTYPE-X.509:+CTYPE-OPENPGP",
161
.current_server = NULL };
174
163
sig_atomic_t quit_now = 0;
175
164
int signal_received = 0;
177
166
/* Function to use when printing errors */
178
167
void perror_plus(const char *print_text){
180
168
fprintf(stderr, "Mandos plugin %s: ",
181
169
program_invocation_short_name);
183
170
perror(print_text);
186
__attribute__((format (gnu_printf, 2, 3), nonnull))
187
int fprintf_plus(FILE *stream, const char *format, ...){
189
va_start (ap, format);
191
TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
192
program_invocation_short_name));
193
return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
197
174
* Make additional room in "buffer" for at least BUFFER_SIZE more
198
175
* bytes. "buffer_capacity" is how much is currently allocated,
199
176
* "buffer_length" is how much is already used.
201
__attribute__((nonnull, warn_unused_result))
202
178
size_t incbuffer(char **buffer, size_t buffer_length,
203
size_t buffer_capacity){
179
size_t buffer_capacity){
204
180
if(buffer_length + BUFFER_SIZE > buffer_capacity){
205
char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
207
int old_errno = errno;
181
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
214
185
buffer_capacity += BUFFER_SIZE;
216
187
return buffer_capacity;
219
/* Add server to set of servers to retry periodically */
220
__attribute__((nonnull, warn_unused_result))
221
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
222
int af, server **current_server){
190
int add_server(const char *ip, uint16_t port,
191
AvahiIfIndex if_index,
224
194
server *new_server = malloc(sizeof(server));
225
195
if(new_server == NULL){
226
196
perror_plus("malloc");
229
199
*new_server = (server){ .ip = strdup(ip),
231
.if_index = if_index,
201
.if_index = if_index,
233
203
if(new_server->ip == NULL){
234
204
perror_plus("strdup");
237
ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
239
perror_plus("clock_gettime");
242
/* Special case of first server */
243
if(*current_server == NULL){
207
/* unique case of first server */
208
if (mc.current_server == NULL){
244
209
new_server->next = new_server;
245
210
new_server->prev = new_server;
246
*current_server = new_server;
211
mc.current_server = new_server;
212
/* Placing the new server last in the list */
248
/* Place the new server last in the list */
249
new_server->next = *current_server;
250
new_server->prev = (*current_server)->prev;
214
new_server->next = mc.current_server;
215
new_server->prev = mc.current_server->prev;
251
216
new_server->prev->next = new_server;
252
(*current_server)->prev = new_server;
217
mc.current_server->prev = new_server;
219
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
221
perror_plus("clock_gettime");
258
228
* Initialize GPGME.
260
__attribute__((nonnull, warn_unused_result))
261
static bool init_gpgme(const char *seckey, const char *pubkey,
262
const char *tempdir, mandos_context *mc){
230
static bool init_gpgme(const char *seckey,
231
const char *pubkey, const char *tempdir){
263
232
gpgme_error_t rc;
264
233
gpgme_engine_info_t engine_info;
267
237
* Helper function to insert pub and seckey to the engine keyring.
365
331
ssize_t plaintext_length = 0;
368
fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
334
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
371
337
/* Create new GPGME data buffer from memory cryptotext */
372
338
rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
374
340
if(rc != GPG_ERR_NO_ERROR){
375
fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
376
gpgme_strsource(rc), gpgme_strerror(rc));
341
fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
342
gpgme_strsource(rc), gpgme_strerror(rc));
380
346
/* Create new empty GPGME data buffer for the plaintext */
381
347
rc = gpgme_data_new(&dh_plain);
382
348
if(rc != GPG_ERR_NO_ERROR){
383
fprintf_plus(stderr, "Mandos plugin mandos-client: "
384
"bad gpgme_data_new: %s: %s\n",
385
gpgme_strsource(rc), gpgme_strerror(rc));
349
fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
350
gpgme_strsource(rc), gpgme_strerror(rc));
386
351
gpgme_data_release(dh_crypto);
390
355
/* Decrypt data from the cryptotext data buffer to the plaintext
392
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
357
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
393
358
if(rc != GPG_ERR_NO_ERROR){
394
fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
395
gpgme_strsource(rc), gpgme_strerror(rc));
359
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
360
gpgme_strsource(rc), gpgme_strerror(rc));
396
361
plaintext_length = -1;
398
363
gpgme_decrypt_result_t result;
399
result = gpgme_op_decrypt_result(mc->ctx);
364
result = gpgme_op_decrypt_result(mc.ctx);
400
365
if(result == NULL){
401
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
366
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
403
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
404
result->unsupported_algorithm);
405
fprintf_plus(stderr, "Wrong key usage: %u\n",
406
result->wrong_key_usage);
368
fprintf(stderr, "Unsupported algorithm: %s\n",
369
result->unsupported_algorithm);
370
fprintf(stderr, "Wrong key usage: %u\n",
371
result->wrong_key_usage);
407
372
if(result->file_name != NULL){
408
fprintf_plus(stderr, "File name: %s\n", result->file_name);
373
fprintf(stderr, "File name: %s\n", result->file_name);
410
375
gpgme_recipient_t recipient;
411
376
recipient = result->recipients;
412
377
while(recipient != NULL){
413
fprintf_plus(stderr, "Public key algorithm: %s\n",
414
gpgme_pubkey_algo_name
415
(recipient->pubkey_algo));
416
fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
417
fprintf_plus(stderr, "Secret key available: %s\n",
418
recipient->status == GPG_ERR_NO_SECKEY
378
fprintf(stderr, "Public key algorithm: %s\n",
379
gpgme_pubkey_algo_name(recipient->pubkey_algo));
380
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
381
fprintf(stderr, "Secret key available: %s\n",
382
recipient->status == GPG_ERR_NO_SECKEY
420
384
recipient = recipient->next;
522
483
/* OpenPGP credentials */
523
ret = gnutls_certificate_allocate_credentials(&mc->cred);
484
ret = gnutls_certificate_allocate_credentials(&mc.cred);
524
485
if(ret != GNUTLS_E_SUCCESS){
525
fprintf_plus(stderr, "GnuTLS memory error: %s\n",
526
safer_gnutls_strerror(ret));
486
fprintf(stderr, "GnuTLS memory error: %s\n",
487
safer_gnutls_strerror(ret));
527
488
gnutls_global_deinit();
532
fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
533
" secret key %s as GnuTLS credentials\n",
493
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
494
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
538
498
ret = gnutls_certificate_set_openpgp_key_file
539
(mc->cred, pubkeyfilename, seckeyfilename,
499
(mc.cred, pubkeyfilename, seckeyfilename,
540
500
GNUTLS_OPENPGP_FMT_BASE64);
541
501
if(ret != GNUTLS_E_SUCCESS){
543
"Error[%d] while reading the OpenPGP key pair ('%s',"
544
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
545
fprintf_plus(stderr, "The GnuTLS error is: %s\n",
546
safer_gnutls_strerror(ret));
503
"Error[%d] while reading the OpenPGP key pair ('%s',"
504
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
505
fprintf(stderr, "The GnuTLS error is: %s\n",
506
safer_gnutls_strerror(ret));
550
510
/* GnuTLS server initialization */
551
ret = gnutls_dh_params_init(&mc->dh_params);
511
ret = gnutls_dh_params_init(&mc.dh_params);
552
512
if(ret != GNUTLS_E_SUCCESS){
553
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
554
" initialization: %s\n",
555
safer_gnutls_strerror(ret));
513
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
514
" %s\n", safer_gnutls_strerror(ret));
558
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
517
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
559
518
if(ret != GNUTLS_E_SUCCESS){
560
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
561
safer_gnutls_strerror(ret));
519
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
520
safer_gnutls_strerror(ret));
565
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
524
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
571
gnutls_certificate_free_credentials(mc->cred);
530
gnutls_certificate_free_credentials(mc.cred);
572
531
gnutls_global_deinit();
573
gnutls_dh_params_deinit(mc->dh_params);
532
gnutls_dh_params_deinit(mc.dh_params);
577
__attribute__((nonnull, warn_unused_result))
578
static int init_gnutls_session(gnutls_session_t *session,
536
static int init_gnutls_session(gnutls_session_t *session){
581
538
/* GnuTLS session creation */
776
708
if(if_indextoname((unsigned int)if_index, interface) == NULL){
777
709
perror_plus("if_indextoname");
779
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
780
"\n", ip, interface, (uintmax_t)port);
711
fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
712
ip, interface, port);
783
fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
784
ip, (uintmax_t)port);
715
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
786
718
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
787
719
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
788
721
if(af == AF_INET6){
789
ret = getnameinfo((struct sockaddr *)&to,
790
sizeof(struct sockaddr_in6),
791
addrstr, sizeof(addrstr), NULL, 0,
722
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
794
ret = getnameinfo((struct sockaddr *)&to,
795
sizeof(struct sockaddr_in),
796
addrstr, sizeof(addrstr), NULL, 0,
725
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
799
if(ret == EAI_SYSTEM){
800
perror_plus("getnameinfo");
801
} else if(ret != 0) {
802
fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
803
} else if(strcmp(addrstr, ip) != 0){
804
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
729
perror_plus("inet_ntop");
731
if(strcmp(addrstr, ip) != 0){
732
fprintf(stderr, "Canonical address form: %s\n", addrstr);
1080
999
char ip[AVAHI_ADDRESS_STR_MAX];
1081
1000
avahi_address_snprint(ip, sizeof(ip), address);
1083
fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
1084
PRIdMAX ") on port %" PRIu16 "\n", name,
1085
host_name, ip, (intmax_t)interface, port);
1002
fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
1003
PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
1004
ip, (intmax_t)interface, port);
1087
int ret = start_mandos_communication(ip, (in_port_t)port,
1089
avahi_proto_to_af(proto),
1006
int ret = start_mandos_communication(ip, port, interface,
1007
avahi_proto_to_af(proto));
1092
avahi_simple_poll_quit(simple_poll);
1009
avahi_simple_poll_quit(mc.simple_poll);
1094
if(not add_server(ip, (in_port_t)port, interface,
1095
avahi_proto_to_af(proto),
1096
&((mandos_context*)mc)->current_server)){
1097
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1011
ret = add_server(ip, port, interface,
1012
avahi_proto_to_af(proto));
1172
1078
signal_received = sig;
1173
1079
int old_errno = errno;
1174
1080
/* set main loop to exit */
1175
if(simple_poll != NULL){
1176
avahi_simple_poll_quit(simple_poll);
1081
if(mc.simple_poll != NULL){
1082
avahi_simple_poll_quit(mc.simple_poll);
1178
1084
errno = old_errno;
1181
__attribute__((nonnull, warn_unused_result))
1182
bool get_flags(const char *ifname, struct ifreq *ifr){
1186
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1189
perror_plus("socket");
1193
strcpy(ifr->ifr_name, ifname);
1194
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1088
* This function determines if a directory entry in /sys/class/net
1089
* corresponds to an acceptable network device.
1090
* (This function is passed to scandir(3) as a filter function.)
1092
int good_interface(const struct dirent *if_entry){
1094
char *flagname = NULL;
1095
if(if_entry->d_name[0] == '.'){
1098
int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1101
perror_plus("asprintf");
1104
int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1106
perror_plus("open");
1111
typedef short ifreq_flags; /* ifreq.ifr_flags in netdevice(7) */
1112
/* read line from flags_fd */
1113
ssize_t to_read = 2+(sizeof(ifreq_flags)*2)+1; /* "0x1003\n" */
1114
char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1115
flagstring[(size_t)to_read] = '\0';
1116
if(flagstring == NULL){
1117
perror_plus("malloc");
1122
ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1125
perror_plus("read");
1139
tmpmax = strtoimax(flagstring, &tmp, 0);
1140
if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1141
and not (isspace(*tmp)))
1142
or tmpmax != (ifreq_flags)tmpmax){
1198
perror_plus("ioctl SIOCGIFFLAGS");
1144
fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1145
flagstring, if_entry->d_name);
1206
__attribute__((nonnull, warn_unused_result))
1207
bool good_flags(const char *ifname, const struct ifreq *ifr){
1151
ifreq_flags flags = (ifreq_flags)tmpmax;
1209
1152
/* Reject the loopback device */
1210
if(ifr->ifr_flags & IFF_LOOPBACK){
1153
if(flags & IFF_LOOPBACK){
1212
fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
1155
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1217
1160
/* Accept point-to-point devices only if connect_to is specified */
1218
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1161
if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1220
fprintf_plus(stderr, "Accepting point-to-point interface"
1221
" \"%s\"\n", ifname);
1163
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1225
1168
/* Otherwise, reject non-broadcast-capable devices */
1226
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1169
if(not (flags & IFF_BROADCAST)){
1228
fprintf_plus(stderr, "Rejecting non-broadcast interface"
1229
" \"%s\"\n", ifname);
1171
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1233
1176
/* Reject non-ARP interfaces (including dummy interfaces) */
1234
if(ifr->ifr_flags & IFF_NOARP){
1177
if(flags & IFF_NOARP){
1236
fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
1179
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
1242
1184
/* Accept this device */
1244
fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
1250
* This function determines if a directory entry in /sys/class/net
1251
* corresponds to an acceptable network device.
1252
* (This function is passed to scandir(3) as a filter function.)
1254
__attribute__((nonnull, warn_unused_result))
1255
int good_interface(const struct dirent *if_entry){
1256
if(if_entry->d_name[0] == '.'){
1261
if(not get_flags(if_entry->d_name, &ifr)){
1263
fprintf_plus(stderr, "Failed to get flags for interface "
1264
"\"%s\"\n", if_entry->d_name);
1269
if(not good_flags(if_entry->d_name, &ifr)){
1186
fprintf(stderr, "Interface \"%s\" is acceptable\n",
1276
* This function determines if a network interface is up.
1278
__attribute__((nonnull, warn_unused_result))
1279
bool interface_is_up(const char *interface){
1281
if(not get_flags(interface, &ifr)){
1283
fprintf_plus(stderr, "Failed to get flags for interface "
1284
"\"%s\"\n", interface);
1289
return (bool)(ifr.ifr_flags & IFF_UP);
1293
* This function determines if a network interface is running
1295
__attribute__((nonnull, warn_unused_result))
1296
bool interface_is_running(const char *interface){
1298
if(not get_flags(interface, &ifr)){
1300
fprintf_plus(stderr, "Failed to get flags for interface "
1301
"\"%s\"\n", interface);
1306
return (bool)(ifr.ifr_flags & IFF_RUNNING);
1309
__attribute__((nonnull, pure, warn_unused_result))
1310
1192
int notdotentries(const struct dirent *direntry){
1311
1193
/* Skip "." and ".." */
1312
1194
if(direntry->d_name[0] == '.'
1321
/* Is this directory entry a runnable program? */
1322
__attribute__((nonnull, warn_unused_result))
1323
int runnable_hook(const struct dirent *direntry){
1328
if((direntry->d_name)[0] == '\0'){
1333
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1334
"abcdefghijklmnopqrstuvwxyz"
1337
if((direntry->d_name)[sret] != '\0'){
1338
/* Contains non-allowed characters */
1340
fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
1346
char *fullname = NULL;
1347
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1349
perror_plus("asprintf");
1353
ret = stat(fullname, &st);
1356
perror_plus("Could not stat hook");
1360
if(not (S_ISREG(st.st_mode))){
1361
/* Not a regular file */
1363
fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
1368
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1369
/* Not executable */
1371
fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
1377
fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1383
__attribute__((nonnull, warn_unused_result))
1384
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
1385
mandos_context *mc){
1203
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1387
1205
struct timespec now;
1388
1206
struct timespec waited_time;
1389
1207
intmax_t block_time;
1392
if(mc->current_server == NULL){
1394
fprintf_plus(stderr, "Wait until first server is found."
1210
if(mc.current_server == NULL){
1213
"Wait until first server is found. No timeout!\n");
1397
1215
ret = avahi_simple_poll_iterate(s, -1);
1400
fprintf_plus(stderr, "Check current_server if we should run"
1218
fprintf(stderr, "Check current_server if we should run it,"
1403
1221
/* the current time */
1404
1222
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1409
1227
/* Calculating in ms how long time between now and server
1410
1228
who we visted longest time ago. Now - last seen. */
1411
1229
waited_time.tv_sec = (now.tv_sec
1412
- mc->current_server->last_seen.tv_sec);
1230
- mc.current_server->last_seen.tv_sec);
1413
1231
waited_time.tv_nsec = (now.tv_nsec
1414
- mc->current_server->last_seen.tv_nsec);
1232
- mc.current_server->last_seen.tv_nsec);
1415
1233
/* total time is 10s/10,000ms.
1416
1234
Converting to s from ms by dividing by 1,000,
1417
1235
and ns to ms by dividing by 1,000,000. */
1418
1236
block_time = ((retry_interval
1419
1237
- ((intmax_t)waited_time.tv_sec * 1000))
1420
1238
- ((intmax_t)waited_time.tv_nsec / 1000000));
1423
fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
1241
fprintf(stderr, "Blocking for %ld ms\n", block_time);
1427
1244
if(block_time <= 0){
1428
ret = start_mandos_communication(mc->current_server->ip,
1429
mc->current_server->port,
1430
mc->current_server->if_index,
1431
mc->current_server->af, mc);
1245
ret = start_mandos_communication(mc.current_server->ip,
1246
mc.current_server->port,
1247
mc.current_server->if_index,
1248
mc.current_server->af);
1433
avahi_simple_poll_quit(s);
1250
avahi_simple_poll_quit(mc.simple_poll);
1436
1253
ret = clock_gettime(CLOCK_MONOTONIC,
1437
&mc->current_server->last_seen);
1254
&mc.current_server->last_seen);
1439
1256
perror_plus("clock_gettime");
1442
mc->current_server = mc->current_server->next;
1259
mc.current_server = mc.current_server->next;
1443
1260
block_time = 0; /* Call avahi to find new Mandos
1444
1261
servers, but don't block */
1447
1264
ret = avahi_simple_poll_iterate(s, (int)block_time);
1450
if(ret > 0 or errno != EINTR){
1267
if (ret > 0 or errno != EINTR) {
1451
1268
return (ret != 1) ? ret : 0;
1457
/* Set effective uid to 0, return errno */
1458
__attribute__((warn_unused_result))
1459
error_t raise_privileges(void){
1460
error_t old_errno = errno;
1461
error_t ret_errno = 0;
1462
if(seteuid(0) == -1){
1464
perror_plus("seteuid");
1470
/* Set effective and real user ID to 0. Return errno. */
1471
__attribute__((warn_unused_result))
1472
error_t raise_privileges_permanently(void){
1473
error_t old_errno = errno;
1474
error_t ret_errno = raise_privileges();
1479
if(setuid(0) == -1){
1481
perror_plus("seteuid");
1487
/* Set effective user ID to unprivileged saved user ID */
1488
__attribute__((warn_unused_result))
1489
error_t lower_privileges(void){
1490
error_t old_errno = errno;
1491
error_t ret_errno = 0;
1492
if(seteuid(uid) == -1){
1494
perror_plus("seteuid");
1500
/* Lower privileges permanently */
1501
__attribute__((warn_unused_result))
1502
error_t lower_privileges_permanently(void){
1503
error_t old_errno = errno;
1504
error_t ret_errno = 0;
1505
if(setuid(uid) == -1){
1507
perror_plus("setuid");
1513
__attribute__((nonnull))
1514
void run_network_hooks(const char *mode, const char *interface,
1516
struct dirent **direntries;
1517
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1520
if(errno == ENOENT){
1522
fprintf_plus(stderr, "Network hook directory \"%s\" not"
1523
" found\n", hookdir);
1526
perror_plus("scandir");
1529
struct dirent *direntry;
1531
int devnull = open("/dev/null", O_RDONLY);
1532
for(int i = 0; i < numhooks; i++){
1533
direntry = direntries[i];
1534
char *fullname = NULL;
1535
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1537
perror_plus("asprintf");
1541
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1544
pid_t hook_pid = fork();
1547
/* Raise privileges */
1548
if(raise_privileges_permanently() != 0){
1549
perror_plus("Failed to raise privileges");
1556
perror_plus("setgid");
1559
/* Reset supplementary groups */
1561
ret = setgroups(0, NULL);
1563
perror_plus("setgroups");
1566
ret = dup2(devnull, STDIN_FILENO);
1568
perror_plus("dup2(devnull, STDIN_FILENO)");
1571
ret = close(devnull);
1573
perror_plus("close");
1576
ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1578
perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1581
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1583
perror_plus("setenv");
1586
ret = setenv("DEVICE", interface, 1);
1588
perror_plus("setenv");
1591
ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1593
perror_plus("setenv");
1596
ret = setenv("MODE", mode, 1);
1598
perror_plus("setenv");
1602
ret = asprintf(&delaystring, "%f", (double)delay);
1604
perror_plus("asprintf");
1607
ret = setenv("DELAY", delaystring, 1);
1610
perror_plus("setenv");
1614
if(connect_to != NULL){
1615
ret = setenv("CONNECT", connect_to, 1);
1617
perror_plus("setenv");
1621
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1622
perror_plus("execl");
1623
_exit(EXIT_FAILURE);
1627
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1628
perror_plus("waitpid");
1632
if(WIFEXITED(status)){
1633
if(WEXITSTATUS(status) != 0){
1634
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1635
" with status %d\n", direntry->d_name,
1636
WEXITSTATUS(status));
1640
} else if(WIFSIGNALED(status)){
1641
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1642
" signal %d\n", direntry->d_name,
1647
fprintf_plus(stderr, "Warning: network hook \"%s\""
1648
" crashed\n", direntry->d_name);
1655
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1663
__attribute__((nonnull, warn_unused_result))
1664
error_t bring_up_interface(const char *const interface,
1666
error_t old_errno = errno;
1668
struct ifreq network;
1669
unsigned int if_index = if_nametoindex(interface);
1671
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1681
if(not interface_is_up(interface)){
1682
error_t ret_errno = 0, ioctl_errno = 0;
1683
if(not get_flags(interface, &network)){
1685
fprintf_plus(stderr, "Failed to get flags for interface "
1686
"\"%s\"\n", interface);
1690
network.ifr_flags |= IFF_UP; /* set flag */
1692
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1695
perror_plus("socket");
1701
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1703
perror_plus("close");
1710
fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1714
/* Raise privileges */
1715
ret_errno = raise_privileges();
1716
bool restore_loglevel = false;
1718
perror_plus("Failed to raise privileges");
1723
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1724
messages about the network interface to mess up the prompt */
1725
ret_linux = klogctl(8, NULL, 5);
1726
if(ret_linux == -1){
1727
perror_plus("klogctl");
1729
restore_loglevel = true;
1732
#endif /* __linux__ */
1733
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1734
ioctl_errno = errno;
1736
if(restore_loglevel){
1737
ret_linux = klogctl(7, NULL, 0);
1738
if(ret_linux == -1){
1739
perror_plus("klogctl");
1742
#endif /* __linux__ */
1744
/* If raise_privileges() succeeded above */
1746
/* Lower privileges */
1747
ret_errno = lower_privileges();
1750
perror_plus("Failed to lower privileges");
1754
/* Close the socket */
1755
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1757
perror_plus("close");
1760
if(ret_setflags == -1){
1761
errno = ioctl_errno;
1762
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1767
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1771
/* Sleep checking until interface is running.
1772
Check every 0.25s, up to total time of delay */
1773
for(int i=0; i < delay * 4; i++){
1774
if(interface_is_running(interface)){
1777
struct timespec sleeptime = { .tv_nsec = 250000000 };
1778
ret = nanosleep(&sleeptime, NULL);
1779
if(ret == -1 and errno != EINTR){
1780
perror_plus("nanosleep");
1788
__attribute__((nonnull, warn_unused_result))
1789
error_t take_down_interface(const char *const interface){
1790
error_t old_errno = errno;
1791
struct ifreq network;
1792
unsigned int if_index = if_nametoindex(interface);
1794
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1798
if(interface_is_up(interface)){
1799
error_t ret_errno = 0, ioctl_errno = 0;
1800
if(not get_flags(interface, &network) and debug){
1802
fprintf_plus(stderr, "Failed to get flags for interface "
1803
"\"%s\"\n", interface);
1807
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1809
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1812
perror_plus("socket");
1818
fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1822
/* Raise privileges */
1823
ret_errno = raise_privileges();
1825
perror_plus("Failed to raise privileges");
1827
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1828
ioctl_errno = errno;
1830
/* If raise_privileges() succeeded above */
1832
/* Lower privileges */
1833
ret_errno = lower_privileges();
1836
perror_plus("Failed to lower privileges");
1840
/* Close the socket */
1841
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1843
perror_plus("close");
1846
if(ret_setflags == -1){
1847
errno = ioctl_errno;
1848
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1853
fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1861
1274
int main(int argc, char *argv[]){
1862
mandos_context mc = { .server = NULL, .dh_bits = 1024,
1863
.priority = "SECURE256:!CTYPE-X.509:"
1864
"+CTYPE-OPENPGP", .current_server = NULL,
1865
.interfaces = NULL, .interfaces_size = 0 };
1866
1275
AvahiSServiceBrowser *sb = NULL;
1869
1278
intmax_t tmpmax;
1871
1280
int exitcode = EXIT_SUCCESS;
1872
char *interfaces_to_take_down = NULL;
1873
size_t interfaces_to_take_down_size = 0;
1281
const char *interface = "";
1282
struct ifreq network;
1284
bool take_down_interface = false;
1874
1287
char tempdir[] = "/tmp/mandosXXXXXX";
1875
1288
bool tempdir_created = false;
1876
1289
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1877
1290
const char *seckey = PATHDIR "/" SECKEY;
1878
1291
const char *pubkey = PATHDIR "/" PUBKEY;
1879
char *interfaces_hooks = NULL;
1881
1293
bool gnutls_initialized = false;
1882
1294
bool gpgme_initialized = false;
2060
/* Work around Debian bug #633582:
2061
<http://bugs.debian.org/633582> */
2063
/* Re-raise privileges */
2064
ret_errno = raise_privileges();
2067
perror_plus("Failed to raise privileges");
2071
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
2072
int seckey_fd = open(seckey, O_RDONLY);
2073
if(seckey_fd == -1){
2074
perror_plus("open");
2076
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
2078
perror_plus("fstat");
2080
if(S_ISREG(st.st_mode)
2081
and st.st_uid == 0 and st.st_gid == 0){
2082
ret = fchown(seckey_fd, uid, gid);
2084
perror_plus("fchown");
2088
TEMP_FAILURE_RETRY(close(seckey_fd));
2092
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
2093
int pubkey_fd = open(pubkey, O_RDONLY);
2094
if(pubkey_fd == -1){
2095
perror_plus("open");
2097
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
2099
perror_plus("fstat");
2101
if(S_ISREG(st.st_mode)
2102
and st.st_uid == 0 and st.st_gid == 0){
2103
ret = fchown(pubkey_fd, uid, gid);
2105
perror_plus("fchown");
2109
TEMP_FAILURE_RETRY(close(pubkey_fd));
2113
/* Lower privileges */
2114
ret_errno = lower_privileges();
2117
perror_plus("Failed to lower privileges");
2122
/* Remove invalid interface names (except "none") */
2124
char *interface = NULL;
2125
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2127
if(strcmp(interface, "none") != 0
2128
and if_nametoindex(interface) == 0){
2129
if(interface[0] != '\0'){
2130
fprintf_plus(stderr, "Not using nonexisting interface"
2131
" \"%s\"\n", interface);
2133
argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
2139
/* Run network hooks */
2141
if(mc.interfaces != NULL){
2142
interfaces_hooks = malloc(mc.interfaces_size);
2143
if(interfaces_hooks == NULL){
2144
perror_plus("malloc");
2147
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2148
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2150
run_network_hooks("start", interfaces_hooks != NULL ?
2151
interfaces_hooks : "", delay);
2155
1460
avahi_set_log_function(empty_log);
1463
if(interface[0] == '\0'){
1464
struct dirent **direntries;
1465
ret = scandir(sys_class_net, &direntries, good_interface,
1468
/* Pick the first good interface */
1469
interface = strdup(direntries[0]->d_name);
1471
fprintf(stderr, "Using interface \"%s\"\n", interface);
1473
if(interface == NULL){
1474
perror_plus("malloc");
1476
exitcode = EXIT_FAILURE;
1482
fprintf(stderr, "Could not find a network interface\n");
1483
exitcode = EXIT_FAILURE;
2158
1488
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
2159
1489
from the signal handler */
2160
1490
/* Initialize the pseudo-RNG for Avahi */
2161
1491
srand((unsigned int) time(NULL));
2162
simple_poll = avahi_simple_poll_new();
2163
if(simple_poll == NULL){
2164
fprintf_plus(stderr,
2165
"Avahi: Failed to create simple poll object.\n");
1492
mc.simple_poll = avahi_simple_poll_new();
1493
if(mc.simple_poll == NULL){
1494
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
2166
1495
exitcode = EX_UNAVAILABLE;
2233
/* If no interfaces were specified, make a list */
2234
if(mc.interfaces == NULL){
2235
struct dirent **direntries;
2236
/* Look for any good interfaces */
2237
ret = scandir(sys_class_net, &direntries, good_interface,
2240
/* Add all found interfaces to interfaces list */
2241
for(int i = 0; i < ret; ++i){
2242
ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2243
direntries[i]->d_name);
2246
perror_plus("argz_add");
2250
fprintf_plus(stderr, "Will use interface \"%s\"\n",
2251
direntries[i]->d_name);
1562
/* If the interface is down, bring it up */
1563
if(strcmp(interface, "none") != 0){
1564
if_index = (AvahiIfIndex) if_nametoindex(interface);
1566
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1567
exitcode = EX_UNAVAILABLE;
1575
/* Re-raise priviliges */
1579
perror_plus("seteuid");
1583
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1584
messages about the network interface to mess up the prompt */
1585
ret = klogctl(8, NULL, 5);
1586
bool restore_loglevel = true;
1588
restore_loglevel = false;
1589
perror_plus("klogctl");
1591
#endif /* __linux__ */
1593
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1595
perror_plus("socket");
1596
exitcode = EX_OSERR;
1598
if(restore_loglevel){
1599
ret = klogctl(7, NULL, 0);
1601
perror_plus("klogctl");
1604
#endif /* __linux__ */
1605
/* Lower privileges */
1609
perror_plus("seteuid");
1613
strcpy(network.ifr_name, interface);
1614
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1616
perror_plus("ioctl SIOCGIFFLAGS");
1618
if(restore_loglevel){
1619
ret = klogctl(7, NULL, 0);
1621
perror_plus("klogctl");
1624
#endif /* __linux__ */
1625
exitcode = EX_OSERR;
1626
/* Lower privileges */
1630
perror_plus("seteuid");
1634
if((network.ifr_flags & IFF_UP) == 0){
1635
network.ifr_flags |= IFF_UP;
1636
take_down_interface = true;
1637
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1639
take_down_interface = false;
1640
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1641
exitcode = EX_OSERR;
1643
if(restore_loglevel){
1644
ret = klogctl(7, NULL, 0);
1646
perror_plus("klogctl");
1649
#endif /* __linux__ */
1650
/* Lower privileges */
1654
perror_plus("seteuid");
1659
/* Sleep checking until interface is running.
1660
Check every 0.25s, up to total time of delay */
1661
for(int i=0; i < delay * 4; i++){
1662
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1664
perror_plus("ioctl SIOCGIFFLAGS");
1665
} else if(network.ifr_flags & IFF_RUNNING){
1668
struct timespec sleeptime = { .tv_nsec = 250000000 };
1669
ret = nanosleep(&sleeptime, NULL);
1670
if(ret == -1 and errno != EINTR){
1671
perror_plus("nanosleep");
1674
if(not take_down_interface){
1675
/* We won't need the socket anymore */
1676
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1678
perror_plus("close");
1682
if(restore_loglevel){
1683
/* Restores kernel loglevel to default */
1684
ret = klogctl(7, NULL, 0);
1686
perror_plus("klogctl");
1689
#endif /* __linux__ */
1690
/* Lower privileges */
1692
if(take_down_interface){
1693
/* Lower privileges */
1696
perror_plus("seteuid");
2257
fprintf_plus(stderr, "Could not find a network interface\n");
2258
exitcode = EXIT_FAILURE;
2263
/* Bring up interfaces which are down, and remove any "none"s */
2265
char *interface = NULL;
2266
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2268
/* If interface name is "none", stop bringing up interfaces.
2269
Also remove all instances of "none" from the list */
2270
if(strcmp(interface, "none") == 0){
2271
argz_delete(&mc.interfaces, &mc.interfaces_size,
2274
while((interface = argz_next(mc.interfaces,
2275
mc.interfaces_size, interface))){
2276
if(strcmp(interface, "none") == 0){
2277
argz_delete(&mc.interfaces, &mc.interfaces_size,
2284
bool interface_was_up = interface_is_up(interface);
2285
errno = bring_up_interface(interface, delay);
2286
if(not interface_was_up){
2288
perror_plus("Failed to bring up interface");
2290
errno = argz_add(&interfaces_to_take_down,
2291
&interfaces_to_take_down_size,
2294
perror_plus("argz_add");
2299
if(debug and (interfaces_to_take_down == NULL)){
2300
fprintf_plus(stderr, "No interfaces were brought up\n");
2304
/* If we only got one interface, explicitly use only that one */
2305
if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2307
fprintf_plus(stderr, "Using only interface \"%s\"\n",
2310
if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
1699
/* Lower privileges permanently */
1702
perror_plus("setuid");
2317
ret = init_gnutls_global(pubkey, seckey, &mc);
1711
ret = init_gnutls_global(pubkey, seckey);
2319
fprintf_plus(stderr, "init_gnutls_global failed\n");
1713
fprintf(stderr, "init_gnutls_global failed\n");
2320
1714
exitcode = EX_UNAVAILABLE;
2523
/* Re-raise privileges */
2525
ret_errno = raise_privileges();
2527
perror_plus("Failed to raise privileges");
2530
/* Run network hooks */
2531
run_network_hooks("stop", interfaces_hooks != NULL ?
2532
interfaces_hooks : "", delay);
2534
/* Take down the network interfaces which were brought up */
2536
char *interface = NULL;
2537
while((interface=argz_next(interfaces_to_take_down,
2538
interfaces_to_take_down_size,
2540
ret_errno = take_down_interface(interface);
2543
perror_plus("Failed to take down interface");
2546
if(debug and (interfaces_to_take_down == NULL)){
2547
fprintf_plus(stderr, "No interfaces needed to be taken"
1903
/* Take down the network interface */
1904
if(take_down_interface){
1905
/* Re-raise priviliges */
1909
perror_plus("seteuid");
2552
ret_errno = lower_privileges_permanently();
2554
perror_plus("Failed to lower privileges permanently");
1912
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1914
perror_plus("ioctl SIOCGIFFLAGS");
1915
} else if(network.ifr_flags & IFF_UP) {
1916
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1917
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1919
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1922
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1924
perror_plus("close");
1926
/* Lower privileges permanently */
1930
perror_plus("setuid");
2558
free(interfaces_to_take_down);
2559
free(interfaces_hooks);
2561
1935
/* Removes the GPGME temp directory and all files inside */
2562
1936
if(tempdir_created){
2563
1937
struct dirent **direntries = NULL;
2564
1938
struct dirent *direntry = NULL;
2565
int numentries = scandir(tempdir, &direntries, notdotentries,
2568
for(int i = 0; i < numentries; i++){
1939
ret = scandir(tempdir, &direntries, notdotentries, alphasort);
1941
for(int i = 0; i < ret; i++){
2569
1942
direntry = direntries[i];
2570
1943
char *fullname = NULL;
2571
1944
ret = asprintf(&fullname, "%s/%s", tempdir,