62
62
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
64
64
#include <assert.h> /* assert() */
65
#include <errno.h> /* perror(), errno */
66
#include <time.h> /* nanosleep(), time() */
65
#include <errno.h> /* perror(), errno,
66
program_invocation_short_name */
67
#include <time.h> /* nanosleep(), time(), sleep() */
67
68
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
69
SIOCSIFFLAGS, if_indextoname(),
69
70
if_nametoindex(), IF_NAMESIZE */
137
151
gnutls_dh_params_t dh_params;
138
152
const char *priority;
154
server *current_server;
140
155
} mandos_context;
142
157
/* global context so signal handler can reach it*/
143
158
mandos_context mc = { .simple_poll = NULL, .server = NULL,
144
159
.dh_bits = 1024, .priority = "SECURE256"
145
":!CTYPE-X.509:+CTYPE-OPENPGP" };
160
":!CTYPE-X.509:+CTYPE-OPENPGP",
161
.current_server = NULL };
147
163
sig_atomic_t quit_now = 0;
148
164
int signal_received = 0;
166
/* Function to use when printing errors */
167
void perror_plus(const char *print_text){
168
fprintf(stderr, "Mandos plugin %s: ",
169
program_invocation_short_name);
151
174
* Make additional room in "buffer" for at least BUFFER_SIZE more
152
175
* bytes. "buffer_capacity" is how much is currently allocated,
164
187
return buffer_capacity;
190
/* Add server to set of servers to retry periodically */
191
int add_server(const char *ip, uint16_t port,
192
AvahiIfIndex if_index,
195
server *new_server = malloc(sizeof(server));
196
if(new_server == NULL){
197
perror_plus("malloc");
200
*new_server = (server){ .ip = strdup(ip),
202
.if_index = if_index,
204
if(new_server->ip == NULL){
205
perror_plus("strdup");
208
/* Special case of first server */
209
if (mc.current_server == NULL){
210
new_server->next = new_server;
211
new_server->prev = new_server;
212
mc.current_server = new_server;
213
/* Place the new server last in the list */
215
new_server->next = mc.current_server;
216
new_server->prev = mc.current_server->prev;
217
new_server->prev->next = new_server;
218
mc.current_server->prev = new_server;
220
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
222
perror_plus("clock_gettime");
168
229
* Initialize GPGME.
1015
1079
signal_received = sig;
1016
1080
int old_errno = errno;
1081
/* set main loop to exit */
1017
1082
if(mc.simple_poll != NULL){
1018
1083
avahi_simple_poll_quit(mc.simple_poll);
1020
1085
errno = old_errno;
1089
* This function determines if a directory entry in /sys/class/net
1090
* corresponds to an acceptable network device.
1091
* (This function is passed to scandir(3) as a filter function.)
1093
int good_interface(const struct dirent *if_entry){
1096
if(if_entry->d_name[0] == '.'){
1099
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1101
perror_plus("socket");
1105
strcpy(ifr.ifr_name, if_entry->d_name);
1106
ret = ioctl(s, SIOCGIFFLAGS, &ifr);
1109
perror_plus("ioctl SIOCGIFFLAGS");
1113
/* Reject the loopback device */
1114
if(ifr.ifr_flags & IFF_LOOPBACK){
1116
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1121
/* Accept point-to-point devices only if connect_to is specified */
1122
if(connect_to != NULL and (ifr.ifr_flags & IFF_POINTOPOINT)){
1124
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1129
/* Otherwise, reject non-broadcast-capable devices */
1130
if(not (ifr.ifr_flags & IFF_BROADCAST)){
1132
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1137
/* Reject non-ARP interfaces (including dummy interfaces) */
1138
if(ifr.ifr_flags & IFF_NOARP){
1140
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
1145
/* Accept this device */
1147
fprintf(stderr, "Interface \"%s\" is acceptable\n",
1153
int notdotentries(const struct dirent *direntry){
1154
/* Skip "." and ".." */
1155
if(direntry->d_name[0] == '.'
1156
and (direntry->d_name[1] == '\0'
1157
or (direntry->d_name[1] == '.'
1158
and direntry->d_name[2] == '\0'))){
1164
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1166
struct timespec now;
1167
struct timespec waited_time;
1168
intmax_t block_time;
1171
if(mc.current_server == NULL){
1174
"Wait until first server is found. No timeout!\n");
1176
ret = avahi_simple_poll_iterate(s, -1);
1179
fprintf(stderr, "Check current_server if we should run it,"
1182
/* the current time */
1183
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1185
perror_plus("clock_gettime");
1188
/* Calculating in ms how long time between now and server
1189
who we visted longest time ago. Now - last seen. */
1190
waited_time.tv_sec = (now.tv_sec
1191
- mc.current_server->last_seen.tv_sec);
1192
waited_time.tv_nsec = (now.tv_nsec
1193
- mc.current_server->last_seen.tv_nsec);
1194
/* total time is 10s/10,000ms.
1195
Converting to s from ms by dividing by 1,000,
1196
and ns to ms by dividing by 1,000,000. */
1197
block_time = ((retry_interval
1198
- ((intmax_t)waited_time.tv_sec * 1000))
1199
- ((intmax_t)waited_time.tv_nsec / 1000000));
1202
fprintf(stderr, "Blocking for %" PRIdMAX " ms\n", block_time);
1205
if(block_time <= 0){
1206
ret = start_mandos_communication(mc.current_server->ip,
1207
mc.current_server->port,
1208
mc.current_server->if_index,
1209
mc.current_server->af);
1211
avahi_simple_poll_quit(mc.simple_poll);
1214
ret = clock_gettime(CLOCK_MONOTONIC,
1215
&mc.current_server->last_seen);
1217
perror_plus("clock_gettime");
1220
mc.current_server = mc.current_server->next;
1221
block_time = 0; /* Call avahi to find new Mandos
1222
servers, but don't block */
1225
ret = avahi_simple_poll_iterate(s, (int)block_time);
1228
if (ret > 0 or errno != EINTR) {
1229
return (ret != 1) ? ret : 0;
1023
1235
int main(int argc, char *argv[]){
1024
1236
AvahiSServiceBrowser *sb = NULL;
1422
/* Work around Debian bug #633582:
1423
<http://bugs.debian.org/633582> */
1426
/* Re-raise priviliges */
1430
perror_plus("seteuid");
1433
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1434
int seckey_fd = open(seckey, O_RDONLY);
1435
if(seckey_fd == -1){
1436
perror_plus("open");
1438
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1440
perror_plus("fstat");
1442
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1443
ret = fchown(seckey_fd, uid, gid);
1445
perror_plus("fchown");
1449
TEMP_FAILURE_RETRY(close(seckey_fd));
1453
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1454
int pubkey_fd = open(pubkey, O_RDONLY);
1455
if(pubkey_fd == -1){
1456
perror_plus("open");
1458
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1460
perror_plus("fstat");
1462
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1463
ret = fchown(pubkey_fd, uid, gid);
1465
perror_plus("fchown");
1469
TEMP_FAILURE_RETRY(close(pubkey_fd));
1473
/* Lower privileges */
1477
perror_plus("seteuid");
1197
1482
avahi_set_log_function(empty_log);
1485
if(interface[0] == '\0'){
1486
struct dirent **direntries;
1487
ret = scandir(sys_class_net, &direntries, good_interface,
1490
/* Pick the first good interface */
1491
interface = strdup(direntries[0]->d_name);
1493
fprintf(stderr, "Using interface \"%s\"\n", interface);
1495
if(interface == NULL){
1496
perror_plus("malloc");
1498
exitcode = EXIT_FAILURE;
1504
fprintf(stderr, "Could not find a network interface\n");
1505
exitcode = EXIT_FAILURE;
1200
1510
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1201
1511
from the signal handler */
1234
1544
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1236
perror("sigaction");
1546
perror_plus("sigaction");
1237
1547
return EX_OSERR;
1239
1549
if(old_sigterm_action.sa_handler != SIG_IGN){
1240
1550
ret = sigaction(SIGINT, &sigterm_action, NULL);
1242
perror("sigaction");
1552
perror_plus("sigaction");
1243
1553
exitcode = EX_OSERR;
1247
1557
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1249
perror("sigaction");
1559
perror_plus("sigaction");
1250
1560
return EX_OSERR;
1252
1562
if(old_sigterm_action.sa_handler != SIG_IGN){
1253
1563
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1255
perror("sigaction");
1565
perror_plus("sigaction");
1256
1566
exitcode = EX_OSERR;
1260
1570
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1262
perror("sigaction");
1572
perror_plus("sigaction");
1263
1573
return EX_OSERR;
1265
1575
if(old_sigterm_action.sa_handler != SIG_IGN){
1266
1576
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1268
perror("sigaction");
1578
perror_plus("sigaction");
1269
1579
exitcode = EX_OSERR;
1274
1584
/* If the interface is down, bring it up */
1275
if(interface[0] != '\0'){
1585
if(strcmp(interface, "none") != 0){
1276
1586
if_index = (AvahiIfIndex) if_nametoindex(interface);
1277
1587
if(if_index == 0){
1278
1588
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1364
1674
ret = seteuid(uid);
1676
perror_plus("seteuid");
1371
/* sleep checking until interface is running */
1681
/* Sleep checking until interface is running.
1682
Check every 0.25s, up to total time of delay */
1372
1683
for(int i=0; i < delay * 4; i++){
1373
1684
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1375
perror("ioctl SIOCGIFFLAGS");
1686
perror_plus("ioctl SIOCGIFFLAGS");
1376
1687
} else if(network.ifr_flags & IFF_RUNNING){
1379
1690
struct timespec sleeptime = { .tv_nsec = 250000000 };
1380
1691
ret = nanosleep(&sleeptime, NULL);
1381
1692
if(ret == -1 and errno != EINTR){
1382
perror("nanosleep");
1693
perror_plus("nanosleep");
1385
1696
if(not take_down_interface){
1386
1697
/* We won't need the socket anymore */
1387
1698
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1700
perror_plus("close");
1392
1703
#ifdef __linux__
1486
1796
port = (uint16_t)tmpmax;
1487
1797
*address = '\0';
1488
address = connect_to;
1489
1798
/* Colon in address indicates IPv6 */
1491
if(strchr(address, ':') != NULL){
1800
if(strchr(connect_to, ':') != NULL){
1802
/* Accept [] around IPv6 address - see RFC 5952 */
1803
if(connect_to[0] == '[' and address[-1] == ']')
1811
address = connect_to;
1501
ret = start_mandos_communication(address, port, if_index, af);
1507
exitcode = EX_NOHOST;
1510
exitcode = EX_USAGE;
1513
exitcode = EX_IOERR;
1516
exitcode = EX_PROTOCOL;
1519
exitcode = EX_OSERR;
1817
while(not quit_now){
1818
ret = start_mandos_communication(address, port, if_index, af);
1819
if(quit_now or ret == 0){
1823
fprintf(stderr, "Retrying in %d seconds\n",
1824
(int)retry_interval);
1826
sleep((int)retry_interval);
1523
1830
exitcode = EXIT_SUCCESS;
1615
1939
ret = seteuid(0);
1941
perror_plus("seteuid");
1619
1943
if(geteuid() == 0){
1620
1944
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1622
perror("ioctl SIOCGIFFLAGS");
1946
perror_plus("ioctl SIOCGIFFLAGS");
1623
1947
} else if(network.ifr_flags & IFF_UP) {
1624
1948
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1625
1949
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1627
perror("ioctl SIOCSIFFLAGS");
1951
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1630
1954
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1956
perror_plus("close");
1634
1958
/* Lower privileges permanently */
1636
1960
ret = setuid(uid);
1962
perror_plus("setuid");
1643
/* Removes the temp directory used by GPGME */
1967
/* Removes the GPGME temp directory and all files inside */
1644
1968
if(tempdir_created){
1646
struct dirent *direntry;
1647
d = opendir(tempdir);
1649
if(errno != ENOENT){
1654
direntry = readdir(d);
1655
if(direntry == NULL){
1658
/* Skip "." and ".." */
1659
if(direntry->d_name[0] == '.'
1660
and (direntry->d_name[1] == '\0'
1661
or (direntry->d_name[1] == '.'
1662
and direntry->d_name[2] == '\0'))){
1969
struct dirent **direntries = NULL;
1970
struct dirent *direntry = NULL;
1971
int numentries = scandir(tempdir, &direntries, notdotentries,
1973
if (numentries > 0){
1974
for(int i = 0; i < numentries; i++){
1975
direntry = direntries[i];
1665
1976
char *fullname = NULL;
1666
1977
ret = asprintf(&fullname, "%s/%s", tempdir,
1667
1978
direntry->d_name);
1980
perror_plus("asprintf");
1672
1983
ret = remove(fullname);