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() */
92
93
#include <sys/klog.h> /* klogctl() */
170
171
/* Function to use when printing errors */
171
172
void perror_plus(const char *print_text){
172
174
fprintf(stderr, "Mandos plugin %s: ",
173
175
program_invocation_short_name);
174
177
perror(print_text);
180
__attribute__((format (gnu_printf, 2, 3)))
177
181
int fprintf_plus(FILE *stream, const char *format, ...){
179
183
va_start (ap, format);
203
207
/* Add server to set of servers to retry periodically */
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
208
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
207
211
server *new_server = malloc(sizeof(server));
208
212
if(new_server == NULL){
209
213
perror_plus("malloc");
212
216
*new_server = (server){ .ip = strdup(ip),
1030
1034
avahi_simple_poll_quit(mc.simple_poll);
1032
ret = add_server(ip, port, interface,
1033
avahi_proto_to_af(proto));
1036
if(not add_server(ip, port, interface,
1037
avahi_proto_to_af(proto))){
1038
fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1389
1400
int devnull = open("/dev/null", O_RDONLY);
1390
1401
for(int i = 0; i < numhooks; i++){
1391
direntry = direntries[0];
1402
direntry = direntries[i];
1392
1403
char *fullname = NULL;
1393
1404
ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1395
1406
perror_plus("asprintf");
1410
fprintf_plus(stderr, "Running network hook \"%s\"\n",
1398
1413
pid_t hook_pid = fork();
1399
1414
if(hook_pid == 0){
1416
/* Raise privileges */
1420
perror_plus("seteuid");
1422
/* Raise privileges even more */
1426
perror_plus("setuid");
1432
perror_plus("setgid");
1434
/* Reset supplementary groups */
1436
ret = setgroups(0, NULL);
1438
perror_plus("setgroups");
1401
1440
dup2(devnull, STDIN_FILENO);
1402
1441
close(devnull);
1403
1442
dup2(STDERR_FILENO, STDOUT_FILENO);
1404
1443
ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1406
1445
perror_plus("setenv");
1409
1448
ret = setenv("DEVICE", interface, 1);
1411
1450
perror_plus("setenv");
1414
1453
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1416
1455
perror_plus("setenv");
1419
1458
ret = setenv("MODE", mode, 1);
1421
1460
perror_plus("setenv");
1424
1463
char *delaystring;
1425
1464
ret = asprintf(&delaystring, "%f", delay);
1427
1466
perror_plus("asprintf");
1430
1469
ret = setenv("DELAY", delaystring, 1);
1432
1471
free(delaystring);
1433
1472
perror_plus("setenv");
1436
1475
free(delaystring);
1437
ret = execl(fullname, direntry->d_name, mode, NULL);
1438
perror_plus("execl");
1476
if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1477
perror_plus("execl");
1478
_exit(EXIT_FAILURE);
1441
1482
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1637
1679
argp_state_help(state, state->out_stream,
1638
1680
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1639
1681
case 'V': /* --version */
1640
fprintf_plus(state->out_stream,
1641
"Mandos plugin mandos-client: ");
1642
1682
fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1643
1683
exit(argp_err_exit_status);
1673
1713
/* Work around Debian bug #633582:
1674
1714
<http://bugs.debian.org/633582> */
1677
1716
/* Re-raise priviliges */
1679
1718
ret = seteuid(0);
1681
1720
perror_plus("seteuid");
1684
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1685
int seckey_fd = open(seckey, O_RDONLY);
1686
if(seckey_fd == -1){
1687
perror_plus("open");
1689
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1691
perror_plus("fstat");
1693
if(S_ISREG(st.st_mode)
1694
and st.st_uid == 0 and st.st_gid == 0){
1695
ret = fchown(seckey_fd, uid, gid);
1697
perror_plus("fchown");
1701
TEMP_FAILURE_RETRY(close(seckey_fd));
1705
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1706
int pubkey_fd = open(pubkey, O_RDONLY);
1707
if(pubkey_fd == -1){
1708
perror_plus("open");
1710
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1712
perror_plus("fstat");
1714
if(S_ISREG(st.st_mode)
1715
and st.st_uid == 0 and st.st_gid == 0){
1716
ret = fchown(pubkey_fd, uid, gid);
1718
perror_plus("fchown");
1722
TEMP_FAILURE_RETRY(close(pubkey_fd));
1726
/* Lower privileges */
1730
perror_plus("seteuid");
1724
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1725
int seckey_fd = open(seckey, O_RDONLY);
1726
if(seckey_fd == -1){
1727
perror_plus("open");
1729
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1731
perror_plus("fstat");
1733
if(S_ISREG(st.st_mode)
1734
and st.st_uid == 0 and st.st_gid == 0){
1735
ret = fchown(seckey_fd, uid, gid);
1737
perror_plus("fchown");
1741
TEMP_FAILURE_RETRY(close(seckey_fd));
1745
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1746
int pubkey_fd = open(pubkey, O_RDONLY);
1747
if(pubkey_fd == -1){
1748
perror_plus("open");
1750
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1752
perror_plus("fstat");
1754
if(S_ISREG(st.st_mode)
1755
and st.st_uid == 0 and st.st_gid == 0){
1756
ret = fchown(pubkey_fd, uid, gid);
1758
perror_plus("fchown");
1762
TEMP_FAILURE_RETRY(close(pubkey_fd));
1766
/* Lower privileges */
1770
perror_plus("seteuid");
1734
1775
/* Run network hooks */
1736
/* Re-raise priviliges */
1740
perror_plus("seteuid");
1742
if(not run_network_hooks("start", interface, delay)){
1745
/* Lower privileges */
1749
perror_plus("seteuid");
1776
if(not run_network_hooks("start", interface, delay)){