blob: 42de374d2b9b956f583fcc4350a050549a2805f4 [file] [log] [blame]
Denis Vlasenko92993052008-10-15 09:44:37 +00001/* vi: set sw=4 ts=4: */
Eric Andersenb9050282003-12-24 06:02:11 +00002/*
3 * Sysctl 1.01 - A utility to read and manipulate the sysctl parameters
4 *
Rob Landley8b1f11d2006-04-17 21:49:34 +00005 * Copyright 1999 George Staikos
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenb9050282003-12-24 06:02:11 +00008 *
9 * Changelog:
Denis Vlasenko038fe442009-03-29 02:23:16 +000010 * v1.01 - added -p <preload> to preload values from a file
11 * v1.01.1 - busybox applet aware by <solar@gentoo.org>
Eric Andersenb9050282003-12-24 06:02:11 +000012 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010013//config:config BB_SYSCTL
Denys Vlasenkob097a842018-12-28 03:20:17 +010014//config: bool "sysctl (7.4 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010015//config: default y
16//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020017//config: Configure kernel parameters at runtime.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010018
Denys Vlasenkocaf26b32017-08-05 18:23:10 +020019//applet:IF_BB_SYSCTL(APPLET_NOEXEC(sysctl, sysctl, BB_DIR_SBIN, BB_SUID_DROP, sysctl))
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010020
21//kbuild:lib-$(CONFIG_BB_SYSCTL) += sysctl.o
Eric Andersenb9050282003-12-24 06:02:11 +000022
Pere Orga5bc8c002011-04-11 03:29:49 +020023//usage:#define sysctl_trivial_usage
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +020024//usage: "-p [-enq] [FILE...] / [-enqaw] [KEY[=VALUE]]..."
Pere Orga5bc8c002011-04-11 03:29:49 +020025//usage:#define sysctl_full_usage "\n\n"
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020026//usage: "Show/set kernel parameters\n"
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +020027//usage: "\n -p Set values from FILEs (default /etc/sysctl.conf)"
Pere Orga5bc8c002011-04-11 03:29:49 +020028//usage: "\n -e Don't warn about unknown keys"
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020029//usage: "\n -n Don't show key names"
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +020030//usage: "\n -q Quiet"
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020031//usage: "\n -a Show all values"
32/* Same as -a, no need to show it */
33/* //usage: "\n -A Show all values in table form" */
34//usage: "\n -w Set values"
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage:
36//usage:#define sysctl_example_usage
37//usage: "sysctl [-n] [-e] variable...\n"
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020038//usage: "sysctl [-n] [-e] [-q] -w variable=value...\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020039//usage: "sysctl [-n] [-e] -a\n"
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020040//usage: "sysctl [-n] [-e] [-q] -p file (default /etc/sysctl.conf)\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020041//usage: "sysctl [-n] [-e] -A\n"
42
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000043#include "libbb.h"
Eric Andersenb9050282003-12-24 06:02:11 +000044
Denis Vlasenko64309f82007-11-29 06:40:28 +000045enum {
46 FLAG_SHOW_KEYS = 1 << 0,
47 FLAG_SHOW_KEY_ERRORS = 1 << 1,
48 FLAG_TABLE_FORMAT = 1 << 2, /* not implemented */
49 FLAG_SHOW_ALL = 1 << 3,
50 FLAG_PRELOAD_FILE = 1 << 4,
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +020051 /* NB: procps 3.2.8 does not require -w for KEY=VAL to work, it only rejects non-KEY=VAL form */
Denis Vlasenko64309f82007-11-29 06:40:28 +000052 FLAG_WRITE = 1 << 5,
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020053 FLAG_QUIET = 1 << 6,
Denis Vlasenko64309f82007-11-29 06:40:28 +000054};
Joshua Kahlenbergc4398512012-09-05 18:15:12 +020055#define OPTION_STR "neAapwq"
Denis Vlasenko64309f82007-11-29 06:40:28 +000056
Denis Vlasenko038fe442009-03-29 02:23:16 +000057static void sysctl_dots_to_slashes(char *name)
Eric Andersenb9050282003-12-24 06:02:11 +000058{
Denis Vlasenko038fe442009-03-29 02:23:16 +000059 char *cptr, *last_good, *end;
Eric Andersenb9050282003-12-24 06:02:11 +000060
Denis Vlasenko038fe442009-03-29 02:23:16 +000061 /* Convert minimum number of '.' to '/' so that
62 * we end up with existing file's name.
63 *
64 * Example from bug 3894:
65 * net.ipv4.conf.eth0.100.mc_forwarding ->
66 * net/ipv4/conf/eth0.100/mc_forwarding
67 * NB: net/ipv4/conf/eth0/mc_forwarding *also exists*,
68 * therefore we must start from the end, and if
69 * we replaced even one . -> /, start over again,
70 * but never replace dots before the position
71 * where last replacement occurred.
72 *
73 * Another bug we later had is that
74 * net.ipv4.conf.eth0.100
75 * (without .mc_forwarding) was mishandled.
76 *
77 * To set up testing: modprobe 8021q; vconfig add eth0 100
78 */
79 end = name + strlen(name);
80 last_good = name - 1;
81 *end = '.'; /* trick the loop into trying full name too */
Eric Andersenb9050282003-12-24 06:02:11 +000082
Denis Vlasenko038fe442009-03-29 02:23:16 +000083 again:
84 cptr = end;
85 while (cptr > last_good) {
86 if (*cptr == '.') {
87 *cptr = '\0';
88 //bb_error_msg("trying:'%s'", name);
89 if (access(name, F_OK) == 0) {
Denys Vlasenkoc2fdd412010-03-27 05:02:00 +010090 *cptr = '/';
Denis Vlasenko038fe442009-03-29 02:23:16 +000091 //bb_error_msg("replaced:'%s'", name);
92 last_good = cptr;
93 goto again;
94 }
95 *cptr = '.';
96 }
97 cptr--;
Denis Vlasenko54d10052008-12-24 03:11:43 +000098 }
Denis Vlasenko038fe442009-03-29 02:23:16 +000099 *end = '\0';
Denis Vlasenko54d10052008-12-24 03:11:43 +0000100}
Eric Andersenb9050282003-12-24 06:02:11 +0000101
Denis Vlasenko54d10052008-12-24 03:11:43 +0000102static int sysctl_act_on_setting(char *setting)
Eric Andersenb9050282003-12-24 06:02:11 +0000103{
Denis Vlasenko54d10052008-12-24 03:11:43 +0000104 int fd, retval = EXIT_SUCCESS;
Denis Vlasenkod6e8f942008-12-29 01:03:17 +0000105 char *cptr, *outname;
106 char *value = value; /* for compiler */
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200107 bool writing = (option_mask32 & FLAG_WRITE);
Eric Andersenb9050282003-12-24 06:02:11 +0000108
Denis Vlasenko54d10052008-12-24 03:11:43 +0000109 outname = xstrdup(setting);
110
111 cptr = outname;
112 while (*cptr) {
113 if (*cptr == '/')
114 *cptr = '.';
115 cptr++;
Eric Andersenb9050282003-12-24 06:02:11 +0000116 }
117
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200118 cptr = strchr(setting, '=');
119 if (cptr)
120 writing = 1;
121 if (writing) {
Denys Vlasenko317498f2019-02-08 14:02:59 +0100122 if (!cptr) {
Denis Vlasenko54d10052008-12-24 03:11:43 +0000123 bb_error_msg("error: '%s' must be of the form name=value",
124 outname);
125 retval = EXIT_FAILURE;
126 goto end;
127 }
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200128 value = cptr + 1; /* point to the value in name=value */
Denys Vlasenko317498f2019-02-08 14:02:59 +0100129 if (setting == cptr /* "name" can't be empty */
130 /* || !*value - WRONG: "sysctl net.ipv4.ip_local_reserved_ports=" is a valid syntax (clears the value) */
131 ) {
Denis Vlasenko54d10052008-12-24 03:11:43 +0000132 bb_error_msg("error: malformed setting '%s'", outname);
133 retval = EXIT_FAILURE;
134 goto end;
135 }
136 *cptr = '\0';
Denis Vlasenko5a6617a2009-03-29 02:22:19 +0000137 outname[cptr - setting] = '\0';
138 /* procps 3.2.7 actually uses these flags */
Denis Vlasenko54d10052008-12-24 03:11:43 +0000139 fd = open(setting, O_WRONLY|O_CREAT|O_TRUNC, 0666);
140 } else {
141 fd = open(setting, O_RDONLY);
Eric Andersenb9050282003-12-24 06:02:11 +0000142 }
143
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000144 if (fd < 0) {
Eric Andersenb9050282003-12-24 06:02:11 +0000145 switch (errno) {
Denys Vlasenko6554d032014-02-24 17:28:43 +0100146 case EACCES:
147 /* Happens for write-only settings, e.g. net.ipv6.route.flush */
148 goto end;
Eric Andersenb9050282003-12-24 06:02:11 +0000149 case ENOENT:
Denis Vlasenko64309f82007-11-29 06:40:28 +0000150 if (option_mask32 & FLAG_SHOW_KEY_ERRORS)
Denis Vlasenko54d10052008-12-24 03:11:43 +0000151 bb_error_msg("error: '%s' is an unknown key", outname);
Eric Andersenb9050282003-12-24 06:02:11 +0000152 break;
153 default:
Denis Vlasenko54d10052008-12-24 03:11:43 +0000154 bb_perror_msg("error %sing key '%s'",
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200155 writing ?
Denis Vlasenko54d10052008-12-24 03:11:43 +0000156 "sett" : "read",
157 outname);
Eric Andersenb9050282003-12-24 06:02:11 +0000158 break;
159 }
Denis Vlasenko64309f82007-11-29 06:40:28 +0000160 retval = EXIT_FAILURE;
Denis Vlasenko54d10052008-12-24 03:11:43 +0000161 goto end;
162 }
163
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200164 if (writing) {
Denis Vlasenko5a6617a2009-03-29 02:22:19 +0000165//TODO: procps 3.2.7 writes "value\n", note trailing "\n"
Denis Vlasenko73c571a2009-03-09 00:12:37 +0000166 xwrite_str(fd, value);
Eric Andersenb9050282003-12-24 06:02:11 +0000167 close(fd);
Joshua Kahlenbergc4398512012-09-05 18:15:12 +0200168 if (!(option_mask32 & FLAG_QUIET)) {
169 if (option_mask32 & FLAG_SHOW_KEYS)
170 printf("%s = ", outname);
171 puts(value);
172 }
Eric Andersenb9050282003-12-24 06:02:11 +0000173 } else {
Denis Vlasenko54d10052008-12-24 03:11:43 +0000174 char c;
Eric Andersenb9050282003-12-24 06:02:11 +0000175
Denis Vlasenko54d10052008-12-24 03:11:43 +0000176 value = cptr = xmalloc_read(fd, NULL);
177 close(fd);
178 if (value == NULL) {
179 bb_perror_msg("error reading key '%s'", outname);
180 goto end;
181 }
182
183 /* dev.cdrom.info and sunrpc.transports, for example,
184 * are multi-line. Try "sysctl sunrpc.transports"
185 */
186 while ((c = *cptr) != '\0') {
187 if (option_mask32 & FLAG_SHOW_KEYS)
188 printf("%s = ", outname);
189 while (1) {
190 fputc(c, stdout);
191 cptr++;
192 if (c == '\n')
193 break;
194 c = *cptr;
195 if (c == '\0')
196 break;
197 }
198 }
199 free(value);
200 }
201 end:
Eric Andersenb9050282003-12-24 06:02:11 +0000202 free(outname);
203 return retval;
Denis Vlasenko54d10052008-12-24 03:11:43 +0000204}
Eric Andersenb9050282003-12-24 06:02:11 +0000205
Denis Vlasenko038fe442009-03-29 02:23:16 +0000206static int sysctl_act_recursive(const char *path)
Eric Andersenb9050282003-12-24 06:02:11 +0000207{
Denis Vlasenko54d10052008-12-24 03:11:43 +0000208 DIR *dirp;
209 struct stat buf;
210 struct dirent *entry;
211 char *next;
212 int retval = 0;
Eric Andersenb9050282003-12-24 06:02:11 +0000213
Denis Vlasenko54d10052008-12-24 03:11:43 +0000214 stat(path, &buf);
215 if (S_ISDIR(buf.st_mode) && !(option_mask32 & FLAG_WRITE)) {
216 dirp = opendir(path);
217 if (dirp == NULL)
218 return -1;
219 while ((entry = readdir(dirp)) != NULL) {
Denis Vlasenko5a6617a2009-03-29 02:22:19 +0000220 next = concat_subpath_file(path, entry->d_name);
Denis Vlasenko54d10052008-12-24 03:11:43 +0000221 if (next == NULL)
222 continue; /* d_name is "." or ".." */
223 /* if path was ".", drop "./" prefix: */
Denis Vlasenko038fe442009-03-29 02:23:16 +0000224 retval |= sysctl_act_recursive((next[0] == '.' && next[1] == '/') ?
Denys Vlasenko69675782013-01-14 01:34:48 +0100225 next + 2 : next);
Denis Vlasenko54d10052008-12-24 03:11:43 +0000226 free(next);
Denis Vlasenko5a28a252007-10-29 19:22:13 +0000227 }
Denis Vlasenko54d10052008-12-24 03:11:43 +0000228 closedir(dirp);
229 } else {
230 char *name = xstrdup(path);
231 retval |= sysctl_act_on_setting(name);
232 free(name);
233 }
Eric Andersenb9050282003-12-24 06:02:11 +0000234
235 return retval;
Denis Vlasenko54d10052008-12-24 03:11:43 +0000236}
Denis Vlasenko58cc52a2008-10-15 08:22:55 +0000237
Denis Vlasenko038fe442009-03-29 02:23:16 +0000238/* Set sysctl's from a conf file. Format example:
239 * # Controls IP packet forwarding
240 * net.ipv4.ip_forward = 0
241 */
242static int sysctl_handle_preload_file(const char *filename)
Denis Vlasenko58cc52a2008-10-15 08:22:55 +0000243{
Denis Vlasenko038fe442009-03-29 02:23:16 +0000244 char *token[2];
245 parser_t *parser;
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200246 int parse_flags;
Denis Vlasenkoa9c3f7a2008-10-15 13:50:24 +0000247
Denis Vlasenko038fe442009-03-29 02:23:16 +0000248 parser = config_open(filename);
249 /* Must do it _after_ config_open(): */
250 xchdir("/proc/sys");
Denis Vlasenko54d10052008-12-24 03:11:43 +0000251
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200252 parse_flags = 0;
253 parse_flags &= ~PARSE_COLLAPSE; // NO (var==val is not var=val) - treat consecutive delimiters as one
254 parse_flags &= ~PARSE_TRIM; // NO - trim leading and trailing delimiters
255 parse_flags |= PARSE_GREEDY; // YES - last token takes entire remainder of the line
256 parse_flags &= ~PARSE_MIN_DIE; // NO - die if < min tokens found
257 parse_flags &= ~PARSE_EOL_COMMENTS; // NO (only first char) - comments are recognized even if not first char
Denys Vlasenko50db1f22017-08-05 18:20:34 +0200258 parse_flags |= PARSE_ALT_COMMENTS;// YES - two comment chars: ';' and '#'
259 /* <space><tab><space>#comment is also comment, not strictly 1st char only */
260 parse_flags |= PARSE_WS_COMMENTS; // YES - comments are recognized even if there is whitespace before
261 while (config_read(parser, token, 2, 2, ";#=", parse_flags)) {
Denys Vlasenkof427c802009-05-10 23:41:29 +0200262 char *tp;
Denys Vlasenko20077c12017-08-05 17:50:35 +0200263
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200264 trim(token[1]);
Denys Vlasenko20077c12017-08-05 17:50:35 +0200265 tp = trim(token[0]);
Denis Vlasenko038fe442009-03-29 02:23:16 +0000266 sysctl_dots_to_slashes(token[0]);
Denys Vlasenko20077c12017-08-05 17:50:35 +0200267 /* ^^^converted in-place. tp still points to NUL */
268 /* now, add "=TOKEN1" */
269 *tp++ = '=';
270 overlapping_strcpy(tp, token[1]);
271
272 sysctl_act_on_setting(token[0]);
Denis Vlasenko58cc52a2008-10-15 08:22:55 +0000273 }
Denis Vlasenko038fe442009-03-29 02:23:16 +0000274 if (ENABLE_FEATURE_CLEAN_UP)
275 config_close(parser);
276 return 0;
277}
278
279int sysctl_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
280int sysctl_main(int argc UNUSED_PARAM, char **argv)
281{
282 int retval;
283 int opt;
284
285 opt = getopt32(argv, "+" OPTION_STR); /* '+' - stop on first non-option */
286 argv += optind;
287 opt ^= (FLAG_SHOW_KEYS | FLAG_SHOW_KEY_ERRORS);
288 option_mask32 = opt;
289
290 if (opt & FLAG_PRELOAD_FILE) {
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200291 int cur_dir_fd;
Denis Vlasenko038fe442009-03-29 02:23:16 +0000292 option_mask32 |= FLAG_WRITE;
Denys Vlasenko9cf89cd2017-08-05 13:45:22 +0200293 if (!*argv)
294 *--argv = (char*)"/etc/sysctl.conf";
295 cur_dir_fd = xopen(".", O_RDONLY | O_DIRECTORY);
296 do {
297 /* xchdir("/proc/sys") is inside */
298 sysctl_handle_preload_file(*argv);
299 xfchdir(cur_dir_fd); /* files can be relative, must restore cwd */
300 } while (*++argv);
301 return 0; /* procps-ng 3.3.10 does not flag parse errors */
Denis Vlasenko038fe442009-03-29 02:23:16 +0000302 }
303 xchdir("/proc/sys");
Denis Vlasenko038fe442009-03-29 02:23:16 +0000304 if (opt & (FLAG_TABLE_FORMAT | FLAG_SHOW_ALL)) {
305 return sysctl_act_recursive(".");
306 }
307
308 retval = 0;
309 while (*argv) {
310 sysctl_dots_to_slashes(*argv);
311 retval |= sysctl_act_recursive(*argv);
312 argv++;
313 }
314
315 return retval;
Denis Vlasenko54d10052008-12-24 03:11:43 +0000316}