/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-06-15 02:48:49 UTC
  • Revision ID: teddy@recompile.se-20140615024849-68x3q8g4yzadl33s
mandos: New "--no-zeroconf" option.  Also make "--socket=0" work.

* mandos (main): New "--no-zeroconf" option.  Also do not interpret
                 socket=0 as no socket.
* mandos-options.xml (zeroconf): New.
* mandos.conf (socket, zeroconf): New.
* mandos.xml (SYNOPSIS, OPTIONS): Added "--no-zeroconf".

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
 
35
#endif  /* not _LARGEFILE_SOURCE */
36
36
#ifndef _FILE_OFFSET_BITS
37
37
#define _FILE_OFFSET_BITS 64
38
 
#endif
 
38
#endif  /* not _FILE_OFFSET_BITS */
39
39
 
40
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
 
                                   stdout, ferror(), remove() */
 
43
                                   stdout, ferror() */
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() */
 
60
#include <fcntl.h>              /* open(), unlinkat() */
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() */
 
76
                                   setgid(), pause(), _exit(),
 
77
                                   unlinkat() */
77
78
#include <arpa/inet.h>          /* inet_pton(), htons() */
78
79
#include <iso646.h>             /* not, or, and */
79
80
#include <argp.h>               /* struct argp_option, error_t, struct
141
142
static const char sys_class_net[] = "/sys/class/net";
142
143
char *connect_to = NULL;
143
144
const char *hookdir = HOOKDIR;
 
145
int hookdir_fd = -1;
144
146
uid_t uid = 65534;
145
147
gid_t gid = 65534;
146
148
 
1345
1347
    return 0;
1346
1348
  }
1347
1349
  
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);
 
1350
  ret = fstatat(hookdir_fd, direntry->d_name, &st, 0);
1356
1351
  if(ret == -1){
1357
1352
    if(debug){
1358
1353
      perror_plus("Could not stat hook");
1359
1354
    }
1360
1355
    return 0;
1361
1356
  }
1362
 
  free(fullname);
1363
1357
  if(not (S_ISREG(st.st_mode))){
1364
1358
    /* Not a regular file */
1365
1359
    if(debug){
1464
1458
  error_t ret_errno = 0;
1465
1459
  if(seteuid(0) == -1){
1466
1460
    ret_errno = errno;
1467
 
    perror_plus("seteuid");
1468
1461
  }
1469
1462
  errno = old_errno;
1470
1463
  return ret_errno;
1481
1474
  }
1482
1475
  if(setuid(0) == -1){
1483
1476
    ret_errno = errno;
1484
 
    perror_plus("seteuid");
1485
1477
  }
1486
1478
  errno = old_errno;
1487
1479
  return ret_errno;
1494
1486
  error_t ret_errno = 0;
1495
1487
  if(seteuid(uid) == -1){
1496
1488
    ret_errno = errno;
1497
 
    perror_plus("seteuid");
1498
1489
  }
1499
1490
  errno = old_errno;
1500
1491
  return ret_errno;
1507
1498
  error_t ret_errno = 0;
1508
1499
  if(setuid(uid) == -1){
1509
1500
    ret_errno = errno;
1510
 
    perror_plus("setuid");
1511
1501
  }
1512
1502
  errno = old_errno;
1513
1503
  return ret_errno;
1516
1506
__attribute__((nonnull))
1517
1507
void run_network_hooks(const char *mode, const char *interface,
1518
1508
                       const float delay){
1519
 
  struct dirent **direntries;
1520
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1521
 
                         alphasort);
 
1509
  struct dirent **direntries = NULL;
 
1510
  if(hookdir_fd == -1){
 
1511
    hookdir_fd = open(hookdir, O_RDONLY);
 
1512
    if(hookdir_fd == -1){
 
1513
      if(errno == ENOENT){
 
1514
        if(debug){
 
1515
          fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1516
                       " found\n", hookdir);
 
1517
        }
 
1518
      } else {
 
1519
        perror_plus("open");
 
1520
      }
 
1521
      return;
 
1522
    }
 
1523
  }
 
