1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
31 #include <sys/resource.h>
32 #include <linux/sched.h>
33 #include <sys/types.h>
37 #include <sys/ioctl.h>
39 #include <linux/tiocl.h>
42 #include <sys/inotify.h>
45 #include <sys/prctl.h>
46 #include <sys/utsname.h>
48 #include <netinet/ip.h>
57 #include <sys/mount.h>
58 #include <linux/magic.h>
62 #include <sys/personality.h>
66 #ifdef HAVE_SYS_AUXV_H
78 #include "path-util.h"
79 #include "exit-status.h"
83 #include "device-nodes.h"
90 char **saved_argv = NULL;
92 static volatile unsigned cached_columns = 0;
93 static volatile unsigned cached_lines = 0;
95 size_t page_size(void) {
96 static thread_local size_t pgsz = 0;
99 if (_likely_(pgsz > 0))
102 r = sysconf(_SC_PAGESIZE);
109 bool streq_ptr(const char *a, const char *b) {
111 /* Like streq(), but tries to make sense of NULL pointers */
122 char* endswith(const char *s, const char *postfix) {
129 pl = strlen(postfix);
132 return (char*) s + sl;
137 if (memcmp(s + sl - pl, postfix, pl) != 0)
140 return (char*) s + sl - pl;
143 char* first_word(const char *s, const char *word) {
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. */
163 if (memcmp(s, word, wl) != 0)
170 if (!strchr(WHITESPACE, *p))
173 p += strspn(p, WHITESPACE);
177 static size_t cescape_char(char c, char *buf) {
178 char * buf_old = buf;
224 /* For special chars we prefer octal over
225 * hexadecimal encoding, simply because glib's
226 * g_strescape() does the same */
227 if ((c < ' ') || (c >= 127)) {
229 *(buf++) = octchar((unsigned char) c >> 6);
230 *(buf++) = octchar((unsigned char) c >> 3);
231 *(buf++) = octchar((unsigned char) c);
237 return buf - buf_old;
240 int close_nointr(int fd) {
247 * Just ignore EINTR; a retry loop is the wrong thing to do on
250 * http://lkml.indiana.edu/hypermail/linux/kernel/0509.1/0877.html
251 * https://bugzilla.gnome.org/show_bug.cgi?id=682819
252 * http://utcc.utoronto.ca/~cks/space/blog/unix/CloseEINTR
253 * https://sites.google.com/site/michaelsafyan/software-engineering/checkforeintrwheninvokingclosethinkagain
261 int safe_close(int fd) {
264 * Like close_nointr() but cannot fail. Guarantees errno is
265 * unchanged. Is a NOP with negative fds passed, and returns
266 * -1, so that it can be used in this syntax:
268 * fd = safe_close(fd);
274 /* The kernel might return pretty much any error code
275 * via close(), but the fd will be closed anyway. The
276 * only condition we want to check for here is whether
277 * the fd was invalid at all... */
279 assert_se(close_nointr(fd) != -EBADF);
285 void close_many(const int fds[], unsigned n_fd) {
288 assert(fds || n_fd <= 0);
290 for (i = 0; i < n_fd; i++)
294 int unlink_noerrno(const char *path) {
305 int parse_boolean(const char *v) {
308 if (streq(v, "1") || strcaseeq(v, "yes") || strcaseeq(v, "y") || strcaseeq(v, "true") || strcaseeq(v, "t") || strcaseeq(v, "on"))
310 else if (streq(v, "0") || strcaseeq(v, "no") || strcaseeq(v, "n") || strcaseeq(v, "false") || strcaseeq(v, "f") || strcaseeq(v, "off"))
316 int parse_pid(const char *s, pid_t* ret_pid) {
317 unsigned long ul = 0;
324 r = safe_atolu(s, &ul);
330 if ((unsigned long) pid != ul)
340 int parse_uid(const char *s, uid_t* ret_uid) {
341 unsigned long ul = 0;
348 r = safe_atolu(s, &ul);
354 if ((unsigned long) uid != ul)
357 /* Some libc APIs use UID_INVALID as special placeholder */
358 if (uid == (uid_t) 0xFFFFFFFF)
361 /* A long time ago UIDs where 16bit, hence explicitly avoid the 16bit -1 too */
362 if (uid == (uid_t) 0xFFFF)
369 int safe_atou(const char *s, unsigned *ret_u) {
377 l = strtoul(s, &x, 0);
379 if (!x || x == s || *x || errno)
380 return errno > 0 ? -errno : -EINVAL;
382 if ((unsigned long) (unsigned) l != l)
385 *ret_u = (unsigned) l;
389 int safe_atoi(const char *s, int *ret_i) {
397 l = strtol(s, &x, 0);
399 if (!x || x == s || *x || errno)
400 return errno > 0 ? -errno : -EINVAL;
402 if ((long) (int) l != l)
409 int safe_atou8(const char *s, uint8_t *ret) {
417 l = strtoul(s, &x, 0);
419 if (!x || x == s || *x || errno)
420 return errno > 0 ? -errno : -EINVAL;
422 if ((unsigned long) (uint8_t) l != l)
429 int safe_atou16(const char *s, uint16_t *ret) {
437 l = strtoul(s, &x, 0);
439 if (!x || x == s || *x || errno)
440 return errno > 0 ? -errno : -EINVAL;
442 if ((unsigned long) (uint16_t) l != l)
449 int safe_atoi16(const char *s, int16_t *ret) {
457 l = strtol(s, &x, 0);
459 if (!x || x == s || *x || errno)
460 return errno > 0 ? -errno : -EINVAL;
462 if ((long) (int16_t) l != l)
469 int safe_atollu(const char *s, long long unsigned *ret_llu) {
471 unsigned long long l;
477 l = strtoull(s, &x, 0);
479 if (!x || x == s || *x || errno)
480 return errno ? -errno : -EINVAL;
486 int safe_atolli(const char *s, long long int *ret_lli) {
494 l = strtoll(s, &x, 0);
496 if (!x || x == s || *x || errno)
497 return errno ? -errno : -EINVAL;
503 int safe_atod(const char *s, double *ret_d) {
510 RUN_WITH_LOCALE(LC_NUMERIC_MASK, "C") {
515 if (!x || x == s || *x || errno)
516 return errno ? -errno : -EINVAL;
522 static size_t strcspn_escaped(const char *s, const char *reject) {
523 bool escaped = false;
526 for (n=0; s[n]; n++) {
529 else if (s[n] == '\\')
531 else if (strchr(reject, s[n]))
535 /* if s ends in \, return index of previous char */
539 /* Split a string into words. */
540 const char* split(const char **state, size_t *l, const char *separator, bool quoted) {
546 assert(**state == '\0');
550 current += strspn(current, separator);
556 if (quoted && strchr("\'\"", *current)) {
557 char quotechars[2] = {*current, '\0'};
559 *l = strcspn_escaped(current + 1, quotechars);
560 if (current[*l + 1] == '\0' ||
561 (current[*l + 2] && !strchr(separator, current[*l + 2]))) {
562 /* right quote missing or garbage at the end */
566 assert(current[*l + 1] == quotechars[0]);
567 *state = current++ + *l + 2;
569 *l = strcspn_escaped(current, separator);
570 if (current[*l] && !strchr(separator, current[*l])) {
571 /* unfinished escape */
575 *state = current + *l;
577 *l = strcspn(current, separator);
578 *state = current + *l;
584 int get_parent_of_pid(pid_t pid, pid_t *_ppid) {
586 _cleanup_free_ char *line = NULL;
598 p = procfs_file_alloca(pid, "stat");
599 r = read_one_line_file(p, &line);
603 /* Let's skip the pid and comm fields. The latter is enclosed
604 * in () but does not escape any () in its value, so let's
605 * skip over it manually */
607 p = strrchr(line, ')');
619 if ((long unsigned) (pid_t) ppid != ppid)
622 *_ppid = (pid_t) ppid;
627 int fchmod_umask(int fd, mode_t m) {
632 r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
638 char *truncate_nl(char *s) {
641 s[strcspn(s, NEWLINE)] = 0;
645 int get_process_state(pid_t pid) {
649 _cleanup_free_ char *line = NULL;
653 p = procfs_file_alloca(pid, "stat");
654 r = read_one_line_file(p, &line);
658 p = strrchr(line, ')');
664 if (sscanf(p, " %c", &state) != 1)
667 return (unsigned char) state;
670 int get_process_comm(pid_t pid, char **name) {
677 p = procfs_file_alloca(pid, "comm");
679 r = read_one_line_file(p, name);
686 int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line) {
687 _cleanup_fclose_ FILE *f = NULL;
695 p = procfs_file_alloca(pid, "cmdline");
701 if (max_length == 0) {
702 size_t len = 0, allocated = 0;
704 while ((c = getc(f)) != EOF) {
706 if (!GREEDY_REALLOC(r, allocated, len+2)) {
711 r[len++] = isprint(c) ? c : ' ';
721 r = new(char, max_length);
727 while ((c = getc(f)) != EOF) {
749 size_t n = MIN(left-1, 3U);
756 /* Kernel threads have no argv[] */
758 _cleanup_free_ char *t = NULL;
766 h = get_process_comm(pid, &t);
770 r = strjoin("[", t, "]", NULL);
779 int is_kernel_thread(pid_t pid) {
791 p = procfs_file_alloca(pid, "cmdline");
796 count = fread(&c, 1, 1, f);
800 /* Kernel threads have an empty cmdline */
803 return eof ? 1 : -errno;
808 int get_process_capeff(pid_t pid, char **capeff) {
814 p = procfs_file_alloca(pid, "status");
816 return get_status_field(p, "\nCapEff:", capeff);
819 static int get_process_link_contents(const char *proc_file, char **name) {
825 r = readlink_malloc(proc_file, name);
827 return r == -ENOENT ? -ESRCH : r;
832 int get_process_exe(pid_t pid, char **name) {
839 p = procfs_file_alloca(pid, "exe");
840 r = get_process_link_contents(p, name);
844 d = endswith(*name, " (deleted)");
851 static int get_process_id(pid_t pid, const char *field, uid_t *uid) {
852 _cleanup_fclose_ FILE *f = NULL;
862 p = procfs_file_alloca(pid, "status");
867 FOREACH_LINE(line, f, return -errno) {
872 if (startswith(l, field)) {
874 l += strspn(l, WHITESPACE);
876 l[strcspn(l, WHITESPACE)] = 0;
878 return parse_uid(l, uid);
885 int get_process_uid(pid_t pid, uid_t *uid) {
886 return get_process_id(pid, "Uid:", uid);
889 int get_process_gid(pid_t pid, gid_t *gid) {
890 assert_cc(sizeof(uid_t) == sizeof(gid_t));
891 return get_process_id(pid, "Gid:", gid);
894 int get_process_cwd(pid_t pid, char **cwd) {
899 p = procfs_file_alloca(pid, "cwd");
901 return get_process_link_contents(p, cwd);
904 int get_process_root(pid_t pid, char **root) {
909 p = procfs_file_alloca(pid, "root");
911 return get_process_link_contents(p, root);
914 int get_process_environ(pid_t pid, char **env) {
915 _cleanup_fclose_ FILE *f = NULL;
916 _cleanup_free_ char *outcome = NULL;
919 size_t allocated = 0, sz = 0;
924 p = procfs_file_alloca(pid, "environ");
930 while ((c = fgetc(f)) != EOF) {
931 if (!GREEDY_REALLOC(outcome, allocated, sz + 5))
935 outcome[sz++] = '\n';
937 sz += cescape_char(c, outcome + sz);
947 char *strnappend(const char *s, const char *suffix, size_t b) {
955 return strndup(suffix, b);
964 if (b > ((size_t) -1) - a)
967 r = new(char, a+b+1);
972 memcpy(r+a, suffix, b);
978 char *strappend(const char *s, const char *suffix) {
979 return strnappend(s, suffix, suffix ? strlen(suffix) : 0);
982 int readlinkat_malloc(int fd, const char *p, char **ret) {
997 n = readlinkat(fd, p, c, l-1);
1004 if ((size_t) n < l-1) {
1015 int readlink_malloc(const char *p, char **ret) {
1016 return readlinkat_malloc(AT_FDCWD, p, ret);
1019 int readlink_value(const char *p, char **ret) {
1020 _cleanup_free_ char *link = NULL;
1024 r = readlink_malloc(p, &link);
1028 value = basename(link);
1032 value = strdup(value);
1041 int readlink_and_make_absolute(const char *p, char **r) {
1042 _cleanup_free_ char *target = NULL;
1049 j = readlink_malloc(p, &target);
1053 k = file_in_same_dir(p, target);
1061 int readlink_and_canonicalize(const char *p, char **r) {
1068 j = readlink_and_make_absolute(p, &t);
1072 s = canonicalize_file_name(t);
1079 path_kill_slashes(*r);
1084 int reset_all_signal_handlers(void) {
1087 for (sig = 1; sig < _NSIG; sig++) {
1088 struct sigaction sa = {
1089 .sa_handler = SIG_DFL,
1090 .sa_flags = SA_RESTART,
1093 /* These two cannot be caught... */
1094 if (sig == SIGKILL || sig == SIGSTOP)
1097 /* On Linux the first two RT signals are reserved by
1098 * glibc, and sigaction() will return EINVAL for them. */
1099 if ((sigaction(sig, &sa, NULL) < 0))
1100 if (errno != EINVAL && r == 0)
1107 int reset_signal_mask(void) {
1110 if (sigemptyset(&ss) < 0)
1113 if (sigprocmask(SIG_SETMASK, &ss, NULL) < 0)
1119 char *strstrip(char *s) {
1122 /* Drops trailing whitespace. Modifies the string in
1123 * place. Returns pointer to first non-space character */
1125 s += strspn(s, WHITESPACE);
1127 for (e = strchr(s, 0); e > s; e --)
1128 if (!strchr(WHITESPACE, e[-1]))
1136 char *delete_chars(char *s, const char *bad) {
1139 /* Drops all whitespace, regardless where in the string */
1141 for (f = s, t = s; *f; f++) {
1142 if (strchr(bad, *f))
1153 char *file_in_same_dir(const char *path, const char *filename) {
1160 /* This removes the last component of path and appends
1161 * filename, unless the latter is absolute anyway or the
1164 if (path_is_absolute(filename))
1165 return strdup(filename);
1167 if (!(e = strrchr(path, '/')))
1168 return strdup(filename);
1170 k = strlen(filename);
1171 if (!(r = new(char, e-path+1+k+1)))
1174 memcpy(r, path, e-path+1);
1175 memcpy(r+(e-path)+1, filename, k+1);
1180 int rmdir_parents(const char *path, const char *stop) {
1189 /* Skip trailing slashes */
1190 while (l > 0 && path[l-1] == '/')
1196 /* Skip last component */
1197 while (l > 0 && path[l-1] != '/')
1200 /* Skip trailing slashes */
1201 while (l > 0 && path[l-1] == '/')
1207 if (!(t = strndup(path, l)))
1210 if (path_startswith(stop, t)) {
1219 if (errno != ENOENT)
1226 char hexchar(int x) {
1227 static const char table[16] = "0123456789abcdef";
1229 return table[x & 15];
1232 int unhexchar(char c) {
1234 if (c >= '0' && c <= '9')
1237 if (c >= 'a' && c <= 'f')
1238 return c - 'a' + 10;
1240 if (c >= 'A' && c <= 'F')
1241 return c - 'A' + 10;
1246 char *hexmem(const void *p, size_t l) {
1250 z = r = malloc(l * 2 + 1);
1254 for (x = p; x < (const uint8_t*) p + l; x++) {
1255 *(z++) = hexchar(*x >> 4);
1256 *(z++) = hexchar(*x & 15);
1263 void *unhexmem(const char *p, size_t l) {
1269 z = r = malloc((l + 1) / 2 + 1);
1273 for (x = p; x < p + l; x += 2) {
1276 a = unhexchar(x[0]);
1278 b = unhexchar(x[1]);
1282 *(z++) = (uint8_t) a << 4 | (uint8_t) b;
1289 char octchar(int x) {
1290 return '0' + (x & 7);
1293 int unoctchar(char c) {
1295 if (c >= '0' && c <= '7')
1301 char decchar(int x) {
1302 return '0' + (x % 10);
1305 int undecchar(char c) {
1307 if (c >= '0' && c <= '9')
1313 char *cescape(const char *s) {
1319 /* Does C style string escaping. */
1321 r = new(char, strlen(s)*4 + 1);
1325 for (f = s, t = r; *f; f++)
1326 t += cescape_char(*f, t);
1333 char *cunescape_length_with_prefix(const char *s, size_t length, const char *prefix) {
1340 /* Undoes C style string escaping, and optionally prefixes it. */
1342 pl = prefix ? strlen(prefix) : 0;
1344 r = new(char, pl+length+1);
1349 memcpy(r, prefix, pl);
1351 for (f = s, t = r + pl; f < s + length; f++) {
1394 /* This is an extension of the XDG syntax files */
1399 /* hexadecimal encoding */
1402 a = unhexchar(f[1]);
1403 b = unhexchar(f[2]);
1405 if (a < 0 || b < 0 || (a == 0 && b == 0)) {
1406 /* Invalid escape code, let's take it literal then */
1410 *(t++) = (char) ((a << 4) | b);
1425 /* octal encoding */
1428 a = unoctchar(f[0]);
1429 b = unoctchar(f[1]);
1430 c = unoctchar(f[2]);
1432 if (a < 0 || b < 0 || c < 0 || (a == 0 && b == 0 && c == 0)) {
1433 /* Invalid escape code, let's take it literal then */
1437 *(t++) = (char) ((a << 6) | (b << 3) | c);
1445 /* premature end of string. */
1450 /* Invalid escape code, let's take it literal then */
1462 char *cunescape_length(const char *s, size_t length) {
1463 return cunescape_length_with_prefix(s, length, NULL);
1466 char *cunescape(const char *s) {
1469 return cunescape_length(s, strlen(s));
1472 char *xescape(const char *s, const char *bad) {
1476 /* Escapes all chars in bad, in addition to \ and all special
1477 * chars, in \xFF style escaping. May be reversed with
1480 r = new(char, strlen(s) * 4 + 1);
1484 for (f = s, t = r; *f; f++) {
1486 if ((*f < ' ') || (*f >= 127) ||
1487 (*f == '\\') || strchr(bad, *f)) {
1490 *(t++) = hexchar(*f >> 4);
1491 *(t++) = hexchar(*f);
1501 char *ascii_strlower(char *t) {
1506 for (p = t; *p; p++)
1507 if (*p >= 'A' && *p <= 'Z')
1508 *p = *p - 'A' + 'a';
1513 _pure_ static bool ignore_file_allow_backup(const char *filename) {
1517 filename[0] == '.' ||
1518 streq(filename, "lost+found") ||
1519 streq(filename, "aquota.user") ||
1520 streq(filename, "aquota.group") ||
1521 endswith(filename, ".rpmnew") ||
1522 endswith(filename, ".rpmsave") ||
1523 endswith(filename, ".rpmorig") ||
1524 endswith(filename, ".dpkg-old") ||
1525 endswith(filename, ".dpkg-new") ||
1526 endswith(filename, ".dpkg-tmp") ||
1527 endswith(filename, ".swp");
1530 bool ignore_file(const char *filename) {
1533 if (endswith(filename, "~"))
1536 return ignore_file_allow_backup(filename);
1539 int fd_nonblock(int fd, bool nonblock) {
1544 flags = fcntl(fd, F_GETFL, 0);
1549 nflags = flags | O_NONBLOCK;
1551 nflags = flags & ~O_NONBLOCK;
1553 if (nflags == flags)
1556 if (fcntl(fd, F_SETFL, nflags) < 0)
1562 int fd_cloexec(int fd, bool cloexec) {
1567 flags = fcntl(fd, F_GETFD, 0);
1572 nflags = flags | FD_CLOEXEC;
1574 nflags = flags & ~FD_CLOEXEC;
1576 if (nflags == flags)
1579 if (fcntl(fd, F_SETFD, nflags) < 0)
1585 _pure_ static bool fd_in_set(int fd, const int fdset[], unsigned n_fdset) {
1588 assert(n_fdset == 0 || fdset);
1590 for (i = 0; i < n_fdset; i++)
1597 int close_all_fds(const int except[], unsigned n_except) {
1598 _cleanup_closedir_ DIR *d = NULL;
1602 assert(n_except == 0 || except);
1604 d = opendir("/proc/self/fd");
1609 /* When /proc isn't available (for example in chroots)
1610 * the fallback is brute forcing through the fd
1613 assert_se(getrlimit(RLIMIT_NOFILE, &rl) >= 0);
1614 for (fd = 3; fd < (int) rl.rlim_max; fd ++) {
1616 if (fd_in_set(fd, except, n_except))
1619 if (close_nointr(fd) < 0)
1620 if (errno != EBADF && r == 0)
1627 while ((de = readdir(d))) {
1630 if (ignore_file(de->d_name))
1633 if (safe_atoi(de->d_name, &fd) < 0)
1634 /* Let's better ignore this, just in case */
1643 if (fd_in_set(fd, except, n_except))
1646 if (close_nointr(fd) < 0) {
1647 /* Valgrind has its own FD and doesn't want to have it closed */
1648 if (errno != EBADF && r == 0)
1656 bool chars_intersect(const char *a, const char *b) {
1659 /* Returns true if any of the chars in a are in b. */
1660 for (p = a; *p; p++)
1667 bool fstype_is_network(const char *fstype) {
1668 static const char table[] =
1682 x = startswith(fstype, "fuse.");
1686 return nulstr_contains(table, fstype);
1690 _cleanup_close_ int fd;
1692 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
1698 TIOCL_GETKMSGREDIRECT,
1702 if (ioctl(fd, TIOCLINUX, tiocl) < 0)
1705 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
1708 if (ioctl(fd, VT_ACTIVATE, vt) < 0)
1714 int read_one_char(FILE *f, char *ret, usec_t t, bool *need_nl) {
1715 struct termios old_termios, new_termios;
1716 char c, line[LINE_MAX];
1721 if (tcgetattr(fileno(f), &old_termios) >= 0) {
1722 new_termios = old_termios;
1724 new_termios.c_lflag &= ~ICANON;
1725 new_termios.c_cc[VMIN] = 1;
1726 new_termios.c_cc[VTIME] = 0;
1728 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
1731 if (t != USEC_INFINITY) {
1732 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0) {
1733 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
1738 k = fread(&c, 1, 1, f);
1740 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
1746 *need_nl = c != '\n';
1753 if (t != USEC_INFINITY) {
1754 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0)
1759 if (!fgets(line, sizeof(line), f))
1760 return errno ? -errno : -EIO;
1764 if (strlen(line) != 1)
1774 int ask_char(char *ret, const char *replies, const char *text, ...) {
1784 bool need_nl = true;
1787 fputs(ANSI_HIGHLIGHT_ON, stdout);
1794 fputs(ANSI_HIGHLIGHT_OFF, stdout);
1798 r = read_one_char(stdin, &c, USEC_INFINITY, &need_nl);
1801 if (r == -EBADMSG) {
1802 puts("Bad input, please try again.");
1813 if (strchr(replies, c)) {
1818 puts("Read unexpected character, please try again.");
1822 int ask_string(char **ret, const char *text, ...) {
1827 char line[LINE_MAX];
1831 fputs(ANSI_HIGHLIGHT_ON, stdout);
1838 fputs(ANSI_HIGHLIGHT_OFF, stdout);
1843 if (!fgets(line, sizeof(line), stdin))
1844 return errno ? -errno : -EIO;
1846 if (!endswith(line, "\n"))
1865 int reset_terminal_fd(int fd, bool switch_to_text) {
1866 struct termios termios;
1869 /* Set terminal to some sane defaults */
1873 /* We leave locked terminal attributes untouched, so that
1874 * Plymouth may set whatever it wants to set, and we don't
1875 * interfere with that. */
1877 /* Disable exclusive mode, just in case */
1878 ioctl(fd, TIOCNXCL);
1880 /* Switch to text mode */
1882 ioctl(fd, KDSETMODE, KD_TEXT);
1884 /* Enable console unicode mode */
1885 ioctl(fd, KDSKBMODE, K_UNICODE);
1887 if (tcgetattr(fd, &termios) < 0) {
1892 /* We only reset the stuff that matters to the software. How
1893 * hardware is set up we don't touch assuming that somebody
1894 * else will do that for us */
1896 termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
1897 termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
1898 termios.c_oflag |= ONLCR;
1899 termios.c_cflag |= CREAD;
1900 termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
1902 termios.c_cc[VINTR] = 03; /* ^C */
1903 termios.c_cc[VQUIT] = 034; /* ^\ */
1904 termios.c_cc[VERASE] = 0177;
1905 termios.c_cc[VKILL] = 025; /* ^X */
1906 termios.c_cc[VEOF] = 04; /* ^D */
1907 termios.c_cc[VSTART] = 021; /* ^Q */
1908 termios.c_cc[VSTOP] = 023; /* ^S */
1909 termios.c_cc[VSUSP] = 032; /* ^Z */
1910 termios.c_cc[VLNEXT] = 026; /* ^V */
1911 termios.c_cc[VWERASE] = 027; /* ^W */
1912 termios.c_cc[VREPRINT] = 022; /* ^R */
1913 termios.c_cc[VEOL] = 0;
1914 termios.c_cc[VEOL2] = 0;
1916 termios.c_cc[VTIME] = 0;
1917 termios.c_cc[VMIN] = 1;
1919 if (tcsetattr(fd, TCSANOW, &termios) < 0)
1923 /* Just in case, flush all crap out */
1924 tcflush(fd, TCIOFLUSH);
1929 int reset_terminal(const char *name) {
1930 _cleanup_close_ int fd = -1;
1932 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
1936 return reset_terminal_fd(fd, true);
1939 int open_terminal(const char *name, int mode) {
1944 * If a TTY is in the process of being closed opening it might
1945 * cause EIO. This is horribly awful, but unlikely to be
1946 * changed in the kernel. Hence we work around this problem by
1947 * retrying a couple of times.
1949 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
1952 assert(!(mode & O_CREAT));
1955 fd = open(name, mode, 0);
1962 /* Max 1s in total */
1966 usleep(50 * USEC_PER_MSEC);
1984 int flush_fd(int fd) {
1985 struct pollfd pollfd = {
1995 r = poll(&pollfd, 1, 0);
2005 l = read(fd, buf, sizeof(buf));
2011 if (errno == EAGAIN)
2020 int acquire_terminal(
2024 bool ignore_tiocstty_eperm,
2027 int fd = -1, notify = -1, r = 0, wd = -1;
2032 /* We use inotify to be notified when the tty is closed. We
2033 * create the watch before checking if we can actually acquire
2034 * it, so that we don't lose any event.
2036 * Note: strictly speaking this actually watches for the
2037 * device being closed, it does *not* really watch whether a
2038 * tty loses its controlling process. However, unless some
2039 * rogue process uses TIOCNOTTY on /dev/tty *after* closing
2040 * its tty otherwise this will not become a problem. As long
2041 * as the administrator makes sure not configure any service
2042 * on the same tty as an untrusted user this should not be a
2043 * problem. (Which he probably should not do anyway.) */
2045 if (timeout != USEC_INFINITY)
2046 ts = now(CLOCK_MONOTONIC);
2048 if (!fail && !force) {
2049 notify = inotify_init1(IN_CLOEXEC | (timeout != USEC_INFINITY ? IN_NONBLOCK : 0));
2055 wd = inotify_add_watch(notify, name, IN_CLOSE);
2063 struct sigaction sa_old, sa_new = {
2064 .sa_handler = SIG_IGN,
2065 .sa_flags = SA_RESTART,
2069 r = flush_fd(notify);
2074 /* We pass here O_NOCTTY only so that we can check the return
2075 * value TIOCSCTTY and have a reliable way to figure out if we
2076 * successfully became the controlling process of the tty */
2077 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
2081 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
2082 * if we already own the tty. */
2083 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
2085 /* First, try to get the tty */
2086 if (ioctl(fd, TIOCSCTTY, force) < 0)
2089 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
2091 /* Sometimes it makes sense to ignore TIOCSCTTY
2092 * returning EPERM, i.e. when very likely we already
2093 * are have this controlling terminal. */
2094 if (r < 0 && r == -EPERM && ignore_tiocstty_eperm)
2097 if (r < 0 && (force || fail || r != -EPERM)) {
2106 assert(notify >= 0);
2109 uint8_t buffer[INOTIFY_EVENT_MAX] _alignas_(struct inotify_event);
2110 struct inotify_event *e;
2113 if (timeout != USEC_INFINITY) {
2116 n = now(CLOCK_MONOTONIC);
2117 if (ts + timeout < n) {
2122 r = fd_wait_for_event(fd, POLLIN, ts + timeout - n);
2132 l = read(notify, buffer, sizeof(buffer));
2134 if (errno == EINTR || errno == EAGAIN)
2141 FOREACH_INOTIFY_EVENT(e, buffer, l) {
2142 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
2151 /* We close the tty fd here since if the old session
2152 * ended our handle will be dead. It's important that
2153 * we do this after sleeping, so that we don't enter
2154 * an endless loop. */
2155 fd = safe_close(fd);
2160 r = reset_terminal_fd(fd, true);
2162 log_warning_errno(r, "Failed to reset terminal: %m");
2173 int release_terminal(void) {
2174 static const struct sigaction sa_new = {
2175 .sa_handler = SIG_IGN,
2176 .sa_flags = SA_RESTART,
2179 _cleanup_close_ int fd = -1;
2180 struct sigaction sa_old;
2183 fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_NDELAY|O_CLOEXEC);
2187 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
2188 * by our own TIOCNOTTY */
2189 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
2191 if (ioctl(fd, TIOCNOTTY) < 0)
2194 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
2199 int sigaction_many(const struct sigaction *sa, ...) {
2204 while ((sig = va_arg(ap, int)) > 0)
2205 if (sigaction(sig, sa, NULL) < 0)
2212 int ignore_signals(int sig, ...) {
2213 struct sigaction sa = {
2214 .sa_handler = SIG_IGN,
2215 .sa_flags = SA_RESTART,
2220 if (sigaction(sig, &sa, NULL) < 0)
2224 while ((sig = va_arg(ap, int)) > 0)
2225 if (sigaction(sig, &sa, NULL) < 0)
2232 int default_signals(int sig, ...) {
2233 struct sigaction sa = {
2234 .sa_handler = SIG_DFL,
2235 .sa_flags = SA_RESTART,
2240 if (sigaction(sig, &sa, NULL) < 0)
2244 while ((sig = va_arg(ap, int)) > 0)
2245 if (sigaction(sig, &sa, NULL) < 0)
2252 void safe_close_pair(int p[]) {
2256 /* Special case pairs which use the same fd in both
2258 p[0] = p[1] = safe_close(p[0]);
2262 p[0] = safe_close(p[0]);
2263 p[1] = safe_close(p[1]);
2266 ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll) {
2273 while (nbytes > 0) {
2276 k = read(fd, p, nbytes);
2281 if (errno == EAGAIN && do_poll) {
2283 /* We knowingly ignore any return value here,
2284 * and expect that any error/EOF is reported
2287 fd_wait_for_event(fd, POLLIN, USEC_INFINITY);
2291 return n > 0 ? n : -errno;
2305 int loop_write(int fd, const void *buf, size_t nbytes, bool do_poll) {
2306 const uint8_t *p = buf;
2313 while (nbytes > 0) {
2316 k = write(fd, p, nbytes);
2321 if (errno == EAGAIN && do_poll) {
2322 /* We knowingly ignore any return value here,
2323 * and expect that any error/EOF is reported
2326 fd_wait_for_event(fd, POLLOUT, USEC_INFINITY);
2333 if (k == 0) /* Can't really happen */
2343 int parse_size(const char *t, off_t base, off_t *size) {
2345 /* Soo, sometimes we want to parse IEC binary suffxies, and
2346 * sometimes SI decimal suffixes. This function can parse
2347 * both. Which one is the right way depends on the
2348 * context. Wikipedia suggests that SI is customary for
2349 * hardrware metrics and network speeds, while IEC is
2350 * customary for most data sizes used by software and volatile
2351 * (RAM) memory. Hence be careful which one you pick!
2353 * In either case we use just K, M, G as suffix, and not Ki,
2354 * Mi, Gi or so (as IEC would suggest). That's because that's
2355 * frickin' ugly. But this means you really need to make sure
2356 * to document which base you are parsing when you use this
2361 unsigned long long factor;
2364 static const struct table iec[] = {
2365 { "E", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
2366 { "P", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
2367 { "T", 1024ULL*1024ULL*1024ULL*1024ULL },
2368 { "G", 1024ULL*1024ULL*1024ULL },
2369 { "M", 1024ULL*1024ULL },
2375 static const struct table si[] = {
2376 { "E", 1000ULL*1000ULL*1000ULL*1000ULL*1000ULL*1000ULL },
2377 { "P", 1000ULL*1000ULL*1000ULL*1000ULL*1000ULL },
2378 { "T", 1000ULL*1000ULL*1000ULL*1000ULL },
2379 { "G", 1000ULL*1000ULL*1000ULL },
2380 { "M", 1000ULL*1000ULL },
2386 const struct table *table;
2388 unsigned long long r = 0;
2389 unsigned n_entries, start_pos = 0;
2392 assert(base == 1000 || base == 1024);
2397 n_entries = ELEMENTSOF(si);
2400 n_entries = ELEMENTSOF(iec);
2406 unsigned long long l2;
2412 l = strtoll(p, &e, 10);
2425 if (*e >= '0' && *e <= '9') {
2428 /* strotoull itself would accept space/+/- */
2429 l2 = strtoull(e, &e2, 10);
2431 if (errno == ERANGE)
2434 /* Ignore failure. E.g. 10.M is valid */
2441 e += strspn(e, WHITESPACE);
2443 for (i = start_pos; i < n_entries; i++)
2444 if (startswith(e, table[i].suffix)) {
2445 unsigned long long tmp;
2446 if ((unsigned long long) l + (frac > 0) > ULLONG_MAX / table[i].factor)
2448 tmp = l * table[i].factor + (unsigned long long) (frac * table[i].factor);
2449 if (tmp > ULLONG_MAX - r)
2453 if ((unsigned long long) (off_t) r != r)
2456 p = e + strlen(table[i].suffix);
2472 int make_stdio(int fd) {
2477 r = dup2(fd, STDIN_FILENO);
2478 s = dup2(fd, STDOUT_FILENO);
2479 t = dup2(fd, STDERR_FILENO);
2484 if (r < 0 || s < 0 || t < 0)
2487 /* Explicitly unset O_CLOEXEC, since if fd was < 3, then
2488 * dup2() was a NOP and the bit hence possibly set. */
2489 fd_cloexec(STDIN_FILENO, false);
2490 fd_cloexec(STDOUT_FILENO, false);
2491 fd_cloexec(STDERR_FILENO, false);
2496 int make_null_stdio(void) {
2499 null_fd = open("/dev/null", O_RDWR|O_NOCTTY);
2503 return make_stdio(null_fd);
2506 bool is_device_path(const char *path) {
2508 /* Returns true on paths that refer to a device, either in
2509 * sysfs or in /dev */
2512 path_startswith(path, "/dev/") ||
2513 path_startswith(path, "/sys/");
2516 int dir_is_empty(const char *path) {
2517 _cleanup_closedir_ DIR *d;
2528 if (!de && errno != 0)
2534 if (!ignore_file(de->d_name))
2539 char* dirname_malloc(const char *path) {
2540 char *d, *dir, *dir2;
2557 int dev_urandom(void *p, size_t n) {
2558 static int have_syscall = -1;
2562 /* Gathers some randomness from the kernel. This call will
2563 * never block, and will always return some data from the
2564 * kernel, regardless if the random pool is fully initialized
2565 * or not. It thus makes no guarantee for the quality of the
2566 * returned entropy, but is good enough for or usual usecases
2567 * of seeding the hash functions for hashtable */
2569 /* Use the getrandom() syscall unless we know we don't have
2570 * it, or when the requested size is too large for it. */
2571 if (have_syscall != 0 || (size_t) (int) n != n) {
2572 r = getrandom(p, n, GRND_NONBLOCK);
2574 have_syscall = true;
2579 if (errno == ENOSYS)
2580 /* we lack the syscall, continue with
2581 * reading from /dev/urandom */
2582 have_syscall = false;
2583 else if (errno == EAGAIN)
2584 /* not enough entropy for now. Let's
2585 * remember to use the syscall the
2586 * next time, again, but also read
2587 * from /dev/urandom for now, which
2588 * doesn't care about the current
2589 * amount of entropy. */
2590 have_syscall = true;
2594 /* too short read? */
2598 fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY);
2600 return errno == ENOENT ? -ENOSYS : -errno;
2602 k = loop_read(fd, p, n, true);
2607 if ((size_t) k != n)
2613 void initialize_srand(void) {
2614 static bool srand_called = false;
2616 #ifdef HAVE_SYS_AUXV_H
2625 #ifdef HAVE_SYS_AUXV_H
2626 /* The kernel provides us with a bit of entropy in auxv, so
2627 * let's try to make use of that to seed the pseudo-random
2628 * generator. It's better than nothing... */
2630 auxv = (void*) getauxval(AT_RANDOM);
2632 x ^= *(unsigned*) auxv;
2635 x ^= (unsigned) now(CLOCK_REALTIME);
2636 x ^= (unsigned) gettid();
2639 srand_called = true;
2642 void random_bytes(void *p, size_t n) {
2646 r = dev_urandom(p, n);
2650 /* If some idiot made /dev/urandom unavailable to us, he'll
2651 * get a PRNG instead. */
2655 for (q = p; q < (uint8_t*) p + n; q ++)
2659 void rename_process(const char name[8]) {
2662 /* This is a like a poor man's setproctitle(). It changes the
2663 * comm field, argv[0], and also the glibc's internally used
2664 * name of the process. For the first one a limit of 16 chars
2665 * applies, to the second one usually one of 10 (i.e. length
2666 * of "/sbin/init"), to the third one one of 7 (i.e. length of
2667 * "systemd"). If you pass a longer string it will be
2670 prctl(PR_SET_NAME, name);
2672 if (program_invocation_name)
2673 strncpy(program_invocation_name, name, strlen(program_invocation_name));
2675 if (saved_argc > 0) {
2679 strncpy(saved_argv[0], name, strlen(saved_argv[0]));
2681 for (i = 1; i < saved_argc; i++) {
2685 memzero(saved_argv[i], strlen(saved_argv[i]));
2690 void sigset_add_many(sigset_t *ss, ...) {
2697 while ((sig = va_arg(ap, int)) > 0)
2698 assert_se(sigaddset(ss, sig) == 0);
2702 int sigprocmask_many(int how, ...) {
2707 assert_se(sigemptyset(&ss) == 0);
2710 while ((sig = va_arg(ap, int)) > 0)
2711 assert_se(sigaddset(&ss, sig) == 0);
2714 if (sigprocmask(how, &ss, NULL) < 0)
2720 char* gethostname_malloc(void) {
2723 assert_se(uname(&u) >= 0);
2725 if (!isempty(u.nodename) && !streq(u.nodename, "(none)"))
2726 return strdup(u.nodename);
2728 return strdup(u.sysname);
2731 bool hostname_is_set(void) {
2734 assert_se(uname(&u) >= 0);
2736 return !isempty(u.nodename) && !streq(u.nodename, "(none)");
2739 char *lookup_uid(uid_t uid) {
2742 _cleanup_free_ char *buf = NULL;
2743 struct passwd pwbuf, *pw = NULL;
2745 /* Shortcut things to avoid NSS lookups */
2747 return strdup("root");
2749 bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
2753 buf = malloc(bufsize);
2757 if (getpwuid_r(uid, &pwbuf, buf, bufsize, &pw) == 0 && pw)
2758 return strdup(pw->pw_name);
2760 if (asprintf(&name, UID_FMT, uid) < 0)
2766 char* getlogname_malloc(void) {
2770 if (isatty(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0)
2775 return lookup_uid(uid);
2778 char *getusername_malloc(void) {
2785 return lookup_uid(getuid());
2788 int getttyname_malloc(int fd, char **r) {
2789 char path[PATH_MAX], *c;
2794 k = ttyname_r(fd, path, sizeof(path));
2800 c = strdup(startswith(path, "/dev/") ? path + 5 : path);
2808 int getttyname_harder(int fd, char **r) {
2812 k = getttyname_malloc(fd, &s);
2816 if (streq(s, "tty")) {
2818 return get_ctty(0, NULL, r);
2825 int get_ctty_devnr(pid_t pid, dev_t *d) {
2827 _cleanup_free_ char *line = NULL;
2829 unsigned long ttynr;
2833 p = procfs_file_alloca(pid, "stat");
2834 r = read_one_line_file(p, &line);
2838 p = strrchr(line, ')');
2848 "%*d " /* session */
2853 if (major(ttynr) == 0 && minor(ttynr) == 0)
2862 int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
2863 char fn[sizeof("/dev/char/")-1 + 2*DECIMAL_STR_MAX(unsigned) + 1 + 1], *b = NULL;
2864 _cleanup_free_ char *s = NULL;
2871 k = get_ctty_devnr(pid, &devnr);
2875 sprintf(fn, "/dev/char/%u:%u", major(devnr), minor(devnr));
2877 k = readlink_malloc(fn, &s);
2883 /* This is an ugly hack */
2884 if (major(devnr) == 136) {
2885 asprintf(&b, "pts/%u", minor(devnr));
2889 /* Probably something like the ptys which have no
2890 * symlink in /dev/char. Let's return something
2891 * vaguely useful. */
2897 if (startswith(s, "/dev/"))
2899 else if (startswith(s, "../"))
2917 int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {
2918 _cleanup_closedir_ DIR *d = NULL;
2923 /* This returns the first error we run into, but nevertheless
2924 * tries to go on. This closes the passed fd. */
2930 return errno == ENOENT ? 0 : -errno;
2935 bool is_dir, keep_around;
2942 if (errno != 0 && ret == 0)
2947 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
2950 if (de->d_type == DT_UNKNOWN ||
2952 (de->d_type == DT_DIR && root_dev)) {
2953 if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
2954 if (ret == 0 && errno != ENOENT)
2959 is_dir = S_ISDIR(st.st_mode);
2962 (st.st_uid == 0 || st.st_uid == getuid()) &&
2963 (st.st_mode & S_ISVTX);
2965 is_dir = de->d_type == DT_DIR;
2966 keep_around = false;
2972 /* if root_dev is set, remove subdirectories only, if device is same as dir */
2973 if (root_dev && st.st_dev != root_dev->st_dev)
2976 subdir_fd = openat(fd, de->d_name,
2977 O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
2978 if (subdir_fd < 0) {
2979 if (ret == 0 && errno != ENOENT)
2984 r = rm_rf_children_dangerous(subdir_fd, only_dirs, honour_sticky, root_dev);
2985 if (r < 0 && ret == 0)
2989 if (unlinkat(fd, de->d_name, AT_REMOVEDIR) < 0) {
2990 if (ret == 0 && errno != ENOENT)
2994 } else if (!only_dirs && !keep_around) {
2996 if (unlinkat(fd, de->d_name, 0) < 0) {
2997 if (ret == 0 && errno != ENOENT)
3004 _pure_ static int is_temporary_fs(struct statfs *s) {
3007 return F_TYPE_EQUAL(s->f_type, TMPFS_MAGIC) ||
3008 F_TYPE_EQUAL(s->f_type, RAMFS_MAGIC);
3011 int is_fd_on_temporary_fs(int fd) {
3014 if (fstatfs(fd, &s) < 0)
3017 return is_temporary_fs(&s);
3020 int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {
3025 if (fstatfs(fd, &s) < 0) {
3030 /* We refuse to clean disk file systems with this call. This
3031 * is extra paranoia just to be sure we never ever remove
3033 if (!is_temporary_fs(&s)) {
3034 log_error("Attempted to remove disk file system, and we can't allow that.");
3039 return rm_rf_children_dangerous(fd, only_dirs, honour_sticky, root_dev);
3042 static int file_is_priv_sticky(const char *p) {
3047 if (lstat(p, &st) < 0)
3051 (st.st_uid == 0 || st.st_uid == getuid()) &&
3052 (st.st_mode & S_ISVTX);
3055 static int rm_rf_internal(const char *path, bool only_dirs, bool delete_root, bool honour_sticky, bool dangerous) {
3061 /* We refuse to clean the root file system with this
3062 * call. This is extra paranoia to never cause a really
3063 * seriously broken system. */
3064 if (path_equal(path, "/")) {
3065 log_error("Attempted to remove entire root file system, and we can't allow that.");
3069 fd = open(path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
3072 if (errno != ENOTDIR && errno != ELOOP)
3076 if (statfs(path, &s) < 0)
3079 if (!is_temporary_fs(&s)) {
3080 log_error("Attempted to remove disk file system, and we can't allow that.");
3085 if (delete_root && !only_dirs)
3086 if (unlink(path) < 0 && errno != ENOENT)
3093 if (fstatfs(fd, &s) < 0) {
3098 if (!is_temporary_fs(&s)) {
3099 log_error("Attempted to remove disk file system, and we can't allow that.");
3105 r = rm_rf_children_dangerous(fd, only_dirs, honour_sticky, NULL);
3108 if (honour_sticky && file_is_priv_sticky(path) > 0)
3111 if (rmdir(path) < 0 && errno != ENOENT) {
3120 int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
3121 return rm_rf_internal(path, only_dirs, delete_root, honour_sticky, false);
3124 int rm_rf_dangerous(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
3125 return rm_rf_internal(path, only_dirs, delete_root, honour_sticky, true);
3128 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
3131 /* Under the assumption that we are running privileged we
3132 * first change the access mode and only then hand out
3133 * ownership to avoid a window where access is too open. */
3135 if (mode != MODE_INVALID)
3136 if (chmod(path, mode) < 0)
3139 if (uid != UID_INVALID || gid != GID_INVALID)
3140 if (chown(path, uid, gid) < 0)
3146 int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid) {
3149 /* Under the assumption that we are running privileged we
3150 * first change the access mode and only then hand out
3151 * ownership to avoid a window where access is too open. */
3153 if (mode != MODE_INVALID)
3154 if (fchmod(fd, mode) < 0)
3157 if (uid != UID_INVALID || gid != GID_INVALID)
3158 if (fchown(fd, uid, gid) < 0)
3164 cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
3168 /* Allocates the cpuset in the right size */
3171 if (!(r = CPU_ALLOC(n)))
3174 if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), r) >= 0) {
3175 CPU_ZERO_S(CPU_ALLOC_SIZE(n), r);
3185 if (errno != EINVAL)
3192 int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char *format, va_list ap) {
3193 static const char status_indent[] = " "; /* "[" STATUS "] " */
3194 _cleanup_free_ char *s = NULL;
3195 _cleanup_close_ int fd = -1;
3196 struct iovec iovec[6] = {};
3198 static bool prev_ephemeral;
3202 /* This is independent of logging, as status messages are
3203 * optional and go exclusively to the console. */
3205 if (vasprintf(&s, format, ap) < 0)
3208 fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
3221 sl = status ? sizeof(status_indent)-1 : 0;
3227 e = ellipsize(s, emax, 50);
3235 IOVEC_SET_STRING(iovec[n++], "\r" ANSI_ERASE_TO_END_OF_LINE);
3236 prev_ephemeral = ephemeral;
3239 if (!isempty(status)) {
3240 IOVEC_SET_STRING(iovec[n++], "[");
3241 IOVEC_SET_STRING(iovec[n++], status);
3242 IOVEC_SET_STRING(iovec[n++], "] ");
3244 IOVEC_SET_STRING(iovec[n++], status_indent);
3247 IOVEC_SET_STRING(iovec[n++], s);
3249 IOVEC_SET_STRING(iovec[n++], "\n");
3251 if (writev(fd, iovec, n) < 0)
3257 int status_printf(const char *status, bool ellipse, bool ephemeral, const char *format, ...) {
3263 va_start(ap, format);
3264 r = status_vprintf(status, ellipse, ephemeral, format, ap);
3270 char *replace_env(const char *format, char **env) {
3277 const char *e, *word = format;
3282 for (e = format; *e; e ++) {
3293 k = strnappend(r, word, e-word-1);
3303 } else if (*e == '$') {
3304 k = strnappend(r, word, e-word);
3321 t = strempty(strv_env_get_n(env, word+2, e-word-2));
3323 k = strappend(r, t);
3337 k = strnappend(r, word, e-word);
3349 char **replace_env_argv(char **argv, char **env) {
3351 unsigned k = 0, l = 0;
3353 l = strv_length(argv);
3355 ret = new(char*, l+1);
3359 STRV_FOREACH(i, argv) {
3361 /* If $FOO appears as single word, replace it by the split up variable */
3362 if ((*i)[0] == '$' && (*i)[1] != '{') {
3367 e = strv_env_get(env, *i+1);
3371 r = strv_split_quoted(&m, e, true);
3383 w = realloc(ret, sizeof(char*) * (l+1));
3393 memcpy(ret + k, m, q * sizeof(char*));
3401 /* If ${FOO} appears as part of a word, replace it by the variable as-is */
3402 ret[k] = replace_env(*i, env);
3414 int fd_columns(int fd) {
3415 struct winsize ws = {};
3417 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
3426 unsigned columns(void) {
3430 if (_likely_(cached_columns > 0))
3431 return cached_columns;
3434 e = getenv("COLUMNS");
3436 (void) safe_atoi(e, &c);
3439 c = fd_columns(STDOUT_FILENO);
3448 int fd_lines(int fd) {
3449 struct winsize ws = {};
3451 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
3460 unsigned lines(void) {
3464 if (_likely_(cached_lines > 0))
3465 return cached_lines;
3468 e = getenv("LINES");
3470 (void) safe_atou(e, &l);
3473 l = fd_lines(STDOUT_FILENO);
3479 return cached_lines;
3482 /* intended to be used as a SIGWINCH sighandler */
3483 void columns_lines_cache_reset(int signum) {
3489 static int cached_on_tty = -1;
3491 if (_unlikely_(cached_on_tty < 0))
3492 cached_on_tty = isatty(STDOUT_FILENO) > 0;
3494 return cached_on_tty;
3497 int files_same(const char *filea, const char *fileb) {
3500 if (stat(filea, &a) < 0)
3503 if (stat(fileb, &b) < 0)
3506 return a.st_dev == b.st_dev &&
3507 a.st_ino == b.st_ino;
3510 int running_in_chroot(void) {
3513 ret = files_same("/proc/1/root", "/");
3520 static char *ascii_ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent) {
3525 assert(percent <= 100);
3526 assert(new_length >= 3);
3528 if (old_length <= 3 || old_length <= new_length)
3529 return strndup(s, old_length);
3531 r = new0(char, new_length+1);
3535 x = (new_length * percent) / 100;
3537 if (x > new_length - 3)
3545 s + old_length - (new_length - x - 3),
3546 new_length - x - 3);
3551 char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent) {
3555 unsigned k, len, len2;
3558 assert(percent <= 100);
3559 assert(new_length >= 3);
3561 /* if no multibyte characters use ascii_ellipsize_mem for speed */
3562 if (ascii_is_valid(s))
3563 return ascii_ellipsize_mem(s, old_length, new_length, percent);
3565 if (old_length <= 3 || old_length <= new_length)
3566 return strndup(s, old_length);
3568 x = (new_length * percent) / 100;
3570 if (x > new_length - 3)
3574 for (i = s; k < x && i < s + old_length; i = utf8_next_char(i)) {
3577 c = utf8_encoded_to_unichar(i);
3580 k += unichar_iswide(c) ? 2 : 1;
3583 if (k > x) /* last character was wide and went over quota */
3586 for (j = s + old_length; k < new_length && j > i; ) {
3589 j = utf8_prev_char(j);
3590 c = utf8_encoded_to_unichar(j);
3593 k += unichar_iswide(c) ? 2 : 1;
3597 /* we don't actually need to ellipsize */
3599 return memdup(s, old_length + 1);
3601 /* make space for ellipsis */
3602 j = utf8_next_char(j);
3605 len2 = s + old_length - j;
3606 e = new(char, len + 3 + len2 + 1);
3611 printf("old_length=%zu new_length=%zu x=%zu len=%u len2=%u k=%u\n",
3612 old_length, new_length, x, len, len2, k);
3616 e[len] = 0xe2; /* tri-dot ellipsis: … */
3620 memcpy(e + len + 3, j, len2 + 1);
3625 char *ellipsize(const char *s, size_t length, unsigned percent) {
3626 return ellipsize_mem(s, strlen(s), length, percent);
3629 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode) {
3630 _cleanup_close_ int fd;
3636 mkdir_parents(path, 0755);
3638 fd = open(path, O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY, mode > 0 ? mode : 0644);
3643 r = fchmod(fd, mode);
3648 if (uid != UID_INVALID || gid != GID_INVALID) {
3649 r = fchown(fd, uid, gid);
3654 if (stamp != USEC_INFINITY) {
3655 struct timespec ts[2];
3657 timespec_store(&ts[0], stamp);
3659 r = futimens(fd, ts);
3661 r = futimens(fd, NULL);
3668 int touch(const char *path) {
3669 return touch_file(path, false, USEC_INFINITY, UID_INVALID, GID_INVALID, 0);
3672 char *unquote(const char *s, const char* quotes) {
3676 /* This is rather stupid, simply removes the heading and
3677 * trailing quotes if there is one. Doesn't care about
3678 * escaping or anything. We should make this smarter one
3685 if (strchr(quotes, s[0]) && s[l-1] == s[0])
3686 return strndup(s+1, l-2);
3691 char *normalize_env_assignment(const char *s) {
3692 _cleanup_free_ char *value = NULL;
3696 eq = strchr(s, '=');
3706 memmove(r, t, strlen(t) + 1);
3711 name = strndupa(s, eq - s);
3712 p = strdupa(eq + 1);
3714 value = unquote(strstrip(p), QUOTES);
3718 return strjoin(strstrip(name), "=", value, NULL);
3721 int wait_for_terminate(pid_t pid, siginfo_t *status) {
3732 if (waitid(P_PID, pid, status, WEXITED) < 0) {
3746 * < 0 : wait_for_terminate() failed to get the state of the
3747 * process, the process was terminated by a signal, or
3748 * failed for an unknown reason.
3749 * >=0 : The process terminated normally, and its exit code is
3752 * That is, success is indicated by a return value of zero, and an
3753 * error is indicated by a non-zero value.
3755 * A warning is emitted if the process terminates abnormally,
3756 * and also if it returns non-zero unless check_exit_code is true.
3758 int wait_for_terminate_and_warn(const char *name, pid_t pid, bool check_exit_code) {
3765 r = wait_for_terminate(pid, &status);
3767 return log_warning_errno(r, "Failed to wait for %s: %m", name);
3769 if (status.si_code == CLD_EXITED) {
3770 if (status.si_status != 0)
3771 log_full(check_exit_code ? LOG_WARNING : LOG_DEBUG,
3772 "%s failed with error code %i.", name, status.si_status);
3774 log_debug("%s succeeded.", name);
3776 return status.si_status;
3777 } else if (status.si_code == CLD_KILLED ||
3778 status.si_code == CLD_DUMPED) {
3780 log_warning("%s terminated by signal %s.", name, signal_to_string(status.si_status));
3784 log_warning("%s failed due to unknown reason.", name);
3788 noreturn void freeze(void) {
3790 /* Make sure nobody waits for us on a socket anymore */
3791 close_all_fds(NULL, 0);
3799 bool null_or_empty(struct stat *st) {
3802 if (S_ISREG(st->st_mode) && st->st_size <= 0)
3805 if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
3811 int null_or_empty_path(const char *fn) {
3816 if (stat(fn, &st) < 0)
3819 return null_or_empty(&st);
3822 int null_or_empty_fd(int fd) {
3827 if (fstat(fd, &st) < 0)
3830 return null_or_empty(&st);
3833 DIR *xopendirat(int fd, const char *name, int flags) {
3837 assert(!(flags & O_CREAT));
3839 nfd = openat(fd, name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|flags, 0);
3852 int signal_from_string_try_harder(const char *s) {
3856 signo = signal_from_string(s);
3858 if (startswith(s, "SIG"))
3859 return signal_from_string(s+3);
3864 static char *tag_to_udev_node(const char *tagvalue, const char *by) {
3865 _cleanup_free_ char *t = NULL, *u = NULL;
3868 u = unquote(tagvalue, "\"\'");
3872 enc_len = strlen(u) * 4 + 1;
3873 t = new(char, enc_len);
3877 if (encode_devnode_name(u, t, enc_len) < 0)
3880 return strjoin("/dev/disk/by-", by, "/", t, NULL);
3883 char *fstab_node_to_udev_node(const char *p) {
3886 if (startswith(p, "LABEL="))
3887 return tag_to_udev_node(p+6, "label");
3889 if (startswith(p, "UUID="))
3890 return tag_to_udev_node(p+5, "uuid");
3892 if (startswith(p, "PARTUUID="))
3893 return tag_to_udev_node(p+9, "partuuid");
3895 if (startswith(p, "PARTLABEL="))
3896 return tag_to_udev_node(p+10, "partlabel");
3901 bool tty_is_vc(const char *tty) {
3904 return vtnr_from_tty(tty) >= 0;
3907 bool tty_is_console(const char *tty) {
3910 if (startswith(tty, "/dev/"))
3913 return streq(tty, "console");
3916 int vtnr_from_tty(const char *tty) {
3921 if (startswith(tty, "/dev/"))
3924 if (!startswith(tty, "tty") )
3927 if (tty[3] < '0' || tty[3] > '9')
3930 r = safe_atoi(tty+3, &i);
3934 if (i < 0 || i > 63)
3940 char *resolve_dev_console(char **active) {
3943 /* Resolve where /dev/console is pointing to, if /sys is actually ours
3944 * (i.e. not read-only-mounted which is a sign for container setups) */
3946 if (path_is_read_only_fs("/sys") > 0)
3949 if (read_one_line_file("/sys/class/tty/console/active", active) < 0)
3952 /* If multiple log outputs are configured the last one is what
3953 * /dev/console points to */
3954 tty = strrchr(*active, ' ');
3960 if (streq(tty, "tty0")) {
3963 /* Get the active VC (e.g. tty1) */
3964 if (read_one_line_file("/sys/class/tty/tty0/active", &tmp) >= 0) {
3966 tty = *active = tmp;
3973 bool tty_is_vc_resolve(const char *tty) {
3974 _cleanup_free_ char *active = NULL;
3978 if (startswith(tty, "/dev/"))
3981 if (streq(tty, "console")) {
3982 tty = resolve_dev_console(&active);