/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: 2014-03-29 02:38:15 UTC
  • Revision ID: teddy@recompile.se-20140329023815-bpgxi9v4ikrlcpst
Update copyright year.

* mandos-keygen: Update copyright year.
* plugin-runner.c: - '' -
* plugins.d/askpass-fifo.c: - '' -
* plugins.d/mandos-client.c: - '' -
* plugins.d/password-prompt.c: - '' -
* plugins.d/plymouth.c: - '' -
* plugins.d/splashy.c: - '' -
* plugins.d/usplash.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
33
#ifndef _LARGEFILE_SOURCE
34
34
#define _LARGEFILE_SOURCE
35
 
#endif  /* not _LARGEFILE_SOURCE */
 
35
#endif
36
36
#ifndef _FILE_OFFSET_BITS
37
37
#define _FILE_OFFSET_BITS 64
38
 
#endif  /* not _FILE_OFFSET_BITS */
 
38
#endif
39
39
 
40
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
 
                                   stdout, ferror() */
 
43
                                   stdout, ferror(), remove() */
44
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(),
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
58
                                   inet_pton(), connect(),
59
59
                                   getnameinfo() */
60
 
#include <fcntl.h>              /* open(), unlinkat() */
 
60
#include <fcntl.h>              /* open() */
61
61
#include <dirent.h>             /* opendir(), struct dirent, readdir()
62
62
                                 */
63
63
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
73
73
                                */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause(), _exit(),
77
 
                                   unlinkat() */
 
76
                                   setgid(), pause(), _exit() */
78
77
#include <arpa/inet.h>          /* inet_pton(), htons() */
79
78
#include <iso646.h>             /* not, or, and */
80
79
#include <argp.h>               /* struct argp_option, error_t, struct
137
136
 
138
137
bool debug = false;
139
138
static const char mandos_protocol_version[] = "1";
140
 
const char *argp_program_version = "mandos-client " VERSION;
141
 
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
139
const char * argp_program_version = "mandos-client " VERSION;
 
140
const char * argp_program_bug_address = "<mandos@recompile.se>";
142
141
static const char sys_class_net[] = "/sys/class/net";
143
142
char *connect_to = NULL;
144
143
const char *hookdir = HOOKDIR;
145
 
int hookdir_fd = -1;
146
144
uid_t uid = 65534;
147
145
gid_t gid = 65534;
148
146
 
234
232
                          .af = af };
235
233
  if(new_server->ip == NULL){
236
234
    perror_plus("strdup");
237
 
    free(new_server);
238
235
    return false;
239
236
  }
240
237
  ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
241
238
  if(ret == -1){
242
239
    perror_plus("clock_gettime");
243
 
#ifdef __GNUC__
244
 
#pragma GCC diagnostic push
245
 
#pragma GCC diagnostic ignored "-Wcast-qual"
246
 
#endif
247
 
    free((char *)(new_server->ip));
248
 
#ifdef __GNUC__
249
 
#pragma GCC diagnostic pop
250
 
#endif
251
 
    free(new_server);
252
240
    return false;
253
241
  }
254
242
  /* Special case of first server */
493
481
  return plaintext_length;
494
482
}
495
483
 
496
 
__attribute__((warn_unused_result, const))
497
 
static const char *safe_string(const char *str){
498
 
  if(str == NULL)
499
 
    return "(unknown)";
500
 
  return str;
501
 
}
502
 
 
503
484
__attribute__((warn_unused_result))
504
485
static const char *safer_gnutls_strerror(int value){
505
486
  const char *ret = gnutls_strerror(value);
506
 
  return safe_string(ret);
 
487
  if(ret == NULL)
 
488
    ret = "(unknown)";
 
489
  return ret;
507
490
}
508
491
 
509
492
/* GnuTLS log function callback */
518
501
                              const char *seckeyfilename,
519
502
                              mandos_context *mc){
520
503
  int ret;
521
 
  unsigned int uret;
522
504
  
523
505
  if(debug){
524
506
    fprintf_plus(stderr, "Initializing GnuTLS\n");
575
557
                 safer_gnutls_strerror(ret));
576
558
    goto globalfail;
577
559
  }
