/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

* plugins.d/mandos-client.c (runnable_hook): Add debug output.
 (run_network_hooks): Bug fix: Ignore quit_now.  Also add debug output.
 (main): Bug fix: Ignore return value from run_network_hooks when
         passing "stop".

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2012 Teddy Hogeborn
13
 
 * Copyright © 2008-2012 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 Björn Påhlsson
14
14
 * 
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
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
47
47
                                   strtof(), abort() */
73
73
                                */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause(), _exit() */
 
76
                                   setgid(), pause() */
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() */
91
90
 
92
91
#ifdef __linux__
93
92
#include <sys/klog.h>           /* klogctl() */
135
134
static const char sys_class_net[] = "/sys/class/net";
136
135
char *connect_to = NULL;
137
136
const char *hookdir = HOOKDIR;
138
 
uid_t uid = 65534;
139
 
gid_t gid = 65534;
140
137
 
141
138
/* Doubly linked list that need to be circularly linked when used */
142
139
typedef struct server{
172
169
 
173
170
/* Function to use when printing errors */
174
171
void perror_plus(const char *print_text){
175
 
  int e = errno;
176
172
  fprintf(stderr, "Mandos plugin %s: ",
177
173
          program_invocation_short_name);
178
 
  errno = e;
179
174
  perror(print_text);
180
175
}
181
176
 
182
 
__attribute__((format (gnu_printf, 2, 3)))
183
177
int fprintf_plus(FILE *stream, const char *format, ...){
184
178
  va_list ap;
185
179
  va_start (ap, format);
207
201
}
208
202
 
209
203
/* Add server to set of servers to retry periodically */
210
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
211
 
                int af){
 
204
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
205
               int af){
212
206
  int ret;
213
207
  server *new_server = malloc(sizeof(server));
214
208
  if(new_server == NULL){
215
209
    perror_plus("malloc");
216
 
    return false;
 
210
    return -1;
217
211
  }
218
212
  *new_server = (server){ .ip = strdup(ip),
219
213
                          .port = port,
221
215
                          .af = af };
222
216
  if(new_server->ip == NULL){
223
217
    perror_plus("strdup");
224
 
    return false;
 
218
    return -1;
225
219
  }
226
220
  /* Special case of first server */
227
221
  if (mc.current_server == NULL){
238
232
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
239
233
  if(ret == -1){
240
234
    perror_plus("clock_gettime");
241
 
    return false;
 
235
    return -1;
242
236
  }
243
 
  return true;
 
237
  return 0;
244
238
}
245
239
 
246
240
/* 
823
817
    goto mandos_end;
824
818
  }
825
819
  
826
 
  /* This casting via intptr_t is to eliminate warning about casting
827
 
     an int to a pointer type.  This is exactly how the GnuTLS Guile
828
 
     function "set-session-transport-fd!" does it. */
829
 
  gnutls_transport_set_ptr(session,
830
 
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
 
820
  /* Spurious warning from -Wint-to-pointer-cast */
 
821
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
831
822
  
832
823
  if(quit_now){
833
824
    errno = EINTR;
1038
1029
      if(ret == 0){
1039
1030
        avahi_simple_poll_quit(mc.simple_poll);
1040
1031
      } else {
1041
 
        if(not add_server(ip, port, interface,
1042
 
                          avahi_proto_to_af(proto))){
1043
 
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1044
 
                       " list\n", name);
1045
 
        }
 
1032
        ret = add_server(ip, port, interface,
 
1033
                         avahi_proto_to_af(proto));
1046
1034
      }
1047
1035
    }
1048
1036
  }
1392
1380
  }
1393
1381
}
1394
1382
 
1395
 
/* Set effective uid to 0, return errno */
1396
 
int raise_privileges(void){
1397
 
  int old_errno = errno;
1398
 
  int ret_errno = 0;
1399
 
  errno = 0;
1400
 
  if(seteuid(0) == -1){
1401
 
    perror_plus("seteuid");
1402
 
  }
1403
 
  ret_errno = errno;
1404
 
  errno = old_errno;
1405
 
  return ret_errno;
1406
 
}
1407
 
 
1408
 
/* Set effective and real user ID to 0.  Return errno. */
1409
 
