]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/util.c
sysusers: Preserve ownership and mode on /etc/passwd and friends
[thirdparty/systemd.git] / src / shared / util.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
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
a7334b09
LP
11 (at your option) any later version.
12
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
5430f7f2 16 Lesser General Public License for more details.
a7334b09 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
60918275
LP
22#include <assert.h>
23#include <string.h>
24#include <unistd.h>
25#include <errno.h>
85261803 26#include <stdlib.h>
034c6ed7
LP
27#include <signal.h>
28#include <stdio.h>
1dccbe19
LP
29#include <syslog.h>
30#include <sched.h>
31#include <sys/resource.h>
ef886c6a 32#include <linux/sched.h>
a9f5d454
LP
33#include <sys/types.h>
34#include <sys/stat.h>
3a0ecb08 35#include <fcntl.h>
a0d40ac5 36#include <dirent.h>
601f6a1e
LP
37#include <sys/ioctl.h>
38#include <linux/vt.h>
39#include <linux/tiocl.h>
80876c20
LP
40#include <termios.h>
41#include <stdarg.h>
42#include <sys/inotify.h>
43#include <sys/poll.h>
3177a7fa 44#include <ctype.h>
5b6319dc 45#include <sys/prctl.h>
ef2f1067
LP
46#include <sys/utsname.h>
47#include <pwd.h>
4fd5948e 48#include <netinet/ip.h>
3fe5e5d4 49#include <linux/kd.h>
afea26ad 50#include <dlfcn.h>
2e78aa99 51#include <sys/wait.h>
7948c4df 52#include <sys/time.h>
8092a428 53#include <glob.h>
4b67834e 54#include <grp.h>
87d2c1ff 55#include <sys/mman.h>
825c6fe5 56#include <sys/vfs.h>
6d313367 57#include <sys/mount.h>
825c6fe5 58#include <linux/magic.h>
0b507b17 59#include <limits.h>
09017585
MS
60#include <langinfo.h>
61#include <locale.h>
6afc95b7 62#include <sys/personality.h>
844ec79b 63#include <libgen.h>
2b6bf07d 64#undef basename
60918275 65
9bf3b535
LP
66#ifdef HAVE_SYS_AUXV_H
67#include <sys/auxv.h>
68#endif
69
60918275
LP
70#include "macro.h"
71#include "util.h"
1dccbe19
LP
72#include "ioprio.h"
73#include "missing.h"
a9f5d454 74#include "log.h"
65d2ebdc 75#include "strv.h"
e51bc1a2 76#include "label.h"
c38dfac9 77#include "mkdir.h"
9eb977db 78#include "path-util.h"
d06dacd0 79#include "exit-status.h"
83cc030f 80#include "hashmap.h"
4d1a6904 81#include "env-util.h"
a5c32cff 82#include "fileio.h"
8f6ce71f 83#include "device-nodes.h"
f405e86d
SL
84#include "utf8.h"
85#include "gunicode.h"
295edddf 86#include "virt.h"
477def80 87#include "def.h"
56cf987f 88
9a0e6896
LP
89int saved_argc = 0;
90char **saved_argv = NULL;
9086e840 91
28917d7d 92static volatile unsigned cached_columns = 0;
ed757c0c 93static volatile unsigned cached_lines = 0;
9a0e6896 94
37f85e66 95size_t page_size(void) {
ec202eae 96 static thread_local size_t pgsz = 0;
37f85e66 97 long r;
98
87d2c1ff 99 if (_likely_(pgsz > 0))
37f85e66 100 return pgsz;
101
e67f47e5
LP
102 r = sysconf(_SC_PAGESIZE);
103 assert(r > 0);
37f85e66 104
105 pgsz = (size_t) r;
37f85e66 106 return pgsz;
107}
108
e05797fb
LP
109bool streq_ptr(const char *a, const char *b) {
110
111 /* Like streq(), but tries to make sense of NULL pointers */
112
113 if (a && b)
114 return streq(a, b);
115
116 if (!a && !b)
117 return true;
118
119 return false;
120}
121
8c7c140f 122char* endswith(const char *s, const char *postfix) {
60918275
LP
123 size_t sl, pl;
124
125 assert(s);
126 assert(postfix);
127
128 sl = strlen(s);
129 pl = strlen(postfix);
130
d4d0d4db 131 if (pl == 0)
8c7c140f 132 return (char*) s + sl;
d4d0d4db 133
60918275 134 if (sl < pl)
8c7c140f
LP
135 return NULL;
136
137 if (memcmp(s + sl - pl, postfix, pl) != 0)
138 return NULL;
60918275 139
8c7c140f 140 return (char*) s + sl - pl;
60918275
LP
141}
142
5cb36f41 143char* first_word(const char *s, const char *word) {
79d6d816 144 size_t sl, wl;
5cb36f41 145 const char *p;
79d6d816
LP
146
147 assert(s);
148 assert(word);
149
5cb36f41
LP
150 /* Checks if the string starts with the specified word, either
151 * followed by NUL or by whitespace. Returns a pointer to the
152 * NUL or the first character after the whitespace. */
153
79d6d816
LP
154 sl = strlen(s);
155 wl = strlen(word);
156
157 if (sl < wl)
5cb36f41 158 return NULL;
79d6d816 159
d4d0d4db 160 if (wl == 0)
5cb36f41 161 return (char*) s;
d4d0d4db 162
79d6d816 163 if (memcmp(s, word, wl) != 0)
5cb36f41
LP
164 return NULL;
165
166 p = s + wl;
167 if (*p == 0)
168 return (char*) p;
169
170 if (!strchr(WHITESPACE, *p))
171 return NULL;
79d6d816 172
5cb36f41
LP
173 p += strspn(p, WHITESPACE);
174 return (char*) p;
79d6d816
LP
175}
176
42f4e3c4 177int close_nointr(int fd) {
b0ee8068 178 assert(fd >= 0);
a9f85faf
LP
179
180 if (close(fd) >= 0)
181 return 0;
182
183 /*
184 * Just ignore EINTR; a retry loop is the wrong thing to do on
185 * Linux.
186 *
187 * http://lkml.indiana.edu/hypermail/linux/kernel/0509.1/0877.html
188 * https://bugzilla.gnome.org/show_bug.cgi?id=682819
189 * http://utcc.utoronto.ca/~cks/space/blog/unix/CloseEINTR
190 * https://sites.google.com/site/michaelsafyan/software-engineering/checkforeintrwheninvokingclosethinkagain
191 */
192 if (errno == EINTR)
d96ea504 193 return 0;
a9f85faf
LP
194
195 return -errno;
60918275 196}
85261803 197
03e334a1
LP
198int safe_close(int fd) {
199
200 /*
201 * Like close_nointr() but cannot fail. Guarantees errno is
202 * unchanged. Is a NOP with negative fds passed, and returns
203 * -1, so that it can be used in this syntax:
204 *
205 * fd = safe_close(fd);
206 */
85f136b5 207
03e334a1
LP
208 if (fd >= 0) {
209 PROTECT_ERRNO;
d96ea504
LP
210
211 /* The kernel might return pretty much any error code
212 * via close(), but the fd will be closed anyway. The
213 * only condition we want to check for here is whether
214 * the fd was invalid at all... */
215
216 assert_se(close_nointr(fd) != -EBADF);
03e334a1 217 }
85f136b5 218
03e334a1 219 return -1;
85f136b5
LP
220}
221
5b6319dc
LP
222void close_many(const int fds[], unsigned n_fd) {
223 unsigned i;
224
2c93b4ef
LP
225 assert(fds || n_fd <= 0);
226
5b6319dc 227 for (i = 0; i < n_fd; i++)
03e334a1 228 safe_close(fds[i]);
5b6319dc
LP
229}
230
4b73a0c0
LP
231int unlink_noerrno(const char *path) {
232 PROTECT_ERRNO;
233 int r;
234
235 r = unlink(path);
236 if (r < 0)
237 return -errno;
238
239 return 0;
240}
241
85261803
LP
242int parse_boolean(const char *v) {
243 assert(v);
244
0f625d0b 245 if (streq(v, "1") || strcaseeq(v, "yes") || strcaseeq(v, "y") || strcaseeq(v, "true") || strcaseeq(v, "t") || strcaseeq(v, "on"))
85261803 246 return 1;
0f625d0b 247 else if (streq(v, "0") || strcaseeq(v, "no") || strcaseeq(v, "n") || strcaseeq(v, "false") || strcaseeq(v, "f") || strcaseeq(v, "off"))
85261803
LP
248 return 0;
249
250 return -EINVAL;
251}
252
3ba686c1 253int parse_pid(const char *s, pid_t* ret_pid) {
0b172489 254 unsigned long ul = 0;
3ba686c1
LP
255 pid_t pid;
256 int r;
257
258 assert(s);
259 assert(ret_pid);
260
e67f47e5
LP
261 r = safe_atolu(s, &ul);
262 if (r < 0)
3ba686c1
LP
263 return r;
264
265 pid = (pid_t) ul;
266
267 if ((unsigned long) pid != ul)
268 return -ERANGE;
269
270 if (pid <= 0)
271 return -ERANGE;
272
273 *ret_pid = pid;
274 return 0;
275}
276
034a2a52
LP
277int parse_uid(const char *s, uid_t* ret_uid) {
278 unsigned long ul = 0;
279 uid_t uid;
280 int r;
281
282 assert(s);
283 assert(ret_uid);
284
e67f47e5
LP
285 r = safe_atolu(s, &ul);
286 if (r < 0)
034a2a52
LP
287 return r;
288
289 uid = (uid_t) ul;
290
291 if ((unsigned long) uid != ul)
292 return -ERANGE;
293
306a55c8
LP
294 /* Some libc APIs use (uid_t) -1 as special placeholder */
295 if (uid == (uid_t) 0xFFFFFFFF)
f841a154 296 return -ENXIO;
306a55c8 297
6afeb1cf 298 /* A long time ago UIDs where 16bit, hence explicitly avoid the 16bit -1 too */
306a55c8 299 if (uid == (uid_t) 0xFFFF)
f841a154 300 return -ENXIO;
306a55c8 301
034a2a52
LP
302 *ret_uid = uid;
303 return 0;
304}
305
85261803
LP
306int safe_atou(const char *s, unsigned *ret_u) {
307 char *x = NULL;
034c6ed7 308 unsigned long l;
85261803
LP
309
310 assert(s);
311 assert(ret_u);
312
313 errno = 0;
314 l = strtoul(s, &x, 0);
315
f3910003 316 if (!x || x == s || *x || errno)
48deb058 317 return errno > 0 ? -errno : -EINVAL;
85261803 318
034c6ed7 319 if ((unsigned long) (unsigned) l != l)
85261803
LP
320 return -ERANGE;
321
322 *ret_u = (unsigned) l;
323 return 0;
324}
325
326int safe_atoi(const char *s, int *ret_i) {
327 char *x = NULL;
034c6ed7 328 long l;
85261803
LP
329
330 assert(s);
331 assert(ret_i);
332
333 errno = 0;
334 l = strtol(s, &x, 0);
335
f3910003 336 if (!x || x == s || *x || errno)
48deb058 337 return errno > 0 ? -errno : -EINVAL;
85261803 338
034c6ed7 339 if ((long) (int) l != l)
85261803
LP
340 return -ERANGE;
341
034c6ed7
LP
342 *ret_i = (int) l;
343 return 0;
344}
345
b914e211
LP
346int safe_atou8(const char *s, uint8_t *ret) {
347 char *x = NULL;
348 unsigned long l;
349
350 assert(s);
351 assert(ret);
352
353 errno = 0;
354 l = strtoul(s, &x, 0);
355
356 if (!x || x == s || *x || errno)
357 return errno > 0 ? -errno : -EINVAL;
358
359 if ((unsigned long) (uint8_t) l != l)
360 return -ERANGE;
361
362 *ret = (uint8_t) l;
363 return 0;
364}
365
034c6ed7
LP
366int safe_atollu(const char *s, long long unsigned *ret_llu) {
367 char *x = NULL;
368 unsigned long long l;
369
370 assert(s);
371 assert(ret_llu);
372
373 errno = 0;
374 l = strtoull(s, &x, 0);
375
f3910003 376 if (!x || x == s || *x || errno)
034c6ed7
LP
377 return errno ? -errno : -EINVAL;
378
379 *ret_llu = l;
380 return 0;
381}
382
383int safe_atolli(const char *s, long long int *ret_lli) {
384 char *x = NULL;
385 long long l;
386
387 assert(s);
388 assert(ret_lli);
389
390 errno = 0;
391 l = strtoll(s, &x, 0);
392
f3910003 393 if (!x || x == s || *x || errno)
034c6ed7
LP
394 return errno ? -errno : -EINVAL;
395
396 *ret_lli = l;
85261803
LP
397 return 0;
398}
a41e8209 399
f7900e25
TA
400int safe_atod(const char *s, double *ret_d) {
401 char *x = NULL;
32b2634e 402 double d = 0;
f7900e25
TA
403
404 assert(s);
405 assert(ret_d);
406
d6dd604b
LP
407 RUN_WITH_LOCALE(LC_NUMERIC_MASK, "C") {
408 errno = 0;
409 d = strtod(s, &x);
410 }
f7900e25
TA
411
412 if (!x || x == s || *x || errno)
413 return errno ? -errno : -EINVAL;
414
415 *ret_d = (double) d;
416 return 0;
417}
418
bf85c24d
SP
419static size_t strcspn_escaped(const char *s, const char *reject) {
420 bool escaped = false;
421 size_t n;
422
423 for (n=0; s[n]; n++) {
424 if (escaped)
425 escaped = false;
426 else if (s[n] == '\\')
427 escaped = true;
428 else if (strchr(reject, s[n]))
a2a5291b 429 break;
bf85c24d 430 }
a2a5291b
ZJS
431 /* if s ends in \, return index of previous char */
432 return n - escaped;
bf85c24d
SP
433}
434
a41e8209 435/* Split a string into words. */
a2a5291b
ZJS
436const char* split(const char **state, size_t *l, const char *separator, bool quoted) {
437 const char *current;
a41e8209 438
a2a5291b 439 current = *state;
a41e8209 440
a2a5291b
ZJS
441 if (!*current) {
442 assert(**state == '\0');
a41e8209 443 return NULL;
a2a5291b 444 }
a41e8209 445
65d2ebdc 446 current += strspn(current, separator);
a2a5291b
ZJS
447 if (!*current) {
448 *state = current;
70f75a52 449 return NULL;
a2a5291b 450 }
70f75a52 451
bf85c24d 452 if (quoted && strchr("\'\"", *current)) {
a2a5291b
ZJS
453 char quotechars[2] = {*current, '\0'};
454
455 *l = strcspn_escaped(current + 1, quotechars);
456 if (current[*l + 1] == '\0' ||
457 (current[*l + 2] && !strchr(separator, current[*l + 2]))) {
458 /* right quote missing or garbage at the end*/
459 *state = current;
460 return NULL;
461 }
462 assert(current[*l + 1] == quotechars[0]);
463 *state = current++ + *l + 2;
bf85c24d
SP
464 } else if (quoted) {
465 *l = strcspn_escaped(current, separator);
a2a5291b 466 *state = current + *l;
034c6ed7 467 } else {
bf85c24d 468 *l = strcspn(current, separator);
a2a5291b 469 *state = current + *l;
034c6ed7
LP
470 }
471
a2a5291b 472 return current;
034c6ed7
LP
473}
474
034c6ed7
LP
475int get_parent_of_pid(pid_t pid, pid_t *_ppid) {
476 int r;
b4696bce 477 _cleanup_free_ char *line = NULL;
bb00e604 478 long unsigned ppid;
49aa47c7 479 const char *p;
034c6ed7 480
49aa47c7 481 assert(pid >= 0);
034c6ed7
LP
482 assert(_ppid);
483
49aa47c7
LP
484 if (pid == 0) {
485 *_ppid = getppid();
486 return 0;
487 }
034c6ed7 488
49aa47c7 489 p = procfs_file_alloca(pid, "stat");
b4696bce
SP
490 r = read_one_line_file(p, &line);
491 if (r < 0)
034c6ed7 492 return r;
034c6ed7 493
034c6ed7
LP
494 /* Let's skip the pid and comm fields. The latter is enclosed
495 * in () but does not escape any () in its value, so let's
496 * skip over it manually */
497
2fbe635a
LP
498 p = strrchr(line, ')');
499 if (!p)
034c6ed7
LP
500 return -EIO;
501
502 p++;
503
504 if (sscanf(p, " "
505 "%*c " /* state */
bb00e604 506 "%lu ", /* ppid */
034c6ed7
LP
507 &ppid) != 1)
508 return -EIO;
509
bb00e604 510 if ((long unsigned) (pid_t) ppid != ppid)
034c6ed7
LP
511 return -ERANGE;
512
513 *_ppid = (pid_t) ppid;
514
515 return 0;
516}
517
7640a5de 518int get_starttime_of_pid(pid_t pid, unsigned long long *st) {
b4696bce
SP
519 int r;
520 _cleanup_free_ char *line = NULL;
49aa47c7 521 const char *p;
7640a5de 522
49aa47c7 523 assert(pid >= 0);
7640a5de
LP
524 assert(st);
525
b68fa010 526 p = procfs_file_alloca(pid, "stat");
b4696bce
SP
527 r = read_one_line_file(p, &line);
528 if (r < 0)
529 return r;
7640a5de
LP
530
531 /* Let's skip the pid and comm fields. The latter is enclosed
532 * in () but does not escape any () in its value, so let's
533 * skip over it manually */
534
e67f47e5
LP
535 p = strrchr(line, ')');
536 if (!p)
7640a5de
LP
537 return -EIO;
538
539 p++;
540
541 if (sscanf(p, " "
542 "%*c " /* state */
543 "%*d " /* ppid */
544 "%*d " /* pgrp */
545 "%*d " /* session */
546 "%*d " /* tty_nr */
547 "%*d " /* tpgid */
548 "%*u " /* flags */
549 "%*u " /* minflt */
550 "%*u " /* cminflt */
551 "%*u " /* majflt */
552 "%*u " /* cmajflt */
553 "%*u " /* utime */
554 "%*u " /* stime */
555 "%*d " /* cutime */
556 "%*d " /* cstime */
557 "%*d " /* priority */
558 "%*d " /* nice */
559 "%*d " /* num_threads */
560 "%*d " /* itrealvalue */
561 "%llu " /* starttime */,
562 st) != 1)
563 return -EIO;
564
565 return 0;
566}
567
34ca941c
LP
568int fchmod_umask(int fd, mode_t m) {
569 mode_t u;
570 int r;
571
572 u = umask(0777);
573 r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
574 umask(u);
575
576 return r;
577}
578
7072ced8
LP
579char *truncate_nl(char *s) {
580 assert(s);
581
582 s[strcspn(s, NEWLINE)] = 0;
583 return s;
584}
585
93b5eaec 586int get_process_state(pid_t pid) {
e10c9985
YS
587 const char *p;
588 char state;
589 int r;
590 _cleanup_free_ char *line = NULL;
591
592 assert(pid >= 0);
593
594 p = procfs_file_alloca(pid, "stat");
595 r = read_one_line_file(p, &line);
596 if (r < 0)
597 return r;
598
599 p = strrchr(line, ')');
600 if (!p)
601 return -EIO;
602
603 p++;
604
605 if (sscanf(p, " %c", &state) != 1)
606 return -EIO;
607
608 return (unsigned char) state;
609}
610
87d2c1ff 611int get_process_comm(pid_t pid, char **name) {
49aa47c7 612 const char *p;
5b12334d 613 int r;
7072ced8 614
7072ced8 615 assert(name);
49aa47c7 616 assert(pid >= 0);
7072ced8 617
b68fa010 618 p = procfs_file_alloca(pid, "comm");
7072ced8 619
5b12334d
LP
620 r = read_one_line_file(p, name);
621 if (r == -ENOENT)
622 return -ESRCH;
623
624 return r;
7072ced8
LP
625}
626
87d2c1ff 627int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line) {
49aa47c7 628 _cleanup_fclose_ FILE *f = NULL;
9bdbc2e2 629 char *r = NULL, *k;
49aa47c7 630 const char *p;
c59760ee 631 int c;
c59760ee 632
c59760ee 633 assert(line);
49aa47c7 634 assert(pid >= 0);
c59760ee 635
b68fa010 636 p = procfs_file_alloca(pid, "cmdline");
c59760ee 637
49aa47c7 638 f = fopen(p, "re");
c59760ee
LP
639 if (!f)
640 return -errno;
49aa47c7 641
9bdbc2e2 642 if (max_length == 0) {
49aa47c7
LP
643 size_t len = 0, allocated = 0;
644
9bdbc2e2 645 while ((c = getc(f)) != EOF) {
49aa47c7
LP
646
647 if (!GREEDY_REALLOC(r, allocated, len+2)) {
9bdbc2e2 648 free(r);
9bdbc2e2
LN
649 return -ENOMEM;
650 }
49aa47c7
LP
651
652 r[len++] = isprint(c) ? c : ' ';
9bdbc2e2 653 }
49aa47c7
LP
654
655 if (len > 0)
656 r[len-1] = 0;
657
9bdbc2e2
LN
658 } else {
659 bool space = false;
660 size_t left;
49aa47c7 661
9bdbc2e2 662 r = new(char, max_length);
49aa47c7 663 if (!r)
9bdbc2e2 664 return -ENOMEM;
c59760ee 665
9bdbc2e2
LN
666 k = r;
667 left = max_length;
668 while ((c = getc(f)) != EOF) {
c59760ee 669
9bdbc2e2
LN
670 if (isprint(c)) {
671 if (space) {
672 if (left <= 4)
673 break;
674
675 *(k++) = ' ';
676 left--;
677 space = false;
678 }
c59760ee 679
c59760ee
LP
680 if (left <= 4)
681 break;
682
9bdbc2e2 683 *(k++) = (char) c;
057fbb58 684 left--;
9bdbc2e2
LN
685 } else
686 space = true;
687 }
c59760ee 688
9bdbc2e2
LN
689 if (left <= 4) {
690 size_t n = MIN(left-1, 3U);
691 memcpy(k, "...", n);
692 k[n] = 0;
693 } else
694 *k = 0;
c59760ee
LP
695 }
696
35d2e7ec 697 /* Kernel threads have no argv[] */
9bdbc2e2 698 if (r == NULL || r[0] == 0) {
b47d419c 699 _cleanup_free_ char *t = NULL;
35d2e7ec
LP
700 int h;
701
702 free(r);
703
87d2c1ff
LP
704 if (!comm_fallback)
705 return -ENOENT;
706
707 h = get_process_comm(pid, &t);
708 if (h < 0)
35d2e7ec
LP
709 return h;
710
b7def684 711 r = strjoin("[", t, "]", NULL);
87d2c1ff 712 if (!r)
35d2e7ec
LP
713 return -ENOMEM;
714 }
fa776d8e 715
c59760ee
LP
716 *line = r;
717 return 0;
718}
719
1e5678d0 720int is_kernel_thread(pid_t pid) {
49aa47c7 721 const char *p;
1e5678d0
LP
722 size_t count;
723 char c;
724 bool eof;
725 FILE *f;
726
727 if (pid == 0)
728 return 0;
729
49aa47c7 730 assert(pid > 0);
1e5678d0 731
49aa47c7
LP
732 p = procfs_file_alloca(pid, "cmdline");
733 f = fopen(p, "re");
1e5678d0
LP
734 if (!f)
735 return -errno;
736
737 count = fread(&c, 1, 1, f);
738 eof = feof(f);
739 fclose(f);
740
741 /* Kernel threads have an empty cmdline */
742
743 if (count <= 0)
744 return eof ? 1 : -errno;
745
746 return 0;
747}
748
3a832116
SL
749int get_process_capeff(pid_t pid, char **capeff) {
750 const char *p;
3a832116
SL
751
752 assert(capeff);
753 assert(pid >= 0);
754
b68fa010 755 p = procfs_file_alloca(pid, "status");
3a832116 756
69ab8088 757 return get_status_field(p, "\nCapEff:", capeff);
3a832116 758}
49aa47c7 759
87d2c1ff 760int get_process_exe(pid_t pid, char **name) {
49aa47c7 761 const char *p;
e79f68d1
ZJS
762 char *d;
763 int r;
87d2c1ff 764
49aa47c7 765 assert(pid >= 0);
87d2c1ff
LP
766 assert(name);
767
b68fa010 768 p = procfs_file_alloca(pid, "exe");
87d2c1ff 769
e79f68d1
ZJS
770 r = readlink_malloc(p, name);
771 if (r < 0)
5b12334d 772 return r == -ENOENT ? -ESRCH : r;
e79f68d1
ZJS
773
774 d = endswith(*name, " (deleted)");
775 if (d)
776 *d = '\0';
777
778 return 0;
87d2c1ff
LP
779}
780
901c3d0d 781static int get_process_id(pid_t pid, const char *field, uid_t *uid) {
f74e605f 782 _cleanup_fclose_ FILE *f = NULL;
9db11a99 783 char line[LINE_MAX];
49aa47c7 784 const char *p;
7e4ab3c5 785
f74e605f 786 assert(field);
7e4ab3c5
LP
787 assert(uid);
788
789 if (pid == 0)
790 return getuid();
791
49aa47c7
LP
792 p = procfs_file_alloca(pid, "status");
793 f = fopen(p, "re");
7e4ab3c5
LP
794 if (!f)
795 return -errno;
796
9db11a99 797 FOREACH_LINE(line, f, return -errno) {
f74e605f 798 char *l;
7e4ab3c5
LP
799
800 l = strstrip(line);
801
901c3d0d
LP
802 if (startswith(l, field)) {
803 l += strlen(field);
7e4ab3c5
LP
804 l += strspn(l, WHITESPACE);
805
806 l[strcspn(l, WHITESPACE)] = 0;
807
f74e605f 808 return parse_uid(l, uid);
7e4ab3c5
LP
809 }
810 }
811
f74e605f 812 return -EIO;
7e4ab3c5
LP
813}
814
901c3d0d
LP
815int get_process_uid(pid_t pid, uid_t *uid) {
816 return get_process_id(pid, "Uid:", uid);
817}
818
819int get_process_gid(pid_t pid, gid_t *gid) {
49aa47c7 820 assert_cc(sizeof(uid_t) == sizeof(gid_t));
901c3d0d
LP
821 return get_process_id(pid, "Gid:", gid);
822}
823
fab56fc5
LP
824char *strnappend(const char *s, const char *suffix, size_t b) {
825 size_t a;
44d8db9e
LP
826 char *r;
827
fab56fc5
LP
828 if (!s && !suffix)
829 return strdup("");
830
831 if (!s)
832 return strndup(suffix, b);
833
834 if (!suffix)
835 return strdup(s);
836
44d8db9e
LP
837 assert(s);
838 assert(suffix);
839
840 a = strlen(s);
aa408e77 841 if (b > ((size_t) -1) - a)
040f18ea 842 return NULL;
44d8db9e 843
040f18ea
LP
844 r = new(char, a+b+1);
845 if (!r)
44d8db9e
LP
846 return NULL;
847
848 memcpy(r, s, a);
849 memcpy(r+a, suffix, b);
850 r[a+b] = 0;
851
852 return r;
853}
87f0e418 854
fab56fc5
LP
855char *strappend(const char *s, const char *suffix) {
856 return strnappend(s, suffix, suffix ? strlen(suffix) : 0);
857}
858
849958d1 859int readlinkat_malloc(int fd, const char *p, char **ret) {
87f0e418 860 size_t l = 100;
2d2ebd6b 861 int r;
87f0e418
LP
862
863 assert(p);
2d2ebd6b 864 assert(ret);
87f0e418
LP
865
866 for (;;) {
867 char *c;
868 ssize_t n;
869
2d2ebd6b
LP
870 c = new(char, l);
871 if (!c)
87f0e418
LP
872 return -ENOMEM;
873
849958d1 874 n = readlinkat(fd, p, c, l-1);
2d2ebd6b
LP
875 if (n < 0) {
876 r = -errno;
87f0e418 877 free(c);
2d2ebd6b 878 return r;
87f0e418
LP
879 }
880
881 if ((size_t) n < l-1) {
882 c[n] = 0;
2d2ebd6b 883 *ret = c;
87f0e418
LP
884 return 0;
885 }
886
887 free(c);
888 l *= 2;
889 }
890}
891
849958d1
LP
892int readlink_malloc(const char *p, char **ret) {
893 return readlinkat_malloc(AT_FDCWD, p, ret);
894}
895
2c7108c4 896int readlink_and_make_absolute(const char *p, char **r) {
1058cbf2
ZJS
897 _cleanup_free_ char *target = NULL;
898 char *k;
2c7108c4
LP
899 int j;
900
901 assert(p);
902 assert(r);
903
1058cbf2
ZJS
904 j = readlink_malloc(p, &target);
905 if (j < 0)
2c7108c4
LP
906 return j;
907
908 k = file_in_same_dir(p, target);
2c7108c4
LP
909 if (!k)
910 return -ENOMEM;
911
912 *r = k;
913 return 0;
914}
915
83096483
LP
916int readlink_and_canonicalize(const char *p, char **r) {
917 char *t, *s;
918 int j;
919
920 assert(p);
921 assert(r);
922
923 j = readlink_and_make_absolute(p, &t);
924 if (j < 0)
925 return j;
926
927 s = canonicalize_file_name(t);
928 if (s) {
929 free(t);
930 *r = s;
931 } else
932 *r = t;
933
934 path_kill_slashes(*r);
935
936 return 0;
937}
938
2a987ee8 939int reset_all_signal_handlers(void) {
24a5d6b0 940 int sig, r = 0;
2a987ee8
LP
941
942 for (sig = 1; sig < _NSIG; sig++) {
b92bea5d
ZJS
943 struct sigaction sa = {
944 .sa_handler = SIG_DFL,
945 .sa_flags = SA_RESTART,
946 };
2a987ee8 947
24a5d6b0 948 /* These two cannot be caught... */
2a987ee8
LP
949 if (sig == SIGKILL || sig == SIGSTOP)
950 continue;
951
2a987ee8
LP
952 /* On Linux the first two RT signals are reserved by
953 * glibc, and sigaction() will return EINVAL for them. */
954 if ((sigaction(sig, &sa, NULL) < 0))
24a5d6b0
LP
955 if (errno != EINVAL && r == 0)
956 r = -errno;
2a987ee8
LP
957 }
958
24a5d6b0 959 return r;
2a987ee8 960}
4a72ff34 961
1dedb74a
LP
962int reset_signal_mask(void) {
963 sigset_t ss;
964
965 if (sigemptyset(&ss) < 0)
966 return -errno;
967
968 if (sigprocmask(SIG_SETMASK, &ss, NULL) < 0)
969 return -errno;
970
971 return 0;
972}
973
4a72ff34 974char *strstrip(char *s) {
57a8eca8 975 char *e;
4a72ff34
LP
976
977 /* Drops trailing whitespace. Modifies the string in
978 * place. Returns pointer to first non-space character */
979
980 s += strspn(s, WHITESPACE);
981
57a8eca8
LP
982 for (e = strchr(s, 0); e > s; e --)
983 if (!strchr(WHITESPACE, e[-1]))
984 break;
4a72ff34 985
57a8eca8 986 *e = 0;
4a72ff34
LP
987
988 return s;
4a72ff34
LP
989}
990
ee9b5e01
LP
991char *delete_chars(char *s, const char *bad) {
992 char *f, *t;
993
994 /* Drops all whitespace, regardless where in the string */
995
996 for (f = s, t = s; *f; f++) {
997 if (strchr(bad, *f))
998 continue;
999
1000 *(t++) = *f;
1001 }
1002
1003 *t = 0;
1004
1005 return s;
1006}
1007
4a72ff34
LP
1008char *file_in_same_dir(const char *path, const char *filename) {
1009 char *e, *r;
1010 size_t k;
1011
1012 assert(path);
1013 assert(filename);
1014
1015 /* This removes the last component of path and appends
1016 * filename, unless the latter is absolute anyway or the
1017 * former isn't */
1018
1019 if (path_is_absolute(filename))
1020 return strdup(filename);
1021
1022 if (!(e = strrchr(path, '/')))
1023 return strdup(filename);
1024
1025 k = strlen(filename);
1026 if (!(r = new(char, e-path+1+k+1)))
1027 return NULL;
1028
1029 memcpy(r, path, e-path+1);
1030 memcpy(r+(e-path)+1, filename, k+1);
1031
1032 return r;
1033}
fb624d04 1034
c32dd69b
LP
1035int rmdir_parents(const char *path, const char *stop) {
1036 size_t l;
1037 int r = 0;
1038
1039 assert(path);
1040 assert(stop);
1041
1042 l = strlen(path);
1043
1044 /* Skip trailing slashes */
1045 while (l > 0 && path[l-1] == '/')
1046 l--;
1047
1048 while (l > 0) {
1049 char *t;
1050
1051 /* Skip last component */
1052 while (l > 0 && path[l-1] != '/')
1053 l--;
1054
1055 /* Skip trailing slashes */
1056 while (l > 0 && path[l-1] == '/')
1057 l--;
1058
1059 if (l <= 0)
1060 break;
1061
1062 if (!(t = strndup(path, l)))
1063 return -ENOMEM;
1064
1065 if (path_startswith(stop, t)) {
1066 free(t);
1067 return 0;
1068 }
1069
1070 r = rmdir(t);
1071 free(t);
1072
1073 if (r < 0)
1074 if (errno != ENOENT)
1075 return -errno;
1076 }
1077
1078 return 0;
1079}
1080
fb624d04
LP
1081char hexchar(int x) {
1082 static const char table[16] = "0123456789abcdef";
1083
1084 return table[x & 15];
1085}
4fe88d28
LP
1086
1087int unhexchar(char c) {
1088
1089 if (c >= '0' && c <= '9')
1090 return c - '0';
1091
1092 if (c >= 'a' && c <= 'f')
ea430986 1093 return c - 'a' + 10;
4fe88d28
LP
1094
1095 if (c >= 'A' && c <= 'F')
ea430986 1096 return c - 'A' + 10;
4fe88d28 1097
7e8185ef 1098 return -EINVAL;
4fe88d28
LP
1099}
1100
66e35261
LP
1101char *hexmem(const void *p, size_t l) {
1102 char *r, *z;
1103 const uint8_t *x;
1104
1105 z = r = malloc(l * 2 + 1);
1106 if (!r)
1107 return NULL;
1108
1109 for (x = p; x < (const uint8_t*) p + l; x++) {
1110 *(z++) = hexchar(*x >> 4);
1111 *(z++) = hexchar(*x & 15);
1112 }
1113
1114 *z = 0;
1115 return r;
1116}
1117
2181a7f5
LP
1118void *unhexmem(const char *p, size_t l) {
1119 uint8_t *r, *z;
1120 const char *x;
1121
1122 assert(p);
1123
1124 z = r = malloc((l + 1) / 2 + 1);
1125 if (!r)
1126 return NULL;
1127
1128 for (x = p; x < p + l; x += 2) {
1129 int a, b;
1130
1131 a = unhexchar(x[0]);
1132 if (x+1 < p + l)
1133 b = unhexchar(x[1]);
1134 else
1135 b = 0;
1136
1137 *(z++) = (uint8_t) a << 4 | (uint8_t) b;
1138 }
1139
1140 *z = 0;
1141 return r;
1142}
1143
4fe88d28
LP
1144char octchar(int x) {
1145 return '0' + (x & 7);
1146}
1147
1148int unoctchar(char c) {
1149
1150 if (c >= '0' && c <= '7')
1151 return c - '0';
1152
7e8185ef 1153 return -EINVAL;
4fe88d28
LP
1154}
1155
5af98f82
LP
1156char decchar(int x) {
1157 return '0' + (x % 10);
1158}
1159
1160int undecchar(char c) {
1161
1162 if (c >= '0' && c <= '9')
1163 return c - '0';
1164
7e8185ef 1165 return -EINVAL;
5af98f82
LP
1166}
1167
4fe88d28
LP
1168char *cescape(const char *s) {
1169 char *r, *t;
1170 const char *f;
1171
1172 assert(s);
1173
1174 /* Does C style string escaping. */
1175
f8e2fb7b
LP
1176 r = new(char, strlen(s)*4 + 1);
1177 if (!r)
4fe88d28
LP
1178 return NULL;
1179
1180 for (f = s, t = r; *f; f++)
1181
1182 switch (*f) {
1183
1184 case '\a':
1185 *(t++) = '\\';
1186 *(t++) = 'a';
1187 break;
1188 case '\b':
1189 *(t++) = '\\';
1190 *(t++) = 'b';
1191 break;
1192 case '\f':
1193 *(t++) = '\\';
1194 *(t++) = 'f';
1195 break;
1196 case '\n':
1197 *(t++) = '\\';
1198 *(t++) = 'n';
1199 break;
1200 case '\r':
1201 *(t++) = '\\';
1202 *(t++) = 'r';
1203 break;
1204 case '\t':
1205 *(t++) = '\\';
1206 *(t++) = 't';
1207 break;
1208 case '\v':
1209 *(t++) = '\\';
1210 *(t++) = 'v';
1211 break;
1212 case '\\':
1213 *(t++) = '\\';
1214 *(t++) = '\\';
1215 break;
1216 case '"':
1217 *(t++) = '\\';
1218 *(t++) = '"';
1219 break;
1220 case '\'':
1221 *(t++) = '\\';
1222 *(t++) = '\'';
1223 break;
1224
1225 default:
1226 /* For special chars we prefer octal over
1227 * hexadecimal encoding, simply because glib's
1228 * g_strescape() does the same */
1229 if ((*f < ' ') || (*f >= 127)) {
1230 *(t++) = '\\';
1231 *(t++) = octchar((unsigned char) *f >> 6);
1232 *(t++) = octchar((unsigned char) *f >> 3);
1233 *(t++) = octchar((unsigned char) *f);
1234 } else
1235 *(t++) = *f;
1236 break;
1237 }
1238
1239 *t = 0;
1240
1241 return r;
1242}
1243
5b4c61cd 1244char *cunescape_length_with_prefix(const char *s, size_t length, const char *prefix) {
4fe88d28
LP
1245 char *r, *t;
1246 const char *f;
5b4c61cd 1247 size_t pl;
4fe88d28
LP
1248
1249 assert(s);
1250
5b4c61cd
LP
1251 /* Undoes C style string escaping, and optionally prefixes it. */
1252
1253 pl = prefix ? strlen(prefix) : 0;
4fe88d28 1254
5b4c61cd 1255 r = new(char, pl+length+1);
7f110ff9 1256 if (!r)
1e2fd62d 1257 return NULL;
4fe88d28 1258
5b4c61cd
LP
1259 if (prefix)
1260 memcpy(r, prefix, pl);
1261
1262 for (f = s, t = r + pl; f < s + length; f++) {
4fe88d28
LP
1263
1264 if (*f != '\\') {
1265 *(t++) = *f;
1266 continue;
1267 }
1268
1269 f++;
1270
1271 switch (*f) {
1272
1273 case 'a':
1274 *(t++) = '\a';
1275 break;
1276 case 'b':
1277 *(t++) = '\b';
1278 break;
1279 case 'f':
1280 *(t++) = '\f';
1281 break;
1282 case 'n':
1283 *(t++) = '\n';
1284 break;
1285 case 'r':
1286 *(t++) = '\r';
1287 break;
1288 case 't':
1289 *(t++) = '\t';
1290 break;
1291 case 'v':
1292 *(t++) = '\v';
1293 break;
1294 case '\\':
1295 *(t++) = '\\';
1296 break;
1297 case '"':
1298 *(t++) = '"';
1299 break;
1300 case '\'':
1301 *(t++) = '\'';
1302 break;
1303
e167fb86
LP
1304 case 's':
1305 /* This is an extension of the XDG syntax files */
1306 *(t++) = ' ';
1307 break;
1308
4fe88d28
LP
1309 case 'x': {
1310 /* hexadecimal encoding */
1311 int a, b;
1312
7f110ff9
LP
1313 a = unhexchar(f[1]);
1314 b = unhexchar(f[2]);
1315
e0a33e7b 1316 if (a < 0 || b < 0 || (a == 0 && b == 0)) {
4fe88d28
LP
1317 /* Invalid escape code, let's take it literal then */
1318 *(t++) = '\\';
1319 *(t++) = 'x';
1320 } else {
1321 *(t++) = (char) ((a << 4) | b);
1322 f += 2;
1323 }
1324
1325 break;
1326 }
1327
1328 case '0':
1329 case '1':
1330 case '2':
1331 case '3':
1332 case '4':
1333 case '5':
1334 case '6':
1335 case '7': {
1336 /* octal encoding */
1337 int a, b, c;
1338
7f110ff9
LP
1339 a = unoctchar(f[0]);
1340 b = unoctchar(f[1]);
1341 c = unoctchar(f[2]);
1342
e0a33e7b 1343 if (a < 0 || b < 0 || c < 0 || (a == 0 && b == 0 && c == 0)) {
4fe88d28
LP
1344 /* Invalid escape code, let's take it literal then */
1345 *(t++) = '\\';
1346 *(t++) = f[0];
1347 } else {
1348 *(t++) = (char) ((a << 6) | (b << 3) | c);
1349 f += 2;
1350 }
1351
1352 break;
1353 }
1354
1355 case 0:
1356 /* premature end of string.*/
1357 *(t++) = '\\';
1358 goto finish;
1359
1360 default:
1361 /* Invalid escape code, let's take it literal then */
1362 *(t++) = '\\';
f3d4cc01 1363 *(t++) = *f;
4fe88d28
LP
1364 break;
1365 }
1366 }
1367
1368finish:
1369 *t = 0;
1370 return r;
1371}
1372
5b4c61cd
LP
1373char *cunescape_length(const char *s, size_t length) {
1374 return cunescape_length_with_prefix(s, length, NULL);
1375}
1376
6febfd0d 1377char *cunescape(const char *s) {
5b4c61cd
LP
1378 assert(s);
1379
6febfd0d
LP
1380 return cunescape_length(s, strlen(s));
1381}
4fe88d28
LP
1382
1383char *xescape(const char *s, const char *bad) {
1384 char *r, *t;
1385 const char *f;
1386
1387 /* Escapes all chars in bad, in addition to \ and all special
1388 * chars, in \xFF style escaping. May be reversed with
1389 * cunescape. */
1390
08ace05b
LP
1391 r = new(char, strlen(s) * 4 + 1);
1392 if (!r)
4fe88d28
LP
1393 return NULL;
1394
1395 for (f = s, t = r; *f; f++) {
1396
b866264a
LP
1397 if ((*f < ' ') || (*f >= 127) ||
1398 (*f == '\\') || strchr(bad, *f)) {
4fe88d28
LP
1399 *(t++) = '\\';
1400 *(t++) = 'x';
1401 *(t++) = hexchar(*f >> 4);
1402 *(t++) = hexchar(*f);
1403 } else
1404 *(t++) = *f;
1405 }
1406
1407 *t = 0;
1408
1409 return r;
1410}
1411
67d51650 1412char *ascii_strlower(char *t) {
4fe88d28
LP
1413 char *p;
1414
67d51650 1415 assert(t);
4fe88d28 1416
67d51650 1417 for (p = t; *p; p++)
4fe88d28
LP
1418 if (*p >= 'A' && *p <= 'Z')
1419 *p = *p - 'A' + 'a';
1420
67d51650 1421 return t;
4fe88d28 1422}
1dccbe19 1423
44a6b1b6 1424_pure_ static bool ignore_file_allow_backup(const char *filename) {
c85dc17b
LP
1425 assert(filename);
1426
1427 return
1428 filename[0] == '.' ||
6c78be3c 1429 streq(filename, "lost+found") ||
e472d476
LP
1430 streq(filename, "aquota.user") ||
1431 streq(filename, "aquota.group") ||
c85dc17b
LP
1432 endswith(filename, ".rpmnew") ||
1433 endswith(filename, ".rpmsave") ||
1434 endswith(filename, ".rpmorig") ||
1435 endswith(filename, ".dpkg-old") ||
1436 endswith(filename, ".dpkg-new") ||
0cdfd26e 1437 endswith(filename, ".dpkg-tmp") ||
c85dc17b
LP
1438 endswith(filename, ".swp");
1439}
1440
a228a22f
LP
1441bool ignore_file(const char *filename) {
1442 assert(filename);
1443
1444 if (endswith(filename, "~"))
93f1a063 1445 return true;
a228a22f
LP
1446
1447 return ignore_file_allow_backup(filename);
1448}
1449
3a0ecb08 1450int fd_nonblock(int fd, bool nonblock) {
be8f4e9e 1451 int flags, nflags;
3a0ecb08
LP
1452
1453 assert(fd >= 0);
1454
be8f4e9e
LP
1455 flags = fcntl(fd, F_GETFL, 0);
1456 if (flags < 0)
3a0ecb08
LP
1457 return -errno;
1458
1459 if (nonblock)
be8f4e9e 1460 nflags = flags | O_NONBLOCK;
3a0ecb08 1461 else
be8f4e9e
LP
1462 nflags = flags & ~O_NONBLOCK;
1463
1464 if (nflags == flags)
1465 return 0;
3a0ecb08 1466
34b42c96 1467 if (fcntl(fd, F_SETFL, nflags) < 0)
3a0ecb08
LP
1468 return -errno;
1469
1470 return 0;
1471}
1472
1473int fd_cloexec(int fd, bool cloexec) {
be8f4e9e 1474 int flags, nflags;
3a0ecb08
LP
1475
1476 assert(fd >= 0);
1477
be8f4e9e
LP
1478 flags = fcntl(fd, F_GETFD, 0);
1479 if (flags < 0)
3a0ecb08
LP
1480 return -errno;
1481
1482 if (cloexec)
be8f4e9e 1483 nflags = flags | FD_CLOEXEC;
3a0ecb08 1484 else
be8f4e9e
LP
1485 nflags = flags & ~FD_CLOEXEC;
1486
1487 if (nflags == flags)
1488 return 0;
3a0ecb08 1489
34b42c96 1490 if (fcntl(fd, F_SETFD, nflags) < 0)
3a0ecb08
LP
1491 return -errno;
1492
1493 return 0;
1494}
1495
44a6b1b6 1496_pure_ static bool fd_in_set(int fd, const int fdset[], unsigned n_fdset) {
b19be9eb
LP
1497 unsigned i;
1498
1499 assert(n_fdset == 0 || fdset);
1500
1501 for (i = 0; i < n_fdset; i++)
1502 if (fdset[i] == fd)
1503 return true;
1504
1505 return false;
1506}
1507
a0d40ac5 1508int close_all_fds(const int except[], unsigned n_except) {
e1d75803 1509 _cleanup_closedir_ DIR *d = NULL;
a0d40ac5
LP
1510 struct dirent *de;
1511 int r = 0;
1512
b19be9eb
LP
1513 assert(n_except == 0 || except);
1514
1515 d = opendir("/proc/self/fd");
1516 if (!d) {
1517 int fd;
1518 struct rlimit rl;
1519
1520 /* When /proc isn't available (for example in chroots)
1521 * the fallback is brute forcing through the fd
1522 * table */
1523
1524 assert_se(getrlimit(RLIMIT_NOFILE, &rl) >= 0);
1525 for (fd = 3; fd < (int) rl.rlim_max; fd ++) {
1526
1527 if (fd_in_set(fd, except, n_except))
1528 continue;
1529
1530 if (close_nointr(fd) < 0)
1531 if (errno != EBADF && r == 0)
1532 r = -errno;
1533 }
1534
1535 return r;
1536 }
a0d40ac5
LP
1537
1538 while ((de = readdir(d))) {
a7610064 1539 int fd = -1;
a0d40ac5 1540
a16e1123 1541 if (ignore_file(de->d_name))
a0d40ac5
LP
1542 continue;
1543
720ce21d
LP
1544 if (safe_atoi(de->d_name, &fd) < 0)
1545 /* Let's better ignore this, just in case */
1546 continue;
a0d40ac5
LP
1547
1548 if (fd < 3)
1549 continue;
1550
1551 if (fd == dirfd(d))
1552 continue;
1553
b19be9eb
LP
1554 if (fd_in_set(fd, except, n_except))
1555 continue;
a0d40ac5 1556
720ce21d 1557 if (close_nointr(fd) < 0) {
2f357920 1558 /* Valgrind has its own FD and doesn't want to have it closed */
720ce21d
LP
1559 if (errno != EBADF && r == 0)
1560 r = -errno;
2f357920 1561 }
a0d40ac5
LP
1562 }
1563
a0d40ac5
LP
1564 return r;
1565}
1566
db12775d
LP
1567bool chars_intersect(const char *a, const char *b) {
1568 const char *p;
1569
1570 /* Returns true if any of the chars in a are in b. */
1571 for (p = a; *p; p++)
1572 if (strchr(b, *p))
1573 return true;
1574
1575 return false;
1576}
1577
42856c10 1578bool fstype_is_network(const char *fstype) {
a05f97b3
LP
1579 static const char table[] =
1580 "cifs\0"
1581 "smbfs\0"
da92ca5e 1582 "sshfs\0"
a05f97b3 1583 "ncpfs\0"
dac70dc7 1584 "ncp\0"
a05f97b3
LP
1585 "nfs\0"
1586 "nfs4\0"
1587 "gfs\0"
67608cad
LP
1588 "gfs2\0"
1589 "glusterfs\0";
1590
1591 const char *x;
1592
1593 x = startswith(fstype, "fuse.");
1594 if (x)
1595 fstype = x;
42856c10 1596
a05f97b3 1597 return nulstr_contains(table, fstype);
42856c10
LP
1598}
1599
601f6a1e 1600int chvt(int vt) {
a05f97b3 1601 _cleanup_close_ int fd;
601f6a1e 1602
a05f97b3
LP
1603 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
1604 if (fd < 0)
601f6a1e
LP
1605 return -errno;
1606
1607 if (vt < 0) {
1608 int tiocl[2] = {
1609 TIOCL_GETKMSGREDIRECT,
1610 0
1611 };
1612
a05f97b3
LP
1613 if (ioctl(fd, TIOCLINUX, tiocl) < 0)
1614 return -errno;
601f6a1e
LP
1615
1616 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
1617 }
1618
1619 if (ioctl(fd, VT_ACTIVATE, vt) < 0)
a05f97b3 1620 return -errno;
601f6a1e 1621
a05f97b3 1622 return 0;
601f6a1e
LP
1623}
1624
8f2d43a0 1625int read_one_char(FILE *f, char *ret, usec_t t, bool *need_nl) {
80876c20 1626 struct termios old_termios, new_termios;
e0a33e7b 1627 char c, line[LINE_MAX];
80876c20
LP
1628
1629 assert(f);
1630 assert(ret);
1631
1632 if (tcgetattr(fileno(f), &old_termios) >= 0) {
1633 new_termios = old_termios;
1634
1635 new_termios.c_lflag &= ~ICANON;
1636 new_termios.c_cc[VMIN] = 1;
1637 new_termios.c_cc[VTIME] = 0;
1638
1639 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
1640 size_t k;
1641
3a43da28 1642 if (t != USEC_INFINITY) {
8f2d43a0
LP
1643 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0) {
1644 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
1645 return -ETIMEDOUT;
1646 }
1647 }
1648
80876c20
LP
1649 k = fread(&c, 1, 1, f);
1650
1651 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
1652
1653 if (k <= 0)
1654 return -EIO;
1655
1656 if (need_nl)
1657 *need_nl = c != '\n';
1658
1659 *ret = c;
1660 return 0;
1661 }
1662 }
1663
3a43da28 1664 if (t != USEC_INFINITY) {
8f2d43a0
LP
1665 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0)
1666 return -ETIMEDOUT;
e0a33e7b 1667 }
8f2d43a0 1668
3a8a9163 1669 errno = 0;
8f2d43a0 1670 if (!fgets(line, sizeof(line), f))
3a8a9163 1671 return errno ? -errno : -EIO;
80876c20
LP
1672
1673 truncate_nl(line);
1674
1675 if (strlen(line) != 1)
1676 return -EBADMSG;
1677
1678 if (need_nl)
1679 *need_nl = false;
1680
1681 *ret = line[0];
1682 return 0;
1683}
1684
418b9be5 1685int ask_char(char *ret, const char *replies, const char *text, ...) {
e0a33e7b 1686 int r;
1b39d4b9 1687
80876c20
LP
1688 assert(ret);
1689 assert(replies);
1690 assert(text);
1691
1692 for (;;) {
1693 va_list ap;
1694 char c;
80876c20
LP
1695 bool need_nl = true;
1696
8481248b 1697 if (on_tty())
c1072ea0 1698 fputs(ANSI_HIGHLIGHT_ON, stdout);
b1b2dc0c 1699
80876c20
LP
1700 va_start(ap, text);
1701 vprintf(text, ap);
1702 va_end(ap);
1703
8481248b 1704 if (on_tty())
c1072ea0 1705 fputs(ANSI_HIGHLIGHT_OFF, stdout);
b1b2dc0c 1706
80876c20
LP
1707 fflush(stdout);
1708
3a43da28 1709 r = read_one_char(stdin, &c, USEC_INFINITY, &need_nl);
8f2d43a0 1710 if (r < 0) {
80876c20
LP
1711
1712 if (r == -EBADMSG) {
1713 puts("Bad input, please try again.");
1714 continue;
1715 }
1716
1717 putchar('\n');
1718 return r;
1719 }
1720
1721 if (need_nl)
1722 putchar('\n');
1723
1724 if (strchr(replies, c)) {
1725 *ret = c;
1726 return 0;
1727 }
1728
1729 puts("Read unexpected character, please try again.");
1730 }
1731}
1732
418b9be5
LP
1733int ask_string(char **ret, const char *text, ...) {
1734 assert(ret);
1735 assert(text);
1736
1737 for (;;) {
1738 char line[LINE_MAX];
1739 va_list ap;
1740
1741 if (on_tty())
1742 fputs(ANSI_HIGHLIGHT_ON, stdout);
1743
1744 va_start(ap, text);
1745 vprintf(text, ap);
1746 va_end(ap);
1747
1748 if (on_tty())
1749 fputs(ANSI_HIGHLIGHT_OFF, stdout);
1750
1751 fflush(stdout);
1752
1753 errno = 0;
1754 if (!fgets(line, sizeof(line), stdin))
1755 return errno ? -errno : -EIO;
1756
1757 if (!endswith(line, "\n"))
1758 putchar('\n');
1759 else {
1760 char *s;
1761
1762 if (isempty(line))
1763 continue;
1764
1765 truncate_nl(line);
1766 s = strdup(line);
1767 if (!s)
1768 return -ENOMEM;
1769
1770 *ret = s;
1771 return 0;
1772 }
1773 }
1774}
1775
512947d4 1776int reset_terminal_fd(int fd, bool switch_to_text) {
80876c20
LP
1777 struct termios termios;
1778 int r = 0;
3fe5e5d4
LP
1779
1780 /* Set terminal to some sane defaults */
80876c20
LP
1781
1782 assert(fd >= 0);
1783
eed1d0e3
LP
1784 /* We leave locked terminal attributes untouched, so that
1785 * Plymouth may set whatever it wants to set, and we don't
1786 * interfere with that. */
3fe5e5d4
LP
1787
1788 /* Disable exclusive mode, just in case */
1789 ioctl(fd, TIOCNXCL);
1790
5c0100a5 1791 /* Switch to text mode */
512947d4
MS
1792 if (switch_to_text)
1793 ioctl(fd, KDSETMODE, KD_TEXT);
5c0100a5 1794
3fe5e5d4 1795 /* Enable console unicode mode */
df465b3f 1796 ioctl(fd, KDSKBMODE, K_UNICODE);
80876c20
LP
1797
1798 if (tcgetattr(fd, &termios) < 0) {
1799 r = -errno;
1800 goto finish;
1801 }
1802
aaf694ca
LP
1803 /* We only reset the stuff that matters to the software. How
1804 * hardware is set up we don't touch assuming that somebody
1805 * else will do that for us */
1806
1807 termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
80876c20
LP
1808 termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
1809 termios.c_oflag |= ONLCR;
1810 termios.c_cflag |= CREAD;
1811 termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
1812
1813 termios.c_cc[VINTR] = 03; /* ^C */
1814 termios.c_cc[VQUIT] = 034; /* ^\ */
1815 termios.c_cc[VERASE] = 0177;
1816 termios.c_cc[VKILL] = 025; /* ^X */
1817 termios.c_cc[VEOF] = 04; /* ^D */
1818 termios.c_cc[VSTART] = 021; /* ^Q */
1819 termios.c_cc[VSTOP] = 023; /* ^S */
1820 termios.c_cc[VSUSP] = 032; /* ^Z */
1821 termios.c_cc[VLNEXT] = 026; /* ^V */
1822 termios.c_cc[VWERASE] = 027; /* ^W */
1823 termios.c_cc[VREPRINT] = 022; /* ^R */
aaf694ca
LP
1824 termios.c_cc[VEOL] = 0;
1825 termios.c_cc[VEOL2] = 0;
80876c20
LP
1826
1827 termios.c_cc[VTIME] = 0;
1828 termios.c_cc[VMIN] = 1;
1829
1830 if (tcsetattr(fd, TCSANOW, &termios) < 0)
1831 r = -errno;
1832
1833finish:
1834 /* Just in case, flush all crap out */
1835 tcflush(fd, TCIOFLUSH);
1836
1837 return r;
1838}
1839
6ea832a2 1840int reset_terminal(const char *name) {
03e334a1 1841 _cleanup_close_ int fd = -1;
6ea832a2
LP
1842
1843 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
1844 if (fd < 0)
1845 return fd;
1846
03e334a1 1847 return reset_terminal_fd(fd, true);
6ea832a2
LP
1848}
1849
80876c20
LP
1850int open_terminal(const char *name, int mode) {
1851 int fd, r;
f73f76ac 1852 unsigned c = 0;
80876c20 1853
f73f76ac
LP
1854 /*
1855 * If a TTY is in the process of being closed opening it might
1856 * cause EIO. This is horribly awful, but unlikely to be
1857 * changed in the kernel. Hence we work around this problem by
1858 * retrying a couple of times.
1859 *
1860 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
1861 */
1862
dd94c17e
LP
1863 assert(!(mode & O_CREAT));
1864
f73f76ac 1865 for (;;) {
dd94c17e 1866 fd = open(name, mode, 0);
af6da548 1867 if (fd >= 0)
f73f76ac
LP
1868 break;
1869
1870 if (errno != EIO)
1871 return -errno;
1872
af6da548 1873 /* Max 1s in total */
f73f76ac
LP
1874 if (c >= 20)
1875 return -errno;
1876
1877 usleep(50 * USEC_PER_MSEC);
1878 c++;
1879 }
1880
af6da548
LP
1881 r = isatty(fd);
1882 if (r < 0) {
03e334a1 1883 safe_close(fd);
80876c20
LP
1884 return -errno;
1885 }
1886
1887 if (!r) {
03e334a1 1888 safe_close(fd);
80876c20
LP
1889 return -ENOTTY;
1890 }
1891
1892 return fd;
1893}
1894
1895int flush_fd(int fd) {
b92bea5d
ZJS
1896 struct pollfd pollfd = {
1897 .fd = fd,
1898 .events = POLLIN,
1899 };
80876c20
LP
1900
1901 for (;;) {
20c03b7b 1902 char buf[LINE_MAX];
80876c20
LP
1903 ssize_t l;
1904 int r;
1905
e62d8c39
ZJS
1906 r = poll(&pollfd, 1, 0);
1907 if (r < 0) {
80876c20
LP
1908 if (errno == EINTR)
1909 continue;
1910
1911 return -errno;
80876c20 1912
e62d8c39 1913 } else if (r == 0)
80876c20
LP
1914 return 0;
1915
e62d8c39
ZJS
1916 l = read(fd, buf, sizeof(buf));
1917 if (l < 0) {
80876c20
LP
1918
1919 if (errno == EINTR)
1920 continue;
1921
1922 if (errno == EAGAIN)
1923 return 0;
1924
1925 return -errno;
e62d8c39 1926 } else if (l == 0)
80876c20
LP
1927 return 0;
1928 }
1929}
1930
af6da548
LP
1931int acquire_terminal(
1932 const char *name,
1933 bool fail,
1934 bool force,
1935 bool ignore_tiocstty_eperm,
1936 usec_t timeout) {
1937
4a0ff478 1938 int fd = -1, notify = -1, r = 0, wd = -1;
af6da548 1939 usec_t ts = 0;
80876c20
LP
1940
1941 assert(name);
1942
1943 /* We use inotify to be notified when the tty is closed. We
1944 * create the watch before checking if we can actually acquire
1945 * it, so that we don't lose any event.
1946 *
1947 * Note: strictly speaking this actually watches for the
1948 * device being closed, it does *not* really watch whether a
1949 * tty loses its controlling process. However, unless some
1950 * rogue process uses TIOCNOTTY on /dev/tty *after* closing
1951 * its tty otherwise this will not become a problem. As long
1952 * as the administrator makes sure not configure any service
1953 * on the same tty as an untrusted user this should not be a
1954 * problem. (Which he probably should not do anyway.) */
1955
3a43da28 1956 if (timeout != USEC_INFINITY)
af6da548
LP
1957 ts = now(CLOCK_MONOTONIC);
1958
80876c20 1959 if (!fail && !force) {
3a43da28 1960 notify = inotify_init1(IN_CLOEXEC | (timeout != USEC_INFINITY ? IN_NONBLOCK : 0));
af6da548 1961 if (notify < 0) {
80876c20
LP
1962 r = -errno;
1963 goto fail;
1964 }
1965
af6da548
LP
1966 wd = inotify_add_watch(notify, name, IN_CLOSE);
1967 if (wd < 0) {
80876c20
LP
1968 r = -errno;
1969 goto fail;
1970 }
1971 }
1972
1973 for (;;) {
b92bea5d
ZJS
1974 struct sigaction sa_old, sa_new = {
1975 .sa_handler = SIG_IGN,
1976 .sa_flags = SA_RESTART,
1977 };
1978
af6da548
LP
1979 if (notify >= 0) {
1980 r = flush_fd(notify);
1981 if (r < 0)
e3d1855b 1982 goto fail;
af6da548 1983 }
80876c20
LP
1984
1985 /* We pass here O_NOCTTY only so that we can check the return
1986 * value TIOCSCTTY and have a reliable way to figure out if we
1987 * successfully became the controlling process of the tty */
af6da548
LP
1988 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
1989 if (fd < 0)
6ea832a2 1990 return fd;
80876c20 1991
32c4bef8
LP
1992 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
1993 * if we already own the tty. */
32c4bef8
LP
1994 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
1995
80876c20 1996 /* First, try to get the tty */
32c4bef8
LP
1997 if (ioctl(fd, TIOCSCTTY, force) < 0)
1998 r = -errno;
1999
2000 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
21de3988
LP
2001
2002 /* Sometimes it makes sense to ignore TIOCSCTTY
2003 * returning EPERM, i.e. when very likely we already
2004 * are have this controlling terminal. */
32c4bef8 2005 if (r < 0 && r == -EPERM && ignore_tiocstty_eperm)
21de3988
LP
2006 r = 0;
2007
32c4bef8 2008 if (r < 0 && (force || fail || r != -EPERM)) {
80876c20
LP
2009 goto fail;
2010 }
2011
2012 if (r >= 0)
2013 break;
2014
2015 assert(!fail);
2016 assert(!force);
2017 assert(notify >= 0);
2018
2019 for (;;) {
f601daa7 2020 uint8_t inotify_buffer[sizeof(struct inotify_event) + FILENAME_MAX];
80876c20 2021 ssize_t l;
f601daa7 2022 struct inotify_event *e;
80876c20 2023
3a43da28 2024 if (timeout != USEC_INFINITY) {
af6da548
LP
2025 usec_t n;
2026
2027 n = now(CLOCK_MONOTONIC);
2028 if (ts + timeout < n) {
2029 r = -ETIMEDOUT;
2030 goto fail;
2031 }
2032
2033 r = fd_wait_for_event(fd, POLLIN, ts + timeout - n);
2034 if (r < 0)
2035 goto fail;
2036
2037 if (r == 0) {
2038 r = -ETIMEDOUT;
2039 goto fail;
2040 }
2041 }
2042
2043 l = read(notify, inotify_buffer, sizeof(inotify_buffer));
2044 if (l < 0) {
80876c20 2045
af6da548 2046 if (errno == EINTR || errno == EAGAIN)
f601daa7
LP
2047 continue;
2048
2049 r = -errno;
2050 goto fail;
2051 }
2052
2053 e = (struct inotify_event*) inotify_buffer;
80876c20 2054
f601daa7
LP
2055 while (l > 0) {
2056 size_t step;
80876c20 2057
f601daa7 2058 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
80876c20 2059 r = -EIO;
f601daa7
LP
2060 goto fail;
2061 }
80876c20 2062
f601daa7
LP
2063 step = sizeof(struct inotify_event) + e->len;
2064 assert(step <= (size_t) l);
80876c20 2065
f601daa7
LP
2066 e = (struct inotify_event*) ((uint8_t*) e + step);
2067 l -= step;
80876c20
LP
2068 }
2069
2070 break;
2071 }
2072
2073 /* We close the tty fd here since if the old session
2074 * ended our handle will be dead. It's important that
2075 * we do this after sleeping, so that we don't enter
2076 * an endless loop. */
6f53e671 2077 fd = safe_close(fd);
80876c20
LP
2078 }
2079
03e334a1 2080 safe_close(notify);
80876c20 2081
512947d4
MS
2082 r = reset_terminal_fd(fd, true);
2083 if (r < 0)
80876c20
LP
2084 log_warning("Failed to reset terminal: %s", strerror(-r));
2085
2086 return fd;
2087
2088fail:
03e334a1
LP
2089 safe_close(fd);
2090 safe_close(notify);
80876c20
LP
2091
2092 return r;
2093}
2094
2095int release_terminal(void) {
56d96fc0 2096 static const struct sigaction sa_new = {
b92bea5d
ZJS
2097 .sa_handler = SIG_IGN,
2098 .sa_flags = SA_RESTART,
2099 };
56d96fc0
LP
2100
2101 _cleanup_close_ int fd = -1;
2102 struct sigaction sa_old;
2103 int r = 0;
80876c20 2104
e62d8c39
ZJS
2105 fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_NDELAY|O_CLOEXEC);
2106 if (fd < 0)
80876c20
LP
2107 return -errno;
2108
57cd2192
LP
2109 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
2110 * by our own TIOCNOTTY */
57cd2192
LP
2111 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
2112
80876c20
LP
2113 if (ioctl(fd, TIOCNOTTY) < 0)
2114 r = -errno;
2115
57cd2192
LP
2116 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
2117
80876c20
LP
2118 return r;
2119}
2120
9a34ec5f
LP
2121int sigaction_many(const struct sigaction *sa, ...) {
2122 va_list ap;
2123 int r = 0, sig;
2124
2125 va_start(ap, sa);
2126 while ((sig = va_arg(ap, int)) > 0)
2127 if (sigaction(sig, sa, NULL) < 0)
2128 r = -errno;
2129 va_end(ap);
2130
2131 return r;
2132}
2133
2134int ignore_signals(int sig, ...) {
b92bea5d
ZJS
2135 struct sigaction sa = {
2136 .sa_handler = SIG_IGN,
2137 .sa_flags = SA_RESTART,
2138 };
9a34ec5f
LP
2139 va_list ap;
2140 int r = 0;
a337c6fc 2141
9a34ec5f
LP
2142 if (sigaction(sig, &sa, NULL) < 0)
2143 r = -errno;
2144
2145 va_start(ap, sig);
2146 while ((sig = va_arg(ap, int)) > 0)
2147 if (sigaction(sig, &sa, NULL) < 0)
2148 r = -errno;
2149 va_end(ap);
2150
2151 return r;
2152}
2153
2154int default_signals(int sig, ...) {
b92bea5d
ZJS
2155 struct sigaction sa = {
2156 .sa_handler = SIG_DFL,
2157 .sa_flags = SA_RESTART,
2158 };
9a34ec5f
LP
2159 va_list ap;
2160 int r = 0;
2161
9a34ec5f
LP
2162 if (sigaction(sig, &sa, NULL) < 0)
2163 r = -errno;
2164
2165 va_start(ap, sig);
2166 while ((sig = va_arg(ap, int)) > 0)
2167 if (sigaction(sig, &sa, NULL) < 0)
2168 r = -errno;
2169 va_end(ap);
2170
2171 return r;
a337c6fc
LP
2172}
2173
3d94f76c 2174void safe_close_pair(int p[]) {
8d567588
LP
2175 assert(p);
2176
3d94f76c
LP
2177 if (p[0] == p[1]) {
2178 /* Special case pairs which use the same fd in both
2179 * directions... */
2180 p[0] = p[1] = safe_close(p[0]);
2181 return;
8d567588
LP
2182 }
2183
3d94f76c
LP
2184 p[0] = safe_close(p[0]);
2185 p[1] = safe_close(p[1]);
8d567588
LP
2186}
2187
eb22ac37 2188ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll) {
7d5dd5e0 2189 uint8_t *p = buf;
8d567588
LP
2190 ssize_t n = 0;
2191
2192 assert(fd >= 0);
2193 assert(buf);
2194
8d567588
LP
2195 while (nbytes > 0) {
2196 ssize_t k;
2197
7d5dd5e0
LP
2198 k = read(fd, p, nbytes);
2199 if (k < 0 && errno == EINTR)
2200 continue;
8d567588 2201
7d5dd5e0 2202 if (k < 0 && errno == EAGAIN && do_poll) {
8d567588 2203
7d5dd5e0
LP
2204 /* We knowingly ignore any return value here,
2205 * and expect that any error/EOF is reported
2206 * via read() */
8d567588 2207
3a43da28 2208 fd_wait_for_event(fd, POLLIN, USEC_INFINITY);
7d5dd5e0
LP
2209 continue;
2210 }
8d567588 2211
7d5dd5e0 2212 if (k <= 0)
8d567588 2213 return n > 0 ? n : (k < 0 ? -errno : 0);
8d567588
LP
2214
2215 p += k;
2216 nbytes -= k;
2217 n += k;
2218 }
2219
2220 return n;
2221}
2222
eb22ac37 2223ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll) {
7d5dd5e0 2224 const uint8_t *p = buf;
eb22ac37
LP
2225 ssize_t n = 0;
2226
2227 assert(fd >= 0);
2228 assert(buf);
2229
eb22ac37
LP
2230 while (nbytes > 0) {
2231 ssize_t k;
2232
fe652127 2233 k = write(fd, p, nbytes);
7d5dd5e0
LP
2234 if (k < 0 && errno == EINTR)
2235 continue;
eb22ac37 2236
7d5dd5e0 2237 if (k < 0 && errno == EAGAIN && do_poll) {
eb22ac37 2238
7d5dd5e0
LP
2239 /* We knowingly ignore any return value here,
2240 * and expect that any error/EOF is reported
2241 * via write() */
eb22ac37 2242
3a43da28 2243 fd_wait_for_event(fd, POLLOUT, USEC_INFINITY);
7d5dd5e0
LP
2244 continue;
2245 }
eb22ac37 2246
7d5dd5e0 2247 if (k <= 0)
eb22ac37 2248 return n > 0 ? n : (k < 0 ? -errno : 0);
eb22ac37
LP
2249
2250 p += k;
2251 nbytes -= k;
2252 n += k;
2253 }
2254
2255 return n;
2256}
2257
5556b5fe
LP
2258int parse_size(const char *t, off_t base, off_t *size) {
2259
2260 /* Soo, sometimes we want to parse IEC binary suffxies, and
2261 * sometimes SI decimal suffixes. This function can parse
2262 * both. Which one is the right way depends on the
2263 * context. Wikipedia suggests that SI is customary for
2264 * hardrware metrics and network speeds, while IEC is
2265 * customary for most data sizes used by software and volatile
2266 * (RAM) memory. Hence be careful which one you pick!
2267 *
2268 * In either case we use just K, M, G as suffix, and not Ki,
2269 * Mi, Gi or so (as IEC would suggest). That's because that's
2270 * frickin' ugly. But this means you really need to make sure
2271 * to document which base you are parsing when you use this
2272 * call. */
2273
2274 struct table {
ab1f0633 2275 const char *suffix;
b32ff512 2276 unsigned long long factor;
5556b5fe
LP
2277 };
2278
2279 static const struct table iec[] = {
32895bb3 2280 { "E", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
840292be
ZJS
2281 { "P", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
2282 { "T", 1024ULL*1024ULL*1024ULL*1024ULL },
2283 { "G", 1024ULL*1024ULL*1024ULL },
2284 { "M", 1024ULL*1024ULL },
2285 { "K", 1024ULL },
2286 { "B", 1 },
ab1f0633
LP
2287 { "", 1 },
2288 };
2289
5556b5fe 2290 static const struct table si[] = {
5556b5fe 2291 { "E", 1000ULL*1000ULL*1000ULL*1000ULL*1000ULL*1000ULL },
840292be
ZJS
2292 { "P", 1000ULL*1000ULL*1000ULL*1000ULL*1000ULL },
2293 { "T", 1000ULL*1000ULL*1000ULL*1000ULL },
2294 { "G", 1000ULL*1000ULL*1000ULL },
2295 { "M", 1000ULL*1000ULL },
2296 { "K", 1000ULL },
2297 { "B", 1 },
5556b5fe
LP
2298 { "", 1 },
2299 };
2300
2301 const struct table *table;
ab1f0633 2302 const char *p;
b32ff512 2303 unsigned long long r = 0;
840292be 2304 unsigned n_entries, start_pos = 0;
ab1f0633
LP
2305
2306 assert(t);
5556b5fe
LP
2307 assert(base == 1000 || base == 1024);
2308 assert(size);
2309
2310 if (base == 1000) {
2311 table = si;
2312 n_entries = ELEMENTSOF(si);
2313 } else {
2314 table = iec;
2315 n_entries = ELEMENTSOF(iec);
2316 }
ab1f0633
LP
2317
2318 p = t;
2319 do {
2320 long long l;
9480794b
ZJS
2321 unsigned long long l2;
2322 double frac = 0;
ab1f0633
LP
2323 char *e;
2324 unsigned i;
2325
2326 errno = 0;
2327 l = strtoll(p, &e, 10);
2328
8333c77e 2329 if (errno > 0)
ab1f0633
LP
2330 return -errno;
2331
2332 if (l < 0)
2333 return -ERANGE;
2334
2335 if (e == p)
2336 return -EINVAL;
2337
9480794b
ZJS
2338 if (*e == '.') {
2339 e++;
2340 if (*e >= '0' && *e <= '9') {
2341 char *e2;
2342
2343 /* strotoull itself would accept space/+/- */
2344 l2 = strtoull(e, &e2, 10);
2345
2346 if (errno == ERANGE)
2347 return -errno;
2348
2349 /* Ignore failure. E.g. 10.M is valid */
2350 frac = l2;
2351 for (; e < e2; e++)
2352 frac /= 10;
2353 }
2354 }
2355
ab1f0633
LP
2356 e += strspn(e, WHITESPACE);
2357
840292be 2358 for (i = start_pos; i < n_entries; i++)
ab1f0633 2359 if (startswith(e, table[i].suffix)) {
b32ff512 2360 unsigned long long tmp;
9480794b 2361 if ((unsigned long long) l + (frac > 0) > ULLONG_MAX / table[i].factor)
b32ff512 2362 return -ERANGE;
9480794b 2363 tmp = l * table[i].factor + (unsigned long long) (frac * table[i].factor);
b32ff512
ZJS
2364 if (tmp > ULLONG_MAX - r)
2365 return -ERANGE;
2366
2367 r += tmp;
2368 if ((unsigned long long) (off_t) r != r)
2369 return -ERANGE;
2370
ab1f0633 2371 p = e + strlen(table[i].suffix);
840292be
ZJS
2372
2373 start_pos = i + 1;
ab1f0633
LP
2374 break;
2375 }
2376
5556b5fe 2377 if (i >= n_entries)
ab1f0633
LP
2378 return -EINVAL;
2379
b32ff512 2380 } while (*p);
ab1f0633 2381
5556b5fe 2382 *size = r;
ab1f0633
LP
2383
2384 return 0;
2385}
2386
843d2643
LP
2387int make_stdio(int fd) {
2388 int r, s, t;
2389
2390 assert(fd >= 0);
2391
73836c5c
LP
2392 r = dup3(fd, STDIN_FILENO, 0);
2393 s = dup3(fd, STDOUT_FILENO, 0);
2394 t = dup3(fd, STDERR_FILENO, 0);
843d2643
LP
2395
2396 if (fd >= 3)
03e334a1 2397 safe_close(fd);
843d2643
LP
2398
2399 if (r < 0 || s < 0 || t < 0)
2400 return -errno;
2401
73836c5c 2402 /* We rely here that the new fd has O_CLOEXEC not set */
7862f62d 2403
843d2643
LP
2404 return 0;
2405}
2406
ade509ce
LP
2407int make_null_stdio(void) {
2408 int null_fd;
2409
cd3bd60a
LP
2410 null_fd = open("/dev/null", O_RDWR|O_NOCTTY);
2411 if (null_fd < 0)
ade509ce
LP
2412 return -errno;
2413
2414 return make_stdio(null_fd);
2415}
2416
8407a5d0
LP
2417bool is_device_path(const char *path) {
2418
2419 /* Returns true on paths that refer to a device, either in
2420 * sysfs or in /dev */
2421
2422 return
2423 path_startswith(path, "/dev/") ||
2424 path_startswith(path, "/sys/");
2425}
2426
01f78473 2427int dir_is_empty(const char *path) {
a05f97b3 2428 _cleanup_closedir_ DIR *d;
01f78473 2429
a05f97b3
LP
2430 d = opendir(path);
2431 if (!d)
01f78473
LP
2432 return -errno;
2433
2434 for (;;) {
7d5e9c0f 2435 struct dirent *de;
01f78473 2436
3fd11280
FW
2437 errno = 0;
2438 de = readdir(d);
2439 if (!de && errno != 0)
2440 return -errno;
01f78473 2441
a05f97b3
LP
2442 if (!de)
2443 return 1;
01f78473 2444
a05f97b3
LP
2445 if (!ignore_file(de->d_name))
2446 return 0;
2447 }
01f78473
LP
2448}
2449
844ec79b
ZJS
2450char* dirname_malloc(const char *path) {
2451 char *d, *dir, *dir2;
2452
2453 d = strdup(path);
2454 if (!d)
2455 return NULL;
2456 dir = dirname(d);
2457 assert(dir);
2458
2459 if (dir != d) {
2460 dir2 = strdup(dir);
2461 free(d);
2462 return dir2;
2463 }
2464
2465 return dir;
2466}
2467
b89446bb 2468int dev_urandom(void *p, size_t n) {
539618a0
LP
2469 static int have_syscall = -1;
2470 int r, fd;
9bf3b535 2471 ssize_t k;
d3782d60 2472
539618a0
LP
2473 /* Use the syscall unless we know we don't have it, or when
2474 * the requested size is too large for it. */
2475 if (have_syscall != 0 || (size_t) (int) n != n) {
2476 r = getrandom(p, n, 0);
2477 if (r == (int) n) {
2478 have_syscall = true;
2479 return 0;
2480 }
2481
2482 if (r < 0) {
2483 if (errno == ENOSYS)
2484 /* we lack the syscall, continue with reading from /dev/urandom */
2485 have_syscall = false;
2486 else
2487 return -errno;
2488 } else
2489 /* too short read? */
2490 return -EIO;
2491 }
2492
ac0930c8
LP
2493 fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY);
2494 if (fd < 0)
b89446bb 2495 return errno == ENOENT ? -ENOSYS : -errno;
d3782d60 2496
9bf3b535 2497 k = loop_read(fd, p, n, true);
539618a0
LP
2498 safe_close(fd);
2499
b89446bb
LP
2500 if (k < 0)
2501 return (int) k;
2502 if ((size_t) k != n)
2503 return -EIO;
2504
2505 return 0;
2506}
2507
2508void random_bytes(void *p, size_t n) {
2509 static bool srand_called = false;
2510 uint8_t *q;
2511 int r;
d3782d60 2512
b89446bb
LP
2513 r = dev_urandom(p, n);
2514 if (r >= 0)
2515 return;
d3782d60 2516
b89446bb
LP
2517 /* If some idiot made /dev/urandom unavailable to us, he'll
2518 * get a PRNG instead. */
d3782d60 2519
9bf3b535 2520 if (!srand_called) {
b89446bb 2521 unsigned x = 0;
a3b6fafe 2522
9bf3b535
LP
2523#ifdef HAVE_SYS_AUXV_H
2524 /* The kernel provides us with a bit of entropy in
2525 * auxv, so let's try to make use of that to seed the
2526 * pseudo-random generator. It's better than
2527 * nothing... */
a3b6fafe 2528
9bf3b535
LP
2529 void *auxv;
2530
2531 auxv = (void*) getauxval(AT_RANDOM);
2532 if (auxv)
b89446bb 2533 x ^= *(unsigned*) auxv;
9bf3b535 2534#endif
a3b6fafe 2535
b89446bb
LP
2536 x ^= (unsigned) now(CLOCK_REALTIME);
2537 x ^= (unsigned) gettid();
2538
2539 srand(x);
9bf3b535
LP
2540 srand_called = true;
2541 }
a3b6fafe 2542
9bf3b535
LP
2543 for (q = p; q < (uint8_t*) p + n; q ++)
2544 *q = rand();
a3b6fafe
LP
2545}
2546
5b6319dc
LP
2547void rename_process(const char name[8]) {
2548 assert(name);
2549
5d6b1584
LP
2550 /* This is a like a poor man's setproctitle(). It changes the
2551 * comm field, argv[0], and also the glibc's internally used
2552 * name of the process. For the first one a limit of 16 chars
2553 * applies, to the second one usually one of 10 (i.e. length
2554 * of "/sbin/init"), to the third one one of 7 (i.e. length of
2555 * "systemd"). If you pass a longer string it will be
2556 * truncated */
5b6319dc 2557
5d6b1584 2558 prctl(PR_SET_NAME, name);
5b6319dc
LP
2559
2560 if (program_invocation_name)
2561 strncpy(program_invocation_name, name, strlen(program_invocation_name));
9a0e6896
LP
2562
2563 if (saved_argc > 0) {
2564 int i;
2565
2566 if (saved_argv[0])
2567 strncpy(saved_argv[0], name, strlen(saved_argv[0]));
2568
2569 for (i = 1; i < saved_argc; i++) {
2570 if (!saved_argv[i])
2571 break;
2572
29804cc1 2573 memzero(saved_argv[i], strlen(saved_argv[i]));
9a0e6896
LP
2574 }
2575 }
5b6319dc
LP
2576}
2577
7d793605
LP
2578void sigset_add_many(sigset_t *ss, ...) {
2579 va_list ap;
2580 int sig;
2581
2582 assert(ss);
2583
2584 va_start(ap, ss);
2585 while ((sig = va_arg(ap, int)) > 0)
2586 assert_se(sigaddset(ss, sig) == 0);
2587 va_end(ap);
2588}
2589
856a5a7d
LP
2590int sigprocmask_many(int how, ...) {
2591 va_list ap;
2592 sigset_t ss;
2593 int sig;
2594
2595 assert_se(sigemptyset(&ss) == 0);
2596
2597 va_start(ap, how);
2598 while ((sig = va_arg(ap, int)) > 0)
2599 assert_se(sigaddset(&ss, sig) == 0);
2600 va_end(ap);
2601
2602 if (sigprocmask(how, &ss, NULL) < 0)
2603 return -errno;
2604
2605 return 0;
2606}
2607
ef2f1067
LP
2608char* gethostname_malloc(void) {
2609 struct utsname u;
2610
2611 assert_se(uname(&u) >= 0);
2612
344de609 2613 if (!isempty(u.nodename) && !streq(u.nodename, "(none)"))
ef2f1067
LP
2614 return strdup(u.nodename);
2615
2616 return strdup(u.sysname);
2617}
2618
344de609
LP
2619bool hostname_is_set(void) {
2620 struct utsname u;
2621
2622 assert_se(uname(&u) >= 0);
2623
2624 return !isempty(u.nodename) && !streq(u.nodename, "(none)");
2625}
2626
f1566e63 2627char *lookup_uid(uid_t uid) {
ef2f1067 2628 long bufsize;
a05f97b3
LP
2629 char *name;
2630 _cleanup_free_ char *buf = NULL;
ef2f1067 2631 struct passwd pwbuf, *pw = NULL;
ef2f1067
LP
2632
2633 /* Shortcut things to avoid NSS lookups */
2634 if (uid == 0)
2635 return strdup("root");
2636
7c5f152a
LP
2637 bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
2638 if (bufsize <= 0)
ef2f1067
LP
2639 bufsize = 4096;
2640
7c5f152a
LP
2641 buf = malloc(bufsize);
2642 if (!buf)
ef2f1067
LP
2643 return NULL;
2644
a05f97b3
LP
2645 if (getpwuid_r(uid, &pwbuf, buf, bufsize, &pw) == 0 && pw)
2646 return strdup(pw->pw_name);
ef2f1067 2647
de0671ee 2648 if (asprintf(&name, UID_FMT, uid) < 0)
ef2f1067
LP
2649 return NULL;
2650
2651 return name;
2652}
2653
7c5f152a
LP
2654char* getlogname_malloc(void) {
2655 uid_t uid;
2656 struct stat st;
2657
2658 if (isatty(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0)
2659 uid = st.st_uid;
2660 else
2661 uid = getuid();
2662
2663 return lookup_uid(uid);
2664}
2665
2666char *getusername_malloc(void) {
2667 const char *e;
2668
2669 e = getenv("USER");
2670 if (e)
2671 return strdup(e);
2672
2673 return lookup_uid(getuid());
2674}
2675
fc116c6a
LP
2676int getttyname_malloc(int fd, char **r) {
2677 char path[PATH_MAX], *c;
618e02c7 2678 int k;
8c6db833
LP
2679
2680 assert(r);
ef2f1067 2681
a05f97b3 2682 k = ttyname_r(fd, path, sizeof(path));
27373e44 2683 if (k > 0)
618e02c7 2684 return -k;
ef2f1067
LP
2685
2686 char_array_0(path);
2687
a05f97b3
LP
2688 c = strdup(startswith(path, "/dev/") ? path + 5 : path);
2689 if (!c)
8c6db833
LP
2690 return -ENOMEM;
2691
2692 *r = c;
2693 return 0;
2694}
2695
fc116c6a
LP
2696int getttyname_harder(int fd, char **r) {
2697 int k;
2698 char *s;
2699
a05f97b3
LP
2700 k = getttyname_malloc(fd, &s);
2701 if (k < 0)
fc116c6a
LP
2702 return k;
2703
2704 if (streq(s, "tty")) {
2705 free(s);
4d6d6518 2706 return get_ctty(0, NULL, r);
fc116c6a
LP
2707 }
2708
2709 *r = s;
2710 return 0;
2711}
2712
4d6d6518 2713int get_ctty_devnr(pid_t pid, dev_t *d) {
b4696bce
SP
2714 int r;
2715 _cleanup_free_ char *line = NULL;
2716 const char *p;
fc116c6a 2717 unsigned long ttynr;
fc116c6a 2718
49aa47c7 2719 assert(pid >= 0);
49aa47c7 2720
b4696bce
SP
2721 p = procfs_file_alloca(pid, "stat");
2722 r = read_one_line_file(p, &line);
2723 if (r < 0)
2724 return r;
fc116c6a 2725
4d6d6518
LP
2726 p = strrchr(line, ')');
2727 if (!p)
fc116c6a
LP
2728 return -EIO;
2729
2730 p++;
2731
2732 if (sscanf(p, " "
2733 "%*c " /* state */
2734 "%*d " /* ppid */
2735 "%*d " /* pgrp */
2736 "%*d " /* session */
2737 "%lu ", /* ttynr */
2738 &ttynr) != 1)
2739 return -EIO;
2740
11dc5d2b
LP
2741 if (major(ttynr) == 0 && minor(ttynr) == 0)
2742 return -ENOENT;
2743
0bee65f0
LP
2744 if (d)
2745 *d = (dev_t) ttynr;
2746
fc116c6a
LP
2747 return 0;
2748}
2749
4d6d6518 2750int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
833fce28
LP
2751 char fn[sizeof("/dev/char/")-1 + 2*DECIMAL_STR_MAX(unsigned) + 1 + 1], *b = NULL;
2752 _cleanup_free_ char *s = NULL;
2753 const char *p;
fc116c6a 2754 dev_t devnr;
833fce28 2755 int k;
fc116c6a
LP
2756
2757 assert(r);
2758
4d6d6518
LP
2759 k = get_ctty_devnr(pid, &devnr);
2760 if (k < 0)
fc116c6a
LP
2761 return k;
2762
2763 snprintf(fn, sizeof(fn), "/dev/char/%u:%u", major(devnr), minor(devnr));
fc116c6a 2764
23406ce5
LP
2765 k = readlink_malloc(fn, &s);
2766 if (k < 0) {
fc116c6a
LP
2767
2768 if (k != -ENOENT)
2769 return k;
2770
46824d0e
LP
2771 /* This is an ugly hack */
2772 if (major(devnr) == 136) {
de0671ee 2773 asprintf(&b, "pts/%u", minor(devnr));
833fce28 2774 goto finish;
46824d0e
LP
2775 }
2776
fc116c6a
LP
2777 /* Probably something like the ptys which have no
2778 * symlink in /dev/char. Let's return something
2779 * vaguely useful. */
2780
23406ce5 2781 b = strdup(fn + 5);
833fce28 2782 goto finish;
fc116c6a
LP
2783 }
2784
2785 if (startswith(s, "/dev/"))
2786 p = s + 5;
2787 else if (startswith(s, "../"))
2788 p = s + 3;
2789 else
2790 p = s;
2791
2792 b = strdup(p);
fc116c6a 2793
833fce28 2794finish:
fc116c6a
LP
2795 if (!b)
2796 return -ENOMEM;
2797
2798 *r = b;
46824d0e
LP
2799 if (_devnr)
2800 *_devnr = devnr;
2801
fc116c6a
LP
2802 return 0;
2803}
2804
f56d5db9 2805int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {
dede0e33 2806 _cleanup_closedir_ DIR *d = NULL;
8c6db833
LP
2807 int ret = 0;
2808
2809 assert(fd >= 0);
2810
2811 /* This returns the first error we run into, but nevertheless
7925c22a 2812 * tries to go on. This closes the passed fd. */
8c6db833 2813
d4d046e3
LP
2814 d = fdopendir(fd);
2815 if (!d) {
03e334a1 2816 safe_close(fd);
4c633005
LP
2817
2818 return errno == ENOENT ? 0 : -errno;
8c6db833
LP
2819 }
2820
2821 for (;;) {
7d5e9c0f 2822 struct dirent *de;
7925c22a
LP
2823 bool is_dir, keep_around;
2824 struct stat st;
8c6db833
LP
2825 int r;
2826
3fd11280
FW
2827 errno = 0;
2828 de = readdir(d);
dede0e33
ZJS
2829 if (!de) {
2830 if (errno != 0 && ret == 0)
3fd11280 2831 ret = -errno;
dede0e33 2832 return ret;
8c6db833
LP
2833 }
2834
8c6db833
LP
2835 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
2836 continue;
2837
7925c22a
LP
2838 if (de->d_type == DT_UNKNOWN ||
2839 honour_sticky ||
2840 (de->d_type == DT_DIR && root_dev)) {
8c6db833 2841 if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
4c633005 2842 if (ret == 0 && errno != ENOENT)
8c6db833
LP
2843 ret = -errno;
2844 continue;
2845 }
2846
2847 is_dir = S_ISDIR(st.st_mode);
7925c22a
LP
2848 keep_around =
2849 honour_sticky &&
2850 (st.st_uid == 0 || st.st_uid == getuid()) &&
2851 (st.st_mode & S_ISVTX);
ad293f5a 2852 } else {
8c6db833 2853 is_dir = de->d_type == DT_DIR;
7925c22a 2854 keep_around = false;
ad293f5a 2855 }
8c6db833
LP
2856
2857 if (is_dir) {
2858 int subdir_fd;
8c6db833 2859
597f43c7 2860 /* if root_dev is set, remove subdirectories only, if device is same as dir */
7925c22a
LP
2861 if (root_dev && st.st_dev != root_dev->st_dev)
2862 continue;
8c6db833 2863
7925c22a
LP
2864 subdir_fd = openat(fd, de->d_name,
2865 O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
2866 if (subdir_fd < 0) {
2867 if (ret == 0 && errno != ENOENT)
2868 ret = -errno;
2869 continue;
2870 }
2871
b3d28469 2872 r = rm_rf_children_dangerous(subdir_fd, only_dirs, honour_sticky, root_dev);
7925c22a
LP
2873 if (r < 0 && ret == 0)
2874 ret = r;
2875
2876 if (!keep_around)
2877 if (unlinkat(fd, de->d_name, AT_REMOVEDIR) < 0) {
ad293f5a
LP
2878 if (ret == 0 && errno != ENOENT)
2879 ret = -errno;
2880 }
2881
2882 } else if (!only_dirs && !keep_around) {
8c6db833
LP
2883
2884 if (unlinkat(fd, de->d_name, 0) < 0) {
4c633005 2885 if (ret == 0 && errno != ENOENT)
8c6db833
LP
2886 ret = -errno;
2887 }
2888 }
2889 }
8c6db833
LP
2890}
2891
44a6b1b6 2892_pure_ static int is_temporary_fs(struct statfs *s) {
943aad8c 2893 assert(s);
73020ab2
SL
2894
2895 return F_TYPE_EQUAL(s->f_type, TMPFS_MAGIC) ||
2896 F_TYPE_EQUAL(s->f_type, RAMFS_MAGIC);
943aad8c
ZJS
2897}
2898
f56d5db9
LP
2899int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {
2900 struct statfs s;
2901
2902 assert(fd >= 0);
2903
2904 if (fstatfs(fd, &s) < 0) {
03e334a1 2905 safe_close(fd);
f56d5db9
LP
2906 return -errno;
2907 }
2908
2909 /* We refuse to clean disk file systems with this call. This
2910 * is extra paranoia just to be sure we never ever remove
2911 * non-state data */
943aad8c 2912 if (!is_temporary_fs(&s)) {
f56d5db9 2913 log_error("Attempted to remove disk file system, and we can't allow that.");
03e334a1 2914 safe_close(fd);
f56d5db9
LP
2915 return -EPERM;
2916 }
2917
2918 return rm_rf_children_dangerous(fd, only_dirs, honour_sticky, root_dev);
2919}
2920
2921static int rm_rf_internal(const char *path, bool only_dirs, bool delete_root, bool honour_sticky, bool dangerous) {
2922 int fd, r;
2923 struct statfs s;
8c6db833
LP
2924
2925 assert(path);
2926
f56d5db9
LP
2927 /* We refuse to clean the root file system with this
2928 * call. This is extra paranoia to never cause a really
2929 * seriously broken system. */
2930 if (path_equal(path, "/")) {
2931 log_error("Attempted to remove entire root file system, and we can't allow that.");
2932 return -EPERM;
2933 }
461b1822 2934
d4d046e3
LP
2935 fd = open(path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
2936 if (fd < 0) {
8c6db833
LP
2937
2938 if (errno != ENOTDIR)
2939 return -errno;
2940
f56d5db9
LP
2941 if (!dangerous) {
2942 if (statfs(path, &s) < 0)
2943 return -errno;
2944
943aad8c 2945 if (!is_temporary_fs(&s)) {
f56d5db9
LP
2946 log_error("Attempted to remove disk file system, and we can't allow that.");
2947 return -EPERM;
2948 }
2949 }
2950
8c6db833 2951 if (delete_root && !only_dirs)
d4d046e3 2952 if (unlink(path) < 0 && errno != ENOENT)
8c6db833
LP
2953 return -errno;
2954
2955 return 0;
2956 }
2957
f56d5db9
LP
2958 if (!dangerous) {
2959 if (fstatfs(fd, &s) < 0) {
03e334a1 2960 safe_close(fd);
f56d5db9
LP
2961 return -errno;
2962 }
ad293f5a 2963
943aad8c 2964 if (!is_temporary_fs(&s)) {
f56d5db9 2965 log_error("Attempted to remove disk file system, and we can't allow that.");
03e334a1 2966 safe_close(fd);
f56d5db9
LP
2967 return -EPERM;
2968 }
2969 }
2970
2971 r = rm_rf_children_dangerous(fd, only_dirs, honour_sticky, NULL);
ad293f5a
LP
2972 if (delete_root) {
2973
8d53b453 2974 if (honour_sticky && file_is_priv_sticky(path) > 0)
ad293f5a 2975 return r;
8c6db833 2976
e27796a0 2977 if (rmdir(path) < 0 && errno != ENOENT) {
8c6db833
LP
2978 if (r == 0)
2979 r = -errno;
2980 }
ad293f5a 2981 }
8c6db833
LP
2982
2983 return r;
2984}
2985
f56d5db9
LP
2986int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
2987 return rm_rf_internal(path, only_dirs, delete_root, honour_sticky, false);
2988}
2989
2990int rm_rf_dangerous(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
2991 return rm_rf_internal(path, only_dirs, delete_root, honour_sticky, true);
2992}
2993
8c6db833
LP
2994int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
2995 assert(path);
2996
2997 /* Under the assumption that we are running privileged we
2998 * first change the access mode and only then hand out
2999 * ownership to avoid a window where access is too open. */
3000
8d53b453
LP
3001 if (mode != (mode_t) -1)
3002 if (chmod(path, mode) < 0)
3003 return -errno;
8c6db833 3004
8d53b453
LP
3005 if (uid != (uid_t) -1 || gid != (gid_t) -1)
3006 if (chown(path, uid, gid) < 0)
3007 return -errno;
8c6db833
LP
3008
3009 return 0;
ef2f1067
LP
3010}
3011
f4b47811
LP
3012int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid) {
3013 assert(fd >= 0);
3014
3015 /* Under the assumption that we are running privileged we
3016 * first change the access mode and only then hand out
3017 * ownership to avoid a window where access is too open. */
3018
9588bc32
LP
3019 if (mode != (mode_t) -1)
3020 if (fchmod(fd, mode) < 0)
3021 return -errno;
f4b47811 3022
9588bc32
LP
3023 if (uid != (uid_t) -1 || gid != (gid_t) -1)
3024 if (fchown(fd, uid, gid) < 0)
3025 return -errno;
f4b47811
LP
3026
3027 return 0;
3028}
3029
82c121a4
LP
3030cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
3031 cpu_set_t *r;
3032 unsigned n = 1024;
3033
3034 /* Allocates the cpuset in the right size */
3035
3036 for (;;) {
3037 if (!(r = CPU_ALLOC(n)))
3038 return NULL;
3039
3040 if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), r) >= 0) {
3041 CPU_ZERO_S(CPU_ALLOC_SIZE(n), r);
3042
3043 if (ncpus)
3044 *ncpus = n;
3045
3046 return r;
3047 }
3048
3049 CPU_FREE(r);
3050
3051 if (errno != EINVAL)
3052 return NULL;
3053
3054 n *= 2;
3055 }
3056}
3057
984a2be4 3058int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char *format, va_list ap) {
9ab7a8d2 3059 static const char status_indent[] = " "; /* "[" STATUS "] " */
669bec5d
LP
3060 _cleanup_free_ char *s = NULL;
3061 _cleanup_close_ int fd = -1;
b92bea5d 3062 struct iovec iovec[6] = {};
81beb750 3063 int n = 0;
984a2be4 3064 static bool prev_ephemeral;
9e58ff9c
LP
3065
3066 assert(format);
3067
9ab7a8d2 3068 /* This is independent of logging, as status messages are
9e58ff9c
LP
3069 * optional and go exclusively to the console. */
3070
3071 if (vasprintf(&s, format, ap) < 0)
669bec5d 3072 return log_oom();
9e58ff9c 3073
67e5cc4f 3074 fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
81beb750 3075 if (fd < 0)
669bec5d 3076 return fd;
9e58ff9c 3077
67e5cc4f 3078 if (ellipse) {
9ab7a8d2
MS
3079 char *e;
3080 size_t emax, sl;
3081 int c;
3082
67e5cc4f
LP
3083 c = fd_columns(fd);
3084 if (c <= 0)
3085 c = 80;
81beb750 3086
669bec5d 3087 sl = status ? sizeof(status_indent)-1 : 0;
9ab7a8d2
MS
3088
3089 emax = c - sl - 1;
3090 if (emax < 3)
3091 emax = 3;
81beb750 3092
58d61742 3093 e = ellipsize(s, emax, 50);
67e5cc4f
LP
3094 if (e) {
3095 free(s);
3096 s = e;
3097 }
81beb750
LP
3098 }
3099
984a2be4
MS
3100 if (prev_ephemeral)
3101 IOVEC_SET_STRING(iovec[n++], "\r" ANSI_ERASE_TO_END_OF_LINE);
3102 prev_ephemeral = ephemeral;
3103
9ab7a8d2
MS
3104 if (status) {
3105 if (!isempty(status)) {
3106 IOVEC_SET_STRING(iovec[n++], "[");
3107 IOVEC_SET_STRING(iovec[n++], status);
3108 IOVEC_SET_STRING(iovec[n++], "] ");
3109 } else
3110 IOVEC_SET_STRING(iovec[n++], status_indent);
81beb750
LP
3111 }
3112
9ab7a8d2 3113 IOVEC_SET_STRING(iovec[n++], s);
984a2be4
MS
3114 if (!ephemeral)
3115 IOVEC_SET_STRING(iovec[n++], "\n");
81beb750 3116
669bec5d
LP
3117 if (writev(fd, iovec, n) < 0)
3118 return -errno;
9e58ff9c 3119
669bec5d 3120 return 0;
9e58ff9c
LP
3121}
3122
984a2be4 3123int status_printf(const char *status, bool ellipse, bool ephemeral, const char *format, ...) {
c846ff47 3124 va_list ap;
669bec5d 3125 int r;
c846ff47
LP
3126
3127 assert(format);
3128
3129 va_start(ap, format);
984a2be4 3130 r = status_vprintf(status, ellipse, ephemeral, format, ap);
c846ff47 3131 va_end(ap);
669bec5d
LP
3132
3133 return r;
c846ff47
LP
3134}
3135
fab56fc5
LP
3136char *replace_env(const char *format, char **env) {
3137 enum {
3138 WORD,
c24eb49e 3139 CURLY,
fab56fc5
LP
3140 VARIABLE
3141 } state = WORD;
3142
3143 const char *e, *word = format;
3144 char *r = NULL, *k;
3145
3146 assert(format);
3147
3148 for (e = format; *e; e ++) {
3149
3150 switch (state) {
3151
3152 case WORD:
3153 if (*e == '$')
c24eb49e 3154 state = CURLY;
fab56fc5
LP
3155 break;
3156
c24eb49e
LP
3157 case CURLY:
3158 if (*e == '{') {
fab56fc5
LP
3159 if (!(k = strnappend(r, word, e-word-1)))
3160 goto fail;
3161
3162 free(r);
3163 r = k;
3164
3165 word = e-1;
3166 state = VARIABLE;
3167
3168 } else if (*e == '$') {
3169 if (!(k = strnappend(r, word, e-word)))
3170 goto fail;
3171
3172 free(r);
3173 r = k;
3174
3175 word = e+1;
3176 state = WORD;
3177 } else
3178 state = WORD;
3179 break;
3180
3181 case VARIABLE:
c24eb49e 3182 if (*e == '}') {
b95cf362 3183 const char *t;
fab56fc5 3184
4d1a6904 3185 t = strempty(strv_env_get_n(env, word+2, e-word-2));
fab56fc5 3186
4d1a6904
LP
3187 k = strappend(r, t);
3188 if (!k)
b95cf362 3189 goto fail;
fab56fc5 3190
b95cf362
LP
3191 free(r);
3192 r = k;
fab56fc5 3193
b95cf362 3194 word = e+1;
fab56fc5
LP
3195 state = WORD;
3196 }
3197 break;
3198 }
3199 }
3200
3201 if (!(k = strnappend(r, word, e-word)))
3202 goto fail;
3203
3204 free(r);
3205 return k;
3206
3207fail:
3208 free(r);
3209 return NULL;
3210}
3211
3212char **replace_env_argv(char **argv, char **env) {
b2fadec6 3213 char **ret, **i;
c24eb49e
LP
3214 unsigned k = 0, l = 0;
3215
3216 l = strv_length(argv);
fab56fc5 3217
b2fadec6
ZJS
3218 ret = new(char*, l+1);
3219 if (!ret)
fab56fc5
LP
3220 return NULL;
3221
3222 STRV_FOREACH(i, argv) {
c24eb49e
LP
3223
3224 /* If $FOO appears as single word, replace it by the split up variable */
b95cf362
LP
3225 if ((*i)[0] == '$' && (*i)[1] != '{') {
3226 char *e;
3227 char **w, **m;
3228 unsigned q;
c24eb49e 3229
4d1a6904
LP
3230 e = strv_env_get(env, *i+1);
3231 if (e) {
b2fadec6 3232 int r;
c24eb49e 3233
b2fadec6
ZJS
3234 r = strv_split_quoted(&m, e);
3235 if (r < 0) {
3236 ret[k] = NULL;
3237 strv_free(ret);
c24eb49e
LP
3238 return NULL;
3239 }
b95cf362
LP
3240 } else
3241 m = NULL;
c24eb49e 3242
b95cf362
LP
3243 q = strv_length(m);
3244 l = l + q - 1;
c24eb49e 3245
b2fadec6
ZJS
3246 w = realloc(ret, sizeof(char*) * (l+1));
3247 if (!w) {
3248 ret[k] = NULL;
3249 strv_free(ret);
b95cf362
LP
3250 strv_free(m);
3251 return NULL;
3252 }
c24eb49e 3253
b2fadec6 3254 ret = w;
b95cf362 3255 if (m) {
b2fadec6 3256 memcpy(ret + k, m, q * sizeof(char*));
c24eb49e 3257 free(m);
c24eb49e 3258 }
b95cf362
LP
3259
3260 k += q;
3261 continue;
c24eb49e
LP
3262 }
3263
3264 /* If ${FOO} appears as part of a word, replace it by the variable as-is */
b2fadec6
ZJS
3265 ret[k] = replace_env(*i, env);
3266 if (!ret[k]) {
3267 strv_free(ret);
fab56fc5
LP
3268 return NULL;
3269 }
b2fadec6 3270 k++;
fab56fc5
LP
3271 }
3272
b2fadec6
ZJS
3273 ret[k] = NULL;
3274 return ret;
fab56fc5
LP
3275}
3276
81beb750 3277int fd_columns(int fd) {
b92bea5d 3278 struct winsize ws = {};
81beb750
LP
3279
3280 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
3281 return -errno;
3282
3283 if (ws.ws_col <= 0)
3284 return -EIO;
3285
3286 return ws.ws_col;
3287}
3288
28917d7d 3289unsigned columns(void) {
fa776d8e 3290 const char *e;
7009eec2 3291 int c;
fa776d8e 3292
28917d7d
LP
3293 if (_likely_(cached_columns > 0))
3294 return cached_columns;
11f96fac 3295
28917d7d
LP
3296 c = 0;
3297 e = getenv("COLUMNS");
c6828d27
TG
3298 if (e)
3299 (void) safe_atoi(e, &c);
fa776d8e 3300
28917d7d
LP
3301 if (c <= 0)
3302 c = fd_columns(STDOUT_FILENO);
fa776d8e 3303
28917d7d
LP
3304 if (c <= 0)
3305 c = 80;
11f96fac 3306
28917d7d
LP
3307 cached_columns = c;
3308 return c;
11f96fac
ZJS
3309}
3310
8f2d43a0 3311int fd_lines(int fd) {
b92bea5d 3312 struct winsize ws = {};
8f2d43a0
LP
3313
3314 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
3315 return -errno;
3316
3317 if (ws.ws_row <= 0)
3318 return -EIO;
3319
3320 return ws.ws_row;
3321}
3322
3323unsigned lines(void) {
8f2d43a0 3324 const char *e;
ed757c0c 3325 unsigned l;
8f2d43a0 3326
ed757c0c
LP
3327 if (_likely_(cached_lines > 0))
3328 return cached_lines;
8f2d43a0 3329
ed757c0c 3330 l = 0;
8f2d43a0 3331 e = getenv("LINES");
acb3b3dd
ZJS
3332 if (e)
3333 (void) safe_atou(e, &l);
8f2d43a0 3334
ed757c0c
LP
3335 if (l <= 0)
3336 l = fd_lines(STDOUT_FILENO);
8f2d43a0 3337
ed757c0c
LP
3338 if (l <= 0)
3339 l = 24;
8f2d43a0 3340
ed757c0c
LP
3341 cached_lines = l;
3342 return cached_lines;
3343}
3344
3345/* intended to be used as a SIGWINCH sighandler */
3346void columns_lines_cache_reset(int signum) {
3347 cached_columns = 0;
3348 cached_lines = 0;
3349}
3350
3351bool on_tty(void) {
3352 static int cached_on_tty = -1;
3353
3354 if (_unlikely_(cached_on_tty < 0))
3355 cached_on_tty = isatty(STDOUT_FILENO) > 0;
3356
3357 return cached_on_tty;
8f2d43a0
LP
3358}
3359
9d9951a4
HH
3360int files_same(const char *filea, const char *fileb) {
3361 struct stat a, b;
b4f10a5e 3362
9d9951a4 3363 if (stat(filea, &a) < 0)
b4f10a5e
LP
3364 return -errno;
3365
9d9951a4 3366 if (stat(fileb, &b) < 0)
b4f10a5e
LP
3367 return -errno;
3368
9d9951a4
HH
3369 return a.st_dev == b.st_dev &&
3370 a.st_ino == b.st_ino;
3371}
3372
3373int running_in_chroot(void) {
3374 int ret;
3375
3376 ret = files_same("/proc/1/root", "/");
3377 if (ret < 0)
3378 return ret;
3379
3380 return ret == 0;
b4f10a5e
LP
3381}
3382
f405e86d 3383static char *ascii_ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent) {
72f59706 3384 size_t x;
8fe914ec
LP
3385 char *r;
3386
3387 assert(s);
3388 assert(percent <= 100);
72f59706 3389 assert(new_length >= 3);
8fe914ec 3390
72f59706
LP
3391 if (old_length <= 3 || old_length <= new_length)
3392 return strndup(s, old_length);
8fe914ec 3393
72f59706
LP
3394 r = new0(char, new_length+1);
3395 if (!r)
a6f0104a 3396 return NULL;
8fe914ec 3397
72f59706 3398 x = (new_length * percent) / 100;
8fe914ec 3399
72f59706
LP
3400 if (x > new_length - 3)
3401 x = new_length - 3;
8fe914ec
LP
3402
3403 memcpy(r, s, x);
3404 r[x] = '.';
3405 r[x+1] = '.';
3406 r[x+2] = '.';
3407 memcpy(r + x + 3,
72f59706
LP
3408 s + old_length - (new_length - x - 3),
3409 new_length - x - 3);
8fe914ec
LP
3410
3411 return r;
3412}
3413
f405e86d
SL
3414char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent) {
3415 size_t x;
3416 char *e;
3417 const char *i, *j;
3418 unsigned k, len, len2;
3419
3420 assert(s);
3421 assert(percent <= 100);
3422 assert(new_length >= 3);
3423
3424 /* if no multibyte characters use ascii_ellipsize_mem for speed */
3425 if (ascii_is_valid(s))
3426 return ascii_ellipsize_mem(s, old_length, new_length, percent);
3427
3428 if (old_length <= 3 || old_length <= new_length)
3429 return strndup(s, old_length);
3430
3431 x = (new_length * percent) / 100;
3432
3433 if (x > new_length - 3)
3434 x = new_length - 3;
3435
3436 k = 0;
3437 for (i = s; k < x && i < s + old_length; i = utf8_next_char(i)) {
3438 int c;
3439
3440 c = utf8_encoded_to_unichar(i);
3441 if (c < 0)
3442 return NULL;
3443 k += unichar_iswide(c) ? 2 : 1;
3444 }
3445
3446 if (k > x) /* last character was wide and went over quota */
3447 x ++;
3448
3449 for (j = s + old_length; k < new_length && j > i; ) {
3450 int c;
3451
3452 j = utf8_prev_char(j);
3453 c = utf8_encoded_to_unichar(j);
3454 if (c < 0)
3455 return NULL;
3456 k += unichar_iswide(c) ? 2 : 1;
3457 }
3458 assert(i <= j);
3459
3460 /* we don't actually need to ellipsize */
3461 if (i == j)
3462 return memdup(s, old_length + 1);
3463
3464 /* make space for ellipsis */
3465 j = utf8_next_char(j);
3466
3467 len = i - s;
3468 len2 = s + old_length - j;
3469 e = new(char, len + 3 + len2 + 1);
3470 if (!e)
3471 return NULL;
3472
3473 /*
3474 printf("old_length=%zu new_length=%zu x=%zu len=%u len2=%u k=%u\n",
3475 old_length, new_length, x, len, len2, k);
3476 */
3477
3478 memcpy(e, s, len);
3479 e[len] = 0xe2; /* tri-dot ellipsis: … */
3480 e[len + 1] = 0x80;
3481 e[len + 2] = 0xa6;
3482
3483 memcpy(e + len + 3, j, len2 + 1);
3484
3485 return e;
3486}
3487
72f59706
LP
3488char *ellipsize(const char *s, size_t length, unsigned percent) {
3489 return ellipsize_mem(s, strlen(s), length, percent);
3490}
3491
c38dfac9 3492int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode) {
03e334a1 3493 _cleanup_close_ int fd;
c38dfac9 3494 int r;
f6144808
LP
3495
3496 assert(path);
3497
c38dfac9
KS
3498 if (parents)
3499 mkdir_parents(path, 0755);
73836c5c 3500
c38dfac9 3501 fd = open(path, O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY, mode > 0 ? mode : 0644);
73836c5c 3502 if (fd < 0)
f6144808
LP
3503 return -errno;
3504
c38dfac9
KS
3505 if (mode > 0) {
3506 r = fchmod(fd, mode);
3507 if (r < 0)
3508 return -errno;
3509 }
3510
359efc59 3511 if (uid != (uid_t) -1 || gid != (gid_t) -1) {
c38dfac9
KS
3512 r = fchown(fd, uid, gid);
3513 if (r < 0)
3514 return -errno;
3515 }
3516
3a43da28 3517 if (stamp != USEC_INFINITY) {
c38dfac9
KS
3518 struct timespec ts[2];
3519
3520 timespec_store(&ts[0], stamp);
359efc59 3521 ts[1] = ts[0];
c38dfac9
KS
3522 r = futimens(fd, ts);
3523 } else
3524 r = futimens(fd, NULL);
3525 if (r < 0)
3526 return -errno;
3527
f6144808
LP
3528 return 0;
3529}
afea26ad 3530
c38dfac9 3531int touch(const char *path) {
3a43da28 3532 return touch_file(path, false, USEC_INFINITY, (uid_t) -1, (gid_t) -1, 0);
c38dfac9
KS
3533}
3534
97c4a07d 3535char *unquote(const char *s, const char* quotes) {
11ce3427
LP
3536 size_t l;
3537 assert(s);
3538
73836c5c
LP
3539 /* This is rather stupid, simply removes the heading and
3540 * trailing quotes if there is one. Doesn't care about
57f30678
LP
3541 * escaping or anything. We should make this smarter one
3542 * day...*/
73836c5c 3543
31ed59c5
LP
3544 l = strlen(s);
3545 if (l < 2)
11ce3427
LP
3546 return strdup(s);
3547
97c4a07d 3548 if (strchr(quotes, s[0]) && s[l-1] == s[0])
11ce3427
LP
3549 return strndup(s+1, l-2);
3550
3551 return strdup(s);
3552}
3553
5f7c426e 3554char *normalize_env_assignment(const char *s) {
57f30678
LP
3555 _cleanup_free_ char *name = NULL, *value = NULL, *p = NULL;
3556 char *eq, *r;
5f7c426e 3557
57f30678
LP
3558 eq = strchr(s, '=');
3559 if (!eq) {
3560 char *t;
5f7c426e 3561
57f30678
LP
3562 r = strdup(s);
3563 if (!r)
5f7c426e
LP
3564 return NULL;
3565
57f30678
LP
3566 t = strstrip(r);
3567 if (t == r)
3568 return r;
3569
3570 memmove(r, t, strlen(t) + 1);
3571 return r;
5f7c426e
LP
3572 }
3573
57f30678
LP
3574 name = strndup(s, eq - s);
3575 if (!name)
5f7c426e
LP
3576 return NULL;
3577
57f30678
LP
3578 p = strdup(eq + 1);
3579 if (!p)
5f7c426e 3580 return NULL;
5f7c426e
LP
3581
3582 value = unquote(strstrip(p), QUOTES);
57f30678 3583 if (!value)
5f7c426e 3584 return NULL;
5f7c426e 3585
57f30678 3586 if (asprintf(&r, "%s=%s", strstrip(name), value) < 0)
5f7c426e
LP
3587 r = NULL;
3588
5f7c426e
LP
3589 return r;
3590}
3591
8e12a6ae 3592int wait_for_terminate(pid_t pid, siginfo_t *status) {
1968a360
LP
3593 siginfo_t dummy;
3594
2e78aa99 3595 assert(pid >= 1);
1968a360
LP
3596
3597 if (!status)
3598 status = &dummy;
2e78aa99
LP
3599
3600 for (;;) {
8e12a6ae
LP
3601 zero(*status);
3602
3603 if (waitid(P_PID, pid, status, WEXITED) < 0) {
2e78aa99
LP
3604
3605 if (errno == EINTR)
3606 continue;
3607
3608 return -errno;
3609 }
3610
3611 return 0;
3612 }
3613}
3614
0659e8ba
LS
3615/*
3616 * Return values:
3617 * < 0 : wait_for_terminate() failed to get the state of the
3618 * process, the process was terminated by a signal, or
3619 * failed for an unknown reason.
3620 * >=0 : The process terminated normally, and its exit code is
3621 * returned.
3622 *
3623 * That is, success is indicated by a return value of zero, and an
3624 * error is indicated by a non-zero value.
3625 */
97c4a07d
LP
3626int wait_for_terminate_and_warn(const char *name, pid_t pid) {
3627 int r;
3628 siginfo_t status;
3629
3630 assert(name);
3631 assert(pid > 1);
3632
d87be9b0
LP
3633 r = wait_for_terminate(pid, &status);
3634 if (r < 0) {
97c4a07d
LP
3635 log_warning("Failed to wait for %s: %s", name, strerror(-r));
3636 return r;
3637 }
3638
3639 if (status.si_code == CLD_EXITED) {
3640 if (status.si_status != 0) {
3641 log_warning("%s failed with error code %i.", name, status.si_status);
0a27cf3f 3642 return status.si_status;
97c4a07d
LP
3643 }
3644
3645 log_debug("%s succeeded.", name);
3646 return 0;
3647
3648 } else if (status.si_code == CLD_KILLED ||
3649 status.si_code == CLD_DUMPED) {
3650
3651 log_warning("%s terminated by signal %s.", name, signal_to_string(status.si_status));
3652 return -EPROTO;
3653 }
3654
3655 log_warning("%s failed due to unknown reason.", name);
3656 return -EPROTO;
97c4a07d
LP
3657}
3658
919ce0b7 3659noreturn void freeze(void) {
720ce21d
LP
3660
3661 /* Make sure nobody waits for us on a socket anymore */
3662 close_all_fds(NULL, 0);
3663
c29597a1
LP
3664 sync();
3665
3c14d26c
LP
3666 for (;;)
3667 pause();
3668}
3669
00dc5d76
LP
3670bool null_or_empty(struct stat *st) {
3671 assert(st);
3672
3673 if (S_ISREG(st->st_mode) && st->st_size <= 0)
3674 return true;
3675
c8f26f42 3676 if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
00dc5d76
LP
3677 return true;
3678
3679 return false;
3680}
3681
83096483
LP
3682int null_or_empty_path(const char *fn) {
3683 struct stat st;
3684
3685 assert(fn);
3686
3687 if (stat(fn, &st) < 0)
3688 return -errno;
3689
3690 return null_or_empty(&st);
3691}
3692
ed88bcfb
ZJS
3693int null_or_empty_fd(int fd) {
3694 struct stat st;
3695
3696 assert(fd >= 0);
3697
3698 if (fstat(fd, &st) < 0)
3699 return -errno;
3700
3701 return null_or_empty(&st);
3702}
3703
a247755d 3704DIR *xopendirat(int fd, const char *name, int flags) {
c4731d11
LP
3705 int nfd;
3706 DIR *d;
3707
dd94c17e
LP
3708 assert(!(flags & O_CREAT));
3709
3710 nfd = openat(fd, name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|flags, 0);
73836c5c 3711 if (nfd < 0)
c4731d11
LP
3712 return NULL;
3713
73836c5c
LP
3714 d = fdopendir(nfd);
3715 if (!d) {
03e334a1 3716 safe_close(nfd);
c4731d11
LP
3717 return NULL;
3718 }
3719
3720 return d;
3b63d2d3
LP
3721}
3722
8a0867d6
LP
3723int signal_from_string_try_harder(const char *s) {
3724 int signo;
3725 assert(s);
3726
73836c5c
LP
3727 signo = signal_from_string(s);
3728 if (signo <= 0)
8a0867d6
LP
3729 if (startswith(s, "SIG"))
3730 return signal_from_string(s+3);
3731
3732 return signo;
3733}
3734
383182b5 3735static char *tag_to_udev_node(const char *tagvalue, const char *by) {
22f5f628 3736 _cleanup_free_ char *t = NULL, *u = NULL;
22f5f628 3737 size_t enc_len;
e23a0ce8 3738
383182b5 3739 u = unquote(tagvalue, "\"\'");
6db615c1 3740 if (!u)
383182b5 3741 return NULL;
e23a0ce8 3742
1d5989fd 3743 enc_len = strlen(u) * 4 + 1;
22f5f628 3744 t = new(char, enc_len);
6db615c1 3745 if (!t)
383182b5 3746 return NULL;
e23a0ce8 3747
8f6ce71f 3748 if (encode_devnode_name(u, t, enc_len) < 0)
22f5f628 3749 return NULL;
e23a0ce8 3750
6db615c1 3751 return strjoin("/dev/disk/by-", by, "/", t, NULL);
383182b5 3752}
e23a0ce8 3753
383182b5 3754char *fstab_node_to_udev_node(const char *p) {
faa368e3
LP
3755 assert(p);
3756
383182b5
DR
3757 if (startswith(p, "LABEL="))
3758 return tag_to_udev_node(p+6, "label");
e23a0ce8 3759
383182b5
DR
3760 if (startswith(p, "UUID="))
3761 return tag_to_udev_node(p+5, "uuid");
e23a0ce8 3762
84cc2abf
DR
3763 if (startswith(p, "PARTUUID="))
3764 return tag_to_udev_node(p+9, "partuuid");
3765
3766 if (startswith(p, "PARTLABEL="))
3767 return tag_to_udev_node(p+10, "partlabel");
3768
e23a0ce8
LP
3769 return strdup(p);
3770}
3771
f212ac12
LP
3772bool tty_is_vc(const char *tty) {
3773 assert(tty);
3774
98a28fef
LP
3775 return vtnr_from_tty(tty) >= 0;
3776}
3777
d1122ad5
LP
3778bool tty_is_console(const char *tty) {
3779 assert(tty);
3780
3781 if (startswith(tty, "/dev/"))
3782 tty += 5;
3783
3784 return streq(tty, "console");
3785}
3786
98a28fef
LP
3787int vtnr_from_tty(const char *tty) {
3788 int i, r;
3789
3790 assert(tty);
3791
3792 if (startswith(tty, "/dev/"))
3793 tty += 5;
3794
3795 if (!startswith(tty, "tty") )
3796 return -EINVAL;
3797
3798 if (tty[3] < '0' || tty[3] > '9')
3799 return -EINVAL;
3800
3801 r = safe_atoi(tty+3, &i);
3802 if (r < 0)
3803 return r;
3804
3805 if (i < 0 || i > 63)
3806 return -EINVAL;
3807
3808 return i;
f212ac12
LP
3809}
3810
21baf21a
MS
3811char *resolve_dev_console(char **active) {
3812 char *tty;
3813
3814 /* Resolve where /dev/console is pointing to, if /sys is actually ours
3815 * (i.e. not read-only-mounted which is a sign for container setups) */
3816
3817 if (path_is_read_only_fs("/sys") > 0)
3818 return NULL;
3819
3820 if (read_one_line_file("/sys/class/tty/console/active", active) < 0)
3821 return NULL;
3822
3823 /* If multiple log outputs are configured the last one is what
3824 * /dev/console points to */
3825 tty = strrchr(*active, ' ');
3826 if (tty)
3827 tty++;
3828 else
3829 tty = *active;
3830
8aa5429a
OB
3831 if (streq(tty, "tty0")) {
3832 char *tmp;
3833
3834 /* Get the active VC (e.g. tty1) */
3835 if (read_one_line_file("/sys/class/tty/tty0/active", &tmp) >= 0) {
3836 free(*active);
3837 tty = *active = tmp;
3838 }
3839 }
3840
21baf21a
MS
3841 return tty;
3842}
3843
3043935f 3844bool tty_is_vc_resolve(const char *tty) {
9588bc32 3845 _cleanup_free_ char *active = NULL;
3030ccd7 3846
e3aa71c3
LP
3847 assert(tty);
3848
3849 if (startswith(tty, "/dev/"))
3850 tty += 5;
3851
21baf21a
MS
3852 if (streq(tty, "console")) {
3853 tty = resolve_dev_console(&active);
3854 if (!tty)
3855 return false;
3856 }
3030ccd7 3857
9588bc32 3858 return tty_is_vc(tty);
3043935f
LP
3859}
3860
3861const char *default_term_for_tty(const char *tty) {
3862 assert(tty);
3863
acda6a05 3864 return tty_is_vc_resolve(tty) ? "TERM=linux" : "TERM=vt102";
e3aa71c3
LP
3865}
3866
87d2c1ff 3867bool dirent_is_file(const struct dirent *de) {
fb19a739
LP
3868 assert(de);
3869
3870 if (ignore_file(de->d_name))
3871 return false;
3872
3873 if (de->d_type != DT_REG &&
3874 de->d_type != DT_LNK &&
3875 de->d_type != DT_UNKNOWN)
3876 return false;
3877
3878 return true;
3879}
3880
87d2c1ff
LP
3881bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) {
3882 assert(de);
3883
a228a22f
LP
3884 if (de->d_type != DT_REG &&
3885 de->d_type != DT_LNK &&
3886 de->d_type != DT_UNKNOWN)
3887 return false;
3888
3889 if (ignore_file_allow_backup(de->d_name))
87d2c1ff
LP
3890 return false;
3891
3892 return endswith(de->d_name, suffix);
3893}
3894
e2680723 3895void execute_directory(const char *directory, DIR *d, usec_t timeout, char *argv[]) {
aa62a893
LP
3896 pid_t executor_pid;
3897 int r;
83cc030f
LP
3898
3899 assert(directory);
3900
aa62a893
LP
3901 /* Executes all binaries in a directory in parallel and waits
3902 * for them to finish. Optionally a timeout is applied. */
83cc030f 3903
aa62a893
LP
3904 executor_pid = fork();
3905 if (executor_pid < 0) {
3906 log_error("Failed to fork: %m");
3907 return;
83cc030f 3908
aa62a893
LP
3909 } else if (executor_pid == 0) {
3910 _cleanup_hashmap_free_free_ Hashmap *pids = NULL;
3911 _cleanup_closedir_ DIR *_d = NULL;
3912 struct dirent *de;
83cc030f 3913
aa62a893
LP
3914 /* We fork this all off from a child process so that
3915 * we can somewhat cleanly make use of SIGALRM to set
3916 * a time limit */
83cc030f 3917
aa62a893 3918 reset_all_signal_handlers();
1b6d7fa7 3919 reset_signal_mask();
83cc030f 3920
aa62a893 3921 assert_se(prctl(PR_SET_PDEATHSIG, SIGTERM) == 0);
83cc030f 3922
aa62a893
LP
3923 if (!d) {
3924 d = _d = opendir(directory);
3925 if (!d) {
3926 if (errno == ENOENT)
3927 _exit(EXIT_SUCCESS);
83cc030f 3928
aa62a893
LP
3929 log_error("Failed to enumerate directory %s: %m", directory);
3930 _exit(EXIT_FAILURE);
3931 }
83cc030f
LP
3932 }
3933
d5099efc 3934 pids = hashmap_new(NULL);
aa62a893
LP
3935 if (!pids) {
3936 log_oom();
3937 _exit(EXIT_FAILURE);
83cc030f
LP
3938 }
3939
aa62a893
LP
3940 FOREACH_DIRENT(de, d, break) {
3941 _cleanup_free_ char *path = NULL;
3942 pid_t pid;
83cc030f 3943
aa62a893
LP
3944 if (!dirent_is_file(de))
3945 continue;
83cc030f 3946
418b9be5
LP
3947 path = strjoin(directory, "/", de->d_name, NULL);
3948 if (!path) {
aa62a893
LP
3949 log_oom();
3950 _exit(EXIT_FAILURE);
3951 }
83cc030f 3952
aa62a893
LP
3953 pid = fork();
3954 if (pid < 0) {
3955 log_error("Failed to fork: %m");
3956 continue;
3957 } else if (pid == 0) {
3958 char *_argv[2];
83cc030f 3959
aa62a893 3960 assert_se(prctl(PR_SET_PDEATHSIG, SIGTERM) == 0);
83cc030f 3961
aa62a893
LP
3962 if (!argv) {
3963 _argv[0] = path;
3964 _argv[1] = NULL;
3965 argv = _argv;
3966 } else
3967 argv[0] = path;
83cc030f 3968
aa62a893
LP
3969 execv(path, argv);
3970 log_error("Failed to execute %s: %m", path);
3971 _exit(EXIT_FAILURE);
3972 }
83cc030f 3973
aa62a893 3974 log_debug("Spawned %s as " PID_FMT ".", path, pid);
83cc030f 3975
aa62a893
LP
3976 r = hashmap_put(pids, UINT_TO_PTR(pid), path);
3977 if (r < 0) {
3978 log_oom();
3979 _exit(EXIT_FAILURE);
3980 }
3981
3982 path = NULL;
83cc030f
LP
3983 }
3984
aa62a893
LP
3985 /* Abort execution of this process after the
3986 * timout. We simply rely on SIGALRM as default action
3987 * terminating the process, and turn on alarm(). */
3988
3a43da28 3989 if (timeout != USEC_INFINITY)
aa62a893
LP
3990 alarm((timeout + USEC_PER_SEC - 1) / USEC_PER_SEC);
3991
3992 while (!hashmap_isempty(pids)) {
3993 _cleanup_free_ char *path = NULL;
3994 pid_t pid;
3995
3996 pid = PTR_TO_UINT(hashmap_first_key(pids));
3997 assert(pid > 0);
83cc030f 3998
aa62a893
LP
3999 path = hashmap_remove(pids, UINT_TO_PTR(pid));
4000 assert(path);
4001
4002 wait_for_terminate_and_warn(path, pid);
83cc030f 4003 }
83cc030f 4004
aa62a893
LP
4005 _exit(EXIT_SUCCESS);
4006 }
83cc030f 4007
aa62a893 4008 wait_for_terminate_and_warn(directory, executor_pid);
83cc030f
LP
4009}
4010
430c18ed
LP
4011int kill_and_sigcont(pid_t pid, int sig) {
4012 int r;
4013
4014 r = kill(pid, sig) < 0 ? -errno : 0;
4015
4016 if (r >= 0)
4017 kill(pid, SIGCONT);
4018
4019 return r;
4020}
4021
05feefe0
LP
4022bool nulstr_contains(const char*nulstr, const char *needle) {
4023 const char *i;
4024
4025 if (!nulstr)
4026 return false;
4027
4028 NULSTR_FOREACH(i, nulstr)
4029 if (streq(i, needle))
4030 return true;
4031
4032 return false;
4033}
4034
6faa1114 4035bool plymouth_running(void) {
9408a2d2 4036 return access("/run/plymouth/pid", F_OK) >= 0;
6faa1114
LP
4037}
4038
9beb3f4d
LP
4039char* strshorten(char *s, size_t l) {
4040 assert(s);
4041
4042 if (l < strlen(s))
4043 s[l] = 0;
4044
4045 return s;
4046}
4047
4048static bool hostname_valid_char(char c) {
4049 return
4050 (c >= 'a' && c <= 'z') ||
4051 (c >= 'A' && c <= 'Z') ||
4052 (c >= '0' && c <= '9') ||
4053 c == '-' ||
4054 c == '_' ||
4055 c == '.';
4056}
4057
4058bool hostname_is_valid(const char *s) {
4059 const char *p;
aa3c5cf8 4060 bool dot;
9beb3f4d
LP
4061
4062 if (isempty(s))
4063 return false;
4064
aa3c5cf8
LP
4065 for (p = s, dot = true; *p; p++) {
4066 if (*p == '.') {
4067 if (dot)
4068 return false;
4069
4070 dot = true;
4071 } else {
4072 if (!hostname_valid_char(*p))
4073 return false;
4074
4075 dot = false;
4076 }
4077 }
4078
4079 if (dot)
4080 return false;
9beb3f4d
LP
4081
4082 if (p-s > HOST_NAME_MAX)
4083 return false;
4084
4085 return true;
4086}
4087
e724b063 4088char* hostname_cleanup(char *s, bool lowercase) {
9beb3f4d 4089 char *p, *d;
cec4ead9
LP
4090 bool dot;
4091
4092 for (p = s, d = s, dot = true; *p; p++) {
4093 if (*p == '.') {
e724b063 4094 if (dot)
cec4ead9 4095 continue;
9beb3f4d 4096
e724b063 4097 *(d++) = '.';
cec4ead9 4098 dot = true;
e724b063
LP
4099 } else if (hostname_valid_char(*p)) {
4100 *(d++) = lowercase ? tolower(*p) : *p;
cec4ead9 4101 dot = false;
e724b063 4102 }
cec4ead9 4103
cec4ead9 4104 }
9beb3f4d 4105
e724b063
LP
4106 if (dot && d > s)
4107 d[-1] = 0;
4108 else
4109 *d = 0;
4110
9beb3f4d 4111 strshorten(s, HOST_NAME_MAX);
cec4ead9 4112
9beb3f4d
LP
4113 return s;
4114}
4115
7f0d207d
LP
4116bool machine_name_is_valid(const char *s) {
4117
4118 if (!hostname_is_valid(s))
4119 return false;
4120
4121 /* Machine names should be useful hostnames, but also be
4122 * useful in unit names, hence we enforce a stricter length
4123 * limitation. */
4124
4125 if (strlen(s) > 64)
4126 return false;
4127
4128 return true;
4129}
4130
1325aa42 4131int pipe_eof(int fd) {
b92bea5d
ZJS
4132 struct pollfd pollfd = {
4133 .fd = fd,
4134 .events = POLLIN|POLLHUP,
4135 };
1325aa42 4136
d37a91e8
LP
4137 int r;
4138
1325aa42
LP
4139 r = poll(&pollfd, 1, 0);
4140 if (r < 0)
4141 return -errno;
4142
4143 if (r == 0)
4144 return 0;
4145
4146 return pollfd.revents & POLLHUP;
4147}
4148
8f2d43a0 4149int fd_wait_for_event(int fd, int event, usec_t t) {
968d3d24 4150
b92bea5d
ZJS
4151 struct pollfd pollfd = {
4152 .fd = fd,
4153 .events = event,
4154 };
df50185b 4155
968d3d24
LP
4156 struct timespec ts;
4157 int r;
4158
3a43da28 4159 r = ppoll(&pollfd, 1, t == USEC_INFINITY ? NULL : timespec_store(&ts, t), NULL);
df50185b
LP
4160 if (r < 0)
4161 return -errno;
4162
4163 if (r == 0)
4164 return 0;
4165
4166 return pollfd.revents;
4167}
4168
5a3ab509
LP
4169int fopen_temporary(const char *path, FILE **_f, char **_temp_path) {
4170 FILE *f;
4171 char *t;
5a3ab509
LP
4172 int fd;
4173
4174 assert(path);
4175 assert(_f);
4176 assert(_temp_path);
4177
2e78fa79 4178 t = tempfn_xxxxxx(path);
5a3ab509
LP
4179 if (!t)
4180 return -ENOMEM;
4181
2d5bdf5b 4182 fd = mkostemp_safe(t, O_WRONLY|O_CLOEXEC);
5a3ab509
LP
4183 if (fd < 0) {
4184 free(t);
4185 return -errno;
4186 }
4187
4188 f = fdopen(fd, "we");
4189 if (!f) {
4190 unlink(t);
4191 free(t);
4192 return -errno;
4193 }
4194
4195 *_f = f;
4196 *_temp_path = t;
4197
4198 return 0;
4199}
4200
6ea832a2 4201int terminal_vhangup_fd(int fd) {
5a3ab509
LP
4202 assert(fd >= 0);
4203
6ea832a2
LP
4204 if (ioctl(fd, TIOCVHANGUP) < 0)
4205 return -errno;
4206
4207 return 0;
4208}
4209
4210int terminal_vhangup(const char *name) {
03e334a1 4211 _cleanup_close_ int fd;
6ea832a2
LP
4212
4213 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
4214 if (fd < 0)
4215 return fd;
4216
03e334a1 4217 return terminal_vhangup_fd(fd);
6ea832a2
LP
4218}
4219
4220int vt_disallocate(const char *name) {
4221 int fd, r;
4222 unsigned u;
6ea832a2
LP
4223
4224 /* Deallocate the VT if possible. If not possible
4225 * (i.e. because it is the active one), at least clear it
4226 * entirely (including the scrollback buffer) */
4227
b83bc4e9
LP
4228 if (!startswith(name, "/dev/"))
4229 return -EINVAL;
4230
4231 if (!tty_is_vc(name)) {
4232 /* So this is not a VT. I guess we cannot deallocate
4233 * it then. But let's at least clear the screen */
4234
4235 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
4236 if (fd < 0)
4237 return fd;
4238
8585357a
LP
4239 loop_write(fd,
4240 "\033[r" /* clear scrolling region */
4241 "\033[H" /* move home */
4242 "\033[2J", /* clear screen */
4243 10, false);
03e334a1 4244 safe_close(fd);
b83bc4e9
LP
4245
4246 return 0;
4247 }
6ea832a2
LP
4248
4249 if (!startswith(name, "/dev/tty"))
4250 return -EINVAL;
4251
4252 r = safe_atou(name+8, &u);
4253 if (r < 0)
4254 return r;
4255
4256 if (u <= 0)
b83bc4e9 4257 return -EINVAL;
6ea832a2 4258
b83bc4e9 4259 /* Try to deallocate */
6ea832a2
LP
4260 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
4261 if (fd < 0)
4262 return fd;
4263
4264 r = ioctl(fd, VT_DISALLOCATE, u);
03e334a1 4265 safe_close(fd);
6ea832a2 4266
b83bc4e9
LP
4267 if (r >= 0)
4268 return 0;
6ea832a2 4269
b83bc4e9 4270 if (errno != EBUSY)
6ea832a2 4271 return -errno;
6ea832a2 4272
b83bc4e9
LP
4273 /* Couldn't deallocate, so let's clear it fully with
4274 * scrollback */
4275 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
6ea832a2 4276 if (fd < 0)
b83bc4e9 4277 return fd;
6ea832a2 4278
8585357a
LP
4279 loop_write(fd,
4280 "\033[r" /* clear scrolling region */
4281 "\033[H" /* move home */
4282 "\033[3J", /* clear screen including scrollback, requires Linux 2.6.40 */
4283 10, false);
03e334a1 4284 safe_close(fd);
6ea832a2 4285
b83bc4e9 4286 return 0;
6ea832a2
LP
4287}
4288
424a19f8 4289int symlink_atomic(const char *from, const char *to) {
2e78fa79 4290 _cleanup_free_ char *t = NULL;
34ca941c
LP
4291
4292 assert(from);
4293 assert(to);
4294
2e78fa79 4295 t = tempfn_random(to);
34ca941c
LP
4296 if (!t)
4297 return -ENOMEM;
4298
424a19f8
LP
4299 if (symlink(from, t) < 0)
4300 return -errno;
34ca941c
LP
4301
4302 if (rename(t, to) < 0) {
2e78fa79
LP
4303 unlink_noerrno(t);
4304 return -errno;
34ca941c
LP
4305 }
4306
424a19f8 4307 return 0;
34ca941c
LP
4308}
4309
1554afae
LP
4310int mknod_atomic(const char *path, mode_t mode, dev_t dev) {
4311 _cleanup_free_ char *t = NULL;
4312
4313 assert(path);
4314
4315 t = tempfn_random(path);
4316 if (!t)
4317 return -ENOMEM;
4318
4319 if (mknod(t, mode, dev) < 0)
4320 return -errno;
4321
4322 if (rename(t, path) < 0) {
4323 unlink_noerrno(t);
4324 return -errno;
4325 }
4326
4327 return 0;
4328}
4329
4330int mkfifo_atomic(const char *path, mode_t mode) {
4331 _cleanup_free_ char *t = NULL;
4332
4333 assert(path);
4334
4335 t = tempfn_random(path);
4336 if (!t)
4337 return -ENOMEM;
4338
4339 if (mkfifo(t, mode) < 0)
4340 return -errno;
4341
4342 if (rename(t, path) < 0) {
4343 unlink_noerrno(t);
4344 return -errno;
4345 }
4346
4347 return 0;
4348}
4349
4d6d6518
LP
4350bool display_is_local(const char *display) {
4351 assert(display);
4352
4353 return
4354 display[0] == ':' &&
4355 display[1] >= '0' &&
4356 display[1] <= '9';
4357}
4358
4359int socket_from_display(const char *display, char **path) {
4360 size_t k;
4361 char *f, *c;
4362
4363 assert(display);
4364 assert(path);
4365
4366 if (!display_is_local(display))
4367 return -EINVAL;
4368
4369 k = strspn(display+1, "0123456789");
4370
f8294e41 4371 f = new(char, strlen("/tmp/.X11-unix/X") + k + 1);
4d6d6518
LP
4372 if (!f)
4373 return -ENOMEM;
4374
4375 c = stpcpy(f, "/tmp/.X11-unix/X");
4376 memcpy(c, display+1, k);
4377 c[k] = 0;
4378
4379 *path = f;
4380
4381 return 0;
4382}
4383
d05c5031
LP
4384int get_user_creds(
4385 const char **username,
4386 uid_t *uid, gid_t *gid,
4387 const char **home,
4388 const char **shell) {
4389
1cccf435 4390 struct passwd *p;
ddd88763 4391 uid_t u;
1cccf435
MV
4392
4393 assert(username);
4394 assert(*username);
1cccf435
MV
4395
4396 /* We enforce some special rules for uid=0: in order to avoid
4397 * NSS lookups for root we hardcode its data. */
4398
4399 if (streq(*username, "root") || streq(*username, "0")) {
4400 *username = "root";
4b67834e
LP
4401
4402 if (uid)
4403 *uid = 0;
4404
4405 if (gid)
4406 *gid = 0;
4407
4408 if (home)
4409 *home = "/root";
d05c5031
LP
4410
4411 if (shell)
4412 *shell = "/bin/sh";
4413
1cccf435
MV
4414 return 0;
4415 }
4416
ddd88763 4417 if (parse_uid(*username, &u) >= 0) {
1cccf435 4418 errno = 0;
ddd88763 4419 p = getpwuid(u);
1cccf435
MV
4420
4421 /* If there are multiple users with the same id, make
4422 * sure to leave $USER to the configured value instead
4423 * of the first occurrence in the database. However if
4424 * the uid was configured by a numeric uid, then let's
4425 * pick the real username from /etc/passwd. */
4426 if (p)
4427 *username = p->pw_name;
4428 } else {
4429 errno = 0;
4430 p = getpwnam(*username);
4431 }
4432
4433 if (!p)
8333c77e 4434 return errno > 0 ? -errno : -ESRCH;
1cccf435 4435
4b67834e
LP
4436 if (uid)
4437 *uid = p->pw_uid;
4438
4439 if (gid)
4440 *gid = p->pw_gid;
4441
4442 if (home)
4443 *home = p->pw_dir;
4444
d05c5031
LP
4445 if (shell)
4446 *shell = p->pw_shell;
4447
4b67834e
LP
4448 return 0;
4449}
4450
59164be4
LP
4451char* uid_to_name(uid_t uid) {
4452 struct passwd *p;
4453 char *r;
4454
4455 if (uid == 0)
4456 return strdup("root");
4457
4458 p = getpwuid(uid);
4459 if (p)
4460 return strdup(p->pw_name);
4461
de0671ee 4462 if (asprintf(&r, UID_FMT, uid) < 0)
59164be4
LP
4463 return NULL;
4464
4465 return r;
4466}
4467
4468addc
LP
4468char* gid_to_name(gid_t gid) {
4469 struct group *p;
4470 char *r;
4471
4472 if (gid == 0)
4473 return strdup("root");
4474
4475 p = getgrgid(gid);
4476 if (p)
4477 return strdup(p->gr_name);
4478
de0671ee 4479 if (asprintf(&r, GID_FMT, gid) < 0)
4468addc
LP
4480 return NULL;
4481
4482 return r;
4483}
4484
4b67834e
LP
4485int get_group_creds(const char **groupname, gid_t *gid) {
4486 struct group *g;
4487 gid_t id;
4488
4489 assert(groupname);
4490
4491 /* We enforce some special rules for gid=0: in order to avoid
4492 * NSS lookups for root we hardcode its data. */
4493
4494 if (streq(*groupname, "root") || streq(*groupname, "0")) {
4495 *groupname = "root";
4496
4497 if (gid)
4498 *gid = 0;
4499
4500 return 0;
4501 }
4502
4503 if (parse_gid(*groupname, &id) >= 0) {
4504 errno = 0;
4505 g = getgrgid(id);
4506
4507 if (g)
4508 *groupname = g->gr_name;
4509 } else {
4510 errno = 0;
4511 g = getgrnam(*groupname);
4512 }
4513
4514 if (!g)
8333c77e 4515 return errno > 0 ? -errno : -ESRCH;
4b67834e
LP
4516
4517 if (gid)
4518 *gid = g->gr_gid;
4519
1cccf435
MV
4520 return 0;
4521}
4522
4468addc
LP
4523int in_gid(gid_t gid) {
4524 gid_t *gids;
43673799
LP
4525 int ngroups_max, r, i;
4526
43673799
LP
4527 if (getgid() == gid)
4528 return 1;
4529
4530 if (getegid() == gid)
4531 return 1;
4532
4533 ngroups_max = sysconf(_SC_NGROUPS_MAX);
4534 assert(ngroups_max > 0);
4535
4536 gids = alloca(sizeof(gid_t) * ngroups_max);
4537
4538 r = getgroups(ngroups_max, gids);
4539 if (r < 0)
4540 return -errno;
4541
4542 for (i = 0; i < r; i++)
4543 if (gids[i] == gid)
4544 return 1;
4545
4546 return 0;
4547}
4548
4468addc
LP
4549int in_group(const char *name) {
4550 int r;
4551 gid_t gid;
4552
4553 r = get_group_creds(&name, &gid);
4554 if (r < 0)
4555 return r;
4556
4557 return in_gid(gid);
4558}
4559
8092a428 4560int glob_exists(const char *path) {
7fd1b19b 4561 _cleanup_globfree_ glob_t g = {};
8d98da3f 4562 int k;
8092a428
LP
4563
4564 assert(path);
4565
8092a428
LP
4566 errno = 0;
4567 k = glob(path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
4568
4569 if (k == GLOB_NOMATCH)
8d98da3f 4570 return 0;
8092a428 4571 else if (k == GLOB_NOSPACE)
8d98da3f 4572 return -ENOMEM;
8092a428 4573 else if (k == 0)
8d98da3f 4574 return !strv_isempty(g.gl_pathv);
8092a428 4575 else
8d98da3f
ZJS
4576 return errno ? -errno : -EIO;
4577}
8092a428 4578
8d98da3f
ZJS
4579int glob_extend(char ***strv, const char *path) {
4580 _cleanup_globfree_ glob_t g = {};
4581 int k;
4582 char **p;
4583
4584 errno = 0;
a8ccacf5 4585 k = glob(path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
8d98da3f
ZJS
4586
4587 if (k == GLOB_NOMATCH)
4588 return -ENOENT;
4589 else if (k == GLOB_NOSPACE)
4590 return -ENOMEM;
4591 else if (k != 0 || strv_isempty(g.gl_pathv))
4592 return errno ? -errno : -EIO;
4593
4594 STRV_FOREACH(p, g.gl_pathv) {
4595 k = strv_extend(strv, *p);
4596 if (k < 0)
4597 break;
4598 }
4599
4600 return k;
8092a428
LP
4601}
4602
83096483
LP
4603int dirent_ensure_type(DIR *d, struct dirent *de) {
4604 struct stat st;
4605
4606 assert(d);
4607 assert(de);
4608
4609 if (de->d_type != DT_UNKNOWN)
4610 return 0;
4611
4612 if (fstatat(dirfd(d), de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0)
4613 return -errno;
4614
4615 de->d_type =
4616 S_ISREG(st.st_mode) ? DT_REG :
4617 S_ISDIR(st.st_mode) ? DT_DIR :
4618 S_ISLNK(st.st_mode) ? DT_LNK :
4619 S_ISFIFO(st.st_mode) ? DT_FIFO :
4620 S_ISSOCK(st.st_mode) ? DT_SOCK :
4621 S_ISCHR(st.st_mode) ? DT_CHR :
4622 S_ISBLK(st.st_mode) ? DT_BLK :
4623 DT_UNKNOWN;
4624
4625 return 0;
4626}
4627
034a2a52 4628int get_files_in_directory(const char *path, char ***list) {
893fa014
ZJS
4629 _cleanup_closedir_ DIR *d = NULL;
4630 size_t bufsize = 0, n = 0;
4631 _cleanup_strv_free_ char **l = NULL;
034a2a52
LP
4632
4633 assert(path);
d60ef526
LP
4634
4635 /* Returns all files in a directory in *list, and the number
4636 * of files as return value. If list is NULL returns only the
893fa014 4637 * number. */
034a2a52
LP
4638
4639 d = opendir(path);
8ea913b2
LP
4640 if (!d)
4641 return -errno;
4642
034a2a52 4643 for (;;) {
7d5e9c0f 4644 struct dirent *de;
034a2a52 4645
3fd11280
FW
4646 errno = 0;
4647 de = readdir(d);
4648 if (!de && errno != 0)
4649 return -errno;
034a2a52
LP
4650 if (!de)
4651 break;
4652
4653 dirent_ensure_type(d, de);
4654
4655 if (!dirent_is_file(de))
4656 continue;
4657
d60ef526 4658 if (list) {
893fa014
ZJS
4659 /* one extra slot is needed for the terminating NULL */
4660 if (!GREEDY_REALLOC(l, bufsize, n + 2))
4661 return -ENOMEM;
034a2a52 4662
893fa014
ZJS
4663 l[n] = strdup(de->d_name);
4664 if (!l[n])
4665 return -ENOMEM;
034a2a52 4666
893fa014 4667 l[++n] = NULL;
d60ef526 4668 } else
893fa014 4669 n++;
034a2a52
LP
4670 }
4671
893fa014
ZJS
4672 if (list) {
4673 *list = l;
4674 l = NULL; /* avoid freeing */
4675 }
034a2a52 4676
893fa014 4677 return n;
034a2a52
LP
4678}
4679
b7def684 4680char *strjoin(const char *x, ...) {
911a4828
LP
4681 va_list ap;
4682 size_t l;
4683 char *r, *p;
4684
4685 va_start(ap, x);
4686
4687 if (x) {
4688 l = strlen(x);
4689
4690 for (;;) {
4691 const char *t;
040f18ea 4692 size_t n;
911a4828
LP
4693
4694 t = va_arg(ap, const char *);
4695 if (!t)
4696 break;
4697
040f18ea 4698 n = strlen(t);
e98055de
LN
4699 if (n > ((size_t) -1) - l) {
4700 va_end(ap);
040f18ea 4701 return NULL;
e98055de 4702 }
040f18ea
LP
4703
4704 l += n;
911a4828
LP
4705 }
4706 } else
4707 l = 0;
4708
4709 va_end(ap);
4710
4711 r = new(char, l+1);
4712 if (!r)
4713 return NULL;
4714
4715 if (x) {
4716 p = stpcpy(r, x);
4717
4718 va_start(ap, x);
4719
4720 for (;;) {
4721 const char *t;
4722
4723 t = va_arg(ap, const char *);
4724 if (!t)
4725 break;
4726
4727 p = stpcpy(p, t);
4728 }
8ea913b2
LP
4729
4730 va_end(ap);
911a4828
LP
4731 } else
4732 r[0] = 0;
4733
4734 return r;
4735}
4736
b636465b 4737bool is_main_thread(void) {
ec202eae 4738 static thread_local int cached = 0;
b636465b
LP
4739
4740 if (_unlikely_(cached == 0))
4741 cached = getpid() == gettid() ? 1 : -1;
4742
4743 return cached > 0;
4744}
4745
94959f0f
LP
4746int block_get_whole_disk(dev_t d, dev_t *ret) {
4747 char *p, *s;
4748 int r;
4749 unsigned n, m;
4750
4751 assert(ret);
4752
4753 /* If it has a queue this is good enough for us */
4754 if (asprintf(&p, "/sys/dev/block/%u:%u/queue", major(d), minor(d)) < 0)
4755 return -ENOMEM;
4756
4757 r = access(p, F_OK);
4758 free(p);
4759
4760 if (r >= 0) {
4761 *ret = d;
4762 return 0;
4763 }
4764
4765 /* If it is a partition find the originating device */
4766 if (asprintf(&p, "/sys/dev/block/%u:%u/partition", major(d), minor(d)) < 0)
4767 return -ENOMEM;
4768
4769 r = access(p, F_OK);
4770 free(p);
4771
4772 if (r < 0)
4773 return -ENOENT;
4774
4775 /* Get parent dev_t */
4776 if (asprintf(&p, "/sys/dev/block/%u:%u/../dev", major(d), minor(d)) < 0)
4777 return -ENOMEM;
4778
4779 r = read_one_line_file(p, &s);
4780 free(p);
4781
4782 if (r < 0)
4783 return r;
4784
4785 r = sscanf(s, "%u:%u", &m, &n);
4786 free(s);
4787
4788 if (r != 2)
4789 return -EINVAL;
4790
4791 /* Only return this if it is really good enough for us. */
4792 if (asprintf(&p, "/sys/dev/block/%u:%u/queue", m, n) < 0)
4793 return -ENOMEM;
4794
4795 r = access(p, F_OK);
4796 free(p);
4797
4798 if (r >= 0) {
4799 *ret = makedev(m, n);
4800 return 0;
4801 }
4802
4803 return -ENOENT;
4804}
4805
8d53b453 4806int file_is_priv_sticky(const char *p) {
ad293f5a
LP
4807 struct stat st;
4808
4809 assert(p);
4810
4811 if (lstat(p, &st) < 0)
4812 return -errno;
4813
4814 return
8d53b453 4815 (st.st_uid == 0 || st.st_uid == getuid()) &&
ad293f5a
LP
4816 (st.st_mode & S_ISVTX);
4817}
94959f0f 4818
f41607a6
LP
4819static const char *const ioprio_class_table[] = {
4820 [IOPRIO_CLASS_NONE] = "none",
4821 [IOPRIO_CLASS_RT] = "realtime",
4822 [IOPRIO_CLASS_BE] = "best-effort",
4823 [IOPRIO_CLASS_IDLE] = "idle"
4824};
4825
f8b69d1d 4826DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(ioprio_class, int, INT_MAX);
f41607a6
LP
4827
4828static const char *const sigchld_code_table[] = {
4829 [CLD_EXITED] = "exited",
4830 [CLD_KILLED] = "killed",
4831 [CLD_DUMPED] = "dumped",
4832 [CLD_TRAPPED] = "trapped",
4833 [CLD_STOPPED] = "stopped",
4834 [CLD_CONTINUED] = "continued",
4835};
4836
4837DEFINE_STRING_TABLE_LOOKUP(sigchld_code, int);
4838
4839static const char *const log_facility_unshifted_table[LOG_NFACILITIES] = {
4840 [LOG_FAC(LOG_KERN)] = "kern",
4841 [LOG_FAC(LOG_USER)] = "user",
4842 [LOG_FAC(LOG_MAIL)] = "mail",
4843 [LOG_FAC(LOG_DAEMON)] = "daemon",
4844 [LOG_FAC(LOG_AUTH)] = "auth",
4845 [LOG_FAC(LOG_SYSLOG)] = "syslog",
4846 [LOG_FAC(LOG_LPR)] = "lpr",
4847 [LOG_FAC(LOG_NEWS)] = "news",
4848 [LOG_FAC(LOG_UUCP)] = "uucp",
4849 [LOG_FAC(LOG_CRON)] = "cron",
4850 [LOG_FAC(LOG_AUTHPRIV)] = "authpriv",
4851 [LOG_FAC(LOG_FTP)] = "ftp",
4852 [LOG_FAC(LOG_LOCAL0)] = "local0",
4853 [LOG_FAC(LOG_LOCAL1)] = "local1",
4854 [LOG_FAC(LOG_LOCAL2)] = "local2",
4855 [LOG_FAC(LOG_LOCAL3)] = "local3",
4856 [LOG_FAC(LOG_LOCAL4)] = "local4",
4857 [LOG_FAC(LOG_LOCAL5)] = "local5",
4858 [LOG_FAC(LOG_LOCAL6)] = "local6",
4859 [LOG_FAC(LOG_LOCAL7)] = "local7"
4860};
4861
f8b69d1d 4862DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(log_facility_unshifted, int, LOG_FAC(~0));
f41607a6
LP
4863
4864static const char *const log_level_table[] = {
4865 [LOG_EMERG] = "emerg",
4866 [LOG_ALERT] = "alert",
4867 [LOG_CRIT] = "crit",
4868 [LOG_ERR] = "err",
4869 [LOG_WARNING] = "warning",
4870 [LOG_NOTICE] = "notice",
4871 [LOG_INFO] = "info",
4872 [LOG_DEBUG] = "debug"
4873};
4874
f8b69d1d 4875DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(log_level, int, LOG_DEBUG);
f41607a6
LP
4876
4877static const char* const sched_policy_table[] = {
4878 [SCHED_OTHER] = "other",
4879 [SCHED_BATCH] = "batch",
4880 [SCHED_IDLE] = "idle",
4881 [SCHED_FIFO] = "fifo",
4882 [SCHED_RR] = "rr"
4883};
4884
f8b69d1d 4885DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(sched_policy, int, INT_MAX);
f41607a6 4886
517d56b1 4887static const char* const rlimit_table[_RLIMIT_MAX] = {
f41607a6
LP
4888 [RLIMIT_CPU] = "LimitCPU",
4889 [RLIMIT_FSIZE] = "LimitFSIZE",
4890 [RLIMIT_DATA] = "LimitDATA",
4891 [RLIMIT_STACK] = "LimitSTACK",
4892 [RLIMIT_CORE] = "LimitCORE",
4893 [RLIMIT_RSS] = "LimitRSS",
4894 [RLIMIT_NOFILE] = "LimitNOFILE",
4895 [RLIMIT_AS] = "LimitAS",
4896 [RLIMIT_NPROC] = "LimitNPROC",
4897 [RLIMIT_MEMLOCK] = "LimitMEMLOCK",
4898 [RLIMIT_LOCKS] = "LimitLOCKS",
4899 [RLIMIT_SIGPENDING] = "LimitSIGPENDING",
4900 [RLIMIT_MSGQUEUE] = "LimitMSGQUEUE",
4901 [RLIMIT_NICE] = "LimitNICE",
4902 [RLIMIT_RTPRIO] = "LimitRTPRIO",
4903 [RLIMIT_RTTIME] = "LimitRTTIME"
4904};
4905
4906DEFINE_STRING_TABLE_LOOKUP(rlimit, int);
4907
4908static const char* const ip_tos_table[] = {
4909 [IPTOS_LOWDELAY] = "low-delay",
4910 [IPTOS_THROUGHPUT] = "throughput",
4911 [IPTOS_RELIABILITY] = "reliability",
4912 [IPTOS_LOWCOST] = "low-cost",
4913};
4914
f8b69d1d 4915DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(ip_tos, int, 0xff);
f41607a6 4916
4e240ab0 4917static const char *const __signal_table[] = {
f41607a6
LP
4918 [SIGHUP] = "HUP",
4919 [SIGINT] = "INT",
4920 [SIGQUIT] = "QUIT",
4921 [SIGILL] = "ILL",
4922 [SIGTRAP] = "TRAP",
4923 [SIGABRT] = "ABRT",
4924 [SIGBUS] = "BUS",
4925 [SIGFPE] = "FPE",
4926 [SIGKILL] = "KILL",
4927 [SIGUSR1] = "USR1",
4928 [SIGSEGV] = "SEGV",
4929 [SIGUSR2] = "USR2",
4930 [SIGPIPE] = "PIPE",
4931 [SIGALRM] = "ALRM",
4932 [SIGTERM] = "TERM",
4933#ifdef SIGSTKFLT
4934 [SIGSTKFLT] = "STKFLT", /* Linux on SPARC doesn't know SIGSTKFLT */
4935#endif
4936 [SIGCHLD] = "CHLD",
4937 [SIGCONT] = "CONT",
4938 [SIGSTOP] = "STOP",
4939 [SIGTSTP] = "TSTP",
4940 [SIGTTIN] = "TTIN",
4941 [SIGTTOU] = "TTOU",
4942 [SIGURG] = "URG",
4943 [SIGXCPU] = "XCPU",
4944 [SIGXFSZ] = "XFSZ",
4945 [SIGVTALRM] = "VTALRM",
4946 [SIGPROF] = "PROF",
4947 [SIGWINCH] = "WINCH",
4948 [SIGIO] = "IO",
4949 [SIGPWR] = "PWR",
4950 [SIGSYS] = "SYS"
4951};
4952
4e240ab0
MS
4953DEFINE_PRIVATE_STRING_TABLE_LOOKUP(__signal, int);
4954
4955const char *signal_to_string(int signo) {
ec202eae 4956 static thread_local char buf[sizeof("RTMIN+")-1 + DECIMAL_STR_MAX(int) + 1];
4e240ab0
MS
4957 const char *name;
4958
4959 name = __signal_to_string(signo);
4960 if (name)
4961 return name;
4962
4963 if (signo >= SIGRTMIN && signo <= SIGRTMAX)
fa70beaa 4964 snprintf(buf, sizeof(buf), "RTMIN+%d", signo - SIGRTMIN);
4e240ab0 4965 else
fa70beaa
LP
4966 snprintf(buf, sizeof(buf), "%d", signo);
4967
4e240ab0
MS
4968 return buf;
4969}
4970
4971int signal_from_string(const char *s) {
4972 int signo;
4973 int offset = 0;
4974 unsigned u;
4975
040f18ea 4976 signo = __signal_from_string(s);
4e240ab0
MS
4977 if (signo > 0)
4978 return signo;
4979
4980 if (startswith(s, "RTMIN+")) {
4981 s += 6;
4982 offset = SIGRTMIN;
4983 }
4984 if (safe_atou(s, &u) >= 0) {
4985 signo = (int) u + offset;
4986 if (signo > 0 && signo < _NSIG)
4987 return signo;
4988 }
7e8185ef 4989 return -EINVAL;
4e240ab0 4990}
65457142
FC
4991
4992bool kexec_loaded(void) {
4993 bool loaded = false;
4994 char *s;
4995
4996 if (read_one_line_file("/sys/kernel/kexec_loaded", &s) >= 0) {
4997 if (s[0] == '1')
4998 loaded = true;
4999 free(s);
5000 }
5001 return loaded;
5002}
fb9de93d 5003
87d2c1ff
LP
5004int prot_from_flags(int flags) {
5005
5006 switch (flags & O_ACCMODE) {
5007
5008 case O_RDONLY:
5009 return PROT_READ;
5010
5011 case O_WRONLY:
5012 return PROT_WRITE;
5013
5014 case O_RDWR:
5015 return PROT_READ|PROT_WRITE;
5016
5017 default:
5018 return -EINVAL;
5019 }
7c99e0c1 5020}
689b9a22 5021
babfc091 5022char *format_bytes(char *buf, size_t l, off_t t) {
c0f99c21 5023 unsigned i;
babfc091
LP
5024
5025 static const struct {
5026 const char *suffix;
5027 off_t factor;
5028 } table[] = {
32895bb3
LP
5029 { "E", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
5030 { "P", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
babfc091
LP
5031 { "T", 1024ULL*1024ULL*1024ULL*1024ULL },
5032 { "G", 1024ULL*1024ULL*1024ULL },
5033 { "M", 1024ULL*1024ULL },
5034 { "K", 1024ULL },
5035 };
5036
5037 for (i = 0; i < ELEMENTSOF(table); i++) {
5038
5039 if (t >= table[i].factor) {
5040 snprintf(buf, l,
5041 "%llu.%llu%s",
5042 (unsigned long long) (t / table[i].factor),
5043 (unsigned long long) (((t*10ULL) / table[i].factor) % 10ULL),
5044 table[i].suffix);
5045
5046 goto finish;
5047 }
5048 }
5049
5050 snprintf(buf, l, "%lluB", (unsigned long long) t);
5051
5052finish:
5053 buf[l-1] = 0;
5054 return buf;
5055
5056}
55d7bfc1
LP
5057
5058void* memdup(const void *p, size_t l) {
5059 void *r;
5060
5061 assert(p);
5062
5063 r = malloc(l);
5064 if (!r)
5065 return NULL;
5066
5067 memcpy(r, p, l);
5068 return r;
5069}
bb99a35a
LP
5070
5071int fd_inc_sndbuf(int fd, size_t n) {
5072 int r, value;
5073 socklen_t l = sizeof(value);
5074
5075 r = getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, &l);
92d75ca4 5076 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
bb99a35a
LP
5077 return 0;
5078
92d75ca4
LP
5079 /* If we have the privileges we will ignore the kernel limit. */
5080
bb99a35a 5081 value = (int) n;
92d75ca4
LP
5082 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUFFORCE, &value, sizeof(value)) < 0)
5083 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, sizeof(value)) < 0)
5084 return -errno;
bb99a35a
LP
5085
5086 return 1;
5087}
5088
5089int fd_inc_rcvbuf(int fd, size_t n) {
5090 int r, value;
5091 socklen_t l = sizeof(value);
5092
5093 r = getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, &l);
92d75ca4 5094 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
bb99a35a
LP
5095 return 0;
5096
92d75ca4 5097 /* If we have the privileges we will ignore the kernel limit. */
bb99a35a 5098
92d75ca4
LP
5099 value = (int) n;
5100 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUFFORCE, &value, sizeof(value)) < 0)
5101 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, sizeof(value)) < 0)
5102 return -errno;
bb99a35a
LP
5103 return 1;
5104}
6bb92a16 5105
9bdc770c 5106int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...) {
6bb92a16 5107 bool stdout_is_tty, stderr_is_tty;
8a7c93d8
LP
5108 pid_t parent_pid, agent_pid;
5109 sigset_t ss, saved_ss;
6bb92a16
LP
5110 unsigned n, i;
5111 va_list ap;
5112 char **l;
5113
5114 assert(pid);
5115 assert(path);
5116
6bb92a16
LP
5117 /* Spawns a temporary TTY agent, making sure it goes away when
5118 * we go away */
5119
8a7c93d8
LP
5120 parent_pid = getpid();
5121
5122 /* First we temporarily block all signals, so that the new
5123 * child has them blocked initially. This way, we can be sure
5124 * that SIGTERMs are not lost we might send to the agent. */
5125 assert_se(sigfillset(&ss) >= 0);
5126 assert_se(sigprocmask(SIG_SETMASK, &ss, &saved_ss) >= 0);
5127
6bb92a16 5128 agent_pid = fork();
8a7c93d8
LP
5129 if (agent_pid < 0) {
5130 assert_se(sigprocmask(SIG_SETMASK, &saved_ss, NULL) >= 0);
6bb92a16 5131 return -errno;
8a7c93d8 5132 }
6bb92a16
LP
5133
5134 if (agent_pid != 0) {
8a7c93d8 5135 assert_se(sigprocmask(SIG_SETMASK, &saved_ss, NULL) >= 0);
6bb92a16
LP
5136 *pid = agent_pid;
5137 return 0;
5138 }
5139
5140 /* In the child:
5141 *
5142 * Make sure the agent goes away when the parent dies */
5143 if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0)
5144 _exit(EXIT_FAILURE);
5145
8a7c93d8
LP
5146 /* Make sure we actually can kill the agent, if we need to, in
5147 * case somebody invoked us from a shell script that trapped
5148 * SIGTERM or so... */
5149 reset_all_signal_handlers();
5150 reset_signal_mask();
5151
6bb92a16 5152 /* Check whether our parent died before we were able
8a7c93d8 5153 * to set the death signal and unblock the signals */
6bb92a16
LP
5154 if (getppid() != parent_pid)
5155 _exit(EXIT_SUCCESS);
5156
5157 /* Don't leak fds to the agent */
9bdc770c 5158 close_all_fds(except, n_except);
6bb92a16
LP
5159
5160 stdout_is_tty = isatty(STDOUT_FILENO);
5161 stderr_is_tty = isatty(STDERR_FILENO);
5162
5163 if (!stdout_is_tty || !stderr_is_tty) {
8a7c93d8
LP
5164 int fd;
5165
6bb92a16
LP
5166 /* Detach from stdout/stderr. and reopen
5167 * /dev/tty for them. This is important to
5168 * ensure that when systemctl is started via
5169 * popen() or a similar call that expects to
5170 * read EOF we actually do generate EOF and
5171 * not delay this indefinitely by because we
5172 * keep an unused copy of stdin around. */
5173 fd = open("/dev/tty", O_WRONLY);
5174 if (fd < 0) {
5175 log_error("Failed to open /dev/tty: %m");
5176 _exit(EXIT_FAILURE);
5177 }
5178
5179 if (!stdout_is_tty)
5180 dup2(fd, STDOUT_FILENO);
5181
5182 if (!stderr_is_tty)
5183 dup2(fd, STDERR_FILENO);
5184
5185 if (fd > 2)
5186 close(fd);
5187 }
5188
5189 /* Count arguments */
5190 va_start(ap, path);
5191 for (n = 0; va_arg(ap, char*); n++)
5192 ;
5193 va_end(ap);
5194
5195 /* Allocate strv */
5196 l = alloca(sizeof(char *) * (n + 1));
5197
5198 /* Fill in arguments */
5199 va_start(ap, path);
5200 for (i = 0; i <= n; i++)
5201 l[i] = va_arg(ap, char*);
5202 va_end(ap);
5203
5204 execv(path, l);
5205 _exit(EXIT_FAILURE);
5206}
68faf98c
LP
5207
5208int setrlimit_closest(int resource, const struct rlimit *rlim) {
5209 struct rlimit highest, fixed;
5210
5211 assert(rlim);
5212
5213 if (setrlimit(resource, rlim) >= 0)
5214 return 0;
5215
5216 if (errno != EPERM)
5217 return -errno;
5218
5219 /* So we failed to set the desired setrlimit, then let's try
5220 * to get as close as we can */
5221 assert_se(getrlimit(resource, &highest) == 0);
5222
5223 fixed.rlim_cur = MIN(rlim->rlim_cur, highest.rlim_max);
5224 fixed.rlim_max = MIN(rlim->rlim_max, highest.rlim_max);
5225
5226 if (setrlimit(resource, &fixed) < 0)
5227 return -errno;
5228
5229 return 0;
5230}
3d9a4122 5231
ab94af92 5232int getenv_for_pid(pid_t pid, const char *field, char **_value) {
49aa47c7
LP
5233 _cleanup_fclose_ FILE *f = NULL;
5234 char *value = NULL;
ab94af92 5235 int r;
ab94af92
LP
5236 bool done = false;
5237 size_t l;
49aa47c7 5238 const char *path;
ab94af92 5239
49aa47c7 5240 assert(pid >= 0);
ab94af92
LP
5241 assert(field);
5242 assert(_value);
5243
b68fa010 5244 path = procfs_file_alloca(pid, "environ");
ab94af92
LP
5245
5246 f = fopen(path, "re");
5247 if (!f)
5248 return -errno;
5249
5250 l = strlen(field);
5251 r = 0;
5252
5253 do {
5254 char line[LINE_MAX];
5255 unsigned i;
5256
5257 for (i = 0; i < sizeof(line)-1; i++) {
5258 int c;
5259
5260 c = getc(f);
5261 if (_unlikely_(c == EOF)) {
5262 done = true;
5263 break;
5264 } else if (c == 0)
5265 break;
5266
5267 line[i] = c;
5268 }
5269 line[i] = 0;
5270
5271 if (memcmp(line, field, l) == 0 && line[l] == '=') {
5272 value = strdup(line + l + 1);
49aa47c7
LP
5273 if (!value)
5274 return -ENOMEM;
ab94af92
LP
5275
5276 r = 1;
5277 break;
5278 }
5279
5280 } while (!done);
5281
49aa47c7 5282 *_value = value;
ab94af92
LP
5283 return r;
5284}
d889a206 5285
49dbfa7b
LP
5286bool is_valid_documentation_url(const char *url) {
5287 assert(url);
5288
5289 if (startswith(url, "http://") && url[7])
5290 return true;
5291
5292 if (startswith(url, "https://") && url[8])
5293 return true;
5294
5295 if (startswith(url, "file:") && url[5])
5296 return true;
5297
5298 if (startswith(url, "info:") && url[5])
5299 return true;
5300
5301 if (startswith(url, "man:") && url[4])
5302 return true;
5303
5304 return false;
5305}
9be346c9
HH
5306
5307bool in_initrd(void) {
73020ab2 5308 static int saved = -1;
825c6fe5 5309 struct statfs s;
8f33b5b8 5310
825c6fe5
LP
5311 if (saved >= 0)
5312 return saved;
5313
5314 /* We make two checks here:
5315 *
5316 * 1. the flag file /etc/initrd-release must exist
5317 * 2. the root file system must be a memory file system
5318 *
5319 * The second check is extra paranoia, since misdetecting an
5320 * initrd can have bad bad consequences due the initrd
5321 * emptying when transititioning to the main systemd.
5322 */
5323
5324 saved = access("/etc/initrd-release", F_OK) >= 0 &&
5325 statfs("/", &s) >= 0 &&
943aad8c 5326 is_temporary_fs(&s);
9be346c9 5327
8f33b5b8 5328 return saved;
9be346c9 5329}
069cfc85
LP
5330
5331void warn_melody(void) {
e67f47e5 5332 _cleanup_close_ int fd = -1;
069cfc85
LP
5333
5334 fd = open("/dev/console", O_WRONLY|O_CLOEXEC|O_NOCTTY);
5335 if (fd < 0)
5336 return;
5337
040f18ea 5338 /* Yeah, this is synchronous. Kinda sucks. But well... */
069cfc85
LP
5339
5340 ioctl(fd, KIOCSOUND, (int)(1193180/440));
5341 usleep(125*USEC_PER_MSEC);
5342
5343 ioctl(fd, KIOCSOUND, (int)(1193180/220));
5344 usleep(125*USEC_PER_MSEC);
5345
5346 ioctl(fd, KIOCSOUND, (int)(1193180/220));
5347 usleep(125*USEC_PER_MSEC);
5348
5349 ioctl(fd, KIOCSOUND, 0);
069cfc85 5350}
cd3bd60a
LP
5351
5352int make_console_stdio(void) {
5353 int fd, r;
5354
5355 /* Make /dev/console the controlling terminal and stdin/stdout/stderr */
5356
3a43da28 5357 fd = acquire_terminal("/dev/console", false, true, true, USEC_INFINITY);
cd3bd60a
LP
5358 if (fd < 0) {
5359 log_error("Failed to acquire terminal: %s", strerror(-fd));
5360 return fd;
5361 }
5362
5363 r = make_stdio(fd);
5364 if (r < 0) {
5365 log_error("Failed to duplicate terminal fd: %s", strerror(-r));
5366 return r;
5367 }
5368
5369 return 0;
5370}
7c5f152a
LP
5371
5372int get_home_dir(char **_h) {
2cfbd749 5373 struct passwd *p;
7c5f152a 5374 const char *e;
2cfbd749 5375 char *h;
7c5f152a 5376 uid_t u;
7c5f152a
LP
5377
5378 assert(_h);
5379
5380 /* Take the user specified one */
9a00f57a
LP
5381 e = secure_getenv("HOME");
5382 if (e && path_is_absolute(e)) {
7c5f152a
LP
5383 h = strdup(e);
5384 if (!h)
5385 return -ENOMEM;
5386
5387 *_h = h;
5388 return 0;
5389 }
5390
5391 /* Hardcode home directory for root to avoid NSS */
5392 u = getuid();
5393 if (u == 0) {
5394 h = strdup("/root");
5395 if (!h)
5396 return -ENOMEM;
5397
5398 *_h = h;
5399 return 0;
5400 }
5401
5402 /* Check the database... */
5403 errno = 0;
5404 p = getpwuid(u);
5405 if (!p)
bcb161b0 5406 return errno > 0 ? -errno : -ESRCH;
7c5f152a
LP
5407
5408 if (!path_is_absolute(p->pw_dir))
5409 return -EINVAL;
5410
5411 h = strdup(p->pw_dir);
5412 if (!h)
5413 return -ENOMEM;
5414
5415 *_h = h;
5416 return 0;
5417}
5418
2cfbd749
LP
5419int get_shell(char **_s) {
5420 struct passwd *p;
5421 const char *e;
5422 char *s;
5423 uid_t u;
5424
5425 assert(_s);
5426
5427 /* Take the user specified one */
5428 e = getenv("SHELL");
5429 if (e) {
5430 s = strdup(e);
5431 if (!s)
5432 return -ENOMEM;
5433
5434 *_s = s;
5435 return 0;
5436 }
5437
5438 /* Hardcode home directory for root to avoid NSS */
5439 u = getuid();
5440 if (u == 0) {
5441 s = strdup("/bin/sh");
5442 if (!s)
5443 return -ENOMEM;
5444
5445 *_s = s;
5446 return 0;
5447 }
5448
5449 /* Check the database... */
5450 errno = 0;
5451 p = getpwuid(u);
5452 if (!p)
5453 return errno > 0 ? -errno : -ESRCH;
5454
5455 if (!path_is_absolute(p->pw_shell))
5456 return -EINVAL;
5457
5458 s = strdup(p->pw_shell);
5459 if (!s)
5460 return -ENOMEM;
5461
5462 *_s = s;
5463 return 0;
5464}
5465
0b507b17
LP
5466bool filename_is_safe(const char *p) {
5467
5468 if (isempty(p))
5469 return false;
5470
5471 if (strchr(p, '/'))
5472 return false;
5473
5474 if (streq(p, "."))
5475 return false;
5476
5477 if (streq(p, ".."))
5478 return false;
5479
5480 if (strlen(p) > FILENAME_MAX)
5481 return false;
5482
5483 return true;
5484}
5485
5486bool string_is_safe(const char *p) {
5487 const char *t;
5488
6294aa76
LP
5489 if (!p)
5490 return false;
0b507b17
LP
5491
5492 for (t = p; *t; t++) {
01539d6e 5493 if (*t > 0 && *t < ' ')
0b507b17
LP
5494 return false;
5495
6294aa76 5496 if (strchr("\\\"\'\0x7f", *t))
0b507b17
LP
5497 return false;
5498 }
5499
5500 return true;
5501}
cfbc22ab 5502
ac4c8d6d 5503/**
6294aa76
LP
5504 * Check if a string contains control characters. If 'ok' is non-NULL
5505 * it may be a string containing additional CCs to be considered OK.
ac4c8d6d 5506 */
6294aa76 5507bool string_has_cc(const char *p, const char *ok) {
4d1a6904
LP
5508 const char *t;
5509
5510 assert(p);
5511
3a8a9163 5512 for (t = p; *t; t++) {
6294aa76 5513 if (ok && strchr(ok, *t))
1cb1767a 5514 continue;
6294aa76
LP
5515
5516 if (*t > 0 && *t < ' ')
4d1a6904
LP
5517 return true;
5518
3a8a9163
LP
5519 if (*t == 127)
5520 return true;
5521 }
5522
4d1a6904
LP
5523 return false;
5524}
5525
e884315e
LP
5526bool path_is_safe(const char *p) {
5527
5528 if (isempty(p))
5529 return false;
5530
5531 if (streq(p, "..") || startswith(p, "../") || endswith(p, "/..") || strstr(p, "/../"))
5532 return false;
5533
5534 if (strlen(p) > PATH_MAX)
5535 return false;
5536
5537 /* The following two checks are not really dangerous, but hey, they still are confusing */
5538 if (streq(p, ".") || startswith(p, "./") || endswith(p, "/.") || strstr(p, "/./"))
5539 return false;
5540
5541 if (strstr(p, "//"))
5542 return false;
5543
5544 return true;
5545}
5546
a9e12476
KS
5547/* hey glibc, APIs with callbacks without a user pointer are so useless */
5548void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
1c574591 5549 int (*compar) (const void *, const void *, void *), void *arg) {
a9e12476
KS
5550 size_t l, u, idx;
5551 const void *p;
5552 int comparison;
5553
5554 l = 0;
5555 u = nmemb;
5556 while (l < u) {
5557 idx = (l + u) / 2;
5558 p = (void *)(((const char *) base) + (idx * size));
5559 comparison = compar(key, p, arg);
5560 if (comparison < 0)
5561 u = idx;
5562 else if (comparison > 0)
5563 l = idx + 1;
5564 else
5565 return (void *)p;
5566 }
5567 return NULL;
5568}
09017585
MS
5569
5570bool is_locale_utf8(void) {
5571 const char *set;
5572 static int cached_answer = -1;
5573
5574 if (cached_answer >= 0)
5575 goto out;
5576
5577 if (!setlocale(LC_ALL, "")) {
5578 cached_answer = true;
5579 goto out;
5580 }
5581
5582 set = nl_langinfo(CODESET);
5583 if (!set) {
5584 cached_answer = true;
5585 goto out;
5586 }
5587
f168c273 5588 if (streq(set, "UTF-8")) {
fee79e01
HH
5589 cached_answer = true;
5590 goto out;
5591 }
5592
6cf2f1d9
HH
5593 /* For LC_CTYPE=="C" return true, because CTYPE is effectly
5594 * unset and everything can do to UTF-8 nowadays. */
fee79e01
HH
5595 set = setlocale(LC_CTYPE, NULL);
5596 if (!set) {
5597 cached_answer = true;
5598 goto out;
5599 }
5600
6cf2f1d9
HH
5601 /* Check result, but ignore the result if C was set
5602 * explicitly. */
5603 cached_answer =
5604 streq(set, "C") &&
5605 !getenv("LC_ALL") &&
5606 !getenv("LC_CTYPE") &&
5607 !getenv("LANG");
fee79e01 5608
09017585 5609out:
6cf2f1d9 5610 return (bool) cached_answer;
09017585 5611}
c339d977
MS
5612
5613const char *draw_special_char(DrawSpecialChar ch) {
5614 static const char *draw_table[2][_DRAW_SPECIAL_CHAR_MAX] = {
6b01f1d3 5615
c339d977 5616 /* UTF-8 */ {
6b01f1d3 5617 [DRAW_TREE_VERTICAL] = "\342\224\202 ", /* │ */
45a5ff0d
MS
5618 [DRAW_TREE_BRANCH] = "\342\224\234\342\224\200", /* ├─ */
5619 [DRAW_TREE_RIGHT] = "\342\224\224\342\224\200", /* └─ */
55c0b89c 5620 [DRAW_TREE_SPACE] = " ", /* */
6b01f1d3
LP
5621 [DRAW_TRIANGULAR_BULLET] = "\342\200\243", /* ‣ */
5622 [DRAW_BLACK_CIRCLE] = "\342\227\217", /* ● */
5623 [DRAW_ARROW] = "\342\206\222", /* → */
13f8b8cb 5624 [DRAW_DASH] = "\342\200\223", /* – */
c339d977 5625 },
6b01f1d3 5626
c339d977 5627 /* ASCII fallback */ {
6b01f1d3 5628 [DRAW_TREE_VERTICAL] = "| ",
45a5ff0d
MS
5629 [DRAW_TREE_BRANCH] = "|-",
5630 [DRAW_TREE_RIGHT] = "`-",
55c0b89c 5631 [DRAW_TREE_SPACE] = " ",
6b01f1d3
LP
5632 [DRAW_TRIANGULAR_BULLET] = ">",
5633 [DRAW_BLACK_CIRCLE] = "*",
5634 [DRAW_ARROW] = "->",
13f8b8cb 5635 [DRAW_DASH] = "-",
c339d977
MS
5636 }
5637 };
5638
5639 return draw_table[!is_locale_utf8()][ch];
5640}
409bc9c3
LP
5641
5642char *strreplace(const char *text, const char *old_string, const char *new_string) {
5643 const char *f;
5644 char *t, *r;
5645 size_t l, old_len, new_len;
5646
5647 assert(text);
5648 assert(old_string);
5649 assert(new_string);
5650
5651 old_len = strlen(old_string);
5652 new_len = strlen(new_string);
5653
5654 l = strlen(text);
5655 r = new(char, l+1);
5656 if (!r)
5657 return NULL;
5658
5659 f = text;
5660 t = r;
5661 while (*f) {
5662 char *a;
5663 size_t d, nl;
5664
5665 if (!startswith(f, old_string)) {
5666 *(t++) = *(f++);
5667 continue;
5668 }
5669
5670 d = t - r;
5671 nl = l - old_len + new_len;
5672 a = realloc(r, nl + 1);
5673 if (!a)
5674 goto oom;
5675
5676 l = nl;
5677 r = a;
5678 t = r + d;
5679
5680 t = stpcpy(t, new_string);
5681 f += old_len;
5682 }
5683
5684 *t = 0;
5685 return r;
5686
5687oom:
5688 free(r);
5689 return NULL;
5690}
e8bc0ea2
LP
5691
5692char *strip_tab_ansi(char **ibuf, size_t *_isz) {
660ddc72 5693 const char *i, *begin = NULL;
e8bc0ea2
LP
5694 enum {
5695 STATE_OTHER,
5696 STATE_ESCAPE,
5697 STATE_BRACKET
5698 } state = STATE_OTHER;
5699 char *obuf = NULL;
5700 size_t osz = 0, isz;
5701 FILE *f;
5702
5703 assert(ibuf);
5704 assert(*ibuf);
5705
5706 /* Strips ANSI color and replaces TABs by 8 spaces */
5707
5708 isz = _isz ? *_isz : strlen(*ibuf);
5709
5710 f = open_memstream(&obuf, &osz);
5711 if (!f)
5712 return NULL;
5713
5714 for (i = *ibuf; i < *ibuf + isz + 1; i++) {
5715
5716 switch (state) {
5717
5718 case STATE_OTHER:
5719 if (i >= *ibuf + isz) /* EOT */
5720 break;
5721 else if (*i == '\x1B')
5722 state = STATE_ESCAPE;
5723 else if (*i == '\t')
5724 fputs(" ", f);
5725 else
5726 fputc(*i, f);
5727 break;
5728
5729 case STATE_ESCAPE:
5730 if (i >= *ibuf + isz) { /* EOT */
5731 fputc('\x1B', f);
5732 break;
5733 } else if (*i == '[') {
5734 state = STATE_BRACKET;
5735 begin = i + 1;
5736 } else {
5737 fputc('\x1B', f);
5738 fputc(*i, f);
5739 state = STATE_OTHER;
5740 }
5741
5742 break;
5743
5744 case STATE_BRACKET:
5745
5746 if (i >= *ibuf + isz || /* EOT */
5747 (!(*i >= '0' && *i <= '9') && *i != ';' && *i != 'm')) {
5748 fputc('\x1B', f);
5749 fputc('[', f);
5750 state = STATE_OTHER;
5751 i = begin-1;
5752 } else if (*i == 'm')
5753 state = STATE_OTHER;
5754 break;
5755 }
5756 }
5757
5758 if (ferror(f)) {
5759 fclose(f);
5760 free(obuf);
5761 return NULL;
5762 }
5763
5764 fclose(f);
5765
5766 free(*ibuf);
5767 *ibuf = obuf;
5768
5769 if (_isz)
5770 *_isz = osz;
5771
5772 return obuf;
5773}
240dbaa4
LP
5774
5775int on_ac_power(void) {
5776 bool found_offline = false, found_online = false;
5777 _cleanup_closedir_ DIR *d = NULL;
5778
5779 d = opendir("/sys/class/power_supply");
5780 if (!d)
5781 return -errno;
5782
5783 for (;;) {
5784 struct dirent *de;
240dbaa4
LP
5785 _cleanup_close_ int fd = -1, device = -1;
5786 char contents[6];
5787 ssize_t n;
240dbaa4 5788
3fd11280
FW
5789 errno = 0;
5790 de = readdir(d);
5791 if (!de && errno != 0)
5792 return -errno;
240dbaa4
LP
5793
5794 if (!de)
5795 break;
5796
5797 if (ignore_file(de->d_name))
5798 continue;
5799
5800 device = openat(dirfd(d), de->d_name, O_DIRECTORY|O_RDONLY|O_CLOEXEC|O_NOCTTY);
5801 if (device < 0) {
5802 if (errno == ENOENT || errno == ENOTDIR)
5803 continue;
5804
5805 return -errno;
5806 }
5807
5808 fd = openat(device, "type", O_RDONLY|O_CLOEXEC|O_NOCTTY);
5809 if (fd < 0) {
5810 if (errno == ENOENT)
5811 continue;
5812
5813 return -errno;
5814 }
5815
5816 n = read(fd, contents, sizeof(contents));
5817 if (n < 0)
5818 return -errno;
5819
5820 if (n != 6 || memcmp(contents, "Mains\n", 6))
5821 continue;
5822
03e334a1 5823 safe_close(fd);
240dbaa4
LP
5824 fd = openat(device, "online", O_RDONLY|O_CLOEXEC|O_NOCTTY);
5825 if (fd < 0) {
5826 if (errno == ENOENT)
5827 continue;
5828
5829 return -errno;
5830 }
5831
5832 n = read(fd, contents, sizeof(contents));
5833 if (n < 0)
5834 return -errno;
5835
5836 if (n != 2 || contents[1] != '\n')
5837 return -EIO;
5838
5839 if (contents[0] == '1') {
5840 found_online = true;
5841 break;
5842 } else if (contents[0] == '0')
5843 found_offline = true;
5844 else
5845 return -EIO;
5846 }
5847
5848 return found_online || !found_offline;
5849}
fabe5c0e 5850
4cf7ea55 5851static int search_and_fopen_internal(const char *path, const char *mode, const char *root, char **search, FILE **_f) {
fabe5c0e
LP
5852 char **i;
5853
5854 assert(path);
5855 assert(mode);
5856 assert(_f);
5857
7d8da2c9 5858 if (!path_strv_resolve_uniq(search, root))
fabe5c0e
LP
5859 return -ENOMEM;
5860
5861 STRV_FOREACH(i, search) {
5862 _cleanup_free_ char *p = NULL;
5863 FILE *f;
5864
375eadd9
MM
5865 if (root)
5866 p = strjoin(root, *i, "/", path, NULL);
5867 else
5868 p = strjoin(*i, "/", path, NULL);
fabe5c0e
LP
5869 if (!p)
5870 return -ENOMEM;
5871
5872 f = fopen(p, mode);
5873 if (f) {
5874 *_f = f;
5875 return 0;
5876 }
5877
5878 if (errno != ENOENT)
5879 return -errno;
5880 }
5881
5882 return -ENOENT;
5883}
5884
4cf7ea55 5885int search_and_fopen(const char *path, const char *mode, const char *root, const char **search, FILE **_f) {
fabe5c0e
LP
5886 _cleanup_strv_free_ char **copy = NULL;
5887
5888 assert(path);
5889 assert(mode);
5890 assert(_f);
5891
5892 if (path_is_absolute(path)) {
5893 FILE *f;
5894
5895 f = fopen(path, mode);
5896 if (f) {
5897 *_f = f;
5898 return 0;
5899 }
5900
5901 return -errno;
5902 }
5903
5904 copy = strv_copy((char**) search);
5905 if (!copy)
5906 return -ENOMEM;
5907
4cf7ea55 5908 return search_and_fopen_internal(path, mode, root, copy, _f);
fabe5c0e
LP
5909}
5910
4cf7ea55 5911int search_and_fopen_nulstr(const char *path, const char *mode, const char *root, const char *search, FILE **_f) {
fabe5c0e
LP
5912 _cleanup_strv_free_ char **s = NULL;
5913
5914 if (path_is_absolute(path)) {
5915 FILE *f;
5916
5917 f = fopen(path, mode);
5918 if (f) {
5919 *_f = f;
5920 return 0;
5921 }
5922
5923 return -errno;
5924 }
5925
5926 s = strv_split_nulstr(search);
5927 if (!s)
5928 return -ENOMEM;
5929
4cf7ea55 5930 return search_and_fopen_internal(path, mode, root, s, _f);
fabe5c0e 5931}
c17ec25e 5932
66e35261
LP
5933char *strextend(char **x, ...) {
5934 va_list ap;
5935 size_t f, l;
5936 char *r, *p;
5937
5938 assert(x);
5939
5940 l = f = *x ? strlen(*x) : 0;
5941
5942 va_start(ap, x);
5943 for (;;) {
5944 const char *t;
5945 size_t n;
5946
5947 t = va_arg(ap, const char *);
5948 if (!t)
5949 break;
5950
5951 n = strlen(t);
5952 if (n > ((size_t) -1) - l) {
5953 va_end(ap);
5954 return NULL;
5955 }
5956
5957 l += n;
5958 }
5959 va_end(ap);
5960
5961 r = realloc(*x, l+1);
5962 if (!r)
5963 return NULL;
5964
5965 p = r + f;
5966
5967 va_start(ap, x);
5968 for (;;) {
5969 const char *t;
5970
5971 t = va_arg(ap, const char *);
5972 if (!t)
5973 break;
5974
5975 p = stpcpy(p, t);
5976 }
5977 va_end(ap);
5978
5979 *p = 0;
5980 *x = r;
5981
5982 return r + l;
5983}
9a17484d
LP
5984
5985char *strrep(const char *s, unsigned n) {
5986 size_t l;
5987 char *r, *p;
5988 unsigned i;
5989
5990 assert(s);
5991
5992 l = strlen(s);
5993 p = r = malloc(l * n + 1);
5994 if (!r)
5995 return NULL;
5996
5997 for (i = 0; i < n; i++)
5998 p = stpcpy(p, s);
5999
6000 *p = 0;
6001 return r;
6002}
392d5b37 6003
ca2d3784
ZJS
6004void* greedy_realloc(void **p, size_t *allocated, size_t need, size_t size) {
6005 size_t a, newalloc;
392d5b37
LP
6006 void *q;
6007
98088803 6008 assert(p);
e93c33d4
SL
6009 assert(allocated);
6010
392d5b37
LP
6011 if (*allocated >= need)
6012 return *p;
6013
ca2d3784
ZJS
6014 newalloc = MAX(need * 2, 64u / size);
6015 a = newalloc * size;
98088803
LP
6016
6017 /* check for overflows */
ca2d3784 6018 if (a < size * need)
98088803
LP
6019 return NULL;
6020
392d5b37
LP
6021 q = realloc(*p, a);
6022 if (!q)
6023 return NULL;
6024
6025 *p = q;
ca2d3784 6026 *allocated = newalloc;
392d5b37
LP
6027 return q;
6028}
aa96c6cb 6029
ca2d3784 6030void* greedy_realloc0(void **p, size_t *allocated, size_t need, size_t size) {
98088803 6031 size_t prev;
4545a231
DH
6032 uint8_t *q;
6033
98088803
LP
6034 assert(p);
6035 assert(allocated);
6036
6037 prev = *allocated;
6038
ca2d3784 6039 q = greedy_realloc(p, allocated, need, size);
4545a231
DH
6040 if (!q)
6041 return NULL;
6042
6043 if (*allocated > prev)
ca2d3784 6044 memzero(q + prev * size, (*allocated - prev) * size);
4545a231
DH
6045
6046 return q;
6047}
6048
aa96c6cb
LP
6049bool id128_is_valid(const char *s) {
6050 size_t i, l;
6051
6052 l = strlen(s);
6053 if (l == 32) {
6054
6055 /* Simple formatted 128bit hex string */
6056
6057 for (i = 0; i < l; i++) {
6058 char c = s[i];
6059
6060 if (!(c >= '0' && c <= '9') &&
6061 !(c >= 'a' && c <= 'z') &&
6062 !(c >= 'A' && c <= 'Z'))
6063 return false;
6064 }
6065
6066 } else if (l == 36) {
6067
6068 /* Formatted UUID */
6069
6070 for (i = 0; i < l; i++) {
6071 char c = s[i];
6072
6073 if ((i == 8 || i == 13 || i == 18 || i == 23)) {
6074 if (c != '-')
6075 return false;
6076 } else {
6077 if (!(c >= '0' && c <= '9') &&
6078 !(c >= 'a' && c <= 'z') &&
6079 !(c >= 'A' && c <= 'Z'))
6080 return false;
6081 }
6082 }
6083
6084 } else
6085 return false;
6086
6087 return true;
6088}
7085053a 6089
d4ac85c6
LP
6090int split_pair(const char *s, const char *sep, char **l, char **r) {
6091 char *x, *a, *b;
6092
6093 assert(s);
6094 assert(sep);
6095 assert(l);
6096 assert(r);
6097
6098 if (isempty(sep))
6099 return -EINVAL;
6100
6101 x = strstr(s, sep);
6102 if (!x)
6103 return -EINVAL;
6104
6105 a = strndup(s, x - s);
6106 if (!a)
6107 return -ENOMEM;
6108
6109 b = strdup(x + strlen(sep));
6110 if (!b) {
6111 free(a);
6112 return -ENOMEM;
6113 }
6114
6115 *l = a;
6116 *r = b;
6117
6118 return 0;
6119}
295edddf 6120
74df0fca 6121int shall_restore_state(void) {
059cb385 6122 _cleanup_free_ char *line = NULL;
a2a5291b 6123 const char *word, *state;
295edddf 6124 size_t l;
74df0fca 6125 int r;
295edddf 6126
74df0fca
LP
6127 r = proc_cmdline(&line);
6128 if (r < 0)
6129 return r;
6130 if (r == 0) /* Container ... */
6131 return 1;
295edddf 6132
059cb385 6133 r = 1;
74df0fca 6134
a2a5291b 6135 FOREACH_WORD_QUOTED(word, l, line, state) {
059cb385
LP
6136 const char *e;
6137 char n[l+1];
6138 int k;
6139
a2a5291b 6140 memcpy(n, word, l);
059cb385
LP
6141 n[l] = 0;
6142
6143 e = startswith(n, "systemd.restore_state=");
6144 if (!e)
6145 continue;
6146
6147 k = parse_boolean(e);
6148 if (k >= 0)
6149 r = k;
6150 }
6151
6152 return r;
74df0fca
LP
6153}
6154
6155int proc_cmdline(char **ret) {
6156 int r;
6157
6158 if (detect_container(NULL) > 0) {
39883f62 6159 char *buf = NULL, *p;
02bb6cda
LP
6160 size_t sz = 0;
6161
6162 r = read_full_file("/proc/1/cmdline", &buf, &sz);
6163 if (r < 0)
6164 return r;
6165
6166 for (p = buf; p + 1 < buf + sz; p++)
6167 if (*p == 0)
6168 *p = ' ';
6169
059cb385 6170 *p = 0;
02bb6cda
LP
6171 *ret = buf;
6172 return 1;
295edddf
TG
6173 }
6174
74df0fca
LP
6175 r = read_one_line_file("/proc/cmdline", ret);
6176 if (r < 0)
6177 return r;
295edddf 6178
74df0fca 6179 return 1;
295edddf 6180}
bc9fd78c 6181
059cb385 6182int parse_proc_cmdline(int (*parse_item)(const char *key, const char *value)) {
141a79f4 6183 _cleanup_free_ char *line = NULL;
a2a5291b 6184 const char *w, *state;
141a79f4
ZJS
6185 size_t l;
6186 int r;
6187
059cb385
LP
6188 assert(parse_item);
6189
141a79f4
ZJS
6190 r = proc_cmdline(&line);
6191 if (r < 0)
6192 log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(-r));
6193 if (r <= 0)
6194 return 0;
6195
6196 FOREACH_WORD_QUOTED(w, l, line, state) {
059cb385 6197 char word[l+1], *value;
141a79f4 6198
059cb385
LP
6199 memcpy(word, w, l);
6200 word[l] = 0;
141a79f4 6201
059cb385
LP
6202 /* Filter out arguments that are intended only for the
6203 * initrd */
6204 if (!in_initrd() && startswith(word, "rd."))
6205 continue;
6206
6207 value = strchr(word, '=');
6208 if (value)
6209 *(value++) = 0;
6210
6211 r = parse_item(word, value);
6212 if (r < 0)
141a79f4 6213 return r;
141a79f4
ZJS
6214 }
6215
6216 return 0;
6217}
6218
bc9fd78c
LP
6219int container_get_leader(const char *machine, pid_t *pid) {
6220 _cleanup_free_ char *s = NULL, *class = NULL;
6221 const char *p;
6222 pid_t leader;
6223 int r;
6224
6225 assert(machine);
6226 assert(pid);
6227
6228 p = strappenda("/run/systemd/machines/", machine);
6229 r = parse_env_file(p, NEWLINE, "LEADER", &s, "CLASS", &class, NULL);
6230 if (r == -ENOENT)
6231 return -EHOSTDOWN;
6232 if (r < 0)
6233 return r;
6234 if (!s)
6235 return -EIO;
6236
6237 if (!streq_ptr(class, "container"))
6238 return -EIO;
6239
6240 r = parse_pid(s, &leader);
6241 if (r < 0)
6242 return r;
6243 if (leader <= 1)
6244 return -EIO;
6245
6246 *pid = leader;
6247 return 0;
6248}
6249
878cd7e9
LP
6250int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *netns_fd, int *root_fd) {
6251 _cleanup_close_ int pidnsfd = -1, mntnsfd = -1, netnsfd = -1;
359a06aa 6252 int rfd = -1;
bc9fd78c
LP
6253
6254 assert(pid >= 0);
bc9fd78c 6255
878cd7e9
LP
6256 if (mntns_fd) {
6257 const char *mntns;
a4475f57 6258
878cd7e9
LP
6259 mntns = procfs_file_alloca(pid, "ns/mnt");
6260 mntnsfd = open(mntns, O_RDONLY|O_NOCTTY|O_CLOEXEC);
6261 if (mntnsfd < 0)
6262 return -errno;
6263 }
bc9fd78c 6264
878cd7e9
LP
6265 if (pidns_fd) {
6266 const char *pidns;
6267
6268 pidns = procfs_file_alloca(pid, "ns/pid");
6269 pidnsfd = open(pidns, O_RDONLY|O_NOCTTY|O_CLOEXEC);
6270 if (pidnsfd < 0)
6271 return -errno;
6272 }
6273
6274 if (netns_fd) {
6275 const char *netns;
6276
6277 netns = procfs_file_alloca(pid, "ns/net");
6278 netnsfd = open(netns, O_RDONLY|O_NOCTTY|O_CLOEXEC);
6279 if (netnsfd < 0)
6280 return -errno;
6281 }
6282
6283 if (root_fd) {
6284 const char *root;
6285
6286 root = procfs_file_alloca(pid, "root");
6287 rfd = open(root, O_RDONLY|O_NOCTTY|O_CLOEXEC|O_DIRECTORY);
6288 if (rfd < 0)
6289 return -errno;
6290 }
6291
6292 if (pidns_fd)
6293 *pidns_fd = pidnsfd;
bc9fd78c 6294
878cd7e9
LP
6295 if (mntns_fd)
6296 *mntns_fd = mntnsfd;
6297
6298 if (netns_fd)
6299 *netns_fd = netnsfd;
6300
6301 if (root_fd)
6302 *root_fd = rfd;
6303
6304 pidnsfd = mntnsfd = netnsfd = -1;
bc9fd78c
LP
6305
6306 return 0;
6307}
6308
878cd7e9 6309int namespace_enter(int pidns_fd, int mntns_fd, int netns_fd, int root_fd) {
bc9fd78c 6310
878cd7e9
LP
6311 if (pidns_fd >= 0)
6312 if (setns(pidns_fd, CLONE_NEWPID) < 0)
6313 return -errno;
a4475f57 6314
878cd7e9
LP
6315 if (mntns_fd >= 0)
6316 if (setns(mntns_fd, CLONE_NEWNS) < 0)
6317 return -errno;
bc9fd78c 6318
878cd7e9
LP
6319 if (netns_fd >= 0)
6320 if (setns(netns_fd, CLONE_NEWNET) < 0)
6321 return -errno;
bc9fd78c 6322
878cd7e9
LP
6323 if (root_fd >= 0) {
6324 if (fchdir(root_fd) < 0)
6325 return -errno;
6326
6327 if (chroot(".") < 0)
6328 return -errno;
6329 }
bc9fd78c 6330
5e2b3214
LP
6331 if (setresgid(0, 0, 0) < 0)
6332 return -errno;
6333
878cd7e9
LP
6334 if (setgroups(0, NULL) < 0)
6335 return -errno;
6336
5e2b3214
LP
6337 if (setresuid(0, 0, 0) < 0)
6338 return -errno;
6339
bc9fd78c
LP
6340 return 0;
6341}
bf108e55 6342
9f5650ae
LP
6343bool pid_is_unwaited(pid_t pid) {
6344 /* Checks whether a PID is still valid at all, including a zombie */
6345
bf108e55
LP
6346 if (pid <= 0)
6347 return false;
6348
6349 if (kill(pid, 0) >= 0)
6350 return true;
6351
6352 return errno != ESRCH;
6353}
eff05270 6354
9f5650ae
LP
6355bool pid_is_alive(pid_t pid) {
6356 int r;
6357
6358 /* Checks whether a PID is still valid and not a zombie */
6359
6360 if (pid <= 0)
6361 return false;
6362
6363 r = get_process_state(pid);
6364 if (r == -ENOENT || r == 'Z')
6365 return false;
6366
6367 return true;
6368}
6369
eff05270
LP
6370int getpeercred(int fd, struct ucred *ucred) {
6371 socklen_t n = sizeof(struct ucred);
6372 struct ucred u;
6373 int r;
6374
6375 assert(fd >= 0);
6376 assert(ucred);
6377
6378 r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &u, &n);
6379 if (r < 0)
6380 return -errno;
6381
6382 if (n != sizeof(struct ucred))
6383 return -EIO;
6384
6385 /* Check if the data is actually useful and not suppressed due
6386 * to namespacing issues */
6387 if (u.pid <= 0)
6388 return -ENODATA;
6389
6390 *ucred = u;
6391 return 0;
6392}
6393
6394int getpeersec(int fd, char **ret) {
6395 socklen_t n = 64;
6396 char *s;
6397 int r;
6398
6399 assert(fd >= 0);
6400 assert(ret);
6401
6402 s = new0(char, n);
6403 if (!s)
6404 return -ENOMEM;
6405
6406 r = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, s, &n);
6407 if (r < 0) {
6408 free(s);
6409
6410 if (errno != ERANGE)
6411 return -errno;
6412
6413 s = new0(char, n);
6414 if (!s)
6415 return -ENOMEM;
6416
6417 r = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, s, &n);
6418 if (r < 0) {
6419 free(s);
6420 return -errno;
6421 }
6422 }
6423
ae98841e
LP
6424 if (isempty(s)) {
6425 free(s);
6426 return -ENOTSUP;
6427 }
6428
eff05270
LP
6429 *ret = s;
6430 return 0;
6431}
8e33886e 6432
0f010ef2 6433/* This is much like like mkostemp() but is subject to umask(). */
65b3903f 6434int mkostemp_safe(char *pattern, int flags) {
2d5bdf5b 6435 _cleanup_umask_ mode_t u;
0f010ef2 6436 int fd;
65b3903f 6437
d37a91e8 6438 assert(pattern);
65b3903f 6439
2d5bdf5b
LP
6440 u = umask(077);
6441
0f010ef2
ZJS
6442 fd = mkostemp(pattern, flags);
6443 if (fd < 0)
6444 return -errno;
65b3903f 6445
0f010ef2 6446 return fd;
65b3903f
ZJS
6447}
6448
8e33886e 6449int open_tmpfile(const char *path, int flags) {
8e33886e 6450 char *p;
a6afc4ae
LP
6451 int fd;
6452
6453 assert(path);
8e33886e
ZJS
6454
6455#ifdef O_TMPFILE
7736202c
LP
6456 /* Try O_TMPFILE first, if it is supported */
6457 fd = open(path, flags|O_TMPFILE, S_IRUSR|S_IWUSR);
8e33886e
ZJS
6458 if (fd >= 0)
6459 return fd;
6460#endif
7736202c
LP
6461
6462 /* Fall back to unguessable name + unlinking */
8e33886e
ZJS
6463 p = strappenda(path, "/systemd-tmp-XXXXXX");
6464
a6afc4ae 6465 fd = mkostemp_safe(p, flags);
8e33886e 6466 if (fd < 0)
65b3903f 6467 return fd;
8e33886e
ZJS
6468
6469 unlink(p);
6470 return fd;
6471}
fdb9161c
LP
6472
6473int fd_warn_permissions(const char *path, int fd) {
6474 struct stat st;
6475
6476 if (fstat(fd, &st) < 0)
6477 return -errno;
6478
6479 if (st.st_mode & 0111)
6480 log_warning("Configuration file %s is marked executable. Please remove executable permission bits. Proceeding anyway.", path);
6481
6482 if (st.st_mode & 0002)
6483 log_warning("Configuration file %s is marked world-writable. Please remove world writability permission bits. Proceeding anyway.", path);
6484
6485 if (getpid() == 1 && (st.st_mode & 0044) != 0044)
6486 log_warning("Configuration file %s is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.", path);
6487
6488 return 0;
6489}
6afc95b7 6490
ac45f971 6491unsigned long personality_from_string(const char *p) {
6afc95b7
LP
6492
6493 /* Parse a personality specifier. We introduce our own
6494 * identifiers that indicate specific ABIs, rather than just
6495 * hints regarding the register size, since we want to keep
6496 * things open for multiple locally supported ABIs for the
6497 * same register size. We try to reuse the ABI identifiers
6498 * used by libseccomp. */
6499
6500#if defined(__x86_64__)
6501
6502 if (streq(p, "x86"))
6503 return PER_LINUX32;
6504
6505 if (streq(p, "x86-64"))
6506 return PER_LINUX;
6507
6508#elif defined(__i386__)
6509
6510 if (streq(p, "x86"))
6511 return PER_LINUX;
6512#endif
6513
6514 /* personality(7) documents that 0xffffffffUL is used for
6515 * querying the current personality, hence let's use that here
6516 * as error indicator. */
6517 return 0xffffffffUL;
6518}
ac45f971
LP
6519
6520const char* personality_to_string(unsigned long p) {
6521
6522#if defined(__x86_64__)
6523
6524 if (p == PER_LINUX32)
6525 return "x86";
6526
6527 if (p == PER_LINUX)
6528 return "x86-64";
6529
6530#elif defined(__i386__)
6531
6532 if (p == PER_LINUX)
6533 return "x86";
6534#endif
6535
6536 return NULL;
6537}
1c231f56
LP
6538
6539uint64_t physical_memory(void) {
6540 long mem;
6541
6542 /* We return this as uint64_t in case we are running as 32bit
6543 * process on a 64bit kernel with huge amounts of memory */
6544
6545 mem = sysconf(_SC_PHYS_PAGES);
6546 assert(mem > 0);
6547
6548 return (uint64_t) mem * (uint64_t) page_size();
6549}
6db615c1
LP
6550
6551char* mount_test_option(const char *haystack, const char *needle) {
6552
6553 struct mntent me = {
6554 .mnt_opts = (char*) haystack
6555 };
6556
6557 assert(needle);
6558
6559 /* Like glibc's hasmntopt(), but works on a string, not a
6560 * struct mntent */
6561
6562 if (!haystack)
6563 return NULL;
6564
6565 return hasmntopt(&me, needle);
6566}
29bfbcd6
LP
6567
6568void hexdump(FILE *f, const void *p, size_t s) {
6569 const uint8_t *b = p;
6570 unsigned n = 0;
6571
6572 assert(s == 0 || b);
6573
6574 while (s > 0) {
6575 size_t i;
6576
6577 fprintf(f, "%04x ", n);
6578
6579 for (i = 0; i < 16; i++) {
6580
6581 if (i >= s)
6582 fputs(" ", f);
6583 else
6584 fprintf(f, "%02x ", b[i]);
6585
6586 if (i == 7)
6587 fputc(' ', f);
6588 }
6589
6590 fputc(' ', f);
6591
6592 for (i = 0; i < 16; i++) {
6593
6594 if (i >= s)
6595 fputc(' ', f);
6596 else
6597 fputc(isprint(b[i]) ? (char) b[i] : '.', f);
6598 }
6599
6600 fputc('\n', f);
6601
6602 if (s < 16)
6603 break;
6604
6605 n += 16;
6606 b += 16;
6607 s -= 16;
6608 }
6609}
c5220a94 6610
966bff26 6611int update_reboot_param_file(const char *param) {
c5220a94
MO
6612 int r = 0;
6613
6614 if (param) {
6615
6616 r = write_string_file(REBOOT_PARAM_FILE, param);
6617 if (r < 0)
6618 log_error("Failed to write reboot param to "
6619 REBOOT_PARAM_FILE": %s", strerror(-r));
6620 } else
6621 unlink(REBOOT_PARAM_FILE);
6622
6623 return r;
6624}
6d313367
LP
6625
6626int umount_recursive(const char *prefix, int flags) {
6627 bool again;
6628 int n = 0, r;
6629
6630 /* Try to umount everything recursively below a
6631 * directory. Also, take care of stacked mounts, and keep
6632 * unmounting them until they are gone. */
6633
6634 do {
6635 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
6636
6637 again = false;
6638 r = 0;
6639
6640 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
6641 if (!proc_self_mountinfo)
6642 return -errno;
6643
6644 for (;;) {
6645 _cleanup_free_ char *path = NULL, *p = NULL;
6646 int k;
6647
6648 k = fscanf(proc_self_mountinfo,
6649 "%*s " /* (1) mount id */
6650 "%*s " /* (2) parent id */
6651 "%*s " /* (3) major:minor */
6652 "%*s " /* (4) root */
6653 "%ms " /* (5) mount point */
6654 "%*s" /* (6) mount options */
6655 "%*[^-]" /* (7) optional fields */
6656 "- " /* (8) separator */
6657 "%*s " /* (9) file system type */
6658 "%*s" /* (10) mount source */
6659 "%*s" /* (11) mount options 2 */
6660 "%*[^\n]", /* some rubbish at the end */
6661 &path);
6d313367
LP
6662 if (k != 1) {
6663 if (k == EOF)
6664 break;
6665
6666 continue;
6667 }
6668
6669 p = cunescape(path);
6670 if (!p)
6671 return -ENOMEM;
6672
6673 if (!path_startswith(p, prefix))
6674 continue;
6675
6676 if (umount2(p, flags) < 0) {
6677 r = -errno;
6678 continue;
6679 }
6680
6681 again = true;
6682 n++;
6683
6684 break;
6685 }
6686
6687 } while (again);
6688
6689 return r ? r : n;
6690}
d6797c92
LP
6691
6692int bind_remount_recursive(const char *prefix, bool ro) {
6693 _cleanup_set_free_free_ Set *done = NULL;
6694 _cleanup_free_ char *cleaned = NULL;
6695 int r;
6696
6697 /* Recursively remount a directory (and all its submounts)
6698 * read-only or read-write. If the directory is already
6699 * mounted, we reuse the mount and simply mark it
6700 * MS_BIND|MS_RDONLY (or remove the MS_RDONLY for read-write
6701 * operation). If it isn't we first make it one. Afterwards we
6702 * apply MS_BIND|MS_RDONLY (or remove MS_RDONLY) to all
6703 * submounts we can access, too. When mounts are stacked on
6704 * the same mount point we only care for each individual
6705 * "top-level" mount on each point, as we cannot
6706 * influence/access the underlying mounts anyway. We do not
6707 * have any effect on future submounts that might get
6708 * propagated, they migt be writable. This includes future
6709 * submounts that have been triggered via autofs. */
6710
6711 cleaned = strdup(prefix);
6712 if (!cleaned)
6713 return -ENOMEM;
6714
6715 path_kill_slashes(cleaned);
6716
d5099efc 6717 done = set_new(&string_hash_ops);
d6797c92
LP
6718 if (!done)
6719 return -ENOMEM;
6720
6721 for (;;) {
6722 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
6723 _cleanup_set_free_free_ Set *todo = NULL;
6724 bool top_autofs = false;
6725 char *x;
6726
d5099efc 6727 todo = set_new(&string_hash_ops);
d6797c92
LP
6728 if (!todo)
6729 return -ENOMEM;
6730
6731 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
6732 if (!proc_self_mountinfo)
6733 return -errno;
6734
6735 for (;;) {
6736 _cleanup_free_ char *path = NULL, *p = NULL, *type = NULL;
6737 int k;
6738
6739 k = fscanf(proc_self_mountinfo,
6740 "%*s " /* (1) mount id */
6741 "%*s " /* (2) parent id */
6742 "%*s " /* (3) major:minor */
6743 "%*s " /* (4) root */
6744 "%ms " /* (5) mount point */
6745 "%*s" /* (6) mount options (superblock) */
6746 "%*[^-]" /* (7) optional fields */
6747 "- " /* (8) separator */
6748 "%ms " /* (9) file system type */
6749 "%*s" /* (10) mount source */
6750 "%*s" /* (11) mount options (bind mount) */
6751 "%*[^\n]", /* some rubbish at the end */
6752 &path,
6753 &type);
6754 if (k != 2) {
6755 if (k == EOF)
6756 break;
6757
6758 continue;
6759 }
6760
6761 p = cunescape(path);
6762 if (!p)
6763 return -ENOMEM;
6764
6765 /* Let's ignore autofs mounts. If they aren't
6766 * triggered yet, we want to avoid triggering
6767 * them, as we don't make any guarantees for
6768 * future submounts anyway. If they are
6769 * already triggered, then we will find
6770 * another entry for this. */
6771 if (streq(type, "autofs")) {
6772 top_autofs = top_autofs || path_equal(cleaned, p);
6773 continue;
6774 }
6775
6776 if (path_startswith(p, cleaned) &&
6777 !set_contains(done, p)) {
6778
6779 r = set_consume(todo, p);
6780 p = NULL;
6781
6782 if (r == -EEXIST)
6783 continue;
6784 if (r < 0)
6785 return r;
6786 }
6787 }
6788
6789 /* If we have no submounts to process anymore and if
6790 * the root is either already done, or an autofs, we
6791 * are done */
6792 if (set_isempty(todo) &&
6793 (top_autofs || set_contains(done, cleaned)))
6794 return 0;
6795
6796 if (!set_contains(done, cleaned) &&
6797 !set_contains(todo, cleaned)) {
6798 /* The prefix directory itself is not yet a
6799 * mount, make it one. */
6800 if (mount(cleaned, cleaned, NULL, MS_BIND|MS_REC, NULL) < 0)
6801 return -errno;
6802
6803 if (mount(NULL, prefix, NULL, MS_BIND|MS_REMOUNT|(ro ? MS_RDONLY : 0), NULL) < 0)
6804 return -errno;
6805
6806 x = strdup(cleaned);
6807 if (!x)
6808 return -ENOMEM;
6809
6810 r = set_consume(done, x);
6811 if (r < 0)
6812 return r;
6813 }
6814
6815 while ((x = set_steal_first(todo))) {
6816
6817 r = set_consume(done, x);
6818 if (r == -EEXIST)
6819 continue;
6820 if (r < 0)
6821 return r;
6822
6823 if (mount(NULL, x, NULL, MS_BIND|MS_REMOUNT|(ro ? MS_RDONLY : 0), NULL) < 0) {
6824
6825 /* Deal with mount points that are
6826 * obstructed by a later mount */
6827
6828 if (errno != ENOENT)
6829 return -errno;
6830 }
6831
6832 }
6833 }
6834}
1b992147
LP
6835
6836int fflush_and_check(FILE *f) {
45c196a7 6837 assert(f);
1b992147
LP
6838
6839 errno = 0;
6840 fflush(f);
6841
6842 if (ferror(f))
6843 return errno ? -errno : -EIO;
6844
6845 return 0;
6846}
2e78fa79
LP
6847
6848char *tempfn_xxxxxx(const char *p) {
6849 const char *fn;
6850 char *t;
6851 size_t k;
6852
6853 assert(p);
6854
6855 t = new(char, strlen(p) + 1 + 6 + 1);
6856 if (!t)
6857 return NULL;
6858
6859 fn = basename(p);
6860 k = fn - p;
6861
6862 strcpy(stpcpy(stpcpy(mempcpy(t, p, k), "."), fn), "XXXXXX");
6863
6864 return t;
6865}
6866
6867char *tempfn_random(const char *p) {
6868 const char *fn;
6869 char *t, *x;
6870 uint64_t u;
6871 size_t k;
6872 unsigned i;
6873
6874 assert(p);
6875
6876 t = new(char, strlen(p) + 1 + 16 + 1);
6877 if (!t)
6878 return NULL;
6879
6880 fn = basename(p);
6881 k = fn - p;
6882
6883 x = stpcpy(stpcpy(mempcpy(t, p, k), "."), fn);
6884
6885 u = random_u64();
6886 for (i = 0; i < 16; i++) {
6887 *(x++) = hexchar(u & 0xF);
6888 u >>= 4;
6889 }
6890
6891 *x = 0;
6892
6893 return t;
6894}
fecc80c1
LP
6895
6896/* make sure the hostname is not "localhost" */
6897bool is_localhost(const char *hostname) {
6898 assert(hostname);
6899
a0627f82
LP
6900 /* This tries to identify local host and domain names
6901 * described in RFC6761 plus the redhatism of .localdomain */
fecc80c1
LP
6902
6903 return streq(hostname, "localhost") ||
6904 streq(hostname, "localhost.") ||
a0627f82
LP
6905 streq(hostname, "localdomain.") ||
6906 streq(hostname, "localdomain") ||
fecc80c1
LP
6907 endswith(hostname, ".localhost") ||
6908 endswith(hostname, ".localhost.") ||
6909 endswith(hostname, ".localdomain") ||
6910 endswith(hostname, ".localdomain.");
6911}
45035609
LP
6912
6913int take_password_lock(const char *root) {
6914
6915 struct flock flock = {
6916 .l_type = F_WRLCK,
6917 .l_whence = SEEK_SET,
6918 .l_start = 0,
6919 .l_len = 0,
6920 };
6921
6922 const char *path;
6923 int fd, r;
6924
6925 /* This is roughly the same as lckpwdf(), but not as awful. We
6926 * don't want to use alarm() and signals, hence we implement
6927 * our own trivial version of this.
6928 *
6929 * Note that shadow-utils also takes per-database locks in
6930 * addition to lckpwdf(). However, we don't given that they
6931 * are redundant as they they invoke lckpwdf() first and keep
6932 * it during everything they do. The per-database locks are
6933 * awfully racy, and thus we just won't do them. */
6934
6935 if (root)
6936 path = strappenda(root, "/etc/.pwd.lock");
6937 else
6938 path = "/etc/.pwd.lock";
6939
6940 fd = open(path, O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW, 0600);
6941 if (fd < 0)
6942 return -errno;
6943
6944 r = fcntl(fd, F_SETLKW, &flock);
6945 if (r < 0) {
6946 safe_close(fd);
6947 return -errno;
6948 }
6949
6950 return fd;
6951}
5261ba90
TT
6952
6953int is_symlink(const char *path) {
6954 struct stat info;
6955
6956 if (lstat(path, &info) < 0)
6957 return -errno;
6958
be57e297
LP
6959 return !!S_ISLNK(info.st_mode);
6960}
5261ba90 6961
be57e297
LP
6962int is_dir(const char* path, bool follow) {
6963 struct stat st;
6964
6965 if (follow) {
6966 if (stat(path, &st) < 0)
6967 return -errno;
6968 } else {
6969 if (lstat(path, &st) < 0)
6970 return -errno;
6971 }
6972
6973 return !!S_ISDIR(st.st_mode);
a0627f82 6974}
7629889c
LP
6975
6976int unquote_first_word(const char **p, char **ret) {
6977 _cleanup_free_ char *s = NULL;
6978 size_t allocated = 0, sz = 0;
6979
6980 enum {
6981 START,
6982 VALUE,
6983 VALUE_ESCAPE,
6984 SINGLE_QUOTE,
6985 SINGLE_QUOTE_ESCAPE,
6986 DOUBLE_QUOTE,
6987 DOUBLE_QUOTE_ESCAPE,
6988 SPACE,
6989 } state = START;
6990
6991 assert(p);
6992 assert(*p);
6993 assert(ret);
6994
6995 /* Parses the first word of a string, and returns it in
6996 * *ret. Removes all quotes in the process. When parsing fails
6997 * (because of an uneven number of quotes or similar), leaves
6998 * the pointer *p at the first invalid character. */
6999
7000 for (;;) {
7001 char c = **p;
7002
7003 switch (state) {
7004
7005 case START:
7006 if (c == 0)
7007 goto finish;
7008 else if (strchr(WHITESPACE, c))
7009 break;
7010
7011 state = VALUE;
7012 /* fallthrough */
7013
7014 case VALUE:
7015 if (c == 0)
7016 goto finish;
7017 else if (c == '\'')
7018 state = SINGLE_QUOTE;
7019 else if (c == '\\')
7020 state = VALUE_ESCAPE;
7021 else if (c == '\"')
7022 state = DOUBLE_QUOTE;
7023 else if (strchr(WHITESPACE, c))
7024 state = SPACE;
7025 else {
7026 if (!GREEDY_REALLOC(s, allocated, sz+2))
7027 return -ENOMEM;
7028
7029 s[sz++] = c;
7030 }
7031
7032 break;
7033
7034 case VALUE_ESCAPE:
7035 if (c == 0)
7036 return -EINVAL;
7037
7038 if (!GREEDY_REALLOC(s, allocated, sz+2))
7039 return -ENOMEM;
7040
7041 s[sz++] = c;
7042 state = VALUE;
7043
7044 break;
7045
7046 case SINGLE_QUOTE:
7047 if (c == 0)
7048 return -EINVAL;
7049 else if (c == '\'')
7050 state = VALUE;
7051 else if (c == '\\')
7052 state = SINGLE_QUOTE_ESCAPE;
7053 else {
7054 if (!GREEDY_REALLOC(s, allocated, sz+2))
7055 return -ENOMEM;
7056
7057 s[sz++] = c;
7058 }
7059
7060 break;
7061
7062 case SINGLE_QUOTE_ESCAPE:
7063 if (c == 0)
7064 return -EINVAL;
7065
7066 if (!GREEDY_REALLOC(s, allocated, sz+2))
7067 return -ENOMEM;
7068
7069 s[sz++] = c;
7070 state = SINGLE_QUOTE;
7071 break;
7072
7073 case DOUBLE_QUOTE:
7074 if (c == 0)
7075 return -EINVAL;
7076 else if (c == '\"')
7077 state = VALUE;
7078 else if (c == '\\')
7079 state = DOUBLE_QUOTE_ESCAPE;
7080 else {
7081 if (!GREEDY_REALLOC(s, allocated, sz+2))
7082 return -ENOMEM;
7083
7084 s[sz++] = c;
7085 }
7086
7087 break;
7088
7089 case DOUBLE_QUOTE_ESCAPE:
7090 if (c == 0)
7091 return -EINVAL;
7092
7093 if (!GREEDY_REALLOC(s, allocated, sz+2))
7094 return -ENOMEM;
7095
7096 s[sz++] = c;
7097 state = DOUBLE_QUOTE;
7098 break;
7099
7100 case SPACE:
7101 if (c == 0)
7102 goto finish;
7103 if (!strchr(WHITESPACE, c))
7104 goto finish;
7105
7106 break;
7107 }
7108
7109 (*p) ++;
7110 }
7111
7112finish:
7113 if (!s) {
7114 *ret = NULL;
7115 return 0;
7116 }
7117
7118 s[sz] = 0;
7119 *ret = s;
7120 s = NULL;
7121
7122 return 1;
7123}
7124
7125int unquote_many_words(const char **p, ...) {
7126 va_list ap;
7127 char **l;
7128 int n = 0, i, c, r;
7129
7130 /* Parses a number of words from a string, stripping any
7131 * quotes if necessary. */
7132
7133 assert(p);
7134
7135 /* Count how many words are expected */
7136 va_start(ap, p);
7137 for (;;) {
7138 if (!va_arg(ap, char **))
7139 break;
7140 n++;
7141 }
7142 va_end(ap);
7143
7144 if (n <= 0)
7145 return 0;
7146
7147 /* Read all words into a temporary array */
7148 l = newa0(char*, n);
7149 for (c = 0; c < n; c++) {
7150
7151 r = unquote_first_word(p, &l[c]);
7152 if (r < 0) {
7153 int j;
7154
081e009b 7155 for (j = 0; j < c; j++)
7629889c 7156 free(l[j]);
081e009b
LN
7157
7158 return r;
7629889c
LP
7159 }
7160
7161 if (r == 0)
7162 break;
7163 }
7164
7165 /* If we managed to parse all words, return them in the passed
7166 * in parameters */
7167 va_start(ap, p);
7168 for (i = 0; i < n; i++) {
7169 char **v;
7170
7171 v = va_arg(ap, char **);
7172 assert(v);
7173
7174 *v = l[i];
7175 }
7176 va_end(ap);
7177
7178 return c;
7179}
2928b0a8
LP
7180
7181int free_and_strdup(char **p, const char *s) {
7182 char *t;
7183
7184 assert(p);
7185
7186 /* Replaces a string pointer with an strdup()ed new string,
7187 * possibly freeing the old one. */
7188
7189 if (s) {
7190 t = strdup(s);
7191 if (!t)
7192 return -ENOMEM;
7193 } else
7194 t = NULL;
7195
7196 free(*p);
7197 *p = t;
7198
7199 return 0;
7200}
605f81a8
MS
7201
7202int sethostname_idempotent(const char *s) {
7203 int r;
7204 char buf[HOST_NAME_MAX + 1] = {};
7205
7206 assert(s);
7207
7208 r = gethostname(buf, sizeof(buf));
7209 if (r < 0)
7210 return -errno;
7211
7212 if (streq(buf, s))
7213 return 0;
7214
a9169c1c 7215 r = sethostname(s, strlen(s));
605f81a8
MS
7216 if (r < 0)
7217 return -errno;
7218
7219 return 1;
7220}