578
 
  if(mc->dh_bits == 0){
579
 
    /* Find out the optimal number of DH bits */
580
 
    /* Try to read the private key file */
581
 
    gnutls_datum_t buffer = { .data = NULL, .size = 0 };
582
 
    {
583
 
      int secfile = open(seckeyfilename, O_RDONLY);
584
 
      size_t buffer_capacity = 0;
585
 
      while(true){
586
 
        buffer_capacity = incbuffer((char **)&buffer.data,
587
 
                                    (size_t)buffer.size,
588
 
                                    (size_t)buffer_capacity);
589
 
        if(buffer_capacity == 0){
590
 
          perror_plus("incbuffer");
591
 
          free(buffer.data);
592
 
          buffer.data = NULL;
593
 
          break;
594
 
        }
595
 
        ssize_t bytes_read = read(secfile, buffer.data + buffer.size,
596
 
                                  BUFFER_SIZE);
597
 
        /* EOF */
598
 
        if(bytes_read == 0){
599
 
          break;
600
 
        }
601
 
        /* check bytes_read for failure */
602
 
        if(bytes_read < 0){
603
 
          perror_plus("read");
604
 
          free(buffer.data);
605
 
          buffer.data = NULL;
606
 
          break;
607
 
        }
608
 
        buffer.size += (unsigned int)bytes_read;
609
 
      }
610
 
      close(secfile);
611
 
    }
612
 
    /* If successful, use buffer to parse private key */
613
 
    gnutls_sec_param_t sec_param = GNUTLS_SEC_PARAM_ULTRA;
614
 
    if(buffer.data != NULL){
615
 
      {
616
 
        gnutls_openpgp_privkey_t privkey = NULL;
617
 
        ret = gnutls_openpgp_privkey_init(&privkey);
618
 
        if(ret != GNUTLS_E_SUCCESS){
619
 
          fprintf_plus(stderr, "Error initializing OpenPGP key"
620
 
                       " structure: %s", safer_gnutls_strerror(ret));
621
 
          free(buffer.data);
622
 
          buffer.data = NULL;
623
 
        } else {
624
 
          ret = gnutls_openpgp_privkey_import(privkey, &buffer,
625
 
                                            GNUTLS_OPENPGP_FMT_BASE64,
626
 
                                              "", 0);
627
 
          if(ret != GNUTLS_E_SUCCESS){
628
 
            fprintf_plus(stderr, "Error importing OpenPGP key : %s",
629
 
                         safer_gnutls_strerror(ret));
630
 
            privkey = NULL;
631
 
          }
632
 
          free(buffer.data);
633
 
          buffer.data = NULL;
634
 
          if(privkey != NULL){
635
 
            /* Use private key to suggest an appropriate sec_param */
636
 
            sec_param = gnutls_openpgp_privkey_sec_param(privkey);
637
 
            gnutls_openpgp_privkey_deinit(privkey);
638
 
            if(debug){
639
 
              fprintf_plus(stderr, "This OpenPGP key implies using a"
640
 
                           " GnuTLS security parameter \"%s\".\n",
641
 
                           safe_string(gnutls_sec_param_get_name
642
 
                                       (sec_param)));
643
 
            }
644
 
          }
645
 
        }
646
 
      }
647
 
      if(sec_param == GNUTLS_SEC_PARAM_UNKNOWN){
648
 
        /* Err on the side of caution */
649
 
        sec_param = GNUTLS_SEC_PARAM_ULTRA;
650
 
        if(debug){
651
 
          fprintf_plus(stderr, "Falling back to security parameter"
652
 
                       " \"%s\"\n",
653
 
                       safe_string(gnutls_sec_param_get_name
654
 
                                   (sec_param)));
655
 
        }
656
 
      }
657
 
    }
658
 
    uret = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, sec_param);
659
 
    if(uret != 0){
660
 
      mc->dh_bits = uret;
661
 
      if(debug){
662
 
        fprintf_plus(stderr, "A \"%s\" GnuTLS security parameter"
663
 
                     " implies %u DH bits; using that.\n",
664
 
                     safe_string(gnutls_sec_param_get_name
665
 
                                 (sec_param)),
666
 
                     mc->dh_bits);
667
 
      }
668
 
    } else {
669
 
      fprintf_plus(stderr, "Failed to get implied number of DH"
670
 
                   " bits for security parameter \"%s\"): %s\n",
671
 
                   safe_string(gnutls_sec_param_get_name(sec_param)),
672
 
                   safer_gnutls_strerror(ret));
673
 
      goto globalfail;
674
 
    }
675
 
  } else if(debug){
676
 
    fprintf_plus(stderr, "DH bits explicitly set to %u\n",
677
 
                 mc->dh_bits);
678
 
  }