int raise_privileges_permanently(void){
1410
 
  int old_errno = errno;
1411
 
  int ret_errno = raise_privileges();
1412
 
  if(ret_errno != 0){
1413
 
    errno = old_errno;
1414
 
    return ret_errno;
1415
 
  }
1416
 
  errno = 0;
1417
 
  if(setuid(0) == -1){
1418
 
    perror_plus("seteuid");
1419
 
  }
1420
 
  ret_errno = errno;
1421
 
  errno = old_errno;
1422
 
  return ret_errno;
1423
 
}
1424
 
 
1425
 
/* Set effective user ID to unprivileged saved user ID */
1426
 
int lower_privileges(void){
1427
 
  int old_errno = errno;
1428
 
  int ret_errno = 0;
1429
 
  errno = 0;
1430
 
  if(seteuid(uid) == -1){
1431
 
    perror_plus("seteuid");
1432
 
  }
1433
 
  ret_errno = errno;
1434
 
  errno = old_errno;
1435
 
  return ret_errno;
1436
 
}
1437
 
 
1438
1383
bool run_network_hooks(const char *mode, const char *interface,
1439
1384
                       const float delay){
1440
1385
  struct dirent **direntries;
1461
1406
      pid_t hook_pid = fork();
1462
1407
      if(hook_pid == 0){
1463
1408
        /* Child */
1464
 
        /* Raise privileges */
1465
 
        raise_privileges_permanently();
1466
 
        /* Set group */
1467
 
        errno = 0;
1468
 
        ret = setgid(0);
1469
 
        if(ret == -1){
1470
 
          perror_plus("setgid");
1471
 
        }
1472
 
        /* Reset supplementary groups */
1473
 
        errno = 0;
1474
 
        ret = setgroups(0, NULL);
1475
 
        if(ret == -1){
1476
 
          perror_plus("setgroups");
1477
 
        }
1478
1409
        dup2(devnull, STDIN_FILENO);
1479
1410
        close(devnull);
1480
1411
        dup2(STDERR_FILENO, STDOUT_FILENO);
1481
1412
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1482
1413
        if(ret == -1){
1483
1414
          perror_plus("setenv");
1484
 
          _exit(EX_OSERR);
 
1415
          return false;
1485
1416
        }
1486
1417
        ret = setenv("DEVICE", interface, 1);
1487
1418
        if(ret == -1){
1488
1419
          perror_plus("setenv");
1489
 
          _exit(EX_OSERR);
 
1420
          return false;
1490
1421
        }
1491
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1422
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1492
1423
        if(ret == -1){
1493
1424
          perror_plus("setenv");
1494
 
          _exit(EX_OSERR);
 
1425
          return false;
1495
1426
        }
1496
1427
        ret = setenv("MODE", mode, 1);
1497
1428
        if(ret == -1){
1498
1429
          perror_plus("setenv");
1499
 
          _exit(EX_OSERR);
 
1430
          return false;
1500
1431
        }
1501
1432
        char *delaystring;
1502
1433
        ret = asprintf(&delaystring, "%f", delay);
1503
1434
        if(ret == -1){
1504
1435
          perror_plus("asprintf");
1505
 
          _exit(EX_OSERR);
 
1436
          return false;
1506
1437
        }
1507
1438
        ret = setenv("DELAY", delaystring, 1);
1508
1439
        if(ret == -1){
1509
1440
          free(delaystring);
1510
1441
          perror_plus("setenv");
1511
 
          _exit(EX_OSERR);
 
1442
          return false;
1512
1443
        }
1513
1444
        free(delaystring);
1514
 
        if(connect_to != NULL){
1515
 
          ret = setenv("CONNECT", connect_to, 1);
1516
 
          if(ret == -1){
1517
 
            perror_plus("setenv");
1518
 
            _exit(EX_OSERR);
1519
 
          }
1520
 
        }
1521
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1522
 
          perror_plus("execl");
1523
 
          _exit(EXIT_FAILURE);
1524
 
        }
 
1445
        ret = execl(fullname, direntry->d_name, mode, NULL);
 
1446
        perror_plus("execl");
1525
1447
      } else {
1526
1448
        int status;
1527
1449
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1561
1483
  return true;
1562
1484
}
1563
1485
 
1564
 
