/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

  • Committer: Teddy Hogeborn
  • Date: 2012-06-06 19:08:17 UTC
  • mto: This revision was merged to the branch mainline in revision 596.
  • Revision ID: teddy@recompile.se-20120606190817-c2x5o98vzn07xufd
* plugins.d/mandos-client.c: Refactoring.
  (uid, gid): New global variables.
  (raise_privileges, raise_privileges_permanently, lower_privileges,
  bring_up_interface): New functions.
  (main): Changed to use new functions.

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-2011 Teddy Hogeborn
13
 
 * Copyright © 2008-2011 Björn Påhlsson
 
12
 * Copyright © 2008-2012 Teddy Hogeborn
 
13
 * Copyright © 2008-2012 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 */
 
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_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() */
 
76
                                   setgid(), pause(), _exit() */
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() */
90
91
 
91
92
#ifdef __linux__
92
93
#include <sys/klog.h>           /* klogctl() */
134
135
static const char sys_class_net[] = "/sys/class/net";
135
136
char *connect_to = NULL;
136
137
const char *hookdir = HOOKDIR;
 
138
uid_t uid = 65534;
 
139
gid_t gid = 65534;
137
140
 
138
141
/* Doubly linked list that need to be circularly linked when used */
139
142
typedef struct server{
169
172
 
170
173
/* Function to use when printing errors */
171
174
void perror_plus(const char *print_text){
 
175
  int e = errno;
172
176
  fprintf(stderr, "Mandos plugin %s: ",
173
177
          program_invocation_short_name);
 
178
  errno = e;
174
179
  perror(print_text);
175
180
}
176
181
 
 
182
__attribute__((format (gnu_printf, 2, 3)))
177
183
int fprintf_plus(FILE *stream, const char *format, ...){
178
184
  va_list ap;
179
185
  va_start (ap, format);
201
207
}
202
208
 
203
209
/* Add server to set of servers to retry periodically */
204
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
205
 
               int af){
 
210
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
211
                int af){
206
212
  int ret;
207
213
  server *new_server = malloc(sizeof(server));
208
214
  if(new_server == NULL){
209
215
    perror_plus("malloc");
210
 
    return -1;
 
216
    return false;
211
217
  }
212
218
  *new_server = (server){ .ip = strdup(ip),
213
219
                          .port = port,
215
221
                          .af = af };
216
222
  if(new_server->ip == NULL){
217
223
    perror_plus("strdup");
218
 
    return -1;
 
224
    return false;
219
225
  }
220
226
  /* Special case of first server */
221
227
  if (mc.current_server == NULL){
232
238
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
233
239
  if(ret == -1){
234
240
    perror_plus("clock_gettime");
235
 
    return -1;
 
241
    return false;
236
242
  }
237
 
  return 0;
 
243
  return true;
238
244
}
239
245
 
240
246
/* 
817
823
    goto mandos_end;
818
824
  }
819
825
  
820
 
  /* Spurious warning from -Wint-to-pointer-cast */
821
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
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);
822
831
  
823
832
  if(quit_now){
824
833
    errno = EINTR;
1029
1038
      if(ret == 0){
1030
1039
        avahi_simple_poll_quit(mc.simple_poll);
1031
1040
      } else {
1032
 
        ret = add_server(ip, port, interface,
1033
 
                         avahi_proto_to_af(proto));
 
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
        }
1034
1046
      }
1035
1047
    }
1036
1048
  }
1380
1392
  }
1381
1393
}
1382
1394
 
 
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
 