1524
#ifdef __GLIBC__
 
1525
#if __GLIBC_PREREQ(2, 15)
 
1526
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
 
1527
                           runnable_hook, alphasort);
 
1528
#else  /* not __GLIBC_PREREQ(2, 15) */
 
1529
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1530
                         alphasort);
 
1531
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
1532
#else   /* not __GLIBC__ */
 
1533
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1534
                         alphasort);
 
1535
#endif  /* not __GLIBC__ */
1522
1536
  if(numhooks == -1){
1523
 
    if(errno == ENOENT){
1524
 
      if(debug){
1525
 
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
1526
 
                     " found\n", hookdir);
1527
 
      }
1528
 
    } else {
1529
 
      perror_plus("scandir");
 
1537
    perror_plus("scandir");
 
1538
    return;
 
1539
  }
 
1540
  struct dirent *direntry;
 
1541
  int ret;
 
1542
  int devnull = open("/dev/null", O_RDONLY);
 
1543
  for(int i = 0; i < numhooks; i++){
 
1544
    direntry = direntries[i];
 
1545
    if(debug){
 
1546
      fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1547
                   direntry->d_name);
1530
1548
    }
1531
 
  } else {
1532
 
    struct dirent *direntry;
1533
 
    int ret;
1534
 
    int devnull = open("/dev/null", O_RDONLY);
1535
 
    for(int i = 0; i < numhooks; i++){
1536
 
      direntry = direntries[i];
1537
 
      char *fullname = NULL;
1538
 
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1539
 
      if(ret < 0){
 
1549
    pid_t hook_pid = fork();
 
1550
    if(hook_pid == 0){
 
1551
      /* Child */
 
1552
      /* Raise privileges */
 
1553
      errno = raise_privileges_permanently();
 
1554
      if(errno != 0){
 
1555
        perror_plus("Failed to raise privileges");
 
1556
        _exit(EX_NOPERM);
 
1557
      }
 
1558
      /* Set group */
 
1559
      errno = 0;
 
1560
      ret = setgid(0);
 
1561
      if(ret == -1){
 
1562
        perror_plus("setgid");
 
1563
        _exit(EX_NOPERM);
 
1564
      }
 
1565
      /* Reset supplementary groups */
 
1566
      errno = 0;
 
1567
      ret = setgroups(0, NULL);
 
1568
      if(ret == -1){
 
1569
        perror_plus("setgroups");
 
1570
        _exit(EX_NOPERM);
 
1571
      }
 
1572
      ret = dup2(devnull, STDIN_FILENO);
 
1573
      if(ret == -1){
 
1574
        perror_plus("dup2(devnull, STDIN_FILENO)");
 
1575
        _exit(EX_OSERR);
 
1576
      }
 
1577
      ret = close(devnull);
 
1578
      if(ret == -1){
 
1579
        perror_plus("close");
 
1580
        _exit(EX_OSERR);
 
1581
      }
 
1582
      ret = dup2(STDERR_FILENO, STDOUT_FILENO);
 
1583
      if(ret == -1){
 
1584
        perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
 
1585
        _exit(EX_OSERR);
 
1586
      }
 
1587
      ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1588
      if(ret == -1){
 
1589
        perror_plus("setenv");
 
1590
        _exit(EX_OSERR);
 
1591
      }
 
1592
      ret = setenv("DEVICE", interface, 1);
 
1593
      if(ret == -1){
 
1594
        perror_plus("setenv");
 
1595
        _exit(EX_OSERR);
 
1596
      }
 
1597
      ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1598
      if(ret == -1){
 
1599
        perror_plus("setenv");
 
1600
        _exit(EX_OSERR);
 
1601
      }
 
1602
      ret = setenv("MODE", mode, 1);
 
1603
      if(ret == -1){
 
1604
        perror_plus("setenv");
 
1605
        _exit(EX_OSERR);
 
1606
      }
 
1607
      char *delaystring;
 
1608
      ret = asprintf(&delaystring, "%f", (double)delay);
 
1609
      if(ret == -1){
1540
1610
        perror_plus("asprintf");
1541
 
        continue;
1542
 
      }
1543
 
      if(debug){
1544
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
1545
 
                     direntry->d_name);
1546
 
      }
1547
 
      pid_t hook_pid = fork();
1548
 
      if(hook_pid == 0){
1549
 
        /* Child */
1550
 
        /* Raise privileges */
1551
 
        if(raise_privileges_permanently() != 0){
1552
 
          perror_plus("Failed to raise privileges");
1553
 
          _exit(EX_NOPERM);
1554
 
        }
1555
 
        /* Set group */
1556
 
        errno = 0;
1557
 
        ret = setgid(0);
1558
 
        if(ret == -1){
1559
 
          perror_plus("setgid");
1560
 
          _exit(EX_NOPERM);
1561
 
        }
1562
 
        /* Reset supplementary groups */
1563
 
        errno = 0;
1564
 
        ret = setgroups(0, NULL);
1565
 
        if(ret == -1){
1566
 
          perror_plus("setgroups");
1567
 
          _exit(EX_NOPERM);
1568
 
        }
1569
 
        ret = dup2(devnull, STDIN_FILENO);
1570
 
        if(ret == -1){
1571
 
          perror_plus("dup2(devnull, STDIN_FILENO)");
1572
 
          _exit(EX_OSERR);
1573
 
        }
1574
 
        ret = close(devnull);
1575
 
        if(ret == -1){
1576
 
          perror_plus("close");
1577
 
          _exit(EX_OSERR);
1578
 
        }
1579
 
        ret = dup2(STDERR_FILENO, STDOUT_FILENO);
1580
 
        if(ret == -1){
1581
 
          perror_plus("dup2(STDERR_FILENO, STDOUT_FILENO)");
1582
 
          _exit(EX_OSERR);
1583
 
        }
1584
 
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1585
 
        if(ret == -1){
1586
 
          perror_plus("setenv");
1587
 
          _exit(EX_OSERR);
1588
 
        }
1589
 
        ret = setenv("DEVICE", interface, 1);
1590
 
        if(ret == -1){
1591
 
          perror_plus("setenv");
1592
 
          _exit(EX_OSERR);
1593
 
        }
1594
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1595
 
        if(ret == -1){
1596
 
          perror_plus("setenv");
1597
 
          _exit(EX_OSERR);
1598
 
        }
1599
 
        ret = setenv("MODE", mode, 1);
1600
 
        if(ret == -1){
1601
 
          perror_plus("setenv");
1602
 
          _exit(EX_OSERR);
1603
 
        }
1604
 
        char *delaystring;
1605
 
        ret = asprintf(&delaystring, "%f", (double)delay);
1606
 
        if(ret == -1){
1607
 
          perror_plus("asprintf");
1608
 
          _exit(EX_OSERR);
1609
 
        }
1610
 
        ret = setenv("DELAY", delaystring, 1);
1611
 
        if(ret == -1){
1612
 
          free(delaystring);
1613
 
          perror_plus("setenv");
1614
 
          _exit(EX_OSERR);
1615
 
        }
 
1611
        _exit(EX_OSERR);
 
1612
      }
 
1613
      ret = setenv("DELAY", delaystring, 1);
 
1614
      if(ret == -1){
1616
1615
        free(delaystring);
1617
 
        if(connect_to != NULL){
1618
 
          ret = setenv("CONNECT", connect_to, 1);
1619
 
          if(ret == -1){
1620
 
            perror_plus("setenv");
1621
 
            _exit(EX_OSERR);
1622
 
          }
1623
 
        }
1624
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1625
 
          perror_plus("execl");
1626
 
          _exit(EXIT_FAILURE);
1627
 
        }
 
1616
        perror_plus("setenv");
 
1617
        _exit(EX_OSERR);
 
1618
      }
 
1619
      free(delaystring);
 
1620
      if(connect_to != NULL){
 
1621
        ret = setenv("CONNECT", connect_to, 1);
 
1622
        if(ret == -1){
 
1623
          perror_plus("setenv");
 
1624
          _exit(EX_OSERR);
 
1625
        }
 
1626
      }
 
1627
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
 
1628
      if(hook_fd == -1){
 
1629
        perror_plus("openat");
 
1630
        _exit(EXIT_FAILURE);
 
1631
      }
 
1632
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
1633
        perror_plus("close");
 
1634
        _exit(EXIT_FAILURE);
 
1635
      }
 
1636
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
1637
                 environ) == -1){
 
1638
        perror_plus("fexecve");
 
1639
        _exit(EXIT_FAILURE);
 
1640
      }
 