int bring_up_interface(const char * const interface, const float delay){
1565
 
  int sd = -1;
1566
 
  int ret;
1567
 
  struct ifreq network;
1568
 
  AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
1569
 
  if(if_index == 0){
1570
 
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1571
 
    return EX_UNAVAILABLE;
1572
 
  }
1573
 
  
1574
 
  if(quit_now){
1575
 
    return EINTR;
1576
 
  }
1577
 
  
1578
 
  /* Re-raise priviliges */
1579
 
  raise_privileges();
1580
 
    
1581
 
#ifdef __linux__
1582
 
  /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1583
 
     messages about the network interface to mess up the prompt */
1584
 
  ret = klogctl(8, NULL, 5);
1585
 
  bool restore_loglevel = true;
1586
 
  if(ret == -1){
1587
 
    restore_loglevel = false;
1588
 
    perror_plus("klogctl");
1589
 
  }
1590
 
#endif  /* __linux__ */
1591
 
    
1592
 
  sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1593
 
  if(sd < 0){
1594
 
    perror_plus("socket");
1595
 
#ifdef __linux__
1596
 
    if(restore_loglevel){
1597
 
      ret = klogctl(7, NULL, 0);
1598
 
      if(ret == -1){
1599
 
        perror_plus("klogctl");
1600
 
      }
1601
 
    }
1602
 
#endif  /* __linux__ */
1603
 
    /* Lower privileges */
1604
 
    lower_privileges();
1605
 
    return EX_OSERR;
1606
 
;
1607
 
  }
1608
 
  strcpy(network.ifr_name, interface);
1609
 
  ret = ioctl(sd, SIOCGIFFLAGS, &network);
1610
 
  if(ret == -1){
1611
 
    perror_plus("ioctl SIOCGIFFLAGS");
1612
 
#ifdef __linux__
1613
 
    if(restore_loglevel){
1614
 
      ret = klogctl(7, NULL, 0);
1615
 
      if(ret == -1){
1616
 
        perror_plus("klogctl");
1617
 
      }
1618
 
    }
1619
 
#endif  /* __linux__ */
1620
 
    /* Lower privileges */
1621
 
    lower_privileges();
1622
 
    return EX_OSERR;
1623
 
  }
1624
 
  if((network.ifr_flags & IFF_UP) == 0){
1625
 
    network.ifr_flags |= IFF_UP;
1626
 
    ret = ioctl(sd, SIOCSIFFLAGS, &network);
1627
 
    if(ret == -1){
1628
 
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1629
 
#ifdef __linux__
1630
 
      if(restore_loglevel){
1631
 
        ret = klogctl(7, NULL, 0);
1632
 
        if(ret == -1){
1633
 
          perror_plus("klogctl");
1634
 
        }
1635
 
      }
1636
 
#endif  /* __linux__ */
1637
 
        /* Lower privileges */
1638
 
      lower_privileges();
1639
 
      return EX_OSERR;
1640
 
    }
1641
 
  }
1642
 
  /* Sleep checking until interface is running.
1643
 
     Check every 0.25s, up to total time of delay */
1644
 
  for(int i=0; i < delay * 4; i++){
1645
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1646
 
    if(ret == -1){
1647
 
      perror_plus("ioctl SIOCGIFFLAGS");
1648
 
    } else if(network.ifr_flags & IFF_RUNNING){
1649
 
      break;
1650
 
    }
1651
 
    struct timespec sleeptime = { .tv_nsec = 250000000 };
1652
 
    ret = nanosleep(&sleeptime, NULL);
1653
 
    if(ret == -1 and errno != EINTR){
1654
 
      perror_plus("nanosleep");
1655
 
    }
1656
 
  }
1657
 
  /* Close the socket */
1658
 
  ret = (int)TEMP_FAILURE_RETRY(close(sd));
1659
 
  if(ret == -1){
1660
 
    perror_plus("close");
1661
 
  }
1662
 
#ifdef __linux__
1663
 
  if(restore_loglevel){
1664
 
    /* Restores kernel loglevel to default */
1665
 
    ret = klogctl(7, NULL, 0);
1666
 
    if(ret == -1){
1667
 
      perror_plus("klogctl");
1668
 
    }
1669
 
  }
1670
 
#endif  /* __linux__ */
1671
 
  /* Lower privileges */
1672
 
  lower_privileges();
1673
 
  return errno;
1674
 
}
1675
 
 
1676
1486
int main(int argc, char *argv[]){
1677
1487
  AvahiSServiceBrowser *sb = NULL;
1678
1488
  int error;
1684
1494
  struct ifreq network;
1685
1495
  int sd = -1;
1686
1496
  bool take_down_interface = false;
 
1497
  uid_t uid;
 
1498
  gid_t gid;
1687
1499
  char tempdir[] = "/tmp/mandosXXXXXX";
1688
1500
  bool tempdir_created = false;
1689
1501
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1756
1568
        .group = 2 },
