9
9
* "browse_callback", and parts of "main".
11
11
* Everything else is
12
* Copyright © 2008-2013 Teddy Hogeborn
13
* Copyright © 2008-2013 Björn Påhlsson
12
* Copyright © 2008-2012 Teddy Hogeborn
13
* Copyright © 2008-2012 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
56
56
#include <sys/stat.h> /* open(), S_ISREG */
57
57
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
inet_pton(), connect(),
58
inet_pton(), connect() */
60
59
#include <fcntl.h> /* open() */
61
60
#include <dirent.h> /* opendir(), struct dirent, readdir()
74
73
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
75
74
getuid(), getgid(), seteuid(),
76
75
setgid(), pause(), _exit() */
77
#include <arpa/inet.h> /* inet_pton(), htons() */
76
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
78
77
#include <iso646.h> /* not, or, and */
79
78
#include <argp.h> /* struct argp_option, error_t, struct
80
79
argp_state, struct argp,
92
91
argz_delete(), argz_append(),
93
92
argz_stringify(), argz_add(),
95
#include <netdb.h> /* getnameinfo(), NI_NUMERICHOST,
96
EAI_SYSTEM, gai_strerror() */
99
96
#include <sys/klog.h> /* klogctl() */
191
188
TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
192
189
program_invocation_short_name));
193
return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
190
return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
201
198
size_t incbuffer(char **buffer, size_t buffer_length,
202
199
size_t buffer_capacity){
203
200
if(buffer_length + BUFFER_SIZE > buffer_capacity){
204
char *new_buf = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
206
int old_errno = errno;
201
*buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
213
205
buffer_capacity += BUFFER_SIZE;
215
207
return buffer_capacity;
232
224
perror_plus("strdup");
235
ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
237
perror_plus("clock_gettime");
240
227
/* Special case of first server */
241
228
if(*current_server == NULL){
242
229
new_server->next = new_server;
249
236
new_server->prev->next = new_server;
250
237
(*current_server)->prev = new_server;
239
ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
241
perror_plus("clock_gettime");
634
626
int af, mandos_context *mc){
635
627
int ret, tcp_sd = -1;
637
struct sockaddr_storage to;
630
struct sockaddr_in in;
631
struct sockaddr_in6 in6;
638
633
char *buffer = NULL;
639
634
char *decrypted_buffer = NULL;
640
635
size_t buffer_length = 0;
722
717
memset(&to, 0, sizeof(to));
723
718
if(af == AF_INET6){
724
((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
725
ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
719
to.in6.sin6_family = (sa_family_t)af;
720
ret = inet_pton(af, ip, &to.in6.sin6_addr);
726
721
} else { /* IPv4 */
727
((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
728
ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
722
to.in.sin_family = (sa_family_t)af;
723
ret = inet_pton(af, ip, &to.in.sin_addr);
742
737
if(af == AF_INET6){
743
((struct sockaddr_in6 *)&to)->sin6_port = htons(port);
744
if(IN6_IS_ADDR_LINKLOCAL
745
(&((struct sockaddr_in6 *)&to)->sin6_addr)){
738
to.in6.sin6_port = htons(port);
739
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
740
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
746
742
if(if_index == AVAHI_IF_UNSPEC){
747
743
fprintf_plus(stderr, "An IPv6 link-local address is"
748
744
" incomplete without a network interface\n");
752
748
/* Set the network interface number as scope */
753
((struct sockaddr_in6 *)&to)->sin6_scope_id = (uint32_t)if_index;
749
to.in6.sin6_scope_id = (uint32_t)if_index;
756
((struct sockaddr_in *)&to)->sin_port = htons(port);
752
to.in.sin_port = htons(port); /* Spurious warnings from
754
-Wunreachable-code */
777
775
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
778
776
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
779
778
if(af == AF_INET6){
780
ret = getnameinfo((struct sockaddr *)&to,
781
sizeof(struct sockaddr_in6),
782
addrstr, sizeof(addrstr), NULL, 0,
779
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
785
ret = getnameinfo((struct sockaddr *)&to,
786
sizeof(struct sockaddr_in),
787
addrstr, sizeof(addrstr), NULL, 0,
782
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
790
if(ret == EAI_SYSTEM){
791
perror_plus("getnameinfo");
792
} else if(ret != 0) {
793
fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
794
} else if(strcmp(addrstr, ip) != 0){
795
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
786
perror_plus("inet_ntop");
788
if(strcmp(addrstr, ip) != 0){
789
fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
804
799
if(af == AF_INET6){
805
ret = connect(tcp_sd, (struct sockaddr *)&to,
806
sizeof(struct sockaddr_in6));
800
ret = connect(tcp_sd, &to.in6, sizeof(to));
808
ret = connect(tcp_sd, (struct sockaddr *)&to, /* IPv4 */
809
sizeof(struct sockaddr_in));
802
ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
812
805
if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
1491
1484
bool run_network_hooks(const char *mode, const char *interface,
1492
1485
const float delay){
1493
1486
struct dirent **direntries;
1487
struct dirent *direntry;
1494
1489
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1496
1491
if(numhooks == -1){
1749
1744
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1751
int sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1746
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1753
1748
ret_errno = errno;
1754
1749
perror_plus("socket");
1764
1759
/* Raise priviliges */
1765
1760
raise_privileges();
1767
int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1762
ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1768
1763
ret_errno = errno;
1770
1765
/* Lower privileges */
1771
1766
lower_privileges();
1773
1768
/* Close the socket */
1774
int ret = (int)TEMP_FAILURE_RETRY(close(sd));
1769
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1776
1771
perror_plus("close");
1810
1805
const char *seckey = PATHDIR "/" SECKEY;
1811
1806
const char *pubkey = PATHDIR "/" PUBKEY;
1812
1807
char *interfaces_hooks = NULL;
1808
size_t interfaces_hooks_size = 0;
1814
1810
bool gnutls_initialized = false;
1815
1811
bool gpgme_initialized = false;
2072
2068
memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
2073
argz_stringify(interfaces_hooks, mc.interfaces_size, (int)',');
2069
interfaces_hooks_size = mc.interfaces_size;
2070
argz_stringify(interfaces_hooks, interfaces_hooks_size,
2075
2073
if(not run_network_hooks("start", interfaces_hooks != NULL ?
2076
2074
interfaces_hooks : "", delay)){