679
560
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
680
561
  if(ret != GNUTLS_E_SUCCESS){
681
 
    fprintf_plus(stderr, "Error in GnuTLS prime generation (%u bits):"
682
 
                 " %s\n", mc->dh_bits, safer_gnutls_strerror(ret));
 
562
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
563
                 safer_gnutls_strerror(ret));
683
564
    goto globalfail;
684
565
  }
685
566
  
1183
1064
     timed out */
1184
1065
  
1185
1066
  if(quit_now){
1186
 
    avahi_s_service_resolver_free(r);
1187
1067
    return;
1188
1068
  }
1189
1069
  
1455
1335
  sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1456
1336
                "abcdefghijklmnopqrstuvwxyz"
1457
1337
                "0123456789"
1458
 
                "_.-");
 
1338
                "_-");
1459
1339
  if((direntry->d_name)[sret] != '\0'){
1460
1340
    /* Contains non-allowed characters */
1461
1341
    if(debug){
1465
1345
    return 0;
1466
1346
  }
1467
1347
  
1468
 
  ret = fstatat(hookdir_fd, direntry->d_name, &st, 0);
 
1348
  char *fullname = NULL;
 
1349
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1350
  if(ret < 0){
 
1351
    perror_plus("asprintf");
 
1352
    return 0;
 
1353
  }
 
1354
  
 
1355
  ret = stat(fullname, &st);
1469
1356
  if(ret == -1){
1470
1357
    if(debug){
1471
1358
      perror_plus("Could not stat hook");
1576
1463
  error_t ret_errno = 0;
1577
1464
  if(seteuid(0) == -1){
1578
1465
    ret_errno = errno;
 
1466
    perror_plus("seteuid");
1579
1467
  }
1580
1468
  errno = old_errno;
1581
1469
  return ret_errno;
1592
1480
  }
1593
1481
  if(setuid(0) == -1){
1594
1482
    ret_errno = errno;
 
1483
    perror_plus("seteuid");
1595
1484
  }
1596
1485
  errno = old_errno;
1597
1486
  return ret_errno;
1604
1493
  error_t ret_errno = 0;
1605
1494
  if(seteuid(uid) == -1){
1606
1495
    ret_errno = errno;
 
1496
    perror_plus("seteuid");
1607
1497
  }
1608
1498
  errno = old_errno;
1609
1499
  return ret_errno;
1616
1506
  error_t ret_errno = 0;
1617
1507
  if(setuid(uid) == -1){
1618
1508
    ret_errno = errno;
 
1509
    perror_plus("setuid");
1619
1510
  }
1620
1511
  errno = old_errno;
1621
1512
  return ret_errno;
1624
1515
__attribute__((nonnull))
1625
1516
void run_network_hooks(const char *mode, const char *interface,
1626
1517
                       const float delay){
1627
 
  struct dirent **direntries = NULL;
1628
 
  if(hookdir_fd == -1){
1629
 
    hookdir_fd = open(hookdir, O_RDONLY);
1630
 
    if(hookdir_fd == -1){
1631
 
      if(errno == ENOENT){
1632
 
        if(debug){
1633
 
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
1634
 
                       " found\n", hookdir);
1635
 
        }
1636
 
      } else {
1637
 
        perror_plus("open");
1638
 
      }
1639
 
      return;
1640
 
    }
1641
 
  }
1642
 
#ifdef __GLIBC__
1643
 
#if __GLIBC_PREREQ(2, 15)
1644
 
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
1645
 
                           runnable_hook, alphasort);
1646
 
#else  /* not __GLIBC_PREREQ(2, 15) */
1647
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1648
 
                         alphasort);
1649
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
1650
 
#else   /* not __GLIBC__ */
1651
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1652
 
                         alphasort);
1653
 
#endif  /* not __GLIBC__ */
 
1518
  struct dirent **direntries;
 
1519
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1520
                         alphasort);
1654
1521
  if(numhooks == -1){
1655
 
    perror_plus("scandir");
1656
 
    return;
1657
 
  }
1658
 
  struct dirent *direntry;
1659
 
  int ret;
1660
 
  int devnull = open("/dev/null", O_RDONLY);
