blob: 03b7d0b7571c11a9fe2fe6f6d1fe3126419d6da8 [file] [log] [blame]
Denys Vlasenko73067272010-01-12 22:11:24 +01001/* vi: set sw=4 ts=4: */
2/*
3 * Adapted from ash applet code
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Copyright (c) 1989, 1991, 1993, 1994
9 * The Regents of the University of California. All rights reserved.
10 *
11 * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
12 * was re-ported from NetBSD and debianized.
13 *
14 * Copyright (c) 2010 Denys Vlasenko
15 * Split from ash.c
16 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020017 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denys Vlasenko73067272010-01-12 22:11:24 +010018 */
19#include "libbb.h"
20#include "shell_common.h"
Mike Frysingerc5fe9f72012-07-05 23:19:09 -040021#include <sys/resource.h> /* getrlimit */
Denys Vlasenko73067272010-01-12 22:11:24 +010022
Denys Vlasenko73067272010-01-12 22:11:24 +010023const char defifsvar[] ALIGN1 = "IFS= \t\n";
Denys Vlasenkoe627ac92016-09-30 14:36:59 +020024const char defoptindvar[] ALIGN1 = "OPTIND=1";
Denys Vlasenko25d9b912010-01-13 18:22:35 +010025
26
27int FAST_FUNC is_well_formed_var_name(const char *s, char terminator)
28{
29 if (!s || !(isalpha(*s) || *s == '_'))
30 return 0;
31
32 do
33 s++;
34 while (isalnum(*s) || *s == '_');
35
36 return *s == terminator;
37}
Denys Vlasenko599ae1e2010-05-23 17:49:50 +020038
39/* read builtin */
40
Denys Vlasenko25ce3ee2013-07-14 01:23:06 +020041/* Needs to be interruptible: shell must handle traps and shell-special signals
Denys Vlasenko80542ba2011-05-08 21:23:43 +020042 * while inside read. To implement this, be sure to not loop on EINTR
43 * and return errno == EINTR reliably.
44 */
Denys Vlasenko599ae1e2010-05-23 17:49:50 +020045//TODO: use more efficient setvar() which takes a pointer to malloced "VAR=VAL"
46//string. hush naturally has it, and ash has setvareq().
47//Here we can simply store "VAR=" at buffer start and store read data directly
48//after "=", then pass buffer to setvar() to consume.
49const char* FAST_FUNC
50shell_builtin_read(void FAST_FUNC (*setvar)(const char *name, const char *val),
51 char **argv,
52 const char *ifs,
53 int read_flags,
54 const char *opt_n,
55 const char *opt_p,
56 const char *opt_t,
57 const char *opt_u
58)
59{
Denys Vlasenko80542ba2011-05-08 21:23:43 +020060 unsigned err;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +020061 unsigned end_ms; /* -t TIMEOUT */
62 int fd; /* -u FD */
63 int nchars; /* -n NUM */
64 char **pp;
65 char *buffer;
66 struct termios tty, old_tty;
67 const char *retval;
68 int bufpos; /* need to be able to hold -1 */
69 int startword;
70 smallint backslash;
71
Denys Vlasenko80542ba2011-05-08 21:23:43 +020072 errno = err = 0;
73
Denys Vlasenko599ae1e2010-05-23 17:49:50 +020074 pp = argv;
75 while (*pp) {
76 if (!is_well_formed_var_name(*pp, '\0')) {
77 /* Mimic bash message */
78 bb_error_msg("read: '%s': not a valid identifier", *pp);
79 return (const char *)(uintptr_t)1;
80 }
81 pp++;
82 }
83
84 nchars = 0; /* if != 0, -n is in effect */
85 if (opt_n) {
86 nchars = bb_strtou(opt_n, NULL, 10);
87 if (nchars < 0 || errno)
88 return "invalid count";
89 /* note: "-n 0": off (bash 3.2 does this too) */
90 }
91 end_ms = 0;
92 if (opt_t) {
93 end_ms = bb_strtou(opt_t, NULL, 10);
94 if (errno || end_ms > UINT_MAX / 2048)
95 return "invalid timeout";
96 end_ms *= 1000;
97#if 0 /* even bash has no -t N.NNN support */
98 ts.tv_sec = bb_strtou(opt_t, &p, 10);
99 ts.tv_usec = 0;
100 /* EINVAL means number is ok, but not terminated by NUL */
101 if (*p == '.' && errno == EINVAL) {
102 char *p2;
103 if (*++p) {
104 int scale;
105 ts.tv_usec = bb_strtou(p, &p2, 10);
106 if (errno)
107 return "invalid timeout";
108 scale = p2 - p;
109 /* normalize to usec */
110 if (scale > 6)
111 return "invalid timeout";
112 while (scale++ < 6)
113 ts.tv_usec *= 10;
114 }
115 } else if (ts.tv_sec < 0 || errno) {
116 return "invalid timeout";
117 }
118 if (!(ts.tv_sec | ts.tv_usec)) { /* both are 0? */
119 return "invalid timeout";
120 }
121#endif /* if 0 */
122 }
123 fd = STDIN_FILENO;
124 if (opt_u) {
125 fd = bb_strtou(opt_u, NULL, 10);
126 if (fd < 0 || errno)
127 return "invalid file descriptor";
128 }
129
130 if (opt_p && isatty(fd)) {
131 fputs(opt_p, stderr);
132 fflush_all();
133 }
134
135 if (ifs == NULL)
136 ifs = defifs;
137
138 if (nchars || (read_flags & BUILTIN_READ_SILENT)) {
139 tcgetattr(fd, &tty);
140 old_tty = tty;
141 if (nchars) {
142 tty.c_lflag &= ~ICANON;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +0100143 // Setting it to more than 1 breaks poll():
144 // it blocks even if there's data. !??
145 //tty.c_cc[VMIN] = nchars < 256 ? nchars : 255;
Denys Vlasenko01ccdd12017-01-11 16:17:59 +0100146 /* reads will block only if < 1 char is available */
Denys Vlasenko7ce209b2012-01-15 22:58:06 +0100147 tty.c_cc[VMIN] = 1;
148 /* no timeout (reads block forever) */
149 tty.c_cc[VTIME] = 0;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200150 }
151 if (read_flags & BUILTIN_READ_SILENT) {
152 tty.c_lflag &= ~(ECHO | ECHOK | ECHONL);
153 }
154 /* This forces execution of "restoring" tcgetattr later */
155 read_flags |= BUILTIN_READ_SILENT;
156 /* if tcgetattr failed, tcsetattr will fail too.
157 * Ignoring, it's harmless. */
158 tcsetattr(fd, TCSANOW, &tty);
159 }
160
161 retval = (const char *)(uintptr_t)0;
162 startword = 1;
163 backslash = 0;
164 if (end_ms) /* NB: end_ms stays nonzero: */
165 end_ms = ((unsigned)monotonic_ms() + end_ms) | 1;
166 buffer = NULL;
167 bufpos = 0;
168 do {
169 char c;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200170 struct pollfd pfd[1];
171 int timeout;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200172
Denys Vlasenko10c01312011-05-11 11:49:21 +0200173 if ((bufpos & 0xff) == 0)
Denys Vlasenko9e71e3c2012-09-06 13:28:10 +0200174 buffer = xrealloc(buffer, bufpos + 0x101);
Denys Vlasenko80542ba2011-05-08 21:23:43 +0200175
Denys Vlasenko10c01312011-05-11 11:49:21 +0200176 timeout = -1;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200177 if (end_ms) {
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200178 timeout = end_ms - (unsigned)monotonic_ms();
Denys Vlasenko10c01312011-05-11 11:49:21 +0200179 if (timeout <= 0) { /* already late? */
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200180 retval = (const char *)(uintptr_t)1;
181 goto ret;
182 }
183 }
184
Denys Vlasenko10c01312011-05-11 11:49:21 +0200185 /* We must poll even if timeout is -1:
186 * we want to be interrupted if signal arrives,
187 * regardless of SA_RESTART-ness of that signal!
188 */
189 errno = 0;
190 pfd[0].fd = fd;
191 pfd[0].events = POLLIN;
192 if (poll(pfd, 1, timeout) != 1) {
193 /* timed out, or EINTR */
194 err = errno;
195 retval = (const char *)(uintptr_t)1;
196 goto ret;
197 }
198 if (read(fd, &buffer[bufpos], 1) != 1) {
Denys Vlasenko80542ba2011-05-08 21:23:43 +0200199 err = errno;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200200 retval = (const char *)(uintptr_t)1;
201 break;
202 }
Denys Vlasenko10c01312011-05-11 11:49:21 +0200203
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200204 c = buffer[bufpos];
205 if (c == '\0')
206 continue;
Denys Vlasenkof5470412017-05-22 19:34:45 +0200207 if (!(read_flags & BUILTIN_READ_RAW)) {
208 if (backslash) {
209 backslash = 0;
210 if (c != '\n')
211 goto put;
212 continue;
213 }
214 if (c == '\\') {
215 backslash = 1;
216 continue;
217 }
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200218 }
219 if (c == '\n')
220 break;
221
222 /* $IFS splitting. NOT done if we run "read"
223 * without variable names (bash compat).
224 * Thus, "read" and "read REPLY" are not the same.
225 */
226 if (argv[0]) {
227/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05 */
228 const char *is_ifs = strchr(ifs, c);
229 if (startword && is_ifs) {
230 if (isspace(c))
231 continue;
232 /* it is a non-space ifs char */
233 startword--;
234 if (startword == 1) /* first one? */
235 continue; /* yes, it is not next word yet */
236 }
237 startword = 0;
238 if (argv[1] != NULL && is_ifs) {
239 buffer[bufpos] = '\0';
240 bufpos = 0;
241 setvar(*argv, buffer);
242 argv++;
243 /* can we skip one non-space ifs char? (2: yes) */
244 startword = isspace(c) ? 2 : 1;
245 continue;
246 }
247 }
248 put:
249 bufpos++;
250 } while (--nchars);
251
252 if (argv[0]) {
253 /* Remove trailing space $IFS chars */
254 while (--bufpos >= 0 && isspace(buffer[bufpos]) && strchr(ifs, buffer[bufpos]) != NULL)
255 continue;
256 buffer[bufpos + 1] = '\0';
257 /* Use the remainder as a value for the next variable */
258 setvar(*argv, buffer);
259 /* Set the rest to "" */
260 while (*++argv)
261 setvar(*argv, "");
262 } else {
263 /* Note: no $IFS removal */
264 buffer[bufpos] = '\0';
265 setvar("REPLY", buffer);
266 }
267
268 ret:
269 free(buffer);
270 if (read_flags & BUILTIN_READ_SILENT)
271 tcsetattr(fd, TCSANOW, &old_tty);
Denys Vlasenko80542ba2011-05-08 21:23:43 +0200272
273 errno = err;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200274 return retval;
275}
276
277/* ulimit builtin */
278
279struct limits {
280 uint8_t cmd; /* RLIMIT_xxx fit into it */
281 uint8_t factor_shift; /* shift by to get rlim_{cur,max} values */
282 char option;
283 const char *name;
284};
285
286static const struct limits limits_tbl[] = {
287#ifdef RLIMIT_FSIZE
288 { RLIMIT_FSIZE, 9, 'f', "file size (blocks)" },
289#endif
290#ifdef RLIMIT_CPU
291 { RLIMIT_CPU, 0, 't', "cpu time (seconds)" },
292#endif
293#ifdef RLIMIT_DATA
294 { RLIMIT_DATA, 10, 'd', "data seg size (kb)" },
295#endif
296#ifdef RLIMIT_STACK
297 { RLIMIT_STACK, 10, 's', "stack size (kb)" },
298#endif
299#ifdef RLIMIT_CORE
300 { RLIMIT_CORE, 9, 'c', "core file size (blocks)" },
301#endif
302#ifdef RLIMIT_RSS
303 { RLIMIT_RSS, 10, 'm', "resident set size (kb)" },
304#endif
305#ifdef RLIMIT_MEMLOCK
306 { RLIMIT_MEMLOCK, 10, 'l', "locked memory (kb)" },
307#endif
308#ifdef RLIMIT_NPROC
309 { RLIMIT_NPROC, 0, 'p', "processes" },
310#endif
311#ifdef RLIMIT_NOFILE
312 { RLIMIT_NOFILE, 0, 'n', "file descriptors" },
313#endif
314#ifdef RLIMIT_AS
315 { RLIMIT_AS, 10, 'v', "address space (kb)" },
316#endif
317#ifdef RLIMIT_LOCKS
318 { RLIMIT_LOCKS, 0, 'w', "locks" },
319#endif
Denys Vlasenkoe32d05b2011-04-04 02:12:14 +0200320#ifdef RLIMIT_NICE
321 { RLIMIT_NICE, 0, 'e', "scheduling priority" },
322#endif
323#ifdef RLIMIT_RTPRIO
324 { RLIMIT_RTPRIO, 0, 'r', "real-time priority" },
325#endif
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200326};
327
328enum {
329 OPT_hard = (1 << 0),
330 OPT_soft = (1 << 1),
331};
332
333/* "-": treat args as parameters of option with ASCII code 1 */
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200334static const char ulimit_opt_string[] ALIGN1 = "-HSa"
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200335#ifdef RLIMIT_FSIZE
336 "f::"
337#endif
338#ifdef RLIMIT_CPU
339 "t::"
340#endif
341#ifdef RLIMIT_DATA
342 "d::"
343#endif
344#ifdef RLIMIT_STACK
345 "s::"
346#endif
347#ifdef RLIMIT_CORE
348 "c::"
349#endif
350#ifdef RLIMIT_RSS
351 "m::"
352#endif
353#ifdef RLIMIT_MEMLOCK
354 "l::"
355#endif
356#ifdef RLIMIT_NPROC
357 "p::"
358#endif
359#ifdef RLIMIT_NOFILE
360 "n::"
361#endif
362#ifdef RLIMIT_AS
363 "v::"
364#endif
365#ifdef RLIMIT_LOCKS
366 "w::"
367#endif
Denys Vlasenkoe32d05b2011-04-04 02:12:14 +0200368#ifdef RLIMIT_NICE
369 "e::"
370#endif
371#ifdef RLIMIT_RTPRIO
372 "r::"
373#endif
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200374 ;
375
376static void printlim(unsigned opts, const struct rlimit *limit,
377 const struct limits *l)
378{
379 rlim_t val;
380
381 val = limit->rlim_max;
382 if (!(opts & OPT_hard))
383 val = limit->rlim_cur;
384
385 if (val == RLIM_INFINITY)
Denys Vlasenkod60752f2015-10-07 22:42:45 +0200386 puts("unlimited");
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200387 else {
388 val >>= l->factor_shift;
389 printf("%llu\n", (long long) val);
390 }
391}
392
393int FAST_FUNC
394shell_builtin_ulimit(char **argv)
395{
396 unsigned opts;
397 unsigned argc;
398
399 /* We can't use getopt32: need to handle commands like
400 * ulimit 123 -c2 -l 456
401 */
402
403 /* In case getopt was already called:
404 * reset the libc getopt() function, which keeps internal state.
405 */
Kaarle Ritvanen835ad3a2017-04-12 00:58:46 +0300406 GETOPT_RESET();
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200407
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100408 argc = 1;
409 while (argv[argc])
410 argc++;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200411
412 opts = 0;
413 while (1) {
414 struct rlimit limit;
415 const struct limits *l;
416 int opt_char = getopt(argc, argv, ulimit_opt_string);
417
418 if (opt_char == -1)
419 break;
420 if (opt_char == 'H') {
421 opts |= OPT_hard;
422 continue;
423 }
424 if (opt_char == 'S') {
425 opts |= OPT_soft;
426 continue;
427 }
428
429 if (opt_char == 'a') {
430 for (l = limits_tbl; l != &limits_tbl[ARRAY_SIZE(limits_tbl)]; l++) {
431 getrlimit(l->cmd, &limit);
432 printf("-%c: %-30s ", l->option, l->name);
433 printlim(opts, &limit, l);
434 }
435 continue;
436 }
437
438 if (opt_char == 1)
439 opt_char = 'f';
440 for (l = limits_tbl; l != &limits_tbl[ARRAY_SIZE(limits_tbl)]; l++) {
441 if (opt_char == l->option) {
442 char *val_str;
443
444 getrlimit(l->cmd, &limit);
445
446 val_str = optarg;
447 if (!val_str && argv[optind] && argv[optind][0] != '-')
448 val_str = argv[optind++]; /* ++ skips NN in "-c NN" case */
449 if (val_str) {
450 rlim_t val;
451
452 if (strcmp(val_str, "unlimited") == 0)
453 val = RLIM_INFINITY;
454 else {
455 if (sizeof(val) == sizeof(int))
456 val = bb_strtou(val_str, NULL, 10);
457 else if (sizeof(val) == sizeof(long))
458 val = bb_strtoul(val_str, NULL, 10);
459 else
460 val = bb_strtoull(val_str, NULL, 10);
461 if (errno) {
Denys Vlasenkob32a5432010-08-29 13:29:02 +0200462 bb_error_msg("invalid number '%s'", val_str);
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200463 return EXIT_FAILURE;
464 }
465 val <<= l->factor_shift;
466 }
467//bb_error_msg("opt %c val_str:'%s' val:%lld", opt_char, val_str, (long long)val);
Alexander Shishkin17e0e432010-07-27 08:40:55 +0200468 /* from man bash: "If neither -H nor -S
469 * is specified, both the soft and hard
470 * limits are set. */
471 if (!opts)
472 opts = OPT_hard + OPT_soft;
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200473 if (opts & OPT_hard)
474 limit.rlim_max = val;
Alexander Shishkin17e0e432010-07-27 08:40:55 +0200475 if (opts & OPT_soft)
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200476 limit.rlim_cur = val;
477//bb_error_msg("setrlimit(%d, %lld, %lld)", l->cmd, (long long)limit.rlim_cur, (long long)limit.rlim_max);
478 if (setrlimit(l->cmd, &limit) < 0) {
479 bb_perror_msg("error setting limit");
480 return EXIT_FAILURE;
481 }
482 } else {
483 printlim(opts, &limit, l);
484 }
485 break;
486 }
487 } /* for (every possible opt) */
488
489 if (l == &limits_tbl[ARRAY_SIZE(limits_tbl)]) {
490 /* bad option. getopt already complained. */
491 break;
492 }
Denys Vlasenko599ae1e2010-05-23 17:49:50 +0200493 } /* while (there are options) */
494
495 return 0;
496}