/mandos/release

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2014-07-14 21:41:08 UTC
  • mto: (237.7.272 trunk)
  • mto: This revision was merged to the branch mainline in revision 319.
  • Revision ID: teddy@recompile.se-20140714214108-awg7u6gaiy7d40dz
mandos-monitor: New "verbose" mode to see less important log messages.

* mandos-monitor (MandosClientWidget.__init__): Log client creation.
  (MandosClientWidget.checker_completed): Log a successful checker.
  (MandosClientWidget.checker_started): Log starting of a checker.
  (UserInterface.__init__): New optional "log_level" argument.
  (UserInterface.log_message, UserInterface.log_message_raw): Take
                                                              optional
                                                              "level"
                                                              arg.
  (UserInterface.toggle_log_display): Log visibility change.
  (UserInterface.change_log_display): Log wrap mode change.
  (UserInterface.process_input): Show new "v" key in help message and
                                 process "v" key if pressed.
* mandos-monitor.xml (KEYS): Document new "v" key.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
233
234
                          .af = af };
234
235
  if(new_server->ip == NULL){
235
236
    perror_plus("strdup");
 
237
    free(new_server);
236
238
    return false;
237
239
  }
238
240
  ret = clock_gettime(CLOCK_MONOTONIC, &(new_server->last_seen));
239
241
  if(ret == -1){
240
242
    perror_plus("clock_gettime");
 
243
    free(new_server->ip);
 
244
    free(new_server);
241
245
    return false;
242
246
  }
243
247
  /* Special case of first server */
1346
1350
    return 0;
1347
1351
  }
1348
1352
  
1349
 
  char *fullname = NULL;
1350
 
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1351
 
  if(ret < 0){
1352
 
    perror_plus("asprintf");
1353
 
    return 0;
1354
 
  }
1355
 
  
1356
 
  ret = stat(fullname, &st);
 
1353
  ret = fstatat(hookdir_fd, direntry->d_name, &st, 0);
1357
1354
  if(ret == -1){
1358
1355
    if(debug){
1359
1356
      perror_plus("Could not stat hook");
1360
1357
    }
1361
1358
    return 0;
1362
1359
  }
1363
 
  free(fullname);
1364
1360
  if(not (S_ISREG(st.st_mode))){
1365
1361
    /* Not a regular file */
1366
1362
    if(debug){
1465
1461
  error_t ret_errno = 0;
1466
1462
  if(seteuid(0) == -1){
1467
1463
    ret_errno = errno;
1468
 
    perror_plus("seteuid");
1469
1464
  }
1470
1465
  errno = old_errno;
1471
1466
  return ret_errno;
1482
1477
  }
1483
1478
  if(setuid(0) == -1){
1484
1479
    ret_errno = errno;
1485
 
    perror_plus("seteuid");
1486
1480
  }
1487
1481
  errno = old_errno;
1488
1482
  return ret_errno;
1495
1489
  error_t ret_errno = 0;
1496
1490
  if(seteuid(uid) == -1){
1497
1491
    ret_errno = errno;
1498
 
    perror_plus("seteuid");
1499
1492
  }
1500
1493
  errno = old_errno;
1501
1494
  return ret_errno;
1508
1501
  error_t ret_errno = 0;
1509
1502
  if(setuid(uid) == -1){
1510
1503
    ret_errno = errno;
1511
 
    perror_plus("setuid");
1512
1504
  }
1513
1505
  errno = old_errno;
1514
1506
  return ret_errno;
1515
1507
}
1516
1508
 
1517
 
#ifndef O_CLOEXEC
1518
 
/*
1519
 
 * Based on the example in the GNU LibC manual chapter 13.13 "File
1520
 
 * Descriptor Flags".
1521
 
 | [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
1522
 
 */
1523
 
__attribute__((warn_unused_result))
1524
 
static int set_cloexec_flag(int fd){
1525
 
  int ret = (int)TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD, 0));
1526
 
  /* If reading the flags failed, return error indication now. */
1527
 
  if(ret < 0){
1528
 
    return ret;
1529
 
  }
1530
 
  /* Store modified flag word in the descriptor. */