1661
 
  for(int i = 0; i < numhooks; i++){
1662
 
    direntry = direntries[i];
1663
 
    if(debug){
1664
 
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
1665
 
                   direntry->d_name);
 
1522
    if(errno == ENOENT){
 
1523
      if(debug){
 
1524
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1525
                     " found\n", hookdir);
 
1526
      }
 
1527
    } else {
 
1528
      perror_plus("scandir");
1666
1529
    }
1667
 
    pid_t hook_pid = fork();
1668
 
    if(hook_pid == 0){
1669
 
      /* Child */
1670
 
      /* Raise privileges */
1671
 
      errno = raise_privileges_permanently();
1672
 
      if(errno != 0){
1673
 
        perror_plus("Failed to raise privileges");
1674
 
        _exit(EX_NOPERM);
1675
 
      }
1676
 
      /* Set group */
1677
 
      errno = 0;
1678
 
      ret = setgid(0);
1679
 
      if(ret == -1){
1680
 
        perror_plus("setgid");
1681
 
        _exit(EX_NOPERM);
1682
 
      }
1683
 
      /* Reset supplementary groups */
1684
 
      errno = 0;
1685
 
      ret = setgroups(0, NULL);
1686
 
      if(ret == -1){
1687
 
        perror_plus("setgroups");
1688
 
        _exit(EX_NOPERM);
1689
 
      }
1690
 
      ret = dup2(devnull, STDIN_FILENO);
1691
 
      if(ret == -1){
1692
 
        perror_plus("dup2(devnull, STDIN_FILENO)");
1693
 
        _exit(EX_OSERR);
1694
 
      }
1695
 
      ret = close(devnull);
1696
 
      if(ret == -1){
1697
 
        perror_plus("close");
1698
 
        _exit(EX_OSERR);
1699
 
      }
1700
 
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1701
 
      if(ret == -1){
1702
 
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1703
 
        _exit(EX_OSERR);
1704
 
      }
1705
 
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1706
 
      if(ret == -1){
1707
 
        perror_plus("setenv");
1708
 
        _exit(EX_OSERR);
1709
 
      }
1710
 
      ret = setenv("DEVICE", interface, 1);
1711
 
      if(ret == -1){
1712
 
        perror_plus("setenv");
1713
 
        _exit(EX_OSERR);
1714
 
      }
1715
 
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1716
 
      if(ret == -1){
1717
 
        perror_plus("setenv");
1718
 
        _exit(EX_OSERR);
1719
 
      }
1720
 
      ret = setenv("MODE", mode, 1);
1721
 
      if(ret == -1){
1722
 
        perror_plus("setenv");
1723
 
        _exit(EX_OSERR);
1724
 
      }
1725
 
      char *delaystring;
1726
 
      ret = asprintf(&delaystring, "%f", (double)delay);
1727
 
      if(ret == -1){
 
1530
  } else {
 
1531
    struct dirent *direntry;
 
1532
    int ret;
 
1533
    int devnull = open("/dev/null", O_RDONLY);
 
1534
    for(int i = 0; i < numhooks; i++){
 
1535
      direntry = direntries[i];
 
1536
      char *fullname = NULL;
 
1537
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1538
      if(ret < 0){
1728
1539
        perror_plus("asprintf");
1729
 
        _exit(EX_OSERR);
1730
 
      }
1731
 
      ret = setenv("DELAY", delaystring, 1);
1732
 
      if(ret == -1){
 
1540
        continue;
 
1541
      }
 
1542
      if(debug){
 
1543
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1544
                     direntry->d_name);
 
1545
      }
 
1546
      pid_t hook_pid = fork();
 
1547
      if(hook_pid == 0){
 
1548
        /* Child */
 
1549
        /* Raise privileges */
 
1550
        if(raise_privileges_permanently() != 0){
 
1551
          perror_plus("Failed to raise privileges");
 
1552
          _exit(EX_NOPERM);
 
1553
        }
 
1554
        /* Set group */
 
1555
        errno = 0;
 
1556
        ret = setgid(0);
 
1557
        if(ret == -1){
 
1558
          perror_plus("setgid");
 
1559
          _exit(EX_NOPERM);
 
1560
        }
 
1561
        /* Reset supplementary groups */
 
1562
        errno = 0;
 
1563
        ret = setgroups(0, NULL);
 
1564
        if(ret == -1){
 
1565
          perror_plus("setgroups");
 
1566
          _exit(EX_NOPERM);
 
1567
        }
 
1568
        ret = dup2(devnull, STDIN_FILENO);
 
1569
        if(ret == -1){
 
1570
          perror_plus("dup2(devnull, STDIN_FILENO)");
 
1571
          _exit(EX_OSERR);
 
1572
        }
 
1573
        ret = close(devnull);
 
1574
        if(ret == -1){
 
1575
          perror_plus("close");
 
1576
          _exit(EX_OSERR);
 
1577
        }
 
1578
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1579
        if(ret == -1){
 
1580
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1581
          _exit(EX_OSERR);
 
1582
        }
 
1583
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1584
        if(ret == -1){
 
1585
          perror_plus("setenv");
 
1586
          _exit(EX_OSERR);
 
1587
        }
 
1588
        ret = setenv("DEVICE", interface, 1);
 
1589
        if(ret == -1){
 
1590
          perror_plus("setenv");
 
1591
          _exit(EX_OSERR);
 
1592
        }
 
1593
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1594
        if(ret == -1){
 
1595
          perror_plus("setenv");
 
1596
          _exit(EX_OSERR);
 
1597
        }
 
1598
        ret = setenv("MODE", mode, 1);
 
1599
        if(ret == -1){
 
1600
          perror_plus("setenv");
 
1601
          _exit(EX_OSERR);
 
1602
        }
 
1603
        char *delaystring;
 
1604
        ret = asprintf(&delaystring, "%f", (double)delay);
 
1605
        if(ret == -1){
 
1606
          perror_plus("asprintf");
 
1607
          _exit(EX_OSERR);
 
1608
        }
 
1609
        ret = setenv("DELAY", delaystring, 1);
 
1610
        if(ret == -1){
 
1611
          free(delaystring);
 
1612
          perror_plus("setenv");
 
1613
          _exit(EX_OSERR);
 
1614
        }
1733
1615
        free(delaystring);
1734
 
        perror_plus("setenv");
1735
 
        _exit(EX_OSERR);
1736
 
      }
1737
 
      free(delaystring);
1738
 
      if(connect_to != NULL){
1739
 
        ret = setenv("CONNECT", connect_to, 1);
1740
 
        if(ret == -1){
1741
 
          perror_plus("setenv");
1742
 
          _exit(EX_OSERR);
1743
 
        }
1744
 
      }
1745
 
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
1746
 
      if(hook_fd == -1){
1747
 
        perror_plus("openat");
1748
 
        _exit(EXIT_FAILURE);
1749
 
      }
1750
 
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1751
 
        perror_plus("close");
1752
 
        _exit(EXIT_FAILURE);
1753
 
      }
1754
 
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
1755
 
                 environ) == -1){
1756
 
        perror_plus("fexecve");
1757
 
        _exit(EXIT_FAILURE);
1758
 
      }