1757
1569
      { .name = "retry", .key = 132,
1758
1570
        .arg = "SECONDS",
1759
 
        .doc = "Retry interval used when denied by the Mandos server",
 
1571
        .doc = "Retry interval used when denied by the mandos server",
1760
1572
        .group = 2 },
1761
1573
      { .name = "network-hook-dir", .key = 133,
1762
1574
        .arg = "DIR",
1834
1646
        argp_state_help(state, state->out_stream,
1835
1647
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1836
1648
      case 'V':                 /* --version */
 
1649
        fprintf_plus(state->out_stream,
 
1650
                     "Mandos plugin mandos-client: ");
1837
1651
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1838
1652
        exit(argp_err_exit_status);
1839
1653
        break;
1864
1678
    }
1865
1679
  }
1866
1680
    
1867
 
  {
 
1681
  if(getuid() == 0){
1868
1682
    /* Work around Debian bug #633582:
1869
1683
       <http://bugs.debian.org/633582> */
 
1684
    struct stat st;
1870
1685
    
1871
1686
    /* Re-raise priviliges */
1872
 
    if(raise_privileges() == 0){
1873
 
      struct stat st;
1874
 
      
1875
 
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1876
 
        int seckey_fd = open(seckey, O_RDONLY);
1877
 
        if(seckey_fd == -1){
1878
 
          perror_plus("open");
1879
 
        } else {
1880
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1881
 
          if(ret == -1){
1882
 
            perror_plus("fstat");
1883
 
          } else {
1884
 
            if(S_ISREG(st.st_mode)
1885
 
               and st.st_uid == 0 and st.st_gid == 0){
1886
 
              ret = fchown(seckey_fd, uid, gid);
1887
 
              if(ret == -1){
1888
 
                perror_plus("fchown");
1889
 
              }
1890
 
            }
1891
 
          }
1892
 
          TEMP_FAILURE_RETRY(close(seckey_fd));
1893
 
        }
1894
 
      }
1895
 
    
1896
 
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1897
 
        int pubkey_fd = open(pubkey, O_RDONLY);
1898
 
        if(pubkey_fd == -1){
1899
 
          perror_plus("open");
1900
 
        } else {
1901
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1902
 
          if(ret == -1){
1903
 
            perror_plus("fstat");
1904
 
          } else {
1905
 
            if(S_ISREG(st.st_mode)
1906
 
               and st.st_uid == 0 and st.st_gid == 0){
1907
 
              ret = fchown(pubkey_fd, uid, gid);
1908
 
              if(ret == -1){
1909
 
                perror_plus("fchown");
1910
 
              }
1911
 
            }
1912
 
          }
1913
 
          TEMP_FAILURE_RETRY(close(pubkey_fd));
1914
 
        }
1915
 
      }
1916
 
    
 
1687
    errno = 0;
 
1688
    ret = seteuid(0);
 
1689
    if(ret == -1){
 
1690
      perror_plus("seteuid");
 
1691
    }
 
1692
    
 
1693
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1694
      int seckey_fd = open(seckey, O_RDONLY);
 
1695
      if(seckey_fd == -1){
 
1696
        perror_plus("open");
 
1697
      } else {
 
1698
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1699
        if(ret == -1){
 
1700
          perror_plus("fstat");
 
1701
        } else {
 
1702
          if(S_ISREG(st.st_mode)
 
1703
             and st.st_uid == 0 and st.st_gid == 0){
 
1704
            ret = fchown(seckey_fd, uid, gid);
 
1705
            if(ret == -1){
 
1706
              perror_plus("fchown");
 
1707
            }
 
1708
          }
 
1709
        }
 
1710
        TEMP_FAILURE_RETRY(close(seckey_fd));
 
1711
      }
 
1712
    }
 
1713
    
 
1714
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1715
      int pubkey_fd = open(pubkey, O_RDONLY);
 
