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