1759
 
    } else {
1760
 
      if(hook_pid == -1){
1761
 
        perror_plus("fork");
1762
 
        free(direntry);
1763
 
        continue;
1764
 
      }
1765
 
      int status;
1766
 
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1767
 
        perror_plus("waitpid");
1768
 
        free(direntry);
1769
 
        continue;
1770
 
      }
1771
 
      if(WIFEXITED(status)){
1772
 
        if(WEXITSTATUS(status) != 0){
1773
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1774
 
                       " with status %d\n", direntry->d_name,
1775
 
                       WEXITSTATUS(status));
1776
 
          free(direntry);
1777
 
          continue;
1778
 
        }
1779
 
      } else if(WIFSIGNALED(status)){
1780
 
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1781
 
                     " signal %d\n", direntry->d_name,
1782
 
                     WTERMSIG(status));
1783
 
        free(direntry);
1784
 
        continue;
 
1616
        if(connect_to != NULL){
 
1617
          ret = setenv("CONNECT", connect_to, 1);
 
1618
          if(ret == -1){
 
1619
            perror_plus("setenv");
 
1620
            _exit(EX_OSERR);
 
1621
          }
 
1622
        }
 
1623
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1624
          perror_plus("execl");
 
1625
          _exit(EXIT_FAILURE);
 
1626
        }
1785
1627
      } else {
1786
 
        fprintf_plus(stderr, "Warning: network hook \"%s\""
1787
 
                     " crashed\n", direntry->d_name);
1788
 
        free(direntry);
1789
 
        continue;
1790
 
      }
1791
 
    }
1792
 
    if(debug){
1793
 
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1794
 
                   direntry->d_name);
1795
 
    }
1796
 
    free(direntry);