1531
 
  return (int)TEMP_FAILURE_RETRY(fcntl(fd, F_SETFD,
1532
 
                                       ret | FD_CLOEXEC));
1533
 
}
1534
 
#endif  /* not O_CLOEXEC */
1535
 
 
1536
1509
__attribute__((nonnull))
1537
1510
void run_network_hooks(const char *mode, const char *interface,
1538
1511
                       const float delay){
1539
 
  struct dirent **direntries;
 
1512
  struct dirent **direntries = NULL;
1540
1513
  if(hookdir_fd == -1){
1541
 
    hookdir_fd = open(hookdir, O_RDONLY |
1542
 
#ifdef O_CLOEXEC
1543
 
                      O_CLOEXEC
1544
 
#else  /* not O_CLOEXEC */
1545
 
                      0
1546
 
#endif  /* not O_CLOEXEC */
1547
 
                      );
 
1514
    hookdir_fd = open(hookdir, O_RDONLY);
1548
1515
    if(hookdir_fd == -1){
1549
1516
      if(errno == ENOENT){
1550
1517
        if(debug){
1556
1523
      }
1557
1524
      return;
1558
1525
    }
1559
 
#ifndef O_CLOEXEC
1560
 
    if(set_cloexec_flag(hookdir_fd) < 0){
1561
 
      perror_plus("set_cloexec_flag");
1562
 
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1563
 
        perror_plus("close");
1564
 
      } else {
1565
 
        hookdir_fd = -1;
1566
 
      }
1567
 
      return;
1568
 
    }
1569
 
#endif  /* not O_CLOEXEC */
1570
1526
  }
1571
1527
#ifdef __GLIBC__
1572
1528
#if __GLIBC_PREREQ(2, 15)
1597
1553
    if(hook_pid == 0){
1598
1554
      /* Child */
1599
1555
      /* Raise privileges */
1600
 
      if(raise_privileges_permanently() != 0){
 
1556
      errno = raise_privileges_permanently();
 
1557
      if(errno != 0){
1601
1558
        perror_plus("Failed to raise privileges");
1602
1559
        _exit(EX_NOPERM);
1603
1560
      }
1670
1627
          _exit(EX_OSERR);
1671
1628
        }
1672
1629
      }
1673
 
      if(fexecve(hookdir_fd, (char *const [])
1674
 
                 { direntry->d_name, NULL }, environ) == -1){
 
1630
      int hook_fd = openat(hookdir_fd, direntry->d_name, O_RDONLY);
 
1631
      if(hook_fd == -1){
 
1632
        perror_plus("openat");
 
1633
        _exit(EXIT_FAILURE);
 
1634
      }
 
1635
      if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
 
1636
        perror_plus("close");
 
1637
        _exit(EXIT_FAILURE);
 
1638
      }
 
1639
      if(fexecve(hook_fd, (char *const []){ direntry->d_name, NULL },
 
1640
                 environ) == -1){
1675
1641
        perror_plus("fexecve");
1676
1642
        _exit(EXIT_FAILURE);
1677
1643
      }
1704
1670
                   direntry->d_name);
1705
1671
    }
1706
1672
  }
 
1673
  free(direntries);
