229
256
    new_server->next = new_server;
 
230
257
    new_server->prev = new_server;
 
231
258
    *current_server = new_server;
 
232
 
  /* Place the new server last in the list */
 
 
260
    /* Place the new server last in the list */
 
234
261
    new_server->next = *current_server;
 
235
262
    new_server->prev = (*current_server)->prev;
 
236
263
    new_server->prev->next = new_server;
 
237
264
    (*current_server)->prev = new_server;
 
239
 
  ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
 
241
 
    perror_plus("clock_gettime");
 
248
270
 * Initialize GPGME.
 
250
 
static bool init_gpgme(const char *seckey, const char *pubkey,
 
251
 
                       const char *tempdir, mandos_context *mc){
 
 
272
__attribute__((nonnull, warn_unused_result))
 
 
273
static bool init_gpgme(const char * const seckey,
 
 
274
                       const char * const pubkey,
 
 
275
                       const char * const tempdir,
 
252
277
  gpgme_error_t rc;
 
253
278
  gpgme_engine_info_t engine_info;
 
256
281
   * Helper function to insert pub and seckey to the engine keyring.
 
258
 
  bool import_key(const char *filename){
 
 
283
  bool import_key(const char * const filename){
 
261
286
    gpgme_data_t pgp_data;
 
 
779
800
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
 
780
801
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
 
782
802
    if(af == AF_INET6){
 
783
 
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
 
 
803
      ret = getnameinfo((struct sockaddr *)&to,
 
 
804
                        sizeof(struct sockaddr_in6),
 
 
805
                        addrstr, sizeof(addrstr), NULL, 0,
 
786
 
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
 
 
808
      ret = getnameinfo((struct sockaddr *)&to,
 
 
809
                        sizeof(struct sockaddr_in),
 
 
810
                        addrstr, sizeof(addrstr), NULL, 0,
 
790
 
      perror_plus("inet_ntop");
 
792
 
      if(strcmp(addrstr, ip) != 0){
 
793
 
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
 
 
813
    if(ret == EAI_SYSTEM){
 
 
814
      perror_plus("getnameinfo");
 
 
815
    } else if(ret != 0) {
 
 
816
      fprintf_plus(stderr, "getnameinfo: %s", gai_strerror(ret));
 
 
817
    } else if(strcmp(addrstr, ip) != 0){
 
 
818
      fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
 
 
1456
1486
  if(setuid(0) == -1){
 
1457
1487
    ret_errno = errno;
 
1458
 
    perror_plus("seteuid");
 
1460
1489
  errno = old_errno;
 
1461
1490
  return ret_errno;
 
1464
1493
/* Set effective user ID to unprivileged saved user ID */
 
 
1494
__attribute__((warn_unused_result))
 
1465
1495
error_t lower_privileges(void){
 
1466
1496
  error_t old_errno = errno;
 
1467
1497
  error_t ret_errno = 0;
 
1468
1498
  if(seteuid(uid) == -1){
 
1469
1499
    ret_errno = errno;
 
1470
 
    perror_plus("seteuid");
 
1472
1501
  errno = old_errno;
 
1473
1502
  return ret_errno;
 
1476
1505
/* Lower privileges permanently */
 
 
1506
__attribute__((warn_unused_result))
 
1477
1507
error_t lower_privileges_permanently(void){
 
1478
1508
  error_t old_errno = errno;
 
1479
1509
  error_t ret_errno = 0;
 
1480
1510
  if(setuid(uid) == -1){
 
1481
1511
    ret_errno = errno;
 
1482
 
    perror_plus("setuid");
 
1484
1513
  errno = old_errno;
 
1485
1514
  return ret_errno;
 
1488
 
bool run_network_hooks(const char *mode, const char *interface,
 
 
1517
__attribute__((nonnull))
 
 
1518
void run_network_hooks(const char *mode, const char *interface,
 
1489
1519
                       const float delay){
 
1490
 
  struct dirent **direntries;
 
 
1520
  struct dirent **direntries = NULL;
 
 
1521
  if(hookdir_fd == -1){
 
 
1522
    hookdir_fd = open(hookdir, O_RDONLY);
 
 
1523
    if(hookdir_fd == -1){
 
 
1524
      if(errno == ENOENT){
 
 
1526
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
 
1527
                       " found\n", hookdir);
 
 
1530
        perror_plus("open");
 
 
1536
#if __GLIBC_PREREQ(2, 15)
 
 
1537
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
 
 
1538
                           runnable_hook, alphasort);
 
 
1539
#else  /* not __GLIBC_PREREQ(2, 15) */
 
 
1540
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
 
1542
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
 
1543
#else   /* not __GLIBC__ */
 
 
1544
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
 
1546
#endif  /* not __GLIBC__ */
 
 
1548
    perror_plus("scandir");
 
1491
1551
  struct dirent *direntry;
 
1493
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1496
 
    if(errno == ENOENT){
 
1498
 
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1499
 
                     " found\n", hookdir);
 
1502
 
      perror_plus("scandir");
 
 
1553
  int devnull = open("/dev/null", O_RDONLY);
 
 
1554
  for(int i = 0; i < numhooks; i++){
 
 
1555
    direntry = direntries[i];
 
 
1557
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1505
 
    int devnull = open("/dev/null", O_RDONLY);
 
1506
 
    for(int i = 0; i < numhooks; i++){
 
1507
 
      direntry = direntries[i];
 
1508
 
      char *fullname = NULL;
 
1509
 
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
 
1560
    pid_t hook_pid = fork();
 
 
1563
      /* Raise privileges */
 
 
1564
      errno = raise_privileges_permanently();
 
 
1566
        perror_plus("Failed to raise privileges");
 
 
1573
        perror_plus("setgid");
 
 
1576
      /* Reset supplementary groups */
 
 
1578
      ret = setgroups(0, NULL);
 
 
1580
        perror_plus("setgroups");
 
 
1583
      ret = dup2(devnull, STDIN_FILENO);
 
 
1585
        perror_plus("dup2(devnull, STDIN_FILENO)");
 
 
1588
      ret = close(devnull);
 
 
1590
        perror_plus("close");
 
 
1593
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
 
1595
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
 
1598
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
 
1600
        perror_plus("setenv");
 
 
1603
      ret = setenv("DEVICE", interface, 1);
 
 
1605
        perror_plus("setenv");
 
 
1608
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
 
1610
        perror_plus("setenv");
 
 
1613
      ret = setenv("MODE", mode, 1);
 
 
1615
        perror_plus("setenv");
 
 
1619
      ret = asprintf(&delaystring, "%f", (double)delay);
 
1511
1621
        perror_plus("asprintf");
 
1515
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1518
 
      pid_t hook_pid = fork();
 
1521
 
        /* Raise privileges */
 
1522
 
        raise_privileges_permanently();
 
1527
 
          perror_plus("setgid");
 
1529
 
        /* Reset supplementary groups */
 
1531
 
        ret = setgroups(0, NULL);
 
1533
 
          perror_plus("setgroups");
 
1535
 
        dup2(devnull, STDIN_FILENO);
 
1537
 
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
1538
 
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1540
 
          perror_plus("setenv");
 
1543
 
        ret = setenv("DEVICE", interface, 1);
 
1545
 
          perror_plus("setenv");
 
1548
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1550
 
          perror_plus("setenv");
 
1553
 
        ret = setenv("MODE", mode, 1);
 
1555
 
          perror_plus("setenv");
 
1559
 
        ret = asprintf(&delaystring, "%f", delay);
 
1561
 
          perror_plus("asprintf");
 
1564
 
        ret = setenv("DELAY", delaystring, 1);
 
1567
 
          perror_plus("setenv");
 
 
1624
      ret = setenv("DELAY", delaystring, 1);
 
1570
1626
        free(delaystring);
 
1571
 
        if(connect_to != NULL){
 
1572
 
          ret = setenv("CONNECT", connect_to, 1);
 
1574
 
            perror_plus("setenv");
 
1578
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1579
 
          perror_plus("execl");
 
1580
 
          _exit(EXIT_FAILURE);
 
 
1627
        perror_plus("setenv");
 
 
1631
      if(connect_to != NULL){
 
 
1632
        ret = setenv("CONNECT", connect_to, 1);
 
 
1634
          perror_plus("setenv");
 
 
1638
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
 
 
1640
        perror_plus("openat");
 
 
1641
        _exit(EXIT_FAILURE);
 
 
1643
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
 
1644
        perror_plus("close");
 
 
1645
        _exit(EXIT_FAILURE);
 
 
1647
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
 
1649
        perror_plus("fexecve");
 
 
1650
        _exit(EXIT_FAILURE);
 
 
1654
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
 
1655
        perror_plus("waitpid");
 
 
1659
      if(WIFEXITED(status)){
 
 
1660
        if(WEXITSTATUS(status) != 0){
 
 
1661
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
 
1662
                       " with status %d\n", direntry->d_name,
 
 
1663
                       WEXITSTATUS(status));
 
 
1667
      } else if(WIFSIGNALED(status)){
 
 
1668
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
 
1669
                     " signal %d\n", direntry->d_name,
 
1584
 
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1585
 
          perror_plus("waitpid");
 
1589
 
        if(WIFEXITED(status)){
 
1590
 
          if(WEXITSTATUS(status) != 0){
 
1591
 
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1592
 
                         " with status %d\n", direntry->d_name,
 
1593
 
                         WEXITSTATUS(status));
 
1597
 
        } else if(WIFSIGNALED(status)){
 
1598
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1599
 
                       " signal %d\n", direntry->d_name,
 
1604
 
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1605
 
                       " crashed\n", direntry->d_name);
 
1612
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
 
1674
        fprintf_plus(stderr, "Warning: network hook \"%s\""
 
 
1675
                     " crashed\n", direntry->d_name);
 
 
1681
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
 
1687
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
 
1688
    perror_plus("close");
 
 
1695
__attribute__((nonnull, warn_unused_result))
 
1621
1696
error_t bring_up_interface(const char *const interface,
 
1622
1697
                           const float delay){
 
1624
1698
  error_t old_errno = errno;
 
1625
 
  error_t ret_errno = 0;
 
1626
 
  int ret, ret_setflags;
 
1627
1700
  struct ifreq network;
 
1628
1701
  unsigned int if_index = if_nametoindex(interface);
 
1629
1702
  if(if_index == 0){
 
 
2441
2564
    mc.current_server->prev->next = NULL;
 
2442
2565
    while(mc.current_server != NULL){
 
2443
2566
      server *next = mc.current_server->next;
 
 
2568
#pragma GCC diagnostic push
 
 
2569
#pragma GCC diagnostic ignored "-Wcast-qual"
 
 
2571
      free((char *)(mc.current_server->ip));
 
 
2573
#pragma GCC diagnostic pop
 
2444
2575
      free(mc.current_server);
 
2445
2576
      mc.current_server = next;
 
2449
 
  /* Re-raise priviliges */
 
 
2580
  /* Re-raise privileges */
 
2453
 
    /* Run network hooks */
 
2454
 
    run_network_hooks("stop", interfaces_hooks != NULL ?
 
2455
 
                      interfaces_hooks : "", delay);
 
2457
 
    /* Take down the network interfaces which were brought up */
 
2459
 
      char *interface = NULL;
 
2460
 
      while((interface=argz_next(interfaces_to_take_down,
 
2461
 
                                 interfaces_to_take_down_size,
 
2463
 
        ret_errno = take_down_interface(interface);
 
2466
 
          perror_plus("Failed to take down interface");
 
2469
 
      if(debug and (interfaces_to_take_down == NULL)){
 
2470
 
        fprintf_plus(stderr, "No interfaces needed to be taken"
 
2475
 
    lower_privileges_permanently();
 
 
2582
    ret_errno = raise_privileges();
 
 
2585
      perror_plus("Failed to raise privileges");
 
 
2588
      /* Run network hooks */
 
 
2589
      run_network_hooks("stop", interfaces_hooks != NULL ?
 
 
2590
                        interfaces_hooks : "", delay);
 
 
2592
      /* Take down the network interfaces which were brought up */
 
 
2594
        char *interface = NULL;
 
 
2595
        while((interface=argz_next(interfaces_to_take_down,
 
 
2596
                                   interfaces_to_take_down_size,
 
 
2598
          ret_errno = take_down_interface(interface);
 
 
2601
            perror_plus("Failed to take down interface");
 
 
2604
        if(debug and (interfaces_to_take_down == NULL)){
 
 
2605
          fprintf_plus(stderr, "No interfaces needed to be taken"
 
 
2611
    ret_errno = lower_privileges_permanently();
 
 
2614
      perror_plus("Failed to lower privileges permanently");
 
2478
2618
  free(interfaces_to_take_down);
 
2479
2619
  free(interfaces_hooks);
 
2481
2621
  /* Removes the GPGME temp directory and all files inside */
 
2482
 
  if(tempdir_created){
 
 
2622
  if(tempdir != NULL){
 
2483
2623
    struct dirent **direntries = NULL;
 
2484
 
    struct dirent *direntry = NULL;
 
2485
 
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2487
 
    if (numentries > 0){
 
2488
 
      for(int i = 0; i < numentries; i++){
 
2489
 
        direntry = direntries[i];
 
2490
 
        char *fullname = NULL;
 
2491
 
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
2494
 
          perror_plus("asprintf");
 
2497
 
        ret = remove(fullname);
 
2499
 
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
 
2624
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
 
 
2626
    if(tempdir_fd == -1){
 
 
2627
      perror_plus("open");
 
 
2630
#if __GLIBC_PREREQ(2, 15)
 
 
2631
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
 
2632
                                 notdotentries, alphasort);
 
 
2633
#else  /* not __GLIBC_PREREQ(2, 15) */
 
 
2634
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2636
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
 
2637
#else   /* not __GLIBC__ */
 
 
2638
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
 
2640
#endif  /* not __GLIBC__ */
 
 
2641
      if(numentries >= 0){
 
 
2642
        for(int i = 0; i < numentries; i++){
 
 
2643
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
 
2645
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
 
2646
                         " \"%s\", 0): %s\n", tempdir,
 
 
2647
                         direntries[i]->d_name, strerror(errno));
 
 
2649
          free(direntries[i]);
 
 
2652
        /* need to clean even if 0 because man page doesn't specify */
 
 
2654
        if(numentries == -1){
 
 
2655
          perror_plus("scandir");
 
 
2657
        ret = rmdir(tempdir);
 
 
2658
        if(ret == -1 and errno != ENOENT){
 
 
2659
          perror_plus("rmdir");
 
2506
 
    /* need to clean even if 0 because man page doesn't specify */
 
2508
 
    if (numentries == -1){
 
2509
 
      perror_plus("scandir");
 
2511
 
    ret = rmdir(tempdir);
 
2512
 
    if(ret == -1 and errno != ENOENT){
 
2513
 
      perror_plus("rmdir");
 
 
2662
      TEMP_FAILURE_RETRY(close(tempdir_fd));