1383
1438
bool run_network_hooks(const char *mode, const char *interface,
1384
1439
                       const float delay){
1385
1440
  struct dirent **direntries;
1406
1461
      pid_t hook_pid = fork();
1407
1462
      if(hook_pid == 0){
1408
1463
        /* 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
        }
1409
1478
        dup2(devnull, STDIN_FILENO);
1410
1479
        close(devnull);
1411
1480
        dup2(STDERR_FILENO, STDOUT_FILENO);
1412
1481
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1413
1482
        if(ret == -1){
1414
1483
          perror_plus("setenv");
1415
 
          return false;
 
1484
          _exit(EX_OSERR);
1416
1485
        }
1417
1486
        ret = setenv("DEVICE", interface, 1);
1418
1487
        if(ret == -1){
1419
1488
          perror_plus("setenv");
1420
 
          return false;
 
1489
          _exit(EX_OSERR);
1421
1490
        }
1422
 
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1491
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1423
1492
        if(ret == -1){
1424
1493
          perror_plus("setenv");
1425
 
          return false;
 
1494
          _exit(EX_OSERR);
1426
1495
        }
1427
1496
        ret = setenv("MODE", mode, 1);
1428
1497
        if(ret == -1){
1429
1498
          perror_plus("setenv");
1430
 
          return false;
 
1499
          _exit(EX_OSERR);
1431
1500
        }
1432
1501
        char *delaystring;
1433
1502
        ret = asprintf(&delaystring, "%f", delay);
1434
1503
        if(ret == -1){
1435
1504
          perror_plus("asprintf");
1436
 
          return false;
 
1505
          _exit(EX_OSERR);
1437
1506
        }
1438
1507
        ret = setenv("DELAY", delaystring, 1);
1439
1508
        if(ret == -1){
1440
1509
          free(delaystring);
1441
1510
          perror_plus("setenv");
1442
 
          return false;
 
1511
          _exit(EX_OSERR);
1443
1512
        }
1444
1513
        free(delaystring);
1445
 
        ret = execl(fullname, direntry->d_name, mode, NULL);
1446
 
        perror_plus("execl");
 
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
        }
1447
1525
      } else {
1448
1526
        int status;
1449
1527
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1483
1561
  return true;
1484
1562
}
1485
1563
 
 
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
 
1486
1676
int main(int argc, char *argv[]){
1487
1677
  AvahiSServiceBrowser *sb = NULL;
1488
1678
  int error;
1494
1684
  struct ifreq network;
1495
1685
  int sd = -1;
1496
1686
  bool take_down_interface = false;
1497
 
  uid_t uid;
1498
 
  gid_t gid;
1499
1687
  char tempdir[] = "/tmp/mandosXXXXXX";
1500
1688
  bool tempdir_created = false;
1501
1689
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1568
1756
        .group = 2 },
1569
1757
      { .name = "retry", .key = 132,
1570
1758
        .arg = "SECONDS",
1571
 
        .doc = "Retry interval used when denied by the mandos server",
 
1759
        .doc = "Retry interval used when denied by the Mandos server",
1572
1760
        .group = 2 },
1573
1761
      { .name = "network-hook-dir", .key = 133,
1574
1762
        .arg = "DIR",
1646
1834
        argp_state_help(state, state->out_stream,
1647
1835
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1648
1836
      case 'V':                 /* --version */
1649
 
        fprintf_plus(state->out_stream,
1650
 
                     "Mandos plugin mandos-client: ");
1651
1837
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1652
1838
        exit(argp_err_exit_status);
1653
1839
        break;
1678
1864
    }
1679
1865
  }
1680
1866
    
1681
 
  if(getuid() == 0){
 
1867
  {
1682
1868
    /* Work around Debian bug #633582:
1683
1869
       <http://bugs.debian.org/633582> */
1684
 
    struct stat st;
1685
1870
    
1686
1871
    /* Re-raise priviliges */
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){
 
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
    
1757
1917
      /* Lower privileges */
1758
1918
      errno = 0;
1759
1919
      ret = seteuid(uid);
1763
1923
    }
1764
1924
  }
1765
1925
  
 
1926
  /* Run network hooks */
 
1927
  if(not run_network_hooks("start", interface, delay)){
 
1928
    goto end;
 
1929
  }
 
1930
  
1766
1931
  if(not debug){
1767
1932
    avahi_set_log_function(empty_log);
1768
1933
  }
1875
2040
  }
1876
2041
  
1877
2042
  /* If the interface is down, bring it up */
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");
 
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");
2011
2048
    }
2012
2049
  }
2013
2050
  
2054
2091
    /* Connect directly, do not use Zeroconf */
2055
2092
    /* (Mainly meant for debugging) */
2056
2093
    char *address = strrchr(connect_to, ':');
 
2094
    
2057
2095
    if(address == NULL){
2058
2096
      fprintf_plus(stderr, "No colon in address\n");
2059
2097
      exitcode = EX_USAGE;
2217
2255
    }
2218
2256
  }
2219
2257
  
 
2258
  /* Run network hooks */
 
2259
  run_network_hooks("stop", interface, delay);
 
2260
  
2220
2261
  /* Re-raise priviliges */
2221
2262
  {
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);
 
2263
    raise_privileges();
2232
2264
    
2233
2265
    /* Take down the network interface */
2234
2266
    if(take_down_interface and geteuid() == 0){
2248
2280
      }
2249
2281
    }
2250
2282
  }
2251
 
  if(getuid() == 0){
2252
 
    /* Lower privileges permanently */
2253
 
    errno = 0;
2254
 
    ret = setuid(uid);
2255
 
    if(ret == -1){
2256
 
      perror_plus("setuid");
2257
 
    }
 
2283
  /* Lower privileges permanently */
 
2284
  errno = 0;
 
2285
  ret = setuid(uid);
 
2286
  if(ret == -1){
 
2287
    perror_plus("setuid");
2258
2288
  }
2259
2289
  
2260
2290
  /* Removes the GPGME temp directory and all files inside */