1641
    } else {
 
1642
      int status;
 
1643
      if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1644
        perror_plus("waitpid");
 
1645
        continue;
 
1646
      }
 
1647
      if(WIFEXITED(status)){
 
1648
        if(WEXITSTATUS(status) != 0){
 
1649
          fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1650
                       " with status %d\n", direntry->d_name,
 
1651
                       WEXITSTATUS(status));
 
1652
          continue;
 
1653
        }
 
1654
      } else if(WIFSIGNALED(status)){
 
1655
        fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1656
                     " signal %d\n", direntry->d_name,
 
1657
                     WTERMSIG(status));
 
1658
        continue;
1628
1659
      } else {
1629
 
        int status;
1630
 
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1631
 
          perror_plus("waitpid");
1632
 
          free(fullname);
1633
 
          continue;
1634
 
        }
1635
 
        if(WIFEXITED(status)){
1636
 
          if(WEXITSTATUS(status) != 0){
1637
 
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1638
 
                         " with status %d\n", direntry->d_name,
1639
 
                         WEXITSTATUS(status));
1640
 
            free(fullname);
1641
 
            continue;
1642
 
          }
1643
 
        } else if(WIFSIGNALED(status)){
1644
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1645
 
                       " signal %d\n", direntry->d_name,
1646
 
                       WTERMSIG(status));
