1017
1079
signal_received = sig;
1018
1080
int old_errno = errno;
1081
/* set main loop to exit */
1019
1082
if(mc.simple_poll != NULL){
1020
1083
avahi_simple_poll_quit(mc.simple_poll);
1022
1085
errno = old_errno;
1026
* This function determines if a directory entry in /sys/class/net
1027
* corresponds to an acceptable network device.
1028
* (This function is passed to scandir(3) as a filter function.)
1030
int good_interface(const struct dirent *if_entry){
1032
char *flagname = NULL;
1033
int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
1039
if(if_entry->d_name[0] == '.'){
1042
int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
1047
typedef short ifreq_flags; /* ifreq.ifr_flags in netdevice(7) */
1048
/* read line from flags_fd */
1049
ssize_t to_read = (sizeof(ifreq_flags)*2)+3; /* "0x1003\n" */
1050
char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
1051
flagstring[(size_t)to_read] = '\0';
1052
if(flagstring == NULL){
1058
ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
1075
tmpmax = strtoimax(flagstring, &tmp, 0);
1076
if(errno != 0 or tmp == flagstring or (*tmp != '\0'
1077
and not (isspace(*tmp)))
1078
or tmpmax != (ifreq_flags)tmpmax){
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);
1080
fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
1081
flagstring, if_entry->d_name);
1100
perror_plus("ioctl SIOCGIFFLAGS");
1087
ifreq_flags flags = (ifreq_flags)tmpmax;
1107
bool good_flags(const char *ifname, const struct ifreq *ifr){
1088
1109
/* Reject the loopback device */
1089
if(flags & IFF_LOOPBACK){
1110
if(ifr->ifr_flags & IFF_LOOPBACK){
1091
1112
fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
1096
1117
/* Accept point-to-point devices only if connect_to is specified */
1097
if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
1118
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1099
1120
fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
1104
1125
/* Otherwise, reject non-broadcast-capable devices */
1105
if(not (flags & IFF_BROADCAST)){
1126
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1107
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);
1112
1141
/* Accept this device */
1114
fprintf(stderr, "Interface \"%s\" is acceptable\n",
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;
1120
1252
int main(int argc, char *argv[]){
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");
1293
1499
avahi_set_log_function(empty_log);
1355
1561
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1357
perror("sigaction");
1563
perror_plus("sigaction");
1358
1564
return EX_OSERR;
1360
1566
if(old_sigterm_action.sa_handler != SIG_IGN){
1361
1567
ret = sigaction(SIGINT, &sigterm_action, NULL);
1363
perror("sigaction");
1569
perror_plus("sigaction");
1364
1570
exitcode = EX_OSERR;
1368
1574
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1370
perror("sigaction");
1576
perror_plus("sigaction");
1371
1577
return EX_OSERR;
1373
1579
if(old_sigterm_action.sa_handler != SIG_IGN){
1374
1580
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1376
perror("sigaction");
1582
perror_plus("sigaction");
1377
1583
exitcode = EX_OSERR;
1381
1587
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1383
perror("sigaction");
1589
perror_plus("sigaction");
1384
1590
return EX_OSERR;
1386
1592
if(old_sigterm_action.sa_handler != SIG_IGN){
1387
1593
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1389
perror("sigaction");
1595
perror_plus("sigaction");
1390
1596
exitcode = EX_OSERR;
1736
1956
ret = seteuid(0);
1958
perror_plus("seteuid");
1740
1960
if(geteuid() == 0){
1741
1961
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1743
perror("ioctl SIOCGIFFLAGS");
1963
perror_plus("ioctl SIOCGIFFLAGS");
1744
1964
} else if(network.ifr_flags & IFF_UP) {
1745
1965
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1746
1966
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1748
perror("ioctl SIOCSIFFLAGS -IFF_UP");
1968
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1751
1971
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1973
perror_plus("close");
1755
1975
/* Lower privileges permanently */
1757
1977
ret = setuid(uid);
1979
perror_plus("setuid");
1764
/* Removes the temp directory used by GPGME */
1984
/* Removes the GPGME temp directory and all files inside */
1765
1985
if(tempdir_created){
1767
struct dirent *direntry;
1768
d = opendir(tempdir);
1770
if(errno != ENOENT){
1775
direntry = readdir(d);
1776
if(direntry == NULL){
1779
/* Skip "." and ".." */
1780
if(direntry->d_name[0] == '.'
1781
and (direntry->d_name[1] == '\0'
1782
or (direntry->d_name[1] == '.'
1783
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];
1786
1993
char *fullname = NULL;
1787
1994
ret = asprintf(&fullname, "%s/%s", tempdir,
1788
1995
direntry->d_name);
1997
perror_plus("asprintf");
1793
2000
ret = remove(fullname);