2 This file is part of systemd.
4 Copyright 2010 Lennart Poettering
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 #include "alloc-util.h"
25 #include "extract-word.h"
28 #include "parse-util.h"
29 #include "proc-cmdline.h"
30 #include "process-util.h"
31 //#include "special.h"
32 #include "string-util.h"
36 int proc_cmdline(char **ret) {
39 if (detect_container() > 0)
40 return get_process_cmdline(1, 0, false, ret);
42 return read_one_line_file("/proc/cmdline", ret);
45 int parse_proc_cmdline(int (*parse_item)(const char *key, const char *value)) {
46 _cleanup_free_ char *line = NULL;
52 r = proc_cmdline(&line);
58 _cleanup_free_ char *word = NULL;
61 r = extract_first_word(&p, &word, NULL, EXTRACT_QUOTES|EXTRACT_RELAX);
67 /* Filter out arguments that are intended only for the
69 if (!in_initrd() && startswith(word, "rd."))
72 value = strchr(word, '=');
76 r = parse_item(word, value);
84 int get_proc_cmdline_key(const char *key, char **value) {
85 _cleanup_free_ char *line = NULL, *ret = NULL;
92 r = proc_cmdline(&line);
98 _cleanup_free_ char *word = NULL;
101 r = extract_first_word(&p, &word, NULL, EXTRACT_QUOTES|EXTRACT_RELAX);
107 /* Filter out arguments that are intended only for the
109 if (!in_initrd() && startswith(word, "rd."))
113 e = startswith(word, key);
117 r = free_and_strdup(&ret, e);
123 if (streq(word, key))
137 #if 0 /// UNNEEDED by elogind
138 int shall_restore_state(void) {
139 _cleanup_free_ char *value = NULL;
142 r = get_proc_cmdline_key("systemd.restore_state=", &value);
148 return parse_boolean(value);
151 static const char * const rlmap[] = {
152 "emergency", SPECIAL_EMERGENCY_TARGET,
153 "-b", SPECIAL_EMERGENCY_TARGET,
154 "rescue", SPECIAL_RESCUE_TARGET,
155 "single", SPECIAL_RESCUE_TARGET,
156 "-s", SPECIAL_RESCUE_TARGET,
157 "s", SPECIAL_RESCUE_TARGET,
158 "S", SPECIAL_RESCUE_TARGET,
159 "1", SPECIAL_RESCUE_TARGET,
160 "2", SPECIAL_MULTI_USER_TARGET,
161 "3", SPECIAL_MULTI_USER_TARGET,
162 "4", SPECIAL_MULTI_USER_TARGET,
163 "5", SPECIAL_GRAPHICAL_TARGET,
167 static const char * const rlmap_initrd[] = {
168 "emergency", SPECIAL_EMERGENCY_TARGET,
169 "rescue", SPECIAL_RESCUE_TARGET,
173 const char* runlevel_to_target(const char *word) {
175 const char * const *rlmap_ptr = in_initrd() ? rlmap_initrd
181 if (in_initrd() && (word = startswith(word, "rd.")) == NULL)
184 for (i = 0; rlmap_ptr[i] != NULL; i += 2)
185 if (streq(word, rlmap_ptr[i]))
186 return rlmap_ptr[i+1];