1647
 
          free(fullname);
1648
 
          continue;
1649
 
        } else {
1650
 
          fprintf_plus(stderr, "Warning: network hook \"%s\""
1651
 
                       " crashed\n", direntry->d_name);
1652
 
          free(fullname);
1653
 
          continue;
1654
 
        }
1655
 
      }
1656
 
      free(fullname);
1657
 
      if(debug){
1658
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1659
 
                     direntry->d_name);
1660
 
      }
1661
 
    }
1662
 
    close(devnull);
1663
 
  }
 
1660
        fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1661
                     " crashed\n", direntry->d_name);
 
1662
        continue;
 
1663
      }
 
1664
    }
 
1665
    if(debug){
 
1666
      fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1667
                   direntry->d_name);
 
1668
    }
 
1669
  }
 
1670
  free(direntries);
 
1671
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
1672
    perror_plus("close");
 
1673
  } else {
 
1674
    hookdir_fd = -1;
 
1675
  }
 
1676
  close(devnull);
1664
1677
}
1665
1678
 
1666
1679
__attribute__((nonnull, warn_unused_result))
1717
1730
    /* Raise privileges */
1718
1731
    ret_errno = raise_privileges();
1719
1732
    if(ret_errno != 0){
 
1733
      errno = ret_errno;
1720
1734
      perror_plus("Failed to raise privileges");
1721
1735
    }
1722
1736
    
1826
1840
    /* Raise privileges */
1827
1841
    ret_errno = raise_privileges();
1828
1842
    if(ret_errno != 0){
 
1843
      errno = ret_errno;
1829
1844
      perror_plus("Failed to raise privileges");
1830
1845
    }
1831
1846
    
2238
2253
  
2239
2254
  /* If no interfaces were specified, make a list */
2240
2255
  if(mc.interfaces == NULL){
2241
 
    struct dirent **direntries;
 
2256
    struct dirent **direntries = NULL;
2242
2257
    /* Look for any good interfaces */
2243
2258
    ret = scandir(sys_class_net, &direntries, good_interface,
2244
2259
                  alphasort);
2259
2274
      }