1707
1674
  if((int)TEMP_FAILURE_RETRY(close(hookdir_fd)) == -1){
1708
1675
    perror_plus("close");
1709
1676
  } else {
1766
1733
    /* Raise privileges */
1767
1734
    ret_errno = raise_privileges();
1768
1735
    if(ret_errno != 0){
 
1736
      errno = ret_errno;
1769
1737
      perror_plus("Failed to raise privileges");
1770
1738
    }
1771
1739
    
1875
1843
    /* Raise privileges */
1876
1844
    ret_errno = raise_privileges();
1877
1845
    if(ret_errno != 0){
 
1846
      errno = ret_errno;
1878
1847
      perror_plus("Failed to raise privileges");
1879
1848
    }
1880
1849
    
2287
2256
  
2288
2257
  /* If no interfaces were specified, make a list */
2289
2258
  if(mc.interfaces == NULL){
2290
 
    struct dirent **direntries;
 
2259
    struct dirent **direntries = NULL;
2291
2260
    /* Look for any good interfaces */
2292
2261
    ret = scandir(sys_class_net, &direntries, good_interface,
2293
2262
                  alphasort);
2308
2277
      }
2309
2278
      free(direntries);
2310
2279
    } else {
2311
 
      free(direntries);
 
2280
      if(ret == 0){
 
2281
        free(direntries);
 
2282
      }
2312
2283
      fprintf_plus(stderr, "Could not find a network interface\n");
2313
2284
      exitcode = EXIT_FAILURE;
2314
2285
      goto end;
2587
2558
  {
2588
2559
    ret_errno = raise_privileges();
2589
2560
    if(ret_errno != 0){
 
2561
      errno = ret_errno;
2590
2562
      perror_plus("Failed to raise privileges");
2591
2563
    } else {
2592
2564
      
2615
2587
    
2616
2588
    ret_errno = lower_privileges_permanently();
2617
2589
    if(ret_errno != 0){
 
2590
      errno = ret_errno;
2618
2591
      perror_plus("Failed to lower privileges permanently");
2619
2592
    }
2620
2593
  }
2625
2598
  /* Removes the GPGME temp directory and all files inside */
2626
2599
  if(tempdir != NULL){
2627
2600
    struct dirent **direntries = NULL;
2628
 
    struct dirent *direntry = NULL;
2629
 
    int numentries = scandir(tempdir, &direntries, notdotentries,
2630
 
                             alphasort);
2631
 
    if(numentries > 0){
2632
 
      for(int i = 0; i < numentries; i++){
2633
 
        direntry = direntries[i];
2634
 
        char *fullname = NULL;
2635
 
        ret = asprintf(&fullname, "%s/%s", tempdir,
2636
 
                       direntry->d_name);
2637
 
        if(ret < 0){
2638
 
          perror_plus("asprintf");
2639
 
          continue;
2640
 
        }
2641
 
        ret = remove(fullname);
2642
 
        if(ret == -1){
2643
 
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
2644
 
                       strerror(errno));
2645
 
        }
2646
 
        free(fullname);
 
2601
    int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY |
 
2602
                                                  O_NOFOLLOW));
 
2603
    if(tempdir_fd == -1){
 
2604
      perror_plus("open");
 
2605
    } else {
 
2606
#ifdef __GLIBC__
 
2607
#if __GLIBC_PREREQ(2, 15)
 
2608
      int numentries = scandirat(tempdir_fd, ".", &direntries,
 
2609
                                 notdotentries, alphasort);
 
2610
#else  /* not __GLIBC_PREREQ(2, 15) */
 
2611
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2612
                               alphasort);
 
2613
#endif  /* not __GLIBC_PREREQ(2, 15) */
 
2614
#else   /* not __GLIBC__ */
 
2615
      int numentries = scandir(tempdir, &direntries, notdotentries,
 
2616
                               alphasort);
 
2617
#endif  /* not __GLIBC__ */
 
2618
      if(numentries >= 0){
 
2619
        for(int i = 0; i < numentries; i++){
 
2620
          ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
 
2621
          if(ret == -1){
 
2622
            fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
 
2623
                         " \"%s\", 0): %s\n", tempdir,
 
2624
                         direntries[i]->d_name, strerror(errno));
 
2625
          }
 
2626
        }
 
2627
        
 
2628
        /* need to clean even if 0 because man page doesn't specify */
 
2629
        free(direntries);
 
2630
        if(numentries == -1){
 
2631
          perror_plus("scandir");
 
2632
        }
 
2633
        ret = rmdir(tempdir);
 
2634
        if(ret == -1 and errno != ENOENT){
 
2635
          perror_plus("rmdir");
 
2636
        }
2647
2637
      }
2648
 
    }
2649
 
    
2650
 
    /* need to clean even if 0 because man page doesn't specify */
2651
 
    free(direntries);
2652
 
    if(numentries == -1){
2653
 
      perror_plus("scandir");
2654
 
    }
2655
 
    ret = rmdir(tempdir);
2656
 
    if(ret == -1 and errno != ENOENT){
2657
 
      perror_plus("rmdir");
 
2638
      TEMP_FAILURE_RETRY(close(tempdir_fd));
2658
2639
    }
2659
2640
  }
2660
2641