1716
      if(pubkey_fd == -1){
 
1717
        perror_plus("open");
 
1718
      } else {
 
1719
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1720
        if(ret == -1){
 
1721
          perror_plus("fstat");
 
1722
        } else {
 
1723
          if(S_ISREG(st.st_mode)
 
1724
             and st.st_uid == 0 and st.st_gid == 0){
 
1725
            ret = fchown(pubkey_fd, uid, gid);
 
1726
            if(ret == -1){
 
1727
              perror_plus("fchown");
 
1728
            }
 
1729
          }
 
1730
        }
 
1731
        TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1732
      }
 
1733
    }
 
1734
    
 
1735
    /* Lower privileges */
 
1736
    errno = 0;
 
1737
    ret = seteuid(uid);
 
1738
    if(ret == -1){
 
1739
      perror_plus("seteuid");
 
1740
    }
 
1741
  }
 
1742
  
 
1743
  /* Run network hooks */
 
1744
  {
 
1745
    if(getuid() == 0){
 
1746
      /* Re-raise priviliges */
 
1747
      errno = 0;
 
1748
      ret = seteuid(0);
 
1749
      if(ret == -1){
 
1750
        perror_plus("seteuid");
 
1751
      }
 
1752
    }
 
1753
    if(not run_network_hooks("start", interface, delay)){
 
1754
      goto end;
 
1755
    }
 
1756
    if(getuid() == 0){
1917
1757
      /* Lower privileges */
1918
1758
      errno = 0;
1919
1759
      ret = seteuid(uid);
1923
1763
    }
1924
1764
  }
1925
1765
  
1926
 
  /* Run network hooks */
1927
 
  if(not run_network_hooks("start", interface, delay)){
1928
 
    goto end;
1929
 
  }
1930
 
  
1931
1766
  if(not debug){
1932
1767
    avahi_set_log_function(empty_log);
1933
1768
  }
2040
1875
  }
2041
1876
  
2042
1877
  /* If the interface is down, bring it up */
