9
9
* "browse_callback", and parts of "main".
11
11
* Everything else is
12
* Copyright © 2008-2012 Teddy Hogeborn
13
* Copyright © 2008-2012 Björn Påhlsson
12
* Copyright © 2008-2011 Teddy Hogeborn
13
* Copyright © 2008-2011 Björn Påhlsson
15
15
* This program is free software: you can redistribute it and/or
16
16
* modify it under the terms of the GNU General Public License as
42
42
#include <stdio.h> /* fprintf(), stderr, fwrite(),
43
43
stdout, ferror(), remove() */
44
#include <stdint.h> /* uint16_t, uint32_t, intptr_t */
44
#include <stdint.h> /* uint16_t, uint32_t */
45
45
#include <stddef.h> /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, srand(),
47
47
strtof(), abort() */
74
74
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
75
75
getuid(), getgid(), seteuid(),
76
setgid(), pause(), _exit() */
77
77
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
78
78
#include <iso646.h> /* not, or, and */
79
79
#include <argp.h> /* struct argp_option, error_t, struct
87
87
EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
88
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
89
89
WEXITSTATUS(), WTERMSIG() */
90
#include <grp.h> /* setgroups() */
93
92
#include <sys/klog.h> /* klogctl() */
171
170
/* Function to use when printing errors */
172
171
void perror_plus(const char *print_text){
174
172
fprintf(stderr, "Mandos plugin %s: ",
175
173
program_invocation_short_name);
177
174
perror(print_text);
180
__attribute__((format (gnu_printf, 2, 3)))
181
177
int fprintf_plus(FILE *stream, const char *format, ...){
183
179
va_start (ap, format);
207
203
/* Add server to set of servers to retry periodically */
208
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
211
207
server *new_server = malloc(sizeof(server));
212
208
if(new_server == NULL){
213
209
perror_plus("malloc");
216
212
*new_server = (server){ .ip = strdup(ip),
824
/* This casting via intptr_t is to eliminate warning about casting
825
an int to a pointer type. This is exactly how the GnuTLS Guile
826
function "set-session-transport-fd!" does it. */
827
gnutls_transport_set_ptr(session,
828
(gnutls_transport_ptr_t)(intptr_t)tcp_sd);
820
/* Spurious warning from -Wint-to-pointer-cast */
821
gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
1037
1030
avahi_simple_poll_quit(mc.simple_poll);
1039
if(not add_server(ip, port, interface,
1040
avahi_proto_to_af(proto))){
1041
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1032
ret = add_server(ip, port, interface,
1033
avahi_proto_to_af(proto));
1416
1402
pid_t hook_pid = fork();
1417
1403
if(hook_pid == 0){
1419
/* Raise privileges */
1423
perror_plus("seteuid");
1425
/* Raise privileges even more */
1429
perror_plus("setuid");
1435
perror_plus("setgid");
1437
/* Reset supplementary groups */
1439
ret = setgroups(0, NULL);
1441
perror_plus("setgroups");
1443
1405
dup2(devnull, STDIN_FILENO);
1444
1406
close(devnull);
1445
1407
dup2(STDERR_FILENO, STDOUT_FILENO);
1446
1408
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1448
1410
perror_plus("setenv");
1451
1413
ret = setenv("DEVICE", interface, 1);
1453
1415
perror_plus("setenv");
1456
ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1418
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1458
1420
perror_plus("setenv");
1461
1423
ret = setenv("MODE", mode, 1);
1463
1425
perror_plus("setenv");
1466
1428
char *delaystring;
1467
1429
ret = asprintf(&delaystring, "%f", delay);
1469
1431
perror_plus("asprintf");
1472
1434
ret = setenv("DELAY", delaystring, 1);
1474
1436
free(delaystring);
1475
1437
perror_plus("setenv");
1478
1440
free(delaystring);
1479
if(connect_to != NULL){
1480
ret = setenv("CONNECT", connect_to, 1);
1482
perror_plus("setenv");
1486
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1487
perror_plus("execl");
1488
_exit(EXIT_FAILURE);
1441
ret = execl(fullname, direntry->d_name, mode, NULL);
1442
perror_plus("execl");
1492
1445
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1612
1564
{ .name = "retry", .key = 132,
1613
1565
.arg = "SECONDS",
1614
.doc = "Retry interval used when denied by the Mandos server",
1566
.doc = "Retry interval used when denied by the mandos server",
1616
1568
{ .name = "network-hook-dir", .key = 133,
1689
1641
argp_state_help(state, state->out_stream,
1690
1642
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1691
1643
case 'V': /* --version */
1644
fprintf_plus(state->out_stream,
1645
"Mandos plugin mandos-client: ");
1692
1646
fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1693
1647
exit(argp_err_exit_status);
1723
1677
/* Work around Debian bug #633582:
1724
1678
<http://bugs.debian.org/633582> */
1726
1681
/* Re-raise priviliges */
1728
1683
ret = seteuid(0);
1730
1685
perror_plus("seteuid");
1734
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1735
int seckey_fd = open(seckey, O_RDONLY);
1736
if(seckey_fd == -1){
1737
perror_plus("open");
1739
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1741
perror_plus("fstat");
1743
if(S_ISREG(st.st_mode)
1744
and st.st_uid == 0 and st.st_gid == 0){
1745
ret = fchown(seckey_fd, uid, gid);
1747
perror_plus("fchown");
1751
TEMP_FAILURE_RETRY(close(seckey_fd));
1755
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1756
int pubkey_fd = open(pubkey, O_RDONLY);
1757
if(pubkey_fd == -1){
1758
perror_plus("open");
1760
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1762
perror_plus("fstat");
1764
if(S_ISREG(st.st_mode)
1765
and st.st_uid == 0 and st.st_gid == 0){
1766
ret = fchown(pubkey_fd, uid, gid);
1768
perror_plus("fchown");
1772
TEMP_FAILURE_RETRY(close(pubkey_fd));
1688
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1689
int seckey_fd = open(seckey, O_RDONLY);
1690
if(seckey_fd == -1){
1691
perror_plus("open");
1693
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1695
perror_plus("fstat");
1697
if(S_ISREG(st.st_mode)
1698
and st.st_uid == 0 and st.st_gid == 0){
1699
ret = fchown(seckey_fd, uid, gid);
1701
perror_plus("fchown");
1705
TEMP_FAILURE_RETRY(close(seckey_fd));
1709
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1710
int pubkey_fd = open(pubkey, O_RDONLY);
1711
if(pubkey_fd == -1){
1712
perror_plus("open");
1714
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1716
perror_plus("fstat");
1718
if(S_ISREG(st.st_mode)
1719
and st.st_uid == 0 and st.st_gid == 0){
1720
ret = fchown(pubkey_fd, uid, gid);
1722
perror_plus("fchown");
1726
TEMP_FAILURE_RETRY(close(pubkey_fd));
1730
/* Lower privileges */
1734
perror_plus("seteuid");
1738
/* Run network hooks */
1741
/* Re-raise priviliges */
1745
perror_plus("seteuid");
1748
if(not run_network_hooks("start", interface, delay)){
1776
1752
/* Lower privileges */
1778
1754
ret = seteuid(uid);
2244
/* Run network hooks */
2245
run_network_hooks("stop", interface, delay);
2247
2215
/* Re-raise priviliges */
2252
perror_plus("seteuid");
2221
perror_plus("seteuid");
2224
/* Run network hooks */
2225
if(not run_network_hooks("stop", interface, delay)){
2255
2229
/* Take down the network interface */