2260
2275
      free(direntries);
2261
2276
    } else {
2262
 
      free(direntries);
 
2277
      if(ret == 0){
 
2278
        free(direntries);
 
2279
      }
2263
2280
      fprintf_plus(stderr, "Could not find a network interface\n");
2264
2281
      exitcode = EXIT_FAILURE;
2265
2282
      goto end;
2538
2555
  {
2539
2556
    ret_errno = raise_privileges();
2540
2557
    if(ret_errno != 0){
 
2558
      errno = ret_errno;
2541
2559
      perror_plus("Failed to raise privileges");
2542
2560
    } else {
2543
2561
      
2566
2584
    
2567
2585
    ret_errno = lower_privileges_permanently();
2568
2586
    if(ret_errno != 0){
 
2587
      errno = ret_errno;
2569
2588
      perror_plus("Failed to lower privileges permanently");
2570
2589
    }
2571
2590
  }
2576
2595
  /* Removes the GPGME temp directory and all files inside */
2577
2596
  if(tempdir != NULL){
2578
2597
    struct dirent **direntries = NULL;
2579
 
    struct dirent *direntry = NULL;
2580
 
    int numentries = scandir(tempdir, &direntries, notdotentries,
2581
 
                             alphasort);
2582
 
    if(numentries > 0){
2583
 
      for(int i = 0; i < numentries; i++){
2584
 
        direntry = direntries[i];
2585
 
        char *fullname = NULL;
2586
 
        ret = asprintf(&fullname, "%s/%s", tempdir,
2587
 
                       direntry->d_name);
2588
 
        if(ret < 0){
2589
 
          perror_plus("asprintf");
2590
 
          continue;
2591
 
        }
2592
 
        ret = remove(fullname);
2593
 
        if(ret == -1){
2594
 
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
2595
 
                       strerror(errno));
2596
 
        }
2597
 
        free(fullname);
 
2598
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
 
2599
                                                  O_NOFOLLOW));
 
2600
    if(tempdir_fd == -1){
 
2601
      perror_plus("open");
 
2602
    } else {
 
2603
#ifdef __GLIBC__
 
2604
#if __GLIBC_PREREQ(2, 15)
 
2605
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
2606
                                 notdotentries, alphasort);
 
2607
#else  /* not __GLIBC_PREREQ(2, 15) */
 
2608
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2609
                               alphasort);
 
2610
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
2611
#else   /* not __GLIBC__ */
 
2612
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2613
                               alphasort);
 
2614
#endif  /* not __GLIBC__ */
 
2615
      if(numentries >= 0){
 
2616
        for(int i = 0; i < numentries; i++){
 
2617
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
2618
          if(ret == -1){
 
2619
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
2620
                         " \"%s\", 0): %s\n", tempdir,
 
2621
                         direntries[i]->d_name, strerror(errno));
 
2622
          }
 
2623
        }
 
2624
        
 
2625
        /* need to clean even if 0 because man page doesn't specify */
 
2626
        free(direntries);
 
2627
        if(numentries == -1){
 
2628
          perror_plus("scandir");
 
2629
        }
 
2630
        ret = rmdir(tempdir);
 
2631
        if(ret == -1 and errno != ENOENT){
 
2632
          perror_plus("rmdir");
 
2633
        }
2598
2634
      }
2599
 
    }
2600
 
    
2601
 
    /* need to clean even if 0 because man page doesn't specify */
2602
 
    free(direntries);
2603
 
    if(numentries == -1){
2604
 
      perror_plus("scandir");
2605
 
    }
2606
 
    ret = rmdir(tempdir);
2607
 
    if(ret == -1 and errno != ENOENT){
2608
 
      perror_plus("rmdir");
 
2635
      TEMP_FAILURE_RETRY(close(tempdir_fd));
2609
2636
    }
2610
2637
  }
2611
2638