2043
 
  if((interface[0] != '\0') and (strcmp(interface, "none") != 0)){
2044
 
    ret = bring_up_interface(interface, delay);
2045
 
    if(ret){
2046
 
      errno = ret;
2047
 
      perror_plus("Failed to bring up interface");
 
1878
  if(strcmp(interface, "none") != 0){
 
1879
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1880
    if(if_index == 0){
 
1881
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1882
      exitcode = EX_UNAVAILABLE;
 
1883
      goto end;
 
1884
    }
 
1885
    
 
1886
    if(quit_now){
 
1887
      goto end;
 
1888
    }
 
1889
    
 
1890
    /* Re-raise priviliges */
 
1891
    errno = 0;
 
1892
    ret = seteuid(0);
 
1893
    if(ret == -1){
 
1894
      perror_plus("seteuid");
 
1895
    }
 
1896
    
 
1897
#ifdef __linux__
 
1898
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1899
       messages about the network interface to mess up the prompt */
 
1900
    ret = klogctl(8, NULL, 5);
 
1901
    bool restore_loglevel = true;
 
1902
    if(ret == -1){
 
1903
      restore_loglevel = false;
 
1904
      perror_plus("klogctl");
 
1905
    }
 
1906
#endif  /* __linux__ */
 
1907
    
 
1908
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1909
    if(sd < 0){
 
1910
      perror_plus("socket");
 
1911
      exitcode = EX_OSERR;
 
1912
#ifdef __linux__
 
1913
      if(restore_loglevel){
 
1914
        ret = klogctl(7, NULL, 0);
 
1915
        if(ret == -1){
 
1916
          perror_plus("klogctl");
 
1917
        }
 
1918
      }
 
1919
#endif  /* __linux__ */
 
1920
      /* Lower privileges */
 
1921
      errno = 0;
 
1922
      ret = seteuid(uid);
 
1923
      if(ret == -1){
 
1924
        perror_plus("seteuid");
 
1925
      }
 
1926
      goto end;
 
1927
    }
 
1928
    strcpy(network.ifr_name, interface);
 
1929
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1930
    if(ret == -1){
 
1931
      perror_plus("ioctl SIOCGIFFLAGS");
 
1932
#ifdef __linux__
 
1933
      if(restore_loglevel){
 
1934
        ret = klogctl(7, NULL, 0);
 
1935
        if(ret == -1){
 
1936
          perror_plus("klogctl");
 
1937
        }
 
1938
      }
 
1939
#endif  /* __linux__ */
 
1940
      exitcode = EX_OSERR;
 
1941
      /* Lower privileges */
 
1942
      errno = 0;
 
1943
      ret = seteuid(uid);
 
1944
      if(ret == -1){
 
1945
        perror_plus("seteuid");
 
1946
      }
 
1947
      goto end;
 
1948
    }
 
1949
    if((network.ifr_flags & IFF_UP) == 0){
 
1950
      network.ifr_flags |= IFF_UP;
 
1951
      take_down_interface = true;
 
1952
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1953
      if(ret == -1){
 
1954
        take_down_interface = false;
 
1955
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1956
        exitcode = EX_OSERR;
 
1957
#ifdef __linux__
 
1958
        if(restore_loglevel){
 
1959
          ret = klogctl(7, NULL, 0);
 
1960
          if(ret == -1){
 
1961
            perror_plus("klogctl");
 
1962
          }
 
1963
        }
 
1964
#endif  /* __linux__ */
 
1965
        /* Lower privileges */
 
1966
        errno = 0;
 
1967
        ret = seteuid(uid);
 
1968
        if(ret == -1){
 
1969
          perror_plus("seteuid");
 
1970
        }
 
1971
        goto end;
 
1972
      }
 
1973
    }
 
1974
    /* Sleep checking until interface is running.
 
1975
       Check every 0.25s, up to total time of delay */
 
1976
    for(int i=0; i < delay * 4; i++){
 
1977
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1978
      if(ret == -1){
 
1979
        perror_plus("ioctl SIOCGIFFLAGS");
 
1980
      } else if(network.ifr_flags & IFF_RUNNING){
 
1981
        break;
 
1982
      }
 
1983
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1984
      ret = nanosleep(&sleeptime, NULL);
 
1985
      if(ret == -1 and errno != EINTR){
 
1986
        perror_plus("nanosleep");
 
1987
      }
 
1988
    }
 
1989
    if(not take_down_interface){
 
1990
      /* We won't need the socket anymore */
 
1991
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1992
      if(ret == -1){
 
1993
        perror_plus("close");
 
1994
      }
 
1995
    }
 
1996
#ifdef __linux__
 
1997
    if(restore_loglevel){
 
1998
      /* Restores kernel loglevel to default */
 
1999
      ret = klogctl(7, NULL, 0);
 
2000
      if(ret == -1){
 
2001
        perror_plus("klogctl");
 
2002
      }
 
2003
    }
 
2004
#endif  /* __linux__ */
 
2005
    /* Lower privileges */
 
2006
    errno = 0;
 
2007
    /* Lower privileges */
 
2008
    ret = seteuid(uid);
 
2009
    if(ret == -1){
 
2010
      perror_plus("seteuid");
2048
2011
    }
2049
2012
  }
2050
2013
  
2091
2054
    /* Connect directly, do not use Zeroconf */
2092
2055
    /* (Mainly meant for debugging) */
2093
2056
    char *address = strrchr(connect_to, ':');
2094
 
    
2095
2057
    if(address == NULL){
2096
2058
      fprintf_plus(stderr, "No colon in address\n");
2097
2059
      exitcode = EX_USAGE;
2255
2217
    }
2256
2218
  }
2257
2219
  
2258
 
  /* Run network hooks */
2259
 
  run_network_hooks("stop", interface, delay);
2260
 
  
2261
2220
  /* Re-raise priviliges */
2262
2221
  {
2263
 
    raise_privileges();
 
2222
    if(getuid() == 0){
 
2223
      errno = 0;
 
2224
      ret = seteuid(0);
 
2225
      if(ret == -1){
 
2226
        perror_plus("seteuid");
 
2227
      }
 
2228
    }
 
2229
    
 
2230
    /* Run network hooks */
 
2231
    run_network_hooks("stop", interface, delay);
2264
2232
    
2265
2233
    /* Take down the network interface */
2266
2234
    if(take_down_interface and geteuid() == 0){
2280
2248
      }
2281
2249
    }
2282
2250
  }
2283
 
  /* Lower privileges permanently */
2284
 
  errno = 0;
2285
 
  ret = setuid(uid);
2286
 
  if(ret == -1){
2287
 
    perror_plus("setuid");
 
2251
  if(getuid() == 0){
 
2252
    /* Lower privileges permanently */
 
2253
    errno = 0;
 
2254
    ret = setuid(uid);
 
2255
    if(ret == -1){
 
2256
      perror_plus("setuid");
 
2257
    }
2288
2258
  }
2289
2259
  
2290
2260
  /* Removes the GPGME temp directory and all files inside */