LCOV - code coverage report
Current view: top level - debug-generator - debug-generator.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 95 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 10 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 112 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include <unistd.h>
       4                 :            : 
       5                 :            : #include "alloc-util.h"
       6                 :            : #include "dropin.h"
       7                 :            : #include "generator.h"
       8                 :            : #include "mkdir.h"
       9                 :            : #include "parse-util.h"
      10                 :            : #include "path-util.h"
      11                 :            : #include "proc-cmdline.h"
      12                 :            : #include "special.h"
      13                 :            : #include "string-util.h"
      14                 :            : #include "strv.h"
      15                 :            : #include "unit-name.h"
      16                 :            : 
      17                 :            : static const char *arg_dest = NULL;
      18                 :            : static char *arg_default_unit = NULL;
      19                 :            : static char **arg_mask = NULL;
      20                 :            : static char **arg_wants = NULL;
      21                 :            : static char *arg_debug_shell = NULL;
      22                 :            : 
      23                 :          0 : STATIC_DESTRUCTOR_REGISTER(arg_default_unit, freep);
      24                 :          0 : STATIC_DESTRUCTOR_REGISTER(arg_mask, strv_freep);
      25                 :          0 : STATIC_DESTRUCTOR_REGISTER(arg_wants, strv_freep);
      26                 :          0 : STATIC_DESTRUCTOR_REGISTER(arg_debug_shell, freep);
      27                 :            : 
      28                 :          0 : static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
      29                 :            :         int r;
      30                 :            : 
      31         [ #  # ]:          0 :         assert(key);
      32                 :            : 
      33         [ #  # ]:          0 :         if (streq(key, "systemd.mask")) {
      34                 :            :                 char *n;
      35                 :            : 
      36         [ #  # ]:          0 :                 if (proc_cmdline_value_missing(key, value))
      37                 :          0 :                         return 0;
      38                 :            : 
      39                 :          0 :                 r = unit_name_mangle(value, UNIT_NAME_MANGLE_WARN, &n);
      40         [ #  # ]:          0 :                 if (r < 0)
      41         [ #  # ]:          0 :                         return log_error_errno(r, "Failed to glob unit name: %m");
      42                 :            : 
      43                 :          0 :                 r = strv_consume(&arg_mask, n);
      44         [ #  # ]:          0 :                 if (r < 0)
      45                 :          0 :                         return log_oom();
      46                 :            : 
      47         [ #  # ]:          0 :         } else if (streq(key, "systemd.wants")) {
      48                 :            :                 char *n;
      49                 :            : 
      50         [ #  # ]:          0 :                 if (proc_cmdline_value_missing(key, value))
      51                 :          0 :                         return 0;
      52                 :            : 
      53                 :          0 :                 r = unit_name_mangle(value, UNIT_NAME_MANGLE_WARN, &n);
      54         [ #  # ]:          0 :                 if (r < 0)
      55         [ #  # ]:          0 :                         return log_error_errno(r, "Failed to glob unit name: %m");
      56                 :            : 
      57                 :          0 :                 r = strv_consume(&arg_wants, n);
      58         [ #  # ]:          0 :                 if (r < 0)
      59                 :          0 :                         return log_oom();
      60                 :            : 
      61         [ #  # ]:          0 :         } else if (proc_cmdline_key_streq(key, "systemd.debug_shell")) {
      62                 :          0 :                 const char *t = NULL;
      63                 :            : 
      64         [ #  # ]:          0 :                 r = value ? parse_boolean(value) : 1;
      65         [ #  # ]:          0 :                 if (r < 0)
      66                 :          0 :                         t = skip_dev_prefix(value);
      67         [ #  # ]:          0 :                 else if (r > 0)
      68                 :          0 :                         t = skip_dev_prefix(DEBUGTTY);
      69                 :            : 
      70         [ #  # ]:          0 :                 if (free_and_strdup(&arg_debug_shell, t) < 0)
      71                 :          0 :                         return log_oom();
      72                 :            : 
      73         [ #  # ]:          0 :         } else if (streq(key, "systemd.unit")) {
      74                 :            : 
      75         [ #  # ]:          0 :                 if (proc_cmdline_value_missing(key, value))
      76                 :          0 :                         return 0;
      77                 :            : 
      78                 :          0 :                 r = free_and_strdup(&arg_default_unit, value);
      79         [ #  # ]:          0 :                 if (r < 0)
      80         [ #  # ]:          0 :                         return log_error_errno(r, "Failed to set default unit %s: %m", value);
      81                 :            : 
      82         [ #  # ]:          0 :         } else if (!value) {
      83                 :            :                 const char *target;
      84                 :            : 
      85                 :          0 :                 target = runlevel_to_target(key);
      86         [ #  # ]:          0 :                 if (target) {
      87                 :          0 :                         r = free_and_strdup(&arg_default_unit, target);
      88         [ #  # ]:          0 :                         if (r < 0)
      89         [ #  # ]:          0 :                                 return log_error_errno(r, "Failed to set default unit %s: %m", target);
      90                 :            :                 }
      91                 :            :         }
      92                 :            : 
      93                 :          0 :         return 0;
      94                 :            : }
      95                 :            : 
      96                 :          0 : static int generate_mask_symlinks(void) {
      97                 :            :         char **u;
      98                 :          0 :         int r = 0;
      99                 :            : 
     100         [ #  # ]:          0 :         if (strv_isempty(arg_mask))
     101                 :          0 :                 return 0;
     102                 :            : 
     103   [ #  #  #  # ]:          0 :         STRV_FOREACH(u, arg_mask) {
     104         [ #  # ]:          0 :                 _cleanup_free_ char *p = NULL;
     105                 :            : 
     106                 :          0 :                 p = path_join(empty_to_root(arg_dest), *u);
     107         [ #  # ]:          0 :                 if (!p)
     108                 :          0 :                         return log_oom();
     109                 :            : 
     110         [ #  # ]:          0 :                 if (symlink("/dev/null", p) < 0)
     111         [ #  # ]:          0 :                         r = log_error_errno(errno,
     112                 :            :                                             "Failed to create mask symlink %s: %m",
     113                 :            :                                             p);
     114                 :            :         }
     115                 :            : 
     116                 :          0 :         return r;
     117                 :            : }
     118                 :            : 
     119                 :          0 : static int generate_wants_symlinks(void) {
     120                 :            :         char **u;
     121                 :          0 :         int r = 0;
     122                 :            : 
     123         [ #  # ]:          0 :         if (strv_isempty(arg_wants))
     124                 :          0 :                 return 0;
     125                 :            : 
     126   [ #  #  #  # ]:          0 :         STRV_FOREACH(u, arg_wants) {
     127   [ #  #  #  # ]:          0 :                 _cleanup_free_ char *p = NULL, *f = NULL;
     128         [ #  # ]:          0 :                 const char *target = arg_default_unit ?: SPECIAL_DEFAULT_TARGET;
     129                 :            : 
     130                 :          0 :                 p = strjoin(arg_dest, "/", target, ".wants/", *u);
     131         [ #  # ]:          0 :                 if (!p)
     132                 :          0 :                         return log_oom();
     133                 :            : 
     134                 :          0 :                 f = path_join(SYSTEM_DATA_UNIT_PATH, *u);
     135         [ #  # ]:          0 :                 if (!f)
     136                 :          0 :                         return log_oom();
     137                 :            : 
     138                 :          0 :                 mkdir_parents_label(p, 0755);
     139                 :            : 
     140         [ #  # ]:          0 :                 if (symlink(f, p) < 0)
     141         [ #  # ]:          0 :                         r = log_error_errno(errno,
     142                 :            :                                             "Failed to create wants symlink %s: %m",
     143                 :            :                                             p);
     144                 :            :         }
     145                 :            : 
     146                 :          0 :         return r;
     147                 :            : }
     148                 :            : 
     149                 :          0 : static void install_debug_shell_dropin(const char *dir) {
     150                 :            :         int r;
     151                 :            : 
     152         [ #  # ]:          0 :         if (streq(arg_debug_shell, skip_dev_prefix(DEBUGTTY)))
     153                 :          0 :                 return;
     154                 :            : 
     155                 :          0 :         r = write_drop_in_format(dir, "debug-shell.service", 50, "tty",
     156                 :            :                         "[Unit]\n"
     157                 :            :                         "Description=Early root shell on /dev/%s FOR DEBUGGING ONLY\n"
     158                 :            :                         "ConditionPathExists=\n"
     159                 :            :                         "[Service]\n"
     160                 :            :                         "TTYPath=/dev/%s",
     161                 :            :                         arg_debug_shell, arg_debug_shell);
     162         [ #  # ]:          0 :         if (r < 0)
     163         [ #  # ]:          0 :                 log_warning_errno(r, "Failed to write drop-in for debug-shell.service, ignoring: %m");
     164                 :            : }
     165                 :            : 
     166                 :          0 : static int run(const char *dest, const char *dest_early, const char *dest_late) {
     167                 :            :         int r, q;
     168                 :            : 
     169         [ #  # ]:          0 :         assert_se(arg_dest = dest_early);
     170                 :            : 
     171                 :          0 :         r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_RD_STRICT | PROC_CMDLINE_STRIP_RD_PREFIX);
     172         [ #  # ]:          0 :         if (r < 0)
     173         [ #  # ]:          0 :                 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
     174                 :            : 
     175         [ #  # ]:          0 :         if (arg_debug_shell) {
     176                 :          0 :                 r = strv_extend(&arg_wants, "debug-shell.service");
     177         [ #  # ]:          0 :                 if (r < 0)
     178                 :          0 :                         return log_oom();
     179                 :            : 
     180                 :          0 :                 install_debug_shell_dropin(arg_dest);
     181                 :            :         }
     182                 :            : 
     183                 :          0 :         r = generate_mask_symlinks();
     184                 :          0 :         q = generate_wants_symlinks();
     185                 :            : 
     186         [ #  # ]:          0 :         return r < 0 ? r : q;
     187                 :            : }
     188                 :            : 
     189   [ #  #  #  #  :          0 : DEFINE_MAIN_GENERATOR_FUNCTION(run);
          #  #  #  #  #  
                #  #  # ]

Generated by: LCOV version 1.14