LCOV - code coverage report
Current view: top level - boot - boot-check-no-failures.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 37 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 4 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 28 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include <errno.h>
       4                 :            : #include <getopt.h>
       5                 :            : #include <stdio.h>
       6                 :            : #include <stdlib.h>
       7                 :            : 
       8                 :            : #include "sd-bus.h"
       9                 :            : 
      10                 :            : #include "alloc-util.h"
      11                 :            : #include "bus-error.h"
      12                 :            : #include "log.h"
      13                 :            : #include "main-func.h"
      14                 :            : #include "util.h"
      15                 :            : 
      16                 :          0 : static int help(void) {
      17                 :            : 
      18                 :          0 :         printf("%s [COMMAND] [OPTIONS...]\n"
      19                 :            :                "\n"
      20                 :            :                "Verify system operational state.\n\n"
      21                 :            :                "  -h --help          Show this help\n"
      22                 :            :                "     --version       Print version\n",
      23                 :            :                program_invocation_short_name);
      24                 :            : 
      25                 :          0 :         return 0;
      26                 :            : }
      27                 :            : 
      28                 :          0 : static int parse_argv(int argc, char *argv[]) {
      29                 :            :         enum {
      30                 :            :                 ARG_PATH = 0x100,
      31                 :            :                 ARG_VERSION,
      32                 :            :         };
      33                 :            : 
      34                 :            :         static const struct option options[] = {
      35                 :            :                 { "help",         no_argument,       NULL, 'h'              },
      36                 :            :                 { "version",      no_argument,       NULL, ARG_VERSION      },
      37                 :            :                 {}
      38                 :            :         };
      39                 :            : 
      40                 :            :         int c;
      41                 :            : 
      42         [ #  # ]:          0 :         assert(argc >= 0);
      43         [ #  # ]:          0 :         assert(argv);
      44                 :            : 
      45         [ #  # ]:          0 :         while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
      46   [ #  #  #  # ]:          0 :                 switch (c) {
      47                 :            : 
      48                 :          0 :                 case 'h':
      49                 :          0 :                         help();
      50                 :          0 :                         return 0;
      51                 :            : 
      52                 :          0 :                 case ARG_VERSION:
      53                 :          0 :                         return version();
      54                 :            : 
      55                 :          0 :                 case '?':
      56                 :          0 :                         return -EINVAL;
      57                 :            : 
      58                 :          0 :                 default:
      59                 :          0 :                         assert_not_reached("Unknown option");
      60                 :            :                 }
      61                 :            : 
      62                 :          0 :         return 1;
      63                 :            : }
      64                 :            : 
      65                 :          0 : static int run(int argc, char *argv[]) {
      66                 :          0 :         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
      67                 :          0 :         _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
      68                 :            :         uint32_t n;
      69                 :            :         int r;
      70                 :            : 
      71                 :          0 :         log_parse_environment();
      72                 :          0 :         log_open();
      73                 :            : 
      74                 :          0 :         r = parse_argv(argc, argv);
      75         [ #  # ]:          0 :         if (r <= 0)
      76                 :          0 :                 return r;
      77                 :            : 
      78                 :          0 :         r = sd_bus_open_system(&bus);
      79         [ #  # ]:          0 :         if (r < 0)
      80         [ #  # ]:          0 :                 return log_error_errno(r, "Failed to connect to system bus: %m");
      81                 :            : 
      82                 :          0 :         r = sd_bus_get_property_trivial(
      83                 :            :                         bus,
      84                 :            :                         "org.freedesktop.systemd1",
      85                 :            :                         "/org/freedesktop/systemd1",
      86                 :            :                         "org.freedesktop.systemd1.Manager",
      87                 :            :                         "NFailedUnits",
      88                 :            :                         &error,
      89                 :            :                         'u',
      90                 :            :                         &n);
      91         [ #  # ]:          0 :         if (r < 0)
      92         [ #  # ]:          0 :                 return log_error_errno(r, "Failed to get failed units counter: %s", bus_error_message(&error, r));
      93                 :            : 
      94         [ #  # ]:          0 :         if (n > 0)
      95         [ #  # ]:          0 :                 log_notice("Health check: %" PRIu32 " units have failed.", n);
      96                 :            :         else
      97         [ #  # ]:          0 :                 log_info("Health check: no failed units.");
      98                 :            : 
      99                 :          0 :         return n > 0;
     100                 :            : }
     101                 :            : 
     102         [ #  # ]:          0 : DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run);

Generated by: LCOV version 1.14