1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2014 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 #include "unit-name.h"
27 static const char *arg_dest = "/tmp";
28 static char **arg_mask = NULL;
29 static char **arg_wants = NULL;
30 static bool arg_debug_shell = false;
32 static int parse_proc_cmdline_item(const char *key, const char *value) {
37 if (streq(key, "systemd.mask")) {
40 log_error("Missing argument for systemd.mask= kernel command line parameter.");
44 n = unit_name_mangle(value, MANGLE_NOGLOB);
48 r = strv_consume(&arg_mask, n);
53 } else if (streq(key, "systemd.wants")) {
56 log_error("Missing argument for systemd.want= kernel command line parameter.");
60 n = unit_name_mangle(value, MANGLE_NOGLOB);
64 r = strv_consume(&arg_wants, n);
69 } else if (streq(key, "systemd.debug-shell")) {
72 r = parse_boolean(value);
74 log_error("Failed to parse systemd.debug-shell= argument '%s', ignoring.", value);
78 arg_debug_shell = true;
84 static int generate_mask_symlinks(void) {
88 if (strv_isempty(arg_mask))
91 STRV_FOREACH(u, arg_mask) {
92 _cleanup_free_ char *p = NULL;
94 p = strjoin(arg_dest, "/", *u, NULL);
98 if (symlink("/dev/null", p) < 0) {
99 log_error("Failed to create mask symlink %s: %m", p);
107 static int generate_wants_symlinks(void) {
111 if (strv_isempty(arg_wants))
114 STRV_FOREACH(u, arg_wants) {
115 _cleanup_free_ char *p = NULL, *f = NULL;
117 p = strjoin(arg_dest, "/default.target.wants/", *u, NULL);
121 f = strappend(SYSTEM_DATA_UNIT_PATH "/", *u);
125 mkdir_parents_label(p, 0755);
127 if (symlink(f, p) < 0) {
128 log_error("Failed to create wants symlink %s: %m", p);
136 int main(int argc, char *argv[]) {
139 if (argc > 1 && argc != 4) {
140 log_error("This program takes three or no arguments.");
147 log_set_target(LOG_TARGET_SAFE);
148 log_parse_environment();
153 if (parse_proc_cmdline(parse_proc_cmdline_item) < 0)
156 if (arg_debug_shell) {
157 r = strv_extend(&arg_wants, "debug-shell.service");
164 r = generate_mask_symlinks();
166 q = generate_wants_symlinks();
171 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;