1797
 
  }
1798
 
  free(direntries);
1799
 
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1800
 
    perror_plus("close");
1801
 
  } else {
1802
 
    hookdir_fd = -1;
1803
 
  }
1804
 
  close(devnull);
 
1628
        int status;
 
1629
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1630
          perror_plus("waitpid");
 
1631
          free(fullname);
 
1632
          continue;
 
1633
        }
 
1634
        if(WIFEXITED(status)){
 
1635
          if(WEXITSTATUS(status) != 0){
 
1636
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1637
                         " with status %d\n", direntry->d_name,
 
1638
                         WEXITSTATUS(status));
 
1639
            free(fullname);
 
1640
            continue;
 
1641
          }
 
1642
        } else if(WIFSIGNALED(status)){
 
1643
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1644
                       " signal %d\n", direntry->d_name,
 
1645
                       WTERMSIG(status));
 
1646
          free(fullname);
 
1647
          continue;
 
1648
        } else {
 
1649
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1650
                       " crashed\n", direntry->d_name);
 
1651
          free(fullname);
 
1652
          continue;
 
1653
        }
 
1654
      }
 
1655
      free(fullname);
 
1656
      if(debug){
 
1657
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1658
                     direntry->d_name);
 
1659
      }
 
1660
    }
 
1661
    close(devnull);
 
1662
  }
1805
1663
}
1806
1664
 
1807
1665
__attribute__((nonnull, warn_unused_result))
1857
1715
    
1858
1716
    /* Raise privileges */
1859
1717
    ret_errno = raise_privileges();
 
1718
    bool restore_loglevel = false;
1860
1719
    if(ret_errno != 0){
1861
 
      errno = ret_errno;
1862
1720
      perror_plus("Failed to raise privileges");
1863
1721
    }
1864
 
    
1865
1722
#ifdef __linux__
1866
1723
    int ret_linux;
1867
 
    bool restore_loglevel = false;
1868
1724
    if(ret_errno == 0){
1869
1725
      /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1870
1726
         messages about the network interface to mess up the prompt */
1968
1824
    /* Raise privileges */
1969
1825
    ret_errno = raise_privileges();
1970
1826
    if(ret_errno != 0){
1971
 
      errno = ret_errno;
1972
1827
      perror_plus("Failed to raise privileges");
1973
1828
    }
1974
 
    
1975
1829
    int ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1976
1830
    ioctl_errno = errno;
1977
1831
    
2007
1861
}
2008
1862
 
2009
1863
int main(int argc, char *argv[]){
2010
 
  mandos_context mc = { .server = NULL, .dh_bits = 0,
 
1864
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
2011
1865
                        .priority = "SECURE256:!CTYPE-X.509:"
2012
 
                        "+CTYPE-OPENPGP:!RSA", .current_server = NULL,
 
1866
                        "+CTYPE-OPENPGP", .current_server = NULL,
2013
1867
                        .interfaces = NULL, .interfaces_size = 0 };
2014
1868
  AvahiSServiceBrowser *sb = NULL;
2015
1869
  error_t ret_errno;
2381
2235
  
2382
2236
  /* If no interfaces were specified, make a list */
2383
2237
  if(mc.interfaces == NULL){
2384
 
    struct dirent **direntries = NULL;
 
2238
    struct dirent **direntries;
2385
2239
    /* Look for any good interfaces */
2386
2240
    ret = scandir(sys_class_net, &direntries, good_interface,
2387
2241
                  alphasort);
2393
2247
        if(ret_errno != 0){
2394
2248
          errno = ret_errno;
2395
2249
          perror_plus("argz_add");
2396
 
          free(direntries[i]);
2397
2250
          continue;
2398
2251
        }
2399
2252
        if(debug){
2400
2253
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
2401
2254
                       direntries[i]->d_name);
2402
2255
        }
2403
 
        free(direntries[i]);
2404
2256
      }
2405
2257
      free(direntries);
