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>
46 #include <sys/prctl.h>
47 #include <sys/utsname.h>
49 #include <netinet/ip.h>
53 #include <sys/capability.h>
66 #include "path-util.h"
67 #include "exit-status.h"
71 char **saved_argv = NULL;
73 size_t page_size(void) {
74 static __thread size_t pgsz = 0;
77 if (_likely_(pgsz > 0))
80 assert_se((r = sysconf(_SC_PAGESIZE)) > 0);
87 bool streq_ptr(const char *a, const char *b) {
89 /* Like streq(), but tries to make sense of NULL pointers */
100 usec_t now(clockid_t clock_id) {
103 assert_se(clock_gettime(clock_id, &ts) == 0);
105 return timespec_load(&ts);
108 dual_timestamp* dual_timestamp_get(dual_timestamp *ts) {
111 ts->realtime = now(CLOCK_REALTIME);
112 ts->monotonic = now(CLOCK_MONOTONIC);
117 dual_timestamp* dual_timestamp_from_realtime(dual_timestamp *ts, usec_t u) {
126 delta = (int64_t) now(CLOCK_REALTIME) - (int64_t) u;
128 ts->monotonic = now(CLOCK_MONOTONIC);
130 if ((int64_t) ts->monotonic > delta)
131 ts->monotonic -= delta;
139 usec_t timespec_load(const struct timespec *ts) {
143 (usec_t) ts->tv_sec * USEC_PER_SEC +
144 (usec_t) ts->tv_nsec / NSEC_PER_USEC;
147 struct timespec *timespec_store(struct timespec *ts, usec_t u) {
150 ts->tv_sec = (time_t) (u / USEC_PER_SEC);
151 ts->tv_nsec = (long int) ((u % USEC_PER_SEC) * NSEC_PER_USEC);
156 usec_t timeval_load(const struct timeval *tv) {
160 (usec_t) tv->tv_sec * USEC_PER_SEC +
161 (usec_t) tv->tv_usec;
164 struct timeval *timeval_store(struct timeval *tv, usec_t u) {
167 tv->tv_sec = (time_t) (u / USEC_PER_SEC);
168 tv->tv_usec = (suseconds_t) (u % USEC_PER_SEC);
173 bool endswith(const char *s, const char *postfix) {
180 pl = strlen(postfix);
188 return memcmp(s + sl - pl, postfix, pl) == 0;
191 bool startswith(const char *s, const char *prefix) {
206 return memcmp(s, prefix, pl) == 0;
209 bool startswith_no_case(const char *s, const char *prefix) {
225 for(i = 0; i < pl; ++i) {
226 if (tolower(s[i]) != tolower(prefix[i]))
233 bool first_word(const char *s, const char *word) {
248 if (memcmp(s, word, wl) != 0)
252 strchr(WHITESPACE, s[wl]);
255 int close_nointr(int fd) {
270 void close_nointr_nofail(int fd) {
271 int saved_errno = errno;
273 /* like close_nointr() but cannot fail, and guarantees errno
276 assert_se(close_nointr(fd) == 0);
281 void close_many(const int fds[], unsigned n_fd) {
284 for (i = 0; i < n_fd; i++)
285 close_nointr_nofail(fds[i]);
288 int parse_boolean(const char *v) {
291 if (streq(v, "1") || v[0] == 'y' || v[0] == 'Y' || v[0] == 't' || v[0] == 'T' || !strcasecmp(v, "on"))
293 else if (streq(v, "0") || v[0] == 'n' || v[0] == 'N' || v[0] == 'f' || v[0] == 'F' || !strcasecmp(v, "off"))
299 int parse_pid(const char *s, pid_t* ret_pid) {
300 unsigned long ul = 0;
307 if ((r = safe_atolu(s, &ul)) < 0)
312 if ((unsigned long) pid != ul)
322 int parse_uid(const char *s, uid_t* ret_uid) {
323 unsigned long ul = 0;
330 if ((r = safe_atolu(s, &ul)) < 0)
335 if ((unsigned long) uid != ul)
342 int safe_atou(const char *s, unsigned *ret_u) {
350 l = strtoul(s, &x, 0);
352 if (!x || *x || errno)
353 return errno ? -errno : -EINVAL;
355 if ((unsigned long) (unsigned) l != l)
358 *ret_u = (unsigned) l;
362 int safe_atoi(const char *s, int *ret_i) {
370 l = strtol(s, &x, 0);
372 if (!x || *x || errno)
373 return errno ? -errno : -EINVAL;
375 if ((long) (int) l != l)
382 int safe_atollu(const char *s, long long unsigned *ret_llu) {
384 unsigned long long l;
390 l = strtoull(s, &x, 0);
392 if (!x || *x || errno)
393 return errno ? -errno : -EINVAL;
399 int safe_atolli(const char *s, long long int *ret_lli) {
407 l = strtoll(s, &x, 0);
409 if (!x || *x || errno)
410 return errno ? -errno : -EINVAL;
416 /* Split a string into words. */
417 char *split(const char *c, size_t *l, const char *separator, char **state) {
420 current = *state ? *state : (char*) c;
422 if (!*current || *c == 0)
425 current += strspn(current, separator);
426 *l = strcspn(current, separator);
429 return (char*) current;
432 /* Split a string into words, but consider strings enclosed in '' and
433 * "" as words even if they include spaces. */
434 char *split_quoted(const char *c, size_t *l, char **state) {
436 bool escaped = false;
438 current = *state ? *state : (char*) c;
440 if (!*current || *c == 0)
443 current += strspn(current, WHITESPACE);
445 if (*current == '\'') {
448 for (e = current; *e; e++) {
458 *state = *e == 0 ? e : e+1;
459 } else if (*current == '\"') {
462 for (e = current; *e; e++) {
472 *state = *e == 0 ? e : e+1;
474 for (e = current; *e; e++) {
479 else if (strchr(WHITESPACE, *e))
486 return (char*) current;
489 int get_parent_of_pid(pid_t pid, pid_t *_ppid) {
492 char fn[PATH_MAX], line[LINE_MAX], *p;
498 assert_se(snprintf(fn, sizeof(fn)-1, "/proc/%lu/stat", (unsigned long) pid) < (int) (sizeof(fn)-1));
501 if (!(f = fopen(fn, "re")))
504 if (!(fgets(line, sizeof(line), f))) {
505 r = feof(f) ? -EIO : -errno;
512 /* Let's skip the pid and comm fields. The latter is enclosed
513 * in () but does not escape any () in its value, so let's
514 * skip over it manually */
516 if (!(p = strrchr(line, ')')))
527 if ((long unsigned) (pid_t) ppid != ppid)
530 *_ppid = (pid_t) ppid;
535 int get_starttime_of_pid(pid_t pid, unsigned long long *st) {
538 char fn[PATH_MAX], line[LINE_MAX], *p;
543 assert_se(snprintf(fn, sizeof(fn)-1, "/proc/%lu/stat", (unsigned long) pid) < (int) (sizeof(fn)-1));
546 if (!(f = fopen(fn, "re")))
549 if (!(fgets(line, sizeof(line), f))) {
550 r = feof(f) ? -EIO : -errno;
557 /* Let's skip the pid and comm fields. The latter is enclosed
558 * in () but does not escape any () in its value, so let's
559 * skip over it manually */
561 if (!(p = strrchr(line, ')')))
582 "%*d " /* priority */
584 "%*d " /* num_threads */
585 "%*d " /* itrealvalue */
586 "%llu " /* starttime */,
593 int write_one_line_file(const char *fn, const char *line) {
605 if (fputs(line, f) < 0) {
610 if (!endswith(line, "\n"))
628 int fchmod_umask(int fd, mode_t m) {
633 r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
639 int write_one_line_file_atomic(const char *fn, const char *line) {
647 r = fopen_temporary(fn, &f, &p);
651 fchmod_umask(fileno(f), 0644);
654 if (fputs(line, f) < 0) {
659 if (!endswith(line, "\n"))
670 if (rename(p, fn) < 0)
686 int read_one_line_file(const char *fn, char **line) {
689 char t[LINE_MAX], *c;
698 if (!fgets(t, sizeof(t), f)) {
724 int read_full_file(const char *fn, char **contents, size_t *size) {
731 if (!(f = fopen(fn, "re")))
734 if (fstat(fileno(f), &st) < 0) {
740 if (st.st_size > 4*1024*1024) {
745 n = st.st_size > 0 ? st.st_size : LINE_MAX;
752 if (!(t = realloc(buf, n+1))) {
758 k = fread(buf + l, 1, n - l, f);
773 if (n > 4*1024*1024) {
797 const char *separator, ...) {
800 char *contents = NULL, *p;
805 if ((r = read_full_file(fname, &contents, NULL)) < 0)
810 const char *key = NULL;
812 p += strspn(p, separator);
813 p += strspn(p, WHITESPACE);
818 if (!strchr(COMMENTS, *p)) {
822 va_start(ap, separator);
823 while ((key = va_arg(ap, char *))) {
827 value = va_arg(ap, char **);
830 if (strncmp(p, key, n) != 0 ||
835 n = strcspn(p, separator);
838 strchr(QUOTES, p[0]) &&
840 v = strndup(p+1, n-2);
851 /* return empty value strings as NULL */
868 p += strcspn(p, separator);
887 if (!(f = fopen(fname, "re")))
891 char l[LINE_MAX], *p, *u;
894 if (!fgets(l, sizeof(l), f)) {
907 if (strchr(COMMENTS, *p))
910 if (!(u = normalize_env_assignment(p))) {
911 log_error("Out of memory");
916 t = strv_append(m, u);
920 log_error("Out of memory");
943 int write_env_file(const char *fname, char **l) {
948 r = fopen_temporary(fname, &f, &p);
952 fchmod_umask(fileno(f), 0644);
968 if (rename(p, fname) < 0)
983 char *truncate_nl(char *s) {
986 s[strcspn(s, NEWLINE)] = 0;
990 int get_process_comm(pid_t pid, char **name) {
996 r = read_one_line_file("/proc/self/comm", name);
999 if (asprintf(&p, "/proc/%lu/comm", (unsigned long) pid) < 0)
1002 r = read_one_line_file(p, name);
1009 int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line) {
1016 assert(max_length > 0);
1020 f = fopen("/proc/self/cmdline", "re");
1023 if (asprintf(&p, "/proc/%lu/cmdline", (unsigned long) pid) < 0)
1033 r = new(char, max_length);
1041 while ((c = getc(f)) != EOF) {
1063 size_t n = MIN(left-1, 3U);
1064 memcpy(k, "...", n);
1071 /* Kernel threads have no argv[] */
1081 h = get_process_comm(pid, &t);
1085 r = join("[", t, "]", NULL);
1096 int is_kernel_thread(pid_t pid) {
1106 if (asprintf(&p, "/proc/%lu/cmdline", (unsigned long) pid) < 0)
1115 count = fread(&c, 1, 1, f);
1119 /* Kernel threads have an empty cmdline */
1122 return eof ? 1 : -errno;
1127 int get_process_exe(pid_t pid, char **name) {
1133 r = readlink_malloc("/proc/self/exe", name);
1136 if (asprintf(&p, "/proc/%lu/exe", (unsigned long) pid) < 0)
1139 r = readlink_malloc(p, name);
1146 int get_process_uid(pid_t pid, uid_t *uid) {
1156 if (asprintf(&p, "/proc/%lu/status", (unsigned long) pid) < 0)
1166 char line[LINE_MAX], *l;
1168 if (!fgets(line, sizeof(line), f)) {
1178 if (startswith(l, "Uid:")) {
1180 l += strspn(l, WHITESPACE);
1182 l[strcspn(l, WHITESPACE)] = 0;
1184 r = parse_uid(l, uid);
1197 char *strnappend(const char *s, const char *suffix, size_t b) {
1205 return strndup(suffix, b);
1215 if (!(r = new(char, a+b+1)))
1219 memcpy(r+a, suffix, b);
1225 char *strappend(const char *s, const char *suffix) {
1226 return strnappend(s, suffix, suffix ? strlen(suffix) : 0);
1229 int readlink_malloc(const char *p, char **r) {
1239 if (!(c = new(char, l)))
1242 if ((n = readlink(p, c, l-1)) < 0) {
1248 if ((size_t) n < l-1) {
1259 int readlink_and_make_absolute(const char *p, char **r) {
1266 if ((j = readlink_malloc(p, &target)) < 0)
1269 k = file_in_same_dir(p, target);
1279 int readlink_and_canonicalize(const char *p, char **r) {
1286 j = readlink_and_make_absolute(p, &t);
1290 s = canonicalize_file_name(t);
1297 path_kill_slashes(*r);
1302 int reset_all_signal_handlers(void) {
1305 for (sig = 1; sig < _NSIG; sig++) {
1306 struct sigaction sa;
1308 if (sig == SIGKILL || sig == SIGSTOP)
1312 sa.sa_handler = SIG_DFL;
1313 sa.sa_flags = SA_RESTART;
1315 /* On Linux the first two RT signals are reserved by
1316 * glibc, and sigaction() will return EINVAL for them. */
1317 if ((sigaction(sig, &sa, NULL) < 0))
1318 if (errno != EINVAL)
1325 char *strstrip(char *s) {
1328 /* Drops trailing whitespace. Modifies the string in
1329 * place. Returns pointer to first non-space character */
1331 s += strspn(s, WHITESPACE);
1333 for (e = strchr(s, 0); e > s; e --)
1334 if (!strchr(WHITESPACE, e[-1]))
1342 char *delete_chars(char *s, const char *bad) {
1345 /* Drops all whitespace, regardless where in the string */
1347 for (f = s, t = s; *f; f++) {
1348 if (strchr(bad, *f))
1359 bool in_charset(const char *s, const char* charset) {
1365 for (i = s; *i; i++)
1366 if (!strchr(charset, *i))
1372 char *file_in_same_dir(const char *path, const char *filename) {
1379 /* This removes the last component of path and appends
1380 * filename, unless the latter is absolute anyway or the
1383 if (path_is_absolute(filename))
1384 return strdup(filename);
1386 if (!(e = strrchr(path, '/')))
1387 return strdup(filename);
1389 k = strlen(filename);
1390 if (!(r = new(char, e-path+1+k+1)))
1393 memcpy(r, path, e-path+1);
1394 memcpy(r+(e-path)+1, filename, k+1);
1399 int rmdir_parents(const char *path, const char *stop) {
1408 /* Skip trailing slashes */
1409 while (l > 0 && path[l-1] == '/')
1415 /* Skip last component */
1416 while (l > 0 && path[l-1] != '/')
1419 /* Skip trailing slashes */
1420 while (l > 0 && path[l-1] == '/')
1426 if (!(t = strndup(path, l)))
1429 if (path_startswith(stop, t)) {
1438 if (errno != ENOENT)
1446 char hexchar(int x) {
1447 static const char table[16] = "0123456789abcdef";
1449 return table[x & 15];
1452 int unhexchar(char c) {
1454 if (c >= '0' && c <= '9')
1457 if (c >= 'a' && c <= 'f')
1458 return c - 'a' + 10;
1460 if (c >= 'A' && c <= 'F')
1461 return c - 'A' + 10;
1466 char octchar(int x) {
1467 return '0' + (x & 7);
1470 int unoctchar(char c) {
1472 if (c >= '0' && c <= '7')
1478 char decchar(int x) {
1479 return '0' + (x % 10);
1482 int undecchar(char c) {
1484 if (c >= '0' && c <= '9')
1490 char *cescape(const char *s) {
1496 /* Does C style string escaping. */
1498 r = new(char, strlen(s)*4 + 1);
1502 for (f = s, t = r; *f; f++)
1548 /* For special chars we prefer octal over
1549 * hexadecimal encoding, simply because glib's
1550 * g_strescape() does the same */
1551 if ((*f < ' ') || (*f >= 127)) {
1553 *(t++) = octchar((unsigned char) *f >> 6);
1554 *(t++) = octchar((unsigned char) *f >> 3);
1555 *(t++) = octchar((unsigned char) *f);
1566 char *cunescape_length(const char *s, size_t length) {
1572 /* Undoes C style string escaping */
1574 r = new(char, length+1);
1578 for (f = s, t = r; f < s + length; f++) {
1621 /* This is an extension of the XDG syntax files */
1626 /* hexadecimal encoding */
1629 a = unhexchar(f[1]);
1630 b = unhexchar(f[2]);
1632 if (a < 0 || b < 0) {
1633 /* Invalid escape code, let's take it literal then */
1637 *(t++) = (char) ((a << 4) | b);
1652 /* octal encoding */
1655 a = unoctchar(f[0]);
1656 b = unoctchar(f[1]);
1657 c = unoctchar(f[2]);
1659 if (a < 0 || b < 0 || c < 0) {
1660 /* Invalid escape code, let's take it literal then */
1664 *(t++) = (char) ((a << 6) | (b << 3) | c);
1672 /* premature end of string.*/
1677 /* Invalid escape code, let's take it literal then */
1689 char *cunescape(const char *s) {
1690 return cunescape_length(s, strlen(s));
1693 char *xescape(const char *s, const char *bad) {
1697 /* Escapes all chars in bad, in addition to \ and all special
1698 * chars, in \xFF style escaping. May be reversed with
1701 if (!(r = new(char, strlen(s)*4+1)))
1704 for (f = s, t = r; *f; f++) {
1706 if ((*f < ' ') || (*f >= 127) ||
1707 (*f == '\\') || strchr(bad, *f)) {
1710 *(t++) = hexchar(*f >> 4);
1711 *(t++) = hexchar(*f);
1721 char *bus_path_escape(const char *s) {
1727 /* Escapes all chars that D-Bus' object path cannot deal
1728 * with. Can be reverse with bus_path_unescape() */
1730 if (!(r = new(char, strlen(s)*3+1)))
1733 for (f = s, t = r; *f; f++) {
1735 if (!(*f >= 'A' && *f <= 'Z') &&
1736 !(*f >= 'a' && *f <= 'z') &&
1737 !(*f >= '0' && *f <= '9')) {
1739 *(t++) = hexchar(*f >> 4);
1740 *(t++) = hexchar(*f);
1750 char *bus_path_unescape(const char *f) {
1755 if (!(r = strdup(f)))
1758 for (t = r; *f; f++) {
1763 if ((a = unhexchar(f[1])) < 0 ||
1764 (b = unhexchar(f[2])) < 0) {
1765 /* Invalid escape code, let's take it literal then */
1768 *(t++) = (char) ((a << 4) | b);
1780 char *ascii_strlower(char *t) {
1785 for (p = t; *p; p++)
1786 if (*p >= 'A' && *p <= 'Z')
1787 *p = *p - 'A' + 'a';
1792 bool ignore_file(const char *filename) {
1796 filename[0] == '.' ||
1797 streq(filename, "lost+found") ||
1798 streq(filename, "aquota.user") ||
1799 streq(filename, "aquota.group") ||
1800 endswith(filename, "~") ||
1801 endswith(filename, ".rpmnew") ||
1802 endswith(filename, ".rpmsave") ||
1803 endswith(filename, ".rpmorig") ||
1804 endswith(filename, ".dpkg-old") ||
1805 endswith(filename, ".dpkg-new") ||
1806 endswith(filename, ".swp");
1809 int fd_nonblock(int fd, bool nonblock) {
1814 if ((flags = fcntl(fd, F_GETFL, 0)) < 0)
1818 flags |= O_NONBLOCK;
1820 flags &= ~O_NONBLOCK;
1822 if (fcntl(fd, F_SETFL, flags) < 0)
1828 int fd_cloexec(int fd, bool cloexec) {
1833 if ((flags = fcntl(fd, F_GETFD, 0)) < 0)
1837 flags |= FD_CLOEXEC;
1839 flags &= ~FD_CLOEXEC;
1841 if (fcntl(fd, F_SETFD, flags) < 0)
1847 static bool fd_in_set(int fd, const int fdset[], unsigned n_fdset) {
1850 assert(n_fdset == 0 || fdset);
1852 for (i = 0; i < n_fdset; i++)
1859 int close_all_fds(const int except[], unsigned n_except) {
1864 assert(n_except == 0 || except);
1866 d = opendir("/proc/self/fd");
1871 /* When /proc isn't available (for example in chroots)
1872 * the fallback is brute forcing through the fd
1875 assert_se(getrlimit(RLIMIT_NOFILE, &rl) >= 0);
1876 for (fd = 3; fd < (int) rl.rlim_max; fd ++) {
1878 if (fd_in_set(fd, except, n_except))
1881 if (close_nointr(fd) < 0)
1882 if (errno != EBADF && r == 0)
1889 while ((de = readdir(d))) {
1892 if (ignore_file(de->d_name))
1895 if (safe_atoi(de->d_name, &fd) < 0)
1896 /* Let's better ignore this, just in case */
1905 if (fd_in_set(fd, except, n_except))
1908 if (close_nointr(fd) < 0) {
1909 /* Valgrind has its own FD and doesn't want to have it closed */
1910 if (errno != EBADF && r == 0)
1919 bool chars_intersect(const char *a, const char *b) {
1922 /* Returns true if any of the chars in a are in b. */
1923 for (p = a; *p; p++)
1930 char *format_timestamp(char *buf, size_t l, usec_t t) {
1940 sec = (time_t) (t / USEC_PER_SEC);
1942 if (strftime(buf, l, "%a, %d %b %Y %H:%M:%S %z", localtime_r(&sec, &tm)) <= 0)
1948 char *format_timestamp_pretty(char *buf, size_t l, usec_t t) {
1951 n = now(CLOCK_REALTIME);
1953 if (t <= 0 || t > n || t + USEC_PER_DAY*7 <= t)
1958 if (d >= USEC_PER_YEAR)
1959 snprintf(buf, l, "%llu years and %llu months ago",
1960 (unsigned long long) (d / USEC_PER_YEAR),
1961 (unsigned long long) ((d % USEC_PER_YEAR) / USEC_PER_MONTH));
1962 else if (d >= USEC_PER_MONTH)
1963 snprintf(buf, l, "%llu months and %llu days ago",
1964 (unsigned long long) (d / USEC_PER_MONTH),
1965 (unsigned long long) ((d % USEC_PER_MONTH) / USEC_PER_DAY));
1966 else if (d >= USEC_PER_WEEK)
1967 snprintf(buf, l, "%llu weeks and %llu days ago",
1968 (unsigned long long) (d / USEC_PER_WEEK),
1969 (unsigned long long) ((d % USEC_PER_WEEK) / USEC_PER_DAY));
1970 else if (d >= 2*USEC_PER_DAY)
1971 snprintf(buf, l, "%llu days ago", (unsigned long long) (d / USEC_PER_DAY));
1972 else if (d >= 25*USEC_PER_HOUR)
1973 snprintf(buf, l, "1 day and %lluh ago",
1974 (unsigned long long) ((d - USEC_PER_DAY) / USEC_PER_HOUR));
1975 else if (d >= 6*USEC_PER_HOUR)
1976 snprintf(buf, l, "%lluh ago",
1977 (unsigned long long) (d / USEC_PER_HOUR));
1978 else if (d >= USEC_PER_HOUR)
1979 snprintf(buf, l, "%lluh %llumin ago",
1980 (unsigned long long) (d / USEC_PER_HOUR),
1981 (unsigned long long) ((d % USEC_PER_HOUR) / USEC_PER_MINUTE));
1982 else if (d >= 5*USEC_PER_MINUTE)
1983 snprintf(buf, l, "%llumin ago",
1984 (unsigned long long) (d / USEC_PER_MINUTE));
1985 else if (d >= USEC_PER_MINUTE)
1986 snprintf(buf, l, "%llumin %llus ago",
1987 (unsigned long long) (d / USEC_PER_MINUTE),
1988 (unsigned long long) ((d % USEC_PER_MINUTE) / USEC_PER_SEC));
1989 else if (d >= USEC_PER_SEC)
1990 snprintf(buf, l, "%llus ago",
1991 (unsigned long long) (d / USEC_PER_SEC));
1992 else if (d >= USEC_PER_MSEC)
1993 snprintf(buf, l, "%llums ago",
1994 (unsigned long long) (d / USEC_PER_MSEC));
1996 snprintf(buf, l, "%lluus ago",
1997 (unsigned long long) d);
1999 snprintf(buf, l, "now");
2005 char *format_timespan(char *buf, size_t l, usec_t t) {
2006 static const struct {
2010 { "w", USEC_PER_WEEK },
2011 { "d", USEC_PER_DAY },
2012 { "h", USEC_PER_HOUR },
2013 { "min", USEC_PER_MINUTE },
2014 { "s", USEC_PER_SEC },
2015 { "ms", USEC_PER_MSEC },
2025 if (t == (usec_t) -1)
2029 snprintf(p, l, "0");
2034 /* The result of this function can be parsed with parse_usec */
2036 for (i = 0; i < ELEMENTSOF(table); i++) {
2040 if (t < table[i].usec)
2046 k = snprintf(p, l, "%s%llu%s", p > buf ? " " : "", (unsigned long long) (t / table[i].usec), table[i].suffix);
2047 n = MIN((size_t) k, l);
2060 bool fstype_is_network(const char *fstype) {
2061 static const char * const table[] = {
2073 for (i = 0; i < ELEMENTSOF(table); i++)
2074 if (streq(table[i], fstype))
2083 if ((fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0)
2088 TIOCL_GETKMSGREDIRECT,
2092 if (ioctl(fd, TIOCLINUX, tiocl) < 0) {
2097 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
2100 if (ioctl(fd, VT_ACTIVATE, vt) < 0)
2104 close_nointr_nofail(fd);
2108 int read_one_char(FILE *f, char *ret, usec_t t, bool *need_nl) {
2109 struct termios old_termios, new_termios;
2111 char line[LINE_MAX];
2116 if (tcgetattr(fileno(f), &old_termios) >= 0) {
2117 new_termios = old_termios;
2119 new_termios.c_lflag &= ~ICANON;
2120 new_termios.c_cc[VMIN] = 1;
2121 new_termios.c_cc[VTIME] = 0;
2123 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
2126 if (t != (usec_t) -1) {
2127 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0) {
2128 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
2133 k = fread(&c, 1, 1, f);
2135 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
2141 *need_nl = c != '\n';
2148 if (t != (usec_t) -1)
2149 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0)
2152 if (!fgets(line, sizeof(line), f))
2157 if (strlen(line) != 1)
2167 int ask(char *ret, const char *replies, const char *text, ...) {
2174 on_tty = isatty(STDOUT_FILENO);
2180 bool need_nl = true;
2183 fputs(ANSI_HIGHLIGHT_ON, stdout);
2190 fputs(ANSI_HIGHLIGHT_OFF, stdout);
2194 r = read_one_char(stdin, &c, (usec_t) -1, &need_nl);
2197 if (r == -EBADMSG) {
2198 puts("Bad input, please try again.");
2209 if (strchr(replies, c)) {
2214 puts("Read unexpected character, please try again.");
2218 int reset_terminal_fd(int fd, bool switch_to_text) {
2219 struct termios termios;
2222 /* Set terminal to some sane defaults */
2226 /* We leave locked terminal attributes untouched, so that
2227 * Plymouth may set whatever it wants to set, and we don't
2228 * interfere with that. */
2230 /* Disable exclusive mode, just in case */
2231 ioctl(fd, TIOCNXCL);
2233 /* Switch to text mode */
2235 ioctl(fd, KDSETMODE, KD_TEXT);
2237 /* Enable console unicode mode */
2238 ioctl(fd, KDSKBMODE, K_UNICODE);
2240 if (tcgetattr(fd, &termios) < 0) {
2245 /* We only reset the stuff that matters to the software. How
2246 * hardware is set up we don't touch assuming that somebody
2247 * else will do that for us */
2249 termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
2250 termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
2251 termios.c_oflag |= ONLCR;
2252 termios.c_cflag |= CREAD;
2253 termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
2255 termios.c_cc[VINTR] = 03; /* ^C */
2256 termios.c_cc[VQUIT] = 034; /* ^\ */
2257 termios.c_cc[VERASE] = 0177;
2258 termios.c_cc[VKILL] = 025; /* ^X */
2259 termios.c_cc[VEOF] = 04; /* ^D */
2260 termios.c_cc[VSTART] = 021; /* ^Q */
2261 termios.c_cc[VSTOP] = 023; /* ^S */
2262 termios.c_cc[VSUSP] = 032; /* ^Z */
2263 termios.c_cc[VLNEXT] = 026; /* ^V */
2264 termios.c_cc[VWERASE] = 027; /* ^W */
2265 termios.c_cc[VREPRINT] = 022; /* ^R */
2266 termios.c_cc[VEOL] = 0;
2267 termios.c_cc[VEOL2] = 0;
2269 termios.c_cc[VTIME] = 0;
2270 termios.c_cc[VMIN] = 1;
2272 if (tcsetattr(fd, TCSANOW, &termios) < 0)
2276 /* Just in case, flush all crap out */
2277 tcflush(fd, TCIOFLUSH);
2282 int reset_terminal(const char *name) {
2285 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
2289 r = reset_terminal_fd(fd, true);
2290 close_nointr_nofail(fd);
2295 int open_terminal(const char *name, int mode) {
2300 * If a TTY is in the process of being closed opening it might
2301 * cause EIO. This is horribly awful, but unlikely to be
2302 * changed in the kernel. Hence we work around this problem by
2303 * retrying a couple of times.
2305 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
2309 if ((fd = open(name, mode)) >= 0)
2318 usleep(50 * USEC_PER_MSEC);
2325 if ((r = isatty(fd)) < 0) {
2326 close_nointr_nofail(fd);
2331 close_nointr_nofail(fd);
2338 int flush_fd(int fd) {
2339 struct pollfd pollfd;
2343 pollfd.events = POLLIN;
2350 if ((r = poll(&pollfd, 1, 0)) < 0) {
2361 if ((l = read(fd, buf, sizeof(buf))) < 0) {
2366 if (errno == EAGAIN)
2377 int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm) {
2378 int fd = -1, notify = -1, r, wd = -1;
2382 /* We use inotify to be notified when the tty is closed. We
2383 * create the watch before checking if we can actually acquire
2384 * it, so that we don't lose any event.
2386 * Note: strictly speaking this actually watches for the
2387 * device being closed, it does *not* really watch whether a
2388 * tty loses its controlling process. However, unless some
2389 * rogue process uses TIOCNOTTY on /dev/tty *after* closing
2390 * its tty otherwise this will not become a problem. As long
2391 * as the administrator makes sure not configure any service
2392 * on the same tty as an untrusted user this should not be a
2393 * problem. (Which he probably should not do anyway.) */
2395 if (!fail && !force) {
2396 if ((notify = inotify_init1(IN_CLOEXEC)) < 0) {
2401 if ((wd = inotify_add_watch(notify, name, IN_CLOSE)) < 0) {
2409 if ((r = flush_fd(notify)) < 0)
2412 /* We pass here O_NOCTTY only so that we can check the return
2413 * value TIOCSCTTY and have a reliable way to figure out if we
2414 * successfully became the controlling process of the tty */
2415 if ((fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0)
2418 /* First, try to get the tty */
2419 r = ioctl(fd, TIOCSCTTY, force);
2421 /* Sometimes it makes sense to ignore TIOCSCTTY
2422 * returning EPERM, i.e. when very likely we already
2423 * are have this controlling terminal. */
2424 if (r < 0 && errno == EPERM && ignore_tiocstty_eperm)
2427 if (r < 0 && (force || fail || errno != EPERM)) {
2437 assert(notify >= 0);
2440 uint8_t inotify_buffer[sizeof(struct inotify_event) + FILENAME_MAX];
2442 struct inotify_event *e;
2444 if ((l = read(notify, inotify_buffer, sizeof(inotify_buffer))) < 0) {
2453 e = (struct inotify_event*) inotify_buffer;
2458 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
2463 step = sizeof(struct inotify_event) + e->len;
2464 assert(step <= (size_t) l);
2466 e = (struct inotify_event*) ((uint8_t*) e + step);
2473 /* We close the tty fd here since if the old session
2474 * ended our handle will be dead. It's important that
2475 * we do this after sleeping, so that we don't enter
2476 * an endless loop. */
2477 close_nointr_nofail(fd);
2481 close_nointr_nofail(notify);
2483 r = reset_terminal_fd(fd, true);
2485 log_warning("Failed to reset terminal: %s", strerror(-r));
2491 close_nointr_nofail(fd);
2494 close_nointr_nofail(notify);
2499 int release_terminal(void) {
2501 struct sigaction sa_old, sa_new;
2503 if ((fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_NDELAY|O_CLOEXEC)) < 0)
2506 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
2507 * by our own TIOCNOTTY */
2510 sa_new.sa_handler = SIG_IGN;
2511 sa_new.sa_flags = SA_RESTART;
2512 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
2514 if (ioctl(fd, TIOCNOTTY) < 0)
2517 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
2519 close_nointr_nofail(fd);
2523 int sigaction_many(const struct sigaction *sa, ...) {
2528 while ((sig = va_arg(ap, int)) > 0)
2529 if (sigaction(sig, sa, NULL) < 0)
2536 int ignore_signals(int sig, ...) {
2537 struct sigaction sa;
2542 sa.sa_handler = SIG_IGN;
2543 sa.sa_flags = SA_RESTART;
2545 if (sigaction(sig, &sa, NULL) < 0)
2549 while ((sig = va_arg(ap, int)) > 0)
2550 if (sigaction(sig, &sa, NULL) < 0)
2557 int default_signals(int sig, ...) {
2558 struct sigaction sa;
2563 sa.sa_handler = SIG_DFL;
2564 sa.sa_flags = SA_RESTART;
2566 if (sigaction(sig, &sa, NULL) < 0)
2570 while ((sig = va_arg(ap, int)) > 0)
2571 if (sigaction(sig, &sa, NULL) < 0)
2578 int close_pipe(int p[]) {
2584 a = close_nointr(p[0]);
2589 b = close_nointr(p[1]);
2593 return a < 0 ? a : b;
2596 ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll) {
2605 while (nbytes > 0) {
2608 if ((k = read(fd, p, nbytes)) <= 0) {
2610 if (k < 0 && errno == EINTR)
2613 if (k < 0 && errno == EAGAIN && do_poll) {
2614 struct pollfd pollfd;
2618 pollfd.events = POLLIN;
2620 if (poll(&pollfd, 1, -1) < 0) {
2624 return n > 0 ? n : -errno;
2627 if (pollfd.revents != POLLIN)
2628 return n > 0 ? n : -EIO;
2633 return n > 0 ? n : (k < 0 ? -errno : 0);
2644 ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll) {
2653 while (nbytes > 0) {
2656 k = write(fd, p, nbytes);
2659 if (k < 0 && errno == EINTR)
2662 if (k < 0 && errno == EAGAIN && do_poll) {
2663 struct pollfd pollfd;
2667 pollfd.events = POLLOUT;
2669 if (poll(&pollfd, 1, -1) < 0) {
2673 return n > 0 ? n : -errno;
2676 if (pollfd.revents != POLLOUT)
2677 return n > 0 ? n : -EIO;
2682 return n > 0 ? n : (k < 0 ? -errno : 0);
2693 int parse_usec(const char *t, usec_t *usec) {
2694 static const struct {
2698 { "sec", USEC_PER_SEC },
2699 { "s", USEC_PER_SEC },
2700 { "min", USEC_PER_MINUTE },
2701 { "hr", USEC_PER_HOUR },
2702 { "h", USEC_PER_HOUR },
2703 { "d", USEC_PER_DAY },
2704 { "w", USEC_PER_WEEK },
2705 { "msec", USEC_PER_MSEC },
2706 { "ms", USEC_PER_MSEC },
2707 { "m", USEC_PER_MINUTE },
2710 { "", USEC_PER_SEC }, /* default is sec */
2726 l = strtoll(p, &e, 10);
2737 e += strspn(e, WHITESPACE);
2739 for (i = 0; i < ELEMENTSOF(table); i++)
2740 if (startswith(e, table[i].suffix)) {
2741 r += (usec_t) l * table[i].usec;
2742 p = e + strlen(table[i].suffix);
2746 if (i >= ELEMENTSOF(table))
2756 int parse_nsec(const char *t, nsec_t *nsec) {
2757 static const struct {
2761 { "sec", NSEC_PER_SEC },
2762 { "s", NSEC_PER_SEC },
2763 { "min", NSEC_PER_MINUTE },
2764 { "hr", NSEC_PER_HOUR },
2765 { "h", NSEC_PER_HOUR },
2766 { "d", NSEC_PER_DAY },
2767 { "w", NSEC_PER_WEEK },
2768 { "msec", NSEC_PER_MSEC },
2769 { "ms", NSEC_PER_MSEC },
2770 { "m", NSEC_PER_MINUTE },
2771 { "usec", NSEC_PER_USEC },
2772 { "us", NSEC_PER_USEC },
2775 { "", 1ULL }, /* default is nsec */
2791 l = strtoll(p, &e, 10);
2802 e += strspn(e, WHITESPACE);
2804 for (i = 0; i < ELEMENTSOF(table); i++)
2805 if (startswith(e, table[i].suffix)) {
2806 r += (nsec_t) l * table[i].nsec;
2807 p = e + strlen(table[i].suffix);
2811 if (i >= ELEMENTSOF(table))
2821 int parse_bytes(const char *t, off_t *bytes) {
2822 static const struct {
2828 { "M", 1024ULL*1024ULL },
2829 { "G", 1024ULL*1024ULL*1024ULL },
2830 { "T", 1024ULL*1024ULL*1024ULL*1024ULL },
2831 { "P", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
2832 { "E", 1024ULL*1024ULL*1024ULL*1024ULL*1024ULL*1024ULL },
2849 l = strtoll(p, &e, 10);
2860 e += strspn(e, WHITESPACE);
2862 for (i = 0; i < ELEMENTSOF(table); i++)
2863 if (startswith(e, table[i].suffix)) {
2864 r += (off_t) l * table[i].factor;
2865 p = e + strlen(table[i].suffix);
2869 if (i >= ELEMENTSOF(table))
2879 int make_stdio(int fd) {
2884 r = dup2(fd, STDIN_FILENO);
2885 s = dup2(fd, STDOUT_FILENO);
2886 t = dup2(fd, STDERR_FILENO);
2889 close_nointr_nofail(fd);
2891 if (r < 0 || s < 0 || t < 0)
2894 fd_cloexec(STDIN_FILENO, false);
2895 fd_cloexec(STDOUT_FILENO, false);
2896 fd_cloexec(STDERR_FILENO, false);
2901 int make_null_stdio(void) {
2904 if ((null_fd = open("/dev/null", O_RDWR|O_NOCTTY)) < 0)
2907 return make_stdio(null_fd);
2910 bool is_device_path(const char *path) {
2912 /* Returns true on paths that refer to a device, either in
2913 * sysfs or in /dev */
2916 path_startswith(path, "/dev/") ||
2917 path_startswith(path, "/sys/");
2920 int dir_is_empty(const char *path) {
2923 struct dirent buf, *de;
2925 if (!(d = opendir(path)))
2929 if ((r = readdir_r(d, &buf, &de)) > 0) {
2939 if (!ignore_file(de->d_name)) {
2949 unsigned long long random_ull(void) {
2954 if ((fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY)) < 0)
2957 r = loop_read(fd, &ull, sizeof(ull), true);
2958 close_nointr_nofail(fd);
2960 if (r != sizeof(ull))
2966 return random() * RAND_MAX + random();
2969 void rename_process(const char name[8]) {
2972 /* This is a like a poor man's setproctitle(). It changes the
2973 * comm field, argv[0], and also the glibc's internally used
2974 * name of the process. For the first one a limit of 16 chars
2975 * applies, to the second one usually one of 10 (i.e. length
2976 * of "/sbin/init"), to the third one one of 7 (i.e. length of
2977 * "systemd"). If you pass a longer string it will be
2980 prctl(PR_SET_NAME, name);
2982 if (program_invocation_name)
2983 strncpy(program_invocation_name, name, strlen(program_invocation_name));
2985 if (saved_argc > 0) {
2989 strncpy(saved_argv[0], name, strlen(saved_argv[0]));
2991 for (i = 1; i < saved_argc; i++) {
2995 memset(saved_argv[i], 0, strlen(saved_argv[i]));
3000 void sigset_add_many(sigset_t *ss, ...) {
3007 while ((sig = va_arg(ap, int)) > 0)
3008 assert_se(sigaddset(ss, sig) == 0);
3012 char* gethostname_malloc(void) {
3015 assert_se(uname(&u) >= 0);
3017 if (!isempty(u.nodename) && !streq(u.nodename, "(none)"))
3018 return strdup(u.nodename);
3020 return strdup(u.sysname);
3023 bool hostname_is_set(void) {
3026 assert_se(uname(&u) >= 0);
3028 return !isempty(u.nodename) && !streq(u.nodename, "(none)");
3031 char* getlogname_malloc(void) {
3035 struct passwd pwbuf, *pw = NULL;
3038 if (isatty(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0)
3043 /* Shortcut things to avoid NSS lookups */
3045 return strdup("root");
3047 if ((bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)) <= 0)
3050 if (!(buf = malloc(bufsize)))
3053 if (getpwuid_r(uid, &pwbuf, buf, bufsize, &pw) == 0 && pw) {
3054 name = strdup(pw->pw_name);
3061 if (asprintf(&name, "%lu", (unsigned long) uid) < 0)
3067 int getttyname_malloc(int fd, char **r) {
3068 char path[PATH_MAX], *c;
3073 if ((k = ttyname_r(fd, path, sizeof(path))) != 0)
3078 if (!(c = strdup(startswith(path, "/dev/") ? path + 5 : path)))
3085 int getttyname_harder(int fd, char **r) {
3089 if ((k = getttyname_malloc(fd, &s)) < 0)
3092 if (streq(s, "tty")) {
3094 return get_ctty(0, NULL, r);
3101 int get_ctty_devnr(pid_t pid, dev_t *d) {
3103 char line[LINE_MAX], *p, *fn;
3104 unsigned long ttynr;
3107 if (asprintf(&fn, "/proc/%lu/stat", (unsigned long) (pid <= 0 ? getpid() : pid)) < 0)
3110 f = fopen(fn, "re");
3115 if (!fgets(line, sizeof(line), f)) {
3116 k = feof(f) ? -EIO : -errno;
3123 p = strrchr(line, ')');
3133 "%*d " /* session */
3142 int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
3144 char fn[PATH_MAX], *s, *b, *p;
3149 k = get_ctty_devnr(pid, &devnr);
3153 snprintf(fn, sizeof(fn), "/dev/char/%u:%u", major(devnr), minor(devnr));
3156 if ((k = readlink_malloc(fn, &s)) < 0) {
3161 /* This is an ugly hack */
3162 if (major(devnr) == 136) {
3163 if (asprintf(&b, "pts/%lu", (unsigned long) minor(devnr)) < 0)
3173 /* Probably something like the ptys which have no
3174 * symlink in /dev/char. Let's return something
3175 * vaguely useful. */
3177 if (!(b = strdup(fn + 5)))
3187 if (startswith(s, "/dev/"))
3189 else if (startswith(s, "../"))
3207 int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev) {
3213 /* This returns the first error we run into, but nevertheless
3214 * tries to go on. This closes the passed fd. */
3218 close_nointr_nofail(fd);
3220 return errno == ENOENT ? 0 : -errno;
3224 struct dirent buf, *de;
3225 bool is_dir, keep_around;
3229 r = readdir_r(d, &buf, &de);
3230 if (r != 0 && ret == 0) {
3238 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
3241 if (de->d_type == DT_UNKNOWN ||
3243 (de->d_type == DT_DIR && root_dev)) {
3244 if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
3245 if (ret == 0 && errno != ENOENT)
3250 is_dir = S_ISDIR(st.st_mode);
3253 (st.st_uid == 0 || st.st_uid == getuid()) &&
3254 (st.st_mode & S_ISVTX);
3256 is_dir = de->d_type == DT_DIR;
3257 keep_around = false;
3263 /* if root_dev is set, remove subdirectories only, if device is same as dir */
3264 if (root_dev && st.st_dev != root_dev->st_dev)
3267 subdir_fd = openat(fd, de->d_name,
3268 O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
3269 if (subdir_fd < 0) {
3270 if (ret == 0 && errno != ENOENT)
3275 r = rm_rf_children(subdir_fd, only_dirs, honour_sticky, root_dev);
3276 if (r < 0 && ret == 0)
3280 if (unlinkat(fd, de->d_name, AT_REMOVEDIR) < 0) {
3281 if (ret == 0 && errno != ENOENT)
3285 } else if (!only_dirs && !keep_around) {
3287 if (unlinkat(fd, de->d_name, 0) < 0) {
3288 if (ret == 0 && errno != ENOENT)
3299 int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
3305 fd = open(path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW|O_NOATIME);
3308 if (errno != ENOTDIR)
3311 if (delete_root && !only_dirs)
3312 if (unlink(path) < 0 && errno != ENOENT)
3318 r = rm_rf_children(fd, only_dirs, honour_sticky, NULL);
3322 if (honour_sticky && file_is_priv_sticky(path) > 0)
3325 if (rmdir(path) < 0 && errno != ENOENT) {
3334 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
3337 /* Under the assumption that we are running privileged we
3338 * first change the access mode and only then hand out
3339 * ownership to avoid a window where access is too open. */
3341 if (mode != (mode_t) -1)
3342 if (chmod(path, mode) < 0)
3345 if (uid != (uid_t) -1 || gid != (gid_t) -1)
3346 if (chown(path, uid, gid) < 0)
3352 int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid) {
3355 /* Under the assumption that we are running privileged we
3356 * first change the access mode and only then hand out
3357 * ownership to avoid a window where access is too open. */
3359 if (fchmod(fd, mode) < 0)
3362 if (fchown(fd, uid, gid) < 0)
3368 cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
3372 /* Allocates the cpuset in the right size */
3375 if (!(r = CPU_ALLOC(n)))
3378 if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), r) >= 0) {
3379 CPU_ZERO_S(CPU_ALLOC_SIZE(n), r);
3389 if (errno != EINVAL)
3396 void status_vprintf(const char *status, bool ellipse, const char *format, va_list ap) {
3398 static const char status_indent[] = " "; /* "[" STATUS "] " */
3400 struct iovec iovec[5];
3405 /* This is independent of logging, as status messages are
3406 * optional and go exclusively to the console. */