43
43
stdout, ferror(), remove() */
44
44
#include <stdint.h> /* uint16_t, uint32_t */
45
45
#include <stddef.h> /* NULL, size_t, ssize_t */
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
46
#include <stdlib.h> /* free(), EXIT_SUCCESS, srand(),
48
48
#include <stdbool.h> /* bool, false, true */
49
49
#include <string.h> /* memset(), strcmp(), strlen(),
50
50
strerror(), asprintf(), strcpy() */
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 */
71
72
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
73
74
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
getuid(), getgid(), setuid(),
76
#include <arpa/inet.h> /* inet_pton(), htons */
75
getuid(), getgid(), seteuid(),
77
#include <arpa/inet.h> /* inet_pton(), htons, inet_ntop() */
77
78
#include <iso646.h> /* not, or, and */
78
79
#include <argp.h> /* struct argp_option, error_t, struct
79
80
argp_state, struct argp,
135
151
gnutls_dh_params_t dh_params;
136
152
const char *priority;
154
server *current_server;
138
155
} mandos_context;
140
157
/* global context so signal handler can reach it*/
141
158
mandos_context mc = { .simple_poll = NULL, .server = NULL,
142
159
.dh_bits = 1024, .priority = "SECURE256"
143
":!CTYPE-X.509:+CTYPE-OPENPGP" };
160
":!CTYPE-X.509:+CTYPE-OPENPGP",
161
.current_server = NULL };
163
sig_atomic_t quit_now = 0;
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);
146
174
* Make additional room in "buffer" for at least BUFFER_SIZE more
159
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");
163
229
* Initialize GPGME.
165
231
static bool init_gpgme(const char *seckey,
166
232
const char *pubkey, const char *tempdir){
168
233
gpgme_error_t rc;
169
234
gpgme_engine_info_t engine_info;
965
1079
signal_received = sig;
966
1080
int old_errno = errno;
1081
/* set main loop to exit */
967
1082
if(mc.simple_poll != NULL){
968
1083
avahi_simple_poll_quit(mc.simple_poll);
970
1085
errno = old_errno;
1088
bool get_flags(const char *ifname, struct ifreq *ifr){
1091
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1093
perror_plus("socket");
1096
strcpy(ifr->ifr_name, ifname);
1097
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1100
perror_plus("ioctl SIOCGIFFLAGS");
1107
bool good_flags(const char *ifname, const struct ifreq *ifr){
1109
/* Reject the loopback device */
1110
if(ifr->ifr_flags & IFF_LOOPBACK){
1112
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1117
/* Accept point-to-point devices only if connect_to is specified */
1118
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1120
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1125
/* Otherwise, reject non-broadcast-capable devices */
1126
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1128
fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
1133
/* Reject non-ARP interfaces (including dummy interfaces) */
1134
if(ifr->ifr_flags & IFF_NOARP){
1136
fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n", ifname);
1141
/* Accept this device */
1143
fprintf(stderr, "Interface \"%s\" is good\n", ifname);
1149
* This function determines if a directory entry in /sys/class/net
1150
* corresponds to an acceptable network device.
1151
* (This function is passed to scandir(3) as a filter function.)
1153
int good_interface(const struct dirent *if_entry){
1155
if(if_entry->d_name[0] == '.'){
1160
if(not get_flags(if_entry->d_name, &ifr)){
1164
if(not good_flags(if_entry->d_name, &ifr)){
1170
int notdotentries(const struct dirent *direntry){
1171
/* Skip "." and ".." */
1172
if(direntry->d_name[0] == '.'
1173
and (direntry->d_name[1] == '\0'
1174
or (direntry->d_name[1] == '.'
1175
and direntry->d_name[2] == '\0'))){
1181
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1183
struct timespec now;
1184
struct timespec waited_time;
1185
intmax_t block_time;
1188
if(mc.current_server == NULL){
1191
"Wait until first server is found. No timeout!\n");
1193
ret = avahi_simple_poll_iterate(s, -1);
1196
fprintf(stderr, "Check current_server if we should run it,"
1199
/* the current time */
1200
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1202
perror_plus("clock_gettime");
1205
/* Calculating in ms how long time between now and server
1206
who we visted longest time ago. Now - last seen. */
1207
waited_time.tv_sec = (now.tv_sec
1208
- mc.current_server->last_seen.tv_sec);
1209
waited_time.tv_nsec = (now.tv_nsec
1210
- mc.current_server->last_seen.tv_nsec);
1211
/* total time is 10s/10,000ms.
1212
Converting to s from ms by dividing by 1,000,
1213
and ns to ms by dividing by 1,000,000. */
1214
block_time = ((retry_interval
1215
- ((intmax_t)waited_time.tv_sec * 1000))
1216
- ((intmax_t)waited_time.tv_nsec / 1000000));
1219
fprintf(stderr, "Blocking for %" PRIdMAX " ms\n", block_time);
1222
if(block_time <= 0){
1223
ret = start_mandos_communication(mc.current_server->ip,
1224
mc.current_server->port,
1225
mc.current_server->if_index,
1226
mc.current_server->af);
1228
avahi_simple_poll_quit(mc.simple_poll);
1231
ret = clock_gettime(CLOCK_MONOTONIC,
1232
&mc.current_server->last_seen);
1234
perror_plus("clock_gettime");
1237
mc.current_server = mc.current_server->next;
1238
block_time = 0; /* Call avahi to find new Mandos
1239
servers, but don't block */
1242
ret = avahi_simple_poll_iterate(s, (int)block_time);
1245
if (ret > 0 or errno != EINTR) {
1246
return (ret != 1) ? ret : 0;
973
1252
int main(int argc, char *argv[]){
974
1253
AvahiSServiceBrowser *sb = NULL;
1031
1332
.arg = "SECONDS",
1032
1333
.doc = "Maximum delay to wait for interface startup",
1335
{ .name = "retry", .key = 132,
1337
.doc = "Retry interval used when denied by the mandos server",
1340
* These reproduce what we would get without ARGP_NO_HELP
1342
{ .name = "help", .key = '?',
1343
.doc = "Give this help list", .group = -1 },
1344
{ .name = "usage", .key = -3,
1345
.doc = "Give a short usage message", .group = -1 },
1346
{ .name = "version", .key = 'V',
1347
.doc = "Print program version", .group = -1 },
1034
1348
{ .name = NULL }
1037
1351
error_t parse_opt(int key, char *arg,
1038
1352
struct argp_state *state){
1040
1355
case 128: /* --debug */
1070
1384
delay = strtof(arg, &tmp);
1071
1385
if(errno != 0 or tmp == arg or *tmp != '\0'){
1072
fprintf(stderr, "Bad delay\n");
1386
argp_error(state, "Bad delay");
1388
case 132: /* --retry */
1390
retry_interval = strtod(arg, &tmp);
1391
if(errno != 0 or tmp == arg or *tmp != '\0'
1392
or (retry_interval * 1000) > INT_MAX
1393
or retry_interval < 0){
1394
argp_error(state, "Bad retry interval");
1398
* These reproduce what we would get without ARGP_NO_HELP
1400
case '?': /* --help */
1401
argp_state_help(state, state->out_stream,
1402
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1403
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1404
case -3: /* --usage */
1405
argp_state_help(state, state->out_stream,
1406
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1407
case 'V': /* --version */
1408
fprintf(state->out_stream, "%s\n", argp_program_version);
1409
exit(argp_err_exit_status);
1081
1412
return ARGP_ERR_UNKNOWN;
1086
1417
struct argp argp = { .options = options, .parser = parse_opt,
1087
1418
.args_doc = "",
1088
1419
.doc = "Mandos client -- Get and decrypt"
1089
1420
" passwords from a Mandos server" };
1090
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1091
if(ret == ARGP_ERR_UNKNOWN){
1092
fprintf(stderr, "Unknown error while parsing arguments\n");
1093
exitcode = EXIT_FAILURE;
1421
ret = argp_parse(&argp, argc, argv,
1422
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1429
perror_plus("argp_parse");
1430
exitcode = EX_OSERR;
1433
exitcode = EX_USAGE;
1439
/* Work around Debian bug #633582:
1440
<http://bugs.debian.org/633582> */
1443
/* Re-raise priviliges */
1447
perror_plus("seteuid");
1450
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1451
int seckey_fd = open(seckey, O_RDONLY);
1452
if(seckey_fd == -1){
1453
perror_plus("open");
1455
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1457
perror_plus("fstat");
1459
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1460
ret = fchown(seckey_fd, uid, gid);
1462
perror_plus("fchown");
1466
TEMP_FAILURE_RETRY(close(seckey_fd));
1470
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1471
int pubkey_fd = open(pubkey, O_RDONLY);
1472
if(pubkey_fd == -1){
1473
perror_plus("open");
1475
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1477
perror_plus("fstat");
1479
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1480
ret = fchown(pubkey_fd, uid, gid);
1482
perror_plus("fchown");
1486
TEMP_FAILURE_RETRY(close(pubkey_fd));
1490
/* Lower privileges */
1494
perror_plus("seteuid");
1099
1499
avahi_set_log_function(empty_log);
1502
if(interface[0] == '\0'){
1503
struct dirent **direntries;
1504
ret = scandir(sys_class_net, &direntries, good_interface,
1507
/* Pick the first good interface */
1508
interface = strdup(direntries[0]->d_name);
1510
fprintf(stderr, "Using interface \"%s\"\n", interface);
1512
if(interface == NULL){
1513
perror_plus("malloc");
1515
exitcode = EXIT_FAILURE;
1521
fprintf(stderr, "Could not find a network interface\n");
1522
exitcode = EXIT_FAILURE;
1102
1527
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1103
1528
from the signal handler */
1136
1561
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1138
perror("sigaction");
1139
return EXIT_FAILURE;
1563
perror_plus("sigaction");
1141
1566
if(old_sigterm_action.sa_handler != SIG_IGN){
1142
1567
ret = sigaction(SIGINT, &sigterm_action, NULL);
1144
perror("sigaction");
1145
exitcode = EXIT_FAILURE;
1569
perror_plus("sigaction");
1570
exitcode = EX_OSERR;
1149
1574
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1151
perror("sigaction");
1152
return EXIT_FAILURE;
1576
perror_plus("sigaction");
1154
1579
if(old_sigterm_action.sa_handler != SIG_IGN){
1155
1580
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1157
perror("sigaction");
1158
exitcode = EXIT_FAILURE;
1582
perror_plus("sigaction");
1583
exitcode = EX_OSERR;
1162
1587
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1164
perror("sigaction");
1165
return EXIT_FAILURE;
1589
perror_plus("sigaction");
1167
1592
if(old_sigterm_action.sa_handler != SIG_IGN){
1168
1593
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1170
perror("sigaction");
1171
exitcode = EXIT_FAILURE;
1595
perror_plus("sigaction");
1596
exitcode = EX_OSERR;
1176
1601
/* If the interface is down, bring it up */
1177
if(interface[0] != '\0'){
1602
if(strcmp(interface, "none") != 0){
1178
1603
if_index = (AvahiIfIndex) if_nametoindex(interface);
1179
1604
if(if_index == 0){
1180
1605
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1181
exitcode = EXIT_FAILURE;
1606
exitcode = EX_UNAVAILABLE;
1614
/* Re-raise priviliges */
1618
perror_plus("seteuid");
1189
1621
#ifdef __linux__
1190
1622
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1191
messages to mess up the prompt */
1623
messages about the network interface to mess up the prompt */
1192
1624
ret = klogctl(8, NULL, 5);
1193
1625
bool restore_loglevel = true;
1195
1627
restore_loglevel = false;
1628
perror_plus("klogctl");
1198
1630
#endif /* __linux__ */
1200
1632
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1203
exitcode = EXIT_FAILURE;
1634
perror_plus("socket");
1635
exitcode = EX_OSERR;
1204
1636
#ifdef __linux__
1205
1637
if(restore_loglevel){
1206
1638
ret = klogctl(7, NULL, 0);
1640
perror_plus("klogctl");
1211
1643
#endif /* __linux__ */
1644
/* Lower privileges */
1648
perror_plus("seteuid");
1214
1652
strcpy(network.ifr_name, interface);
1215
1653
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1217
perror("ioctl SIOCGIFFLAGS");
1655
perror_plus("ioctl SIOCGIFFLAGS");
1218
1656
#ifdef __linux__
1219
1657
if(restore_loglevel){
1220
1658
ret = klogctl(7, NULL, 0);
1660
perror_plus("klogctl");
1225
1663
#endif /* __linux__ */
1226
exitcode = EXIT_FAILURE;
1664
exitcode = EX_OSERR;
1665
/* Lower privileges */
1669
perror_plus("seteuid");
1229
1673
if((network.ifr_flags & IFF_UP) == 0){
1232
1676
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
1678
take_down_interface = false;
1235
perror("ioctl SIOCSIFFLAGS");
1236
exitcode = EXIT_FAILURE;
1679
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1680
exitcode = EX_OSERR;
1237
1681
#ifdef __linux__
1238
1682
if(restore_loglevel){
1239
1683
ret = klogctl(7, NULL, 0);
1685
perror_plus("klogctl");
1244
1688
#endif /* __linux__ */
1689
/* Lower privileges */
1693
perror_plus("seteuid");
1248
/* sleep checking until interface is running */
1698
/* Sleep checking until interface is running.
1699
Check every 0.25s, up to total time of delay */
1249
1700
for(int i=0; i < delay * 4; i++){
1250
1701
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1252
perror("ioctl SIOCGIFFLAGS");
1703
perror_plus("ioctl SIOCGIFFLAGS");
1253
1704
} else if(network.ifr_flags & IFF_RUNNING){
1256
1707
struct timespec sleeptime = { .tv_nsec = 250000000 };
1257
1708
ret = nanosleep(&sleeptime, NULL);
1258
1709
if(ret == -1 and errno != EINTR){
1259
perror("nanosleep");
1710
perror_plus("nanosleep");
1262
1713
if(not take_down_interface){
1263
1714
/* We won't need the socket anymore */
1264
1715
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1717
perror_plus("close");
1269
1720
#ifdef __linux__
1366
1813
port = (uint16_t)tmpmax;
1367
1814
*address = '\0';
1368
address = connect_to;
1369
1815
/* Colon in address indicates IPv6 */
1371
if(strchr(address, ':') != NULL){
1817
if(strchr(connect_to, ':') != NULL){
1819
/* Accept [] around IPv6 address - see RFC 5952 */
1820
if(connect_to[0] == '[' and address[-1] == ']')
1828
address = connect_to;
1381
ret = start_mandos_communication(address, port, if_index, af);
1383
exitcode = EXIT_FAILURE;
1834
while(not quit_now){
1835
ret = start_mandos_communication(address, port, if_index, af);
1836
if(quit_now or ret == 0){
1840
fprintf(stderr, "Retrying in %d seconds\n",
1841
(int)retry_interval);
1843
sleep((int)retry_interval);
1385
1847
exitcode = EXIT_SUCCESS;
1469
1937
if(gpgme_initialized){
1470
1938
gpgme_release(mc.ctx);
1941
/* Cleans up the circular linked list of Mandos servers the client
1943
if(mc.current_server != NULL){
1944
mc.current_server->prev->next = NULL;
1945
while(mc.current_server != NULL){
1946
server *next = mc.current_server->next;
1947
free(mc.current_server);
1948
mc.current_server = next;
1473
1952
/* Take down the network interface */
1474
1953
if(take_down_interface){
1475
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1954
/* Re-raise priviliges */
1477
perror("ioctl SIOCGIFFLAGS");
1478
} else if(network.ifr_flags & IFF_UP) {
1479
network.ifr_flags &= ~IFF_UP; /* clear flag */
1480
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1482
perror("ioctl SIOCSIFFLAGS");
1958
perror_plus("seteuid");
1485
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1961
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1963
perror_plus("ioctl SIOCGIFFLAGS");
1964
} else if(network.ifr_flags & IFF_UP) {
1965
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1966
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1968
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1971
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1973
perror_plus("close");
1975
/* Lower privileges permanently */
1979
perror_plus("setuid");
1491
/* Removes the temp directory used by GPGME */
1984
/* Removes the GPGME temp directory and all files inside */
1492
1985
if(tempdir_created){
1494
struct dirent *direntry;
1495
d = opendir(tempdir);
1497
if(errno != ENOENT){
1502
direntry = readdir(d);
1503
if(direntry == NULL){
1506
/* Skip "." and ".." */
1507
if(direntry->d_name[0] == '.'
1508
and (direntry->d_name[1] == '\0'
1509
or (direntry->d_name[1] == '.'
1510
and direntry->d_name[2] == '\0'))){
1986
struct dirent **direntries = NULL;
1987
struct dirent *direntry = NULL;
1988
int numentries = scandir(tempdir, &direntries, notdotentries,
1990
if (numentries > 0){
1991
for(int i = 0; i < numentries; i++){
1992
direntry = direntries[i];
1513
1993
char *fullname = NULL;
1514
1994
ret = asprintf(&fullname, "%s/%s", tempdir,
1515
1995
direntry->d_name);
1997
perror_plus("asprintf");
1520
2000
ret = remove(fullname);