153
165
const char *priority;
155
167
server *current_server;
169
size_t interfaces_size;
156
170
} mandos_context;
158
/* global context so signal handler can reach it*/
159
mandos_context mc = { .simple_poll = NULL, .server = NULL,
160
.dh_bits = 1024, .priority = "SECURE256"
161
":!CTYPE-X.509:+CTYPE-OPENPGP",
162
.current_server = NULL };
172
/* global so signal handler can reach it*/
173
AvahiSimplePoll *simple_poll;
164
175
sig_atomic_t quit_now = 0;
165
176
int signal_received = 0;
167
178
/* Function to use when printing errors */
168
179
void perror_plus(const char *print_text){
169
181
fprintf(stderr, "Mandos plugin %s: ",
170
182
program_invocation_short_name);
171
184
perror(print_text);
187
__attribute__((format (gnu_printf, 2, 3), nonnull))
188
int fprintf_plus(FILE *stream, const char *format, ...){
190
va_start (ap, format);
192
TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
193
program_invocation_short_name));
194
return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
175
198
* Make additional room in "buffer" for at least BUFFER_SIZE more
176
199
* bytes. "buffer_capacity" is how much is currently allocated,
177
200
* "buffer_length" is how much is already used.
202
__attribute__((nonnull, warn_unused_result))
179
203
size_t incbuffer(char **buffer, size_t buffer_length,
180
size_t buffer_capacity){
204
size_t buffer_capacity){
181
205
if(buffer_length + BUFFER_SIZE > buffer_capacity){
182
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
206
char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
208
int old_errno = errno;
186
215
buffer_capacity += BUFFER_SIZE;
188
217
return buffer_capacity;
191
220
/* Add server to set of servers to retry periodically */
192
int add_server(const char *ip, uint16_t port,
193
AvahiIfIndex if_index,
221
__attribute__((nonnull, warn_unused_result))
222
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
223
int af, server **current_server){
196
225
server *new_server = malloc(sizeof(server));
197
226
if(new_server == NULL){
198
227
perror_plus("malloc");
201
230
*new_server = (server){ .ip = strdup(ip),
203
.if_index = if_index,
232
.if_index = if_index,
205
234
if(new_server->ip == NULL){
206
235
perror_plus("strdup");
238
ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
240
perror_plus("clock_gettime");
209
243
/* Special case of first server */
210
if (mc.current_server == NULL){
244
if(*current_server == NULL){
211
245
new_server->next = new_server;
212
246
new_server->prev = new_server;
213
mc.current_server = new_server;
214
/* Place the new server last in the list */
247
*current_server = new_server;
216
new_server->next = mc.current_server;
217
new_server->prev = mc.current_server->prev;
249
/* Place the new server last in the list */
250
new_server->next = *current_server;
251
new_server->prev = (*current_server)->prev;
218
252
new_server->prev->next = new_server;
219
mc.current_server->prev = new_server;
221
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
223
perror_plus("clock_gettime");
253
(*current_server)->prev = new_server;
230
259
* Initialize GPGME.
232
static bool init_gpgme(const char *seckey,
233
const char *pubkey, const char *tempdir){
261
__attribute__((nonnull, warn_unused_result))
262
static bool init_gpgme(const char * const seckey,
263
const char * const pubkey,
264
const char * const tempdir,
234
266
gpgme_error_t rc;
235
267
gpgme_engine_info_t engine_info;
239
270
* Helper function to insert pub and seckey to the engine keyring.
241
bool import_key(const char *filename){
272
bool import_key(const char * const filename){
244
275
gpgme_data_t pgp_data;
333
368
ssize_t plaintext_length = 0;
336
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
371
fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
339
374
/* Create new GPGME data buffer from memory cryptotext */
340
375
rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
342
377
if(rc != GPG_ERR_NO_ERROR){
343
fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
344
gpgme_strsource(rc), gpgme_strerror(rc));
378
fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
379
gpgme_strsource(rc), gpgme_strerror(rc));
348
383
/* Create new empty GPGME data buffer for the plaintext */
349
384
rc = gpgme_data_new(&dh_plain);
350
385
if(rc != GPG_ERR_NO_ERROR){
351
fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
352
gpgme_strsource(rc), gpgme_strerror(rc));
386
fprintf_plus(stderr, "Mandos plugin mandos-client: "
387
"bad gpgme_data_new: %s: %s\n",
388
gpgme_strsource(rc), gpgme_strerror(rc));
353
389
gpgme_data_release(dh_crypto);
357
393
/* Decrypt data from the cryptotext data buffer to the plaintext
359
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
395
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
360
396
if(rc != GPG_ERR_NO_ERROR){
361
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
362
gpgme_strsource(rc), gpgme_strerror(rc));
397
fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
398
gpgme_strsource(rc), gpgme_strerror(rc));
363
399
plaintext_length = -1;
365
401
gpgme_decrypt_result_t result;
366
result = gpgme_op_decrypt_result(mc.ctx);
402
result = gpgme_op_decrypt_result(mc->ctx);
367
403
if(result == NULL){
368
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
404
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
370
fprintf(stderr, "Unsupported algorithm: %s\n",
371
result->unsupported_algorithm);
372
fprintf(stderr, "Wrong key usage: %u\n",
373
result->wrong_key_usage);
406
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
407
result->unsupported_algorithm);
408
fprintf_plus(stderr, "Wrong key usage: %u\n",
409
result->wrong_key_usage);
374
410
if(result->file_name != NULL){
375
fprintf(stderr, "File name: %s\n", result->file_name);
411
fprintf_plus(stderr, "File name: %s\n", result->file_name);
377
413
gpgme_recipient_t recipient;
378
414
recipient = result->recipients;
379
415
while(recipient != NULL){
380
fprintf(stderr, "Public key algorithm: %s\n",
381
gpgme_pubkey_algo_name(recipient->pubkey_algo));
382
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
383
fprintf(stderr, "Secret key available: %s\n",
384
recipient->status == GPG_ERR_NO_SECKEY
416
fprintf_plus(stderr, "Public key algorithm: %s\n",
417
gpgme_pubkey_algo_name
418
(recipient->pubkey_algo));
419
fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
420
fprintf_plus(stderr, "Secret key available: %s\n",
421
recipient->status == GPG_ERR_NO_SECKEY
386
423
recipient = recipient->next;
485
525
/* OpenPGP credentials */
486
ret = gnutls_certificate_allocate_credentials(&mc.cred);
526
ret = gnutls_certificate_allocate_credentials(&mc->cred);
487
527
if(ret != GNUTLS_E_SUCCESS){
488
fprintf(stderr, "GnuTLS memory error: %s\n",
489
safer_gnutls_strerror(ret));
528
fprintf_plus(stderr, "GnuTLS memory error: %s\n",
529
safer_gnutls_strerror(ret));
490
530
gnutls_global_deinit();
495
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
496
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
535
fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
536
" secret key %s as GnuTLS credentials\n",
500
541
ret = gnutls_certificate_set_openpgp_key_file
501
(mc.cred, pubkeyfilename, seckeyfilename,
542
(mc->cred, pubkeyfilename, seckeyfilename,
502
543
GNUTLS_OPENPGP_FMT_BASE64);
503
544
if(ret != GNUTLS_E_SUCCESS){
505
"Error[%d] while reading the OpenPGP key pair ('%s',"
506
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
507
fprintf(stderr, "The GnuTLS error is: %s\n",
508
safer_gnutls_strerror(ret));
546
"Error[%d] while reading the OpenPGP key pair ('%s',"
547
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
548
fprintf_plus(stderr, "The GnuTLS error is: %s\n",
549
safer_gnutls_strerror(ret));
512
553
/* GnuTLS server initialization */
513
ret = gnutls_dh_params_init(&mc.dh_params);
554
ret = gnutls_dh_params_init(&mc->dh_params);
514
555
if(ret != GNUTLS_E_SUCCESS){
515
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
516
" %s\n", safer_gnutls_strerror(ret));
556
fprintf_plus(stderr, "Error in GnuTLS DH parameter"
557
" initialization: %s\n",
558
safer_gnutls_strerror(ret));
519
ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
561
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
520
562
if(ret != GNUTLS_E_SUCCESS){
521
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
522
safer_gnutls_strerror(ret));
563
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
564
safer_gnutls_strerror(ret));
526
gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
568
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
532
gnutls_certificate_free_credentials(mc.cred);
574
gnutls_certificate_free_credentials(mc->cred);
533
575
gnutls_global_deinit();
534
gnutls_dh_params_deinit(mc.dh_params);
576
gnutls_dh_params_deinit(mc->dh_params);
538
static int init_gnutls_session(gnutls_session_t *session){
580
__attribute__((nonnull, warn_unused_result))
581
static int init_gnutls_session(gnutls_session_t *session,
540
584
/* GnuTLS session creation */
710
779
if(if_indextoname((unsigned int)if_index, interface) == NULL){
711
780
perror_plus("if_indextoname");
713
fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
714
ip, interface, port);
782
fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
783
"\n", ip, interface, (uintmax_t)port);
717
fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
786
fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
787
ip, (uintmax_t)port);
720
789
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
721
790
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
723
791
if(af == AF_INET6){
724
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
792
ret = getnameinfo((struct sockaddr *)&to,
793
sizeof(struct sockaddr_in6),
794
addrstr, sizeof(addrstr), NULL, 0,
727
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
797
ret = getnameinfo((struct sockaddr *)&to,
798
sizeof(struct sockaddr_in),
799
addrstr, sizeof(addrstr), NULL, 0,
731
perror_plus("inet_ntop");
733
if(strcmp(addrstr, ip) != 0){
734
fprintf(stderr, "Canonical address form: %s\n", addrstr);
802
if(ret == EAI_SYSTEM){
803
perror_plus("getnameinfo");
804
} else if(ret != 0) {
805
fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
806
} else if(strcmp(addrstr, ip) != 0){
807
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
1080
1175
signal_received = sig;
1081
1176
int old_errno = errno;
1082
1177
/* set main loop to exit */
1083
if(mc.simple_poll != NULL){
1084
avahi_simple_poll_quit(mc.simple_poll);
1178
if(simple_poll != NULL){
1179
avahi_simple_poll_quit(simple_poll);
1086
1181
errno = old_errno;
1184
__attribute__((nonnull, warn_unused_result))
1089
1185
bool get_flags(const char *ifname, struct ifreq *ifr){
1092
1189
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1094
1192
perror_plus("socket");
1097
1196
strcpy(ifr->ifr_name, ifname);
1098
1197
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1101
1201
perror_plus("ioctl SIOCGIFFLAGS");
1209
__attribute__((nonnull, warn_unused_result))
1108
1210
bool good_flags(const char *ifname, const struct ifreq *ifr){
1110
1212
/* Reject the loopback device */
1111
1213
if(ifr->ifr_flags & IFF_LOOPBACK){
1113
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1215
fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
1118
1220
/* Accept point-to-point devices only if connect_to is specified */
1119
1221
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1121
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1223
fprintf_plus(stderr, "Accepting point-to-point interface"
1224
" \"%s\"\n", ifname);
1126
1228
/* Otherwise, reject non-broadcast-capable devices */
1127
1229
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1129
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1231
fprintf_plus(stderr, "Rejecting non-broadcast interface"
1232
" \"%s\"\n", ifname);
1134
1236
/* Reject non-ARP interfaces (including dummy interfaces) */
1135
1237
if(ifr->ifr_flags & IFF_NOARP){
1137
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n", ifname);
1239
fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
1142
1245
/* Accept this device */
1144
fprintf(stderr, "Interface \"%s\" is good\n", ifname);
1247
fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
1172
* This function determines if a directory entry in /sys/class/net
1173
* corresponds to an acceptable network device which is up.
1174
* (This function is passed to scandir(3) as a filter function.)
1176
int up_interface(const struct dirent *if_entry){
1178
char *flagname = NULL;
1179
if(if_entry->d_name[0] == '.'){
1182
int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1185
perror_plus("asprintf");
1188
int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1190
perror_plus("open");
1195
typedef short ifreq_flags; /* ifreq.ifr_flags in netdevice(7) */
1196
/* read line from flags_fd */
1197
ssize_t to_read = 2+(sizeof(ifreq_flags)*2)+1; /* "0x1003\n" */
1198
char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1199
flagstring[(size_t)to_read] = '\0';
1200
if(flagstring == NULL){
1201
perror_plus("malloc");
1206
ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1209
perror_plus("read");
1223
tmpmax = strtoimax(flagstring, &tmp, 0);
1224
if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1225
and not (isspace(*tmp)))
1226
or tmpmax != (ifreq_flags)tmpmax){
1228
fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1229
flagstring, if_entry->d_name);
1235
ifreq_flags flags = (ifreq_flags)tmpmax;
1236
/* Reject the loopback device */
1237
if(flags & IFF_LOOPBACK){
1239
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1245
/* Reject down interfaces */
1246
if(not (flags & IFF_UP)){
1250
/* Accept point-to-point devices only if connect_to is specified */
1251
if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1253
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1258
/* Otherwise, reject non-broadcast-capable devices */
1259
if(not (flags & IFF_BROADCAST)){
1261
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1266
/* Reject non-ARP interfaces (including dummy interfaces) */
1267
if(flags & IFF_NOARP){
1269
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
1274
/* Accept this device */
1276
fprintf(stderr, "Interface \"%s\" is acceptable\n",
1279
* This function determines if a network interface is up.
1281
__attribute__((nonnull, warn_unused_result))
1282
bool interface_is_up(const char *interface){
1284
if(not get_flags(interface, &ifr)){
1286
fprintf_plus(stderr, "Failed to get flags for interface "
1287
"\"%s\"\n", interface);
1292
return (bool)(ifr.ifr_flags & IFF_UP);
1296
* This function determines if a network interface is running
1298
__attribute__((nonnull, warn_unused_result))
1299
bool interface_is_running(const char *interface){
1301
if(not get_flags(interface, &ifr)){
1303
fprintf_plus(stderr, "Failed to get flags for interface "
1304
"\"%s\"\n", interface);
1309
return (bool)(ifr.ifr_flags & IFF_RUNNING);
1312
__attribute__((nonnull, pure, warn_unused_result))
1282
1313
int notdotentries(const struct dirent *direntry){
1283
1314
/* Skip "." and ".." */
1284
1315
if(direntry->d_name[0] == '.'
1303
/* Save pointer to last character */
1304
char *end = strchr(direntry->d_name, '\0')-1;
1311
if(((direntry->d_name)[0] == '#')
1313
/* Temporary #name# */
1317
/* XXX more rules here */
1319
ret = stat(direntry->d_name, &st);
1336
sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1337
"abcdefghijklmnopqrstuvwxyz"
1340
if((direntry->d_name)[sret] != '\0'){
1341
/* Contains non-allowed characters */
1343
fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
1349
char *fullname = NULL;
1350
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1352
perror_plus("asprintf");
1356
ret = stat(fullname, &st);
1322
perror_plus("Could not stat plugin");
1359
perror_plus("Could not stat hook");
1326
if(not (st.st_mode & S_ISREG)){
1364
if(not (S_ISREG(st.st_mode))){
1327
1365
/* Not a regular file */
1367
fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
1330
1372
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1331
1373
/* Not executable */
1375
fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
1381
fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1337
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1387
__attribute__((nonnull, warn_unused_result))
1388
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
1389
mandos_context *mc){
1339
1391
struct timespec now;
1340
1392
struct timespec waited_time;
1341
1393
intmax_t block_time;
1344
if(mc.current_server == NULL){
1347
"Wait until first server is found. No timeout!\n");
1396
if(mc->current_server == NULL){
1398
fprintf_plus(stderr, "Wait until first server is found."
1349
1401
ret = avahi_simple_poll_iterate(s, -1);
1352
fprintf(stderr, "Check current_server if we should run it,"
1404
fprintf_plus(stderr, "Check current_server if we should run"
1355
1407
/* the current time */
1356
1408
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1398
1451
ret = avahi_simple_poll_iterate(s, (int)block_time);
1401
if (ret > 0 or errno != EINTR) {
1454
if(ret > 0 or errno != EINTR){
1402
1455
return (ret != 1) ? ret : 0;
1461
/* Set effective uid to 0, return errno */
1462
__attribute__((warn_unused_result))
1463
error_t raise_privileges(void){
1464
error_t old_errno = errno;
1465
error_t ret_errno = 0;
1466
if(seteuid(0) == -1){
1468
perror_plus("seteuid");
1474
/* Set effective and real user ID to 0. Return errno. */
1475
__attribute__((warn_unused_result))
1476
error_t raise_privileges_permanently(void){
1477
error_t old_errno = errno;
1478
error_t ret_errno = raise_privileges();
1483
if(setuid(0) == -1){
1485
perror_plus("seteuid");
1491
/* Set effective user ID to unprivileged saved user ID */
1492
__attribute__((warn_unused_result))
1493
error_t lower_privileges(void){
1494
error_t old_errno = errno;
1495
error_t ret_errno = 0;
1496
if(seteuid(uid) == -1){
1498
perror_plus("seteuid");
1504
/* Lower privileges permanently */
1505
__attribute__((warn_unused_result))
1506
error_t lower_privileges_permanently(void){
1507
error_t old_errno = errno;
1508
error_t ret_errno = 0;
1509
if(setuid(uid) == -1){
1511
perror_plus("setuid");
1519
* Based on the example in the GNU LibC manual chapter 13.13 "File
1520
* Descriptor Flags".
1521
| [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
1523
__attribute__((warn_unused_result))
1524
static int set_cloexec_flag(int fd){
1525
int ret = (int)TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD, 0));
1526
/* If reading the flags failed, return error indication now. */
1530
/* Store modified flag word in the descriptor. */
1531
return (int)TEMP_FAILURE_RETRY(fcntl(fd, F_SETFD,
1534
#endif /* not O_CLOEXEC */
1536
__attribute__((nonnull))
1537
void run_network_hooks(const char *mode, const char *interface,
1539
struct dirent **direntries;
1540
if(hookdir_fd == -1){
1541
hookdir_fd = open(hookdir, O_RDONLY |
1544
#else /* not O_CLOEXEC */
1546
#endif /* not O_CLOEXEC */
1548
if(hookdir_fd == -1){
1549
if(errno == ENOENT){
1551
fprintf_plus(stderr, "Network hook directory \"%s\" not"
1552
" found\n", hookdir);
1555
perror_plus("open");
1560
if(set_cloexec_flag(hookdir_fd) < 0){
1561
perror_plus("set_cloexec_flag");
1562
if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1563
perror_plus("close");
1569
#endif /* not O_CLOEXEC */
1572
#if __GLIBC_PREREQ(2, 15)
1573
int numhooks = scandirat(hookdir_fd, ".", &direntries,
1574
runnable_hook, alphasort);
1575
#else /* not __GLIBC_PREREQ(2, 15) */
1576
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1578
#endif /* not __GLIBC_PREREQ(2, 15) */
1579
#else /* not __GLIBC__ */
1580
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1582
#endif /* not __GLIBC__ */
1584
perror_plus("scandir");
1587
struct dirent *direntry;
1589
int devnull = open("/dev/null", O_RDONLY);
1590
for(int i = 0; i < numhooks; i++){
1591
direntry = direntries[i];
1592
char *fullname = NULL;
1593
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1595
perror_plus("asprintf");
1599
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1602
pid_t hook_pid = fork();
1605
/* Raise privileges */
1606
if(raise_privileges_permanently() != 0){
1607
perror_plus("Failed to raise privileges");
1614
perror_plus("setgid");
1617
/* Reset supplementary groups */
1619
ret = setgroups(0, NULL);
1621
perror_plus("setgroups");
1624
ret = dup2(devnull, STDIN_FILENO);
1626
perror_plus("dup2(devnull, STDIN_FILENO)");
1629
ret = close(devnull);
1631
perror_plus("close");
1634
ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1636
perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1639
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1641
perror_plus("setenv");
1644
ret = setenv("DEVICE", interface, 1);
1646
perror_plus("setenv");
1649
ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1651
perror_plus("setenv");
1654
ret = setenv("MODE", mode, 1);
1656
perror_plus("setenv");
1660
ret = asprintf(&delaystring, "%f", (double)delay);
1662
perror_plus("asprintf");
1665
ret = setenv("DELAY", delaystring, 1);
1668
perror_plus("setenv");
1672
if(connect_to != NULL){
1673
ret = setenv("CONNECT", connect_to, 1);
1675
perror_plus("setenv");
1679
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1680
perror_plus("execl");
1681
_exit(EXIT_FAILURE);
1685
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1686
perror_plus("waitpid");
1690
if(WIFEXITED(status)){
1691
if(WEXITSTATUS(status) != 0){
1692
fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1693
" with status %d\n", direntry->d_name,
1694
WEXITSTATUS(status));
1698
} else if(WIFSIGNALED(status)){
1699
fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1700
" signal %d\n", direntry->d_name,
1705
fprintf_plus(stderr, "Warning: network hook \"%s\""
1706
" crashed\n", direntry->d_name);
1713
fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1717
if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1718
perror_plus("close");
1725
__attribute__((nonnull, warn_unused_result))
1726
error_t bring_up_interface(const char *const interface,
1728
error_t old_errno = errno;
1730
struct ifreq network;
1731
unsigned int if_index = if_nametoindex(interface);
1733
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1743
if(not interface_is_up(interface)){
1744
error_t ret_errno = 0, ioctl_errno = 0;
1745
if(not get_flags(interface, &network)){
1747
fprintf_plus(stderr, "Failed to get flags for interface "
1748
"\"%s\"\n", interface);
1752
network.ifr_flags |= IFF_UP; /* set flag */
1754
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1757
perror_plus("socket");
1763
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1765
perror_plus("close");
1772
fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1776
/* Raise privileges */
1777
ret_errno = raise_privileges();
1779
perror_plus("Failed to raise privileges");
1784
bool restore_loglevel = false;
1786
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1787
messages about the network interface to mess up the prompt */
1788
ret_linux = klogctl(8, NULL, 5);
1789
if(ret_linux == -1){
1790
perror_plus("klogctl");
1792
restore_loglevel = true;
1795
#endif /* __linux__ */
1796
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1797
ioctl_errno = errno;
1799
if(restore_loglevel){
1800
ret_linux = klogctl(7, NULL, 0);
1801
if(ret_linux == -1){
1802
perror_plus("klogctl");
1805
#endif /* __linux__ */
1807
/* If raise_privileges() succeeded above */
1809
/* Lower privileges */
1810
ret_errno = lower_privileges();
1813
perror_plus("Failed to lower privileges");
1817
/* Close the socket */
1818
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1820
perror_plus("close");
1823
if(ret_setflags == -1){
1824
errno = ioctl_errno;
1825
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1830
fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1834
/* Sleep checking until interface is running.
1835
Check every 0.25s, up to total time of delay */
1836
for(int i=0; i < delay * 4; i++){
1837
if(interface_is_running(interface)){
1840
struct timespec sleeptime = { .tv_nsec = 250000000 };
1841
ret = nanosleep(&sleeptime, NULL);
1842
if(ret == -1 and errno != EINTR){
1843
perror_plus("nanosleep");
1851
__attribute__((nonnull, warn_unused_result))
1852
error_t take_down_interface(const char *const interface){
1853
error_t old_errno = errno;
1854
struct ifreq network;
1855
unsigned int if_index = if_nametoindex(interface);
1857
fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1861
if(interface_is_up(interface)){
1862
error_t ret_errno = 0, ioctl_errno = 0;
1863
if(not get_flags(interface, &network) and debug){
1865
fprintf_plus(stderr, "Failed to get flags for interface "
1866
"\"%s\"\n", interface);
1870
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1872
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1875
perror_plus("socket");
1881
fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1885
/* Raise privileges */
1886
ret_errno = raise_privileges();
1888
perror_plus("Failed to raise privileges");
1891
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1892
ioctl_errno = errno;
1894
/* If raise_privileges() succeeded above */
1896
/* Lower privileges */
1897
ret_errno = lower_privileges();
1900
perror_plus("Failed to lower privileges");
1904
/* Close the socket */
1905
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1907
perror_plus("close");
1910
if(ret_setflags == -1){
1911
errno = ioctl_errno;
1912
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1917
fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1408
1925
int main(int argc, char *argv[]){
1926
mandos_context mc = { .server = NULL, .dh_bits = 1024,
1927
.priority = "SECURE256:!CTYPE-X.509:"
1928
"+CTYPE-OPENPGP", .current_server = NULL,
1929
.interfaces = NULL, .interfaces_size = 0 };
1409
1930
AvahiSServiceBrowser *sb = NULL;
1412
1933
intmax_t tmpmax;
1414
1935
int exitcode = EXIT_SUCCESS;
1415
const char *interface = "";
1416
struct ifreq network;
1418
bool take_down_interface = false;
1421
char tempdir[] = "/tmp/mandosXXXXXX";
1422
bool tempdir_created = false;
1936
char *interfaces_to_take_down = NULL;
1937
size_t interfaces_to_take_down_size = 0;
1938
char run_tempdir[] = "/run/tmp/mandosXXXXXX";
1939
char old_tempdir[] = "/tmp/mandosXXXXXX";
1940
char *tempdir = NULL;
1423
1941
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1424
1942
const char *seckey = PATHDIR "/" SECKEY;
1425
1943
const char *pubkey = PATHDIR "/" PUBKEY;
1944
char *interfaces_hooks = NULL;
1427
1946
bool gnutls_initialized = false;
1428
1947
bool gpgme_initialized = false;
1595
2125
/* Work around Debian bug #633582:
1596
2126
<http://bugs.debian.org/633582> */
1599
/* Re-raise priviliges */
1603
perror_plus("seteuid");
1606
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1607
int seckey_fd = open(seckey, O_RDONLY);
1608
if(seckey_fd == -1){
1609
perror_plus("open");
1611
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1613
perror_plus("fstat");
1615
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1616
ret = fchown(seckey_fd, uid, gid);
1618
perror_plus("fchown");
1622
TEMP_FAILURE_RETRY(close(seckey_fd));
1626
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1627
int pubkey_fd = open(pubkey, O_RDONLY);
1628
if(pubkey_fd == -1){
1629
perror_plus("open");
1631
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1633
perror_plus("fstat");
1635
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1636
ret = fchown(pubkey_fd, uid, gid);
1638
perror_plus("fchown");
1642
TEMP_FAILURE_RETRY(close(pubkey_fd));
1646
/* Lower privileges */
1650
perror_plus("seteuid");
1654
/* Find network hooks and run them */
1656
struct dirent **direntries;
1657
struct dirent *direntry;
1658
int numhooks = scandir(HOOKDIR, &direntries, runnable_hook,
1660
int devnull = open("/dev/null", O_RDONLY);
1661
for(int i = 0; i < numhooks; i++){
1662
direntry = direntries[0];
1663
char *fullname = NULL;
1664
ret = asprintf(&fullname, "%s/%s", tempdir,
1667
perror_plus("asprintf");
1670
pid_t hook_pid = fork();
1673
dup2(devnull, STDIN_FILENO);
1675
dup2(STDERR_FILENO, STDOUT_FILENO);
1676
setenv("DEVICE", interface, 1);
1677
setenv("VERBOSE", debug ? "1" : "0", 1);
1678
setenv("MODE", "start", 1);
1679
/* setenv( XXX more here */
1680
ret = execl(fullname, direntry->d_name, "start");
1681
perror_plus("execl");
2128
/* Re-raise privileges */
2129
ret_errno = raise_privileges();
2132
perror_plus("Failed to raise privileges");
2136
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
2137
int seckey_fd = open(seckey, O_RDONLY);
2138
if(seckey_fd == -1){
2139
perror_plus("open");
2141
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
2143
perror_plus("fstat");
2145
if(S_ISREG(st.st_mode)
2146
and st.st_uid == 0 and st.st_gid == 0){
2147
ret = fchown(seckey_fd, uid, gid);
2149
perror_plus("fchown");
2153
TEMP_FAILURE_RETRY(close(seckey_fd));
2157
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
2158
int pubkey_fd = open(pubkey, O_RDONLY);
2159
if(pubkey_fd == -1){
2160
perror_plus("open");
2162
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
2164
perror_plus("fstat");
2166
if(S_ISREG(st.st_mode)
2167
and st.st_uid == 0 and st.st_gid == 0){
2168
ret = fchown(pubkey_fd, uid, gid);
2170
perror_plus("fchown");
2174
TEMP_FAILURE_RETRY(close(pubkey_fd));
2178
/* Lower privileges */
2179
ret_errno = lower_privileges();
2182
perror_plus("Failed to lower privileges");
2187
/* Remove invalid interface names (except "none") */
2189
char *interface = NULL;
2190
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2192
if(strcmp(interface, "none") != 0
2193
and if_nametoindex(interface) == 0){
2194
if(interface[0] != '\0'){
2195
fprintf_plus(stderr, "Not using nonexisting interface"
2196
" \"%s\"\n", interface);
2198
argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
2204
/* Run network hooks */
2206
if(mc.interfaces != NULL){
2207
interfaces_hooks = malloc(mc.interfaces_size);
2208
if(interfaces_hooks == NULL){
2209
perror_plus("malloc");
2212
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2213
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2215
run_network_hooks("start", interfaces_hooks != NULL ?
2216
interfaces_hooks : "", delay);
1692
2220
avahi_set_log_function(empty_log);
1695
if(interface[0] == '\0'){
1696
struct dirent **direntries;
1697
ret = scandir(sys_class_net, &direntries, good_interface,
1700
/* Pick the first good interface */
1701
interface = strdup(direntries[0]->d_name);
1703
fprintf(stderr, "Using interface \"%s\"\n", interface);
1705
if(interface == NULL){
1706
perror_plus("malloc");
1708
exitcode = EXIT_FAILURE;
1714
fprintf(stderr, "Could not find a network interface\n");
1715
exitcode = EXIT_FAILURE;
1720
2223
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1721
2224
from the signal handler */
1722
2225
/* Initialize the pseudo-RNG for Avahi */
1723
2226
srand((unsigned int) time(NULL));
1724
mc.simple_poll = avahi_simple_poll_new();
1725
if(mc.simple_poll == NULL){
1726
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
2227
simple_poll = avahi_simple_poll_new();
2228
if(simple_poll == NULL){
2229
fprintf_plus(stderr,
2230
"Avahi: Failed to create simple poll object.\n");
1727
2231
exitcode = EX_UNAVAILABLE;
1794
/* If the interface is down, bring it up */
1795
if(strcmp(interface, "none") != 0){
1796
if_index = (AvahiIfIndex) if_nametoindex(interface);
1798
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1799
exitcode = EX_UNAVAILABLE;
1807
/* Re-raise priviliges */
1811
perror_plus("seteuid");
1815
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1816
messages about the network interface to mess up the prompt */
1817
ret = klogctl(8, NULL, 5);
1818
bool restore_loglevel = true;
1820
restore_loglevel = false;
1821
perror_plus("klogctl");
1823
#endif /* __linux__ */
1825
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1827
perror_plus("socket");
1828
exitcode = EX_OSERR;
1830
if(restore_loglevel){
1831
ret = klogctl(7, NULL, 0);
1833
perror_plus("klogctl");
1836
#endif /* __linux__ */
1837
/* Lower privileges */
1841
perror_plus("seteuid");
1845
strcpy(network.ifr_name, interface);
1846
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1848
perror_plus("ioctl SIOCGIFFLAGS");
1850
if(restore_loglevel){
1851
ret = klogctl(7, NULL, 0);
1853
perror_plus("klogctl");
1856
#endif /* __linux__ */
1857
exitcode = EX_OSERR;
1858
/* Lower privileges */
1862
perror_plus("seteuid");
1866
if((network.ifr_flags & IFF_UP) == 0){
1867
network.ifr_flags |= IFF_UP;
1868
take_down_interface = true;
1869
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1871
take_down_interface = false;
1872
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1873
exitcode = EX_OSERR;
1875
if(restore_loglevel){
1876
ret = klogctl(7, NULL, 0);
1878
perror_plus("klogctl");
2298
/* If no interfaces were specified, make a list */
2299
if(mc.interfaces == NULL){
2300
struct dirent **direntries;
2301
/* Look for any good interfaces */
2302
ret = scandir(sys_class_net, &direntries, good_interface,
2305
/* Add all found interfaces to interfaces list */
2306
for(int i = 0; i < ret; ++i){
2307
ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
2308
direntries[i]->d_name);
2311
perror_plus("argz_add");
2315
fprintf_plus(stderr, "Will use interface \"%s\"\n",
2316
direntries[i]->d_name);
2322
fprintf_plus(stderr, "Could not find a network interface\n");
2323
exitcode = EXIT_FAILURE;
2328
/* Bring up interfaces which are down, and remove any "none"s */
2330
char *interface = NULL;
2331
while((interface = argz_next(mc.interfaces, mc.interfaces_size,
2333
/* If interface name is "none", stop bringing up interfaces.
2334
Also remove all instances of "none" from the list */
2335
if(strcmp(interface, "none") == 0){
2336
argz_delete(&mc.interfaces, &mc.interfaces_size,
2339
while((interface = argz_next(mc.interfaces,
2340
mc.interfaces_size, interface))){
2341
if(strcmp(interface, "none") == 0){
2342
argz_delete(&mc.interfaces, &mc.interfaces_size,
1881
#endif /* __linux__ */
1882
/* Lower privileges */
1886
perror_plus("seteuid");
1891
/* Sleep checking until interface is running.
1892
Check every 0.25s, up to total time of delay */
1893
for(int i=0; i < delay * 4; i++){
1894
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1896
perror_plus("ioctl SIOCGIFFLAGS");
1897
} else if(network.ifr_flags & IFF_RUNNING){
1900
struct timespec sleeptime = { .tv_nsec = 250000000 };
1901
ret = nanosleep(&sleeptime, NULL);
1902
if(ret == -1 and errno != EINTR){
1903
perror_plus("nanosleep");
1906
if(not take_down_interface){
1907
/* We won't need the socket anymore */
1908
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1910
perror_plus("close");
1914
if(restore_loglevel){
1915
/* Restores kernel loglevel to default */
1916
ret = klogctl(7, NULL, 0);
1918
perror_plus("klogctl");
1921
#endif /* __linux__ */
1922
/* Lower privileges */
1924
if(take_down_interface){
1925
/* Lower privileges */
1928
perror_plus("seteuid");
1931
/* Lower privileges permanently */
1934
perror_plus("setuid");
2349
bool interface_was_up = interface_is_up(interface);
2350
errno = bring_up_interface(interface, delay);
2351
if(not interface_was_up){
2353
perror_plus("Failed to bring up interface");
2355
errno = argz_add(&interfaces_to_take_down,
2356
&interfaces_to_take_down_size,
2359
perror_plus("argz_add");
2364
if(debug and (interfaces_to_take_down == NULL)){
2365
fprintf_plus(stderr, "No interfaces were brought up\n");
2369
/* If we only got one interface, explicitly use only that one */
2370
if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
2372
fprintf_plus(stderr, "Using only interface \"%s\"\n",
2375
if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
1943
ret = init_gnutls_global(pubkey, seckey);
2382
ret = init_gnutls_global(pubkey, seckey, &mc);
1945
fprintf(stderr, "init_gnutls_global failed\n");
2384
fprintf_plus(stderr, "init_gnutls_global failed\n");
1946
2385
exitcode = EX_UNAVAILABLE;