2406
2258
    } else {
2407
 
      if(ret == 0){
2408
 
        free(direntries);
2409
 
      }
 
2259
      free(direntries);
2410
2260
      fprintf_plus(stderr, "Could not find a network interface\n");
2411
2261
      exitcode = EXIT_FAILURE;
2412
2262
      goto end;
2634
2484
  if(debug){
2635
2485
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2636
2486
  }
2637
 
  
 
2487
 
2638
2488
  ret = avahi_loop_with_timeout(simple_poll,
2639
2489
                                (int)(retry_interval * 1000), &mc);
2640
2490
  if(debug){
2676
2526
    mc.current_server->prev->next = NULL;
2677
2527
    while(mc.current_server != NULL){
2678
2528
      server *next = mc.current_server->next;
2679
 
#ifdef __GNUC__
2680
 
#pragma GCC diagnostic push
2681
 
#pragma GCC diagnostic ignored "-Wcast-qual"
2682
 
#endif
2683
 
      free((char *)(mc.current_server->ip));
2684
 
#ifdef __GNUC__
2685
 
#pragma GCC diagnostic pop
2686
 
#endif
2687
2529
      free(mc.current_server);
2688
2530
      mc.current_server = next;
2689
2531
    }
2693
2535
  {
2694
2536
    ret_errno = raise_privileges();
2695
2537
    if(ret_errno != 0){
2696
 
      errno = ret_errno;
2697
2538
      perror_plus("Failed to raise privileges");
2698
2539
    } else {
2699
2540
      
2719
2560
        }
2720
2561
      }
2721
2562
    }
2722
 
    
2723
2563
    ret_errno = lower_privileges_permanently();
2724
2564
    if(ret_errno != 0){
2725
 
      errno = ret_errno;
2726
2565
      perror_plus("Failed to lower privileges permanently");
2727
2566
    }
2728
2567
  }
2733
2572
  /* Removes the GPGME temp directory and all files inside */
2734
2573
  if(tempdir != NULL){
2735
2574
    struct dirent **direntries = NULL;
2736
 
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
2737
 
                                                  O_NOFOLLOW));
2738
 
    if(tempdir_fd == -1){
2739
 
      perror_plus("open");
2740
 
    } else {
2741
 
#ifdef __GLIBC__
2742
 
#if __GLIBC_PREREQ(2, 15)
2743
 
      int numentries = scandirat(tempdir_fd, ".", &direntries,
2744
 
                                 notdotentries, alphasort);
2745
 
#else  /* not __GLIBC_PREREQ(2, 15) */
2746
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
2747
 
                               alphasort);
2748
 
#endif  /* not __GLIBC_PREREQ(2, 15) */
2749
 
#else   /* not __GLIBC__ */
2750
 
      int numentries = scandir(tempdir, &direntries, notdotentries,
2751
 
                               alphasort);
2752
 
#endif  /* not __GLIBC__ */
2753
 
      if(numentries >= 0){
2754
 
        for(int i = 0; i < numentries; i++){
2755
 
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
2756
 
          if(ret == -1){
2757
 
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
2758
 
                         " \"%s\", 0): %s\n", tempdir,
2759
 
                         direntries[i]->d_name, strerror(errno));
2760
 
          }
2761
 
          free(direntries[i]);
2762
 
        }
2763
 
        
2764
 
        /* need to clean even if 0 because man page doesn't specify */
2765
 
        free(direntries);
2766
 
        if(numentries == -1){
2767
 
          perror_plus("scandir");
2768
 
        }
2769
 
        ret = rmdir(tempdir);
2770
 
        if(ret == -1 and errno != ENOENT){
2771
 
          perror_plus("rmdir");
2772
 
        }
 
2575
    struct dirent *direntry = NULL;
 
2576
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2577
                             alphasort);
 
2578
    if(numentries > 0){
 
2579
      for(int i = 0; i < numentries; i++){
 
2580
        direntry = direntries[i];
 
2581
        char *fullname = NULL;
 
2582
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
2583
                       direntry->d_name);
 
2584
        if(ret < 0){
 
2585
          perror_plus("asprintf");
 
2586
          continue;
 
2587
        }
 
2588
        ret = remove(fullname);
 
2589
        if(ret == -1){
 
2590
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2591
                       strerror(errno));
 
2592
        }
 
2593
        free(fullname);
2773
2594
      }
2774
 
      TEMP_FAILURE_RETRY(close(tempdir_fd));
 
2595
    }
 
2596
 
 
2597
    /* need to clean even if 0 because man page doesn't specify */
 
2598
    free(direntries);
 
2599
    if(numentries == -1){
 
2600
      perror_plus("scandir");
 
2601
    }
 
2602
    ret = rmdir(tempdir);
 
2603
    if(ret == -1 and errno != ENOENT){
 
2604
      perror_plus("rmdir");
2775
2605
    }
2776
2606
  }
2777
2607