chiark / gitweb /
7977ee46c57c2051fb25684da1ca757a19257597
[elogind.git] / src / 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 General Public License as published by
10   the Free Software Foundation; either version 2 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   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <assert.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <signal.h>
28 #include <stdio.h>
29 #include <syslog.h>
30 #include <sched.h>
31 #include <sys/resource.h>
32 #include <linux/sched.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <fcntl.h>
36 #include <dirent.h>
37 #include <sys/ioctl.h>
38 #include <linux/vt.h>
39 #include <linux/tiocl.h>
40 #include <termios.h>
41 #include <stdarg.h>
42 #include <sys/inotify.h>
43 #include <sys/poll.h>
44 #include <libgen.h>
45 #include <ctype.h>
46 #include <sys/prctl.h>
47 #include <sys/utsname.h>
48 #include <pwd.h>
49 #include <netinet/ip.h>
50 #include <linux/kd.h>
51 #include <dlfcn.h>
52 #include <sys/wait.h>
53 #include <sys/capability.h>
54 #include <sys/time.h>
55 #include <linux/rtc.h>
56 #include <glob.h>
57 #include <grp.h>
58
59 #include "macro.h"
60 #include "util.h"
61 #include "ioprio.h"
62 #include "missing.h"
63 #include "log.h"
64 #include "strv.h"
65 #include "label.h"
66 #include "exit-status.h"
67 #include "hashmap.h"
68
69 int saved_argc = 0;
70 char **saved_argv = NULL;
71
72 size_t page_size(void) {
73         static __thread size_t pgsz = 0;
74         long r;
75
76         if (_likely_(pgsz))
77                 return pgsz;
78
79         assert_se((r = sysconf(_SC_PAGESIZE)) > 0);
80
81         pgsz = (size_t) r;
82
83         return pgsz;
84 }
85
86 bool streq_ptr(const char *a, const char *b) {
87
88         /* Like streq(), but tries to make sense of NULL pointers */
89
90         if (a && b)
91                 return streq(a, b);
92
93         if (!a && !b)
94                 return true;
95
96         return false;
97 }
98
99 usec_t now(clockid_t clock_id) {
100         struct timespec ts;
101
102         assert_se(clock_gettime(clock_id, &ts) == 0);
103
104         return timespec_load(&ts);
105 }
106
107 dual_timestamp* dual_timestamp_get(dual_timestamp *ts) {
108         assert(ts);
109
110         ts->realtime = now(CLOCK_REALTIME);
111         ts->monotonic = now(CLOCK_MONOTONIC);
112
113         return ts;
114 }
115
116 dual_timestamp* dual_timestamp_from_realtime(dual_timestamp *ts, usec_t u) {
117         int64_t delta;
118         assert(ts);
119
120         ts->realtime = u;
121
122         if (u == 0)
123                 ts->monotonic = 0;
124         else {
125                 delta = (int64_t) now(CLOCK_REALTIME) - (int64_t) u;
126
127                 ts->monotonic = now(CLOCK_MONOTONIC);
128
129                 if ((int64_t) ts->monotonic > delta)
130                         ts->monotonic -= delta;
131                 else
132                         ts->monotonic = 0;
133         }
134
135         return ts;
136 }
137
138 usec_t timespec_load(const struct timespec *ts) {
139         assert(ts);
140
141         return
142                 (usec_t) ts->tv_sec * USEC_PER_SEC +
143                 (usec_t) ts->tv_nsec / NSEC_PER_USEC;
144 }
145
146 struct timespec *timespec_store(struct timespec *ts, usec_t u)  {
147         assert(ts);
148
149         ts->tv_sec = (time_t) (u / USEC_PER_SEC);
150         ts->tv_nsec = (long int) ((u % USEC_PER_SEC) * NSEC_PER_USEC);
151
152         return ts;
153 }
154
155 usec_t timeval_load(const struct timeval *tv) {
156         assert(tv);
157
158         return
159                 (usec_t) tv->tv_sec * USEC_PER_SEC +
160                 (usec_t) tv->tv_usec;
161 }
162
163 struct timeval *timeval_store(struct timeval *tv, usec_t u) {
164         assert(tv);
165
166         tv->tv_sec = (time_t) (u / USEC_PER_SEC);
167         tv->tv_usec = (suseconds_t) (u % USEC_PER_SEC);
168
169         return tv;
170 }
171
172 bool endswith(const char *s, const char *postfix) {
173         size_t sl, pl;
174
175         assert(s);
176         assert(postfix);
177
178         sl = strlen(s);
179         pl = strlen(postfix);
180
181         if (pl == 0)
182                 return true;
183
184         if (sl < pl)
185                 return false;
186
187         return memcmp(s + sl - pl, postfix, pl) == 0;
188 }
189
190 bool startswith(const char *s, const char *prefix) {
191         size_t sl, pl;
192
193         assert(s);
194         assert(prefix);
195
196         sl = strlen(s);
197         pl = strlen(prefix);
198
199         if (pl == 0)
200                 return true;
201
202         if (sl < pl)
203                 return false;
204
205         return memcmp(s, prefix, pl) == 0;
206 }
207
208 bool startswith_no_case(const char *s, const char *prefix) {
209         size_t sl, pl;
210         unsigned i;
211
212         assert(s);
213         assert(prefix);
214
215         sl = strlen(s);
216         pl = strlen(prefix);
217
218         if (pl == 0)
219                 return true;
220
221         if (sl < pl)
222                 return false;
223
224         for(i = 0; i < pl; ++i) {
225                 if (tolower(s[i]) != tolower(prefix[i]))
226                         return false;
227         }
228
229         return true;
230 }
231
232 bool first_word(const char *s, const char *word) {
233         size_t sl, wl;
234
235         assert(s);
236         assert(word);
237
238         sl = strlen(s);
239         wl = strlen(word);
240
241         if (sl < wl)
242                 return false;
243
244         if (wl == 0)
245                 return true;
246
247         if (memcmp(s, word, wl) != 0)
248                 return false;
249
250         return s[wl] == 0 ||
251                 strchr(WHITESPACE, s[wl]);
252 }
253
254 int close_nointr(int fd) {
255         assert(fd >= 0);
256
257         for (;;) {
258                 int r;
259
260                 r = close(fd);
261                 if (r >= 0)
262                         return r;
263
264                 if (errno != EINTR)
265                         return -errno;
266         }
267 }
268
269 void close_nointr_nofail(int fd) {
270         int saved_errno = errno;
271
272         /* like close_nointr() but cannot fail, and guarantees errno
273          * is unchanged */
274
275         assert_se(close_nointr(fd) == 0);
276
277         errno = saved_errno;
278 }
279
280 void close_many(const int fds[], unsigned n_fd) {
281         unsigned i;
282
283         for (i = 0; i < n_fd; i++)
284                 close_nointr_nofail(fds[i]);
285 }
286
287 int parse_boolean(const char *v) {
288         assert(v);
289
290         if (streq(v, "1") || v[0] == 'y' || v[0] == 'Y' || v[0] == 't' || v[0] == 'T' || !strcasecmp(v, "on"))
291                 return 1;
292         else if (streq(v, "0") || v[0] == 'n' || v[0] == 'N' || v[0] == 'f' || v[0] == 'F' || !strcasecmp(v, "off"))
293                 return 0;
294
295         return -EINVAL;
296 }
297
298 int parse_pid(const char *s, pid_t* ret_pid) {
299         unsigned long ul = 0;
300         pid_t pid;
301         int r;
302
303         assert(s);
304         assert(ret_pid);
305
306         if ((r = safe_atolu(s, &ul)) < 0)
307                 return r;
308
309         pid = (pid_t) ul;
310
311         if ((unsigned long) pid != ul)
312                 return -ERANGE;
313
314         if (pid <= 0)
315                 return -ERANGE;
316
317         *ret_pid = pid;
318         return 0;
319 }
320
321 int parse_uid(const char *s, uid_t* ret_uid) {
322         unsigned long ul = 0;
323         uid_t uid;
324         int r;
325
326         assert(s);
327         assert(ret_uid);
328
329         if ((r = safe_atolu(s, &ul)) < 0)
330                 return r;
331
332         uid = (uid_t) ul;
333
334         if ((unsigned long) uid != ul)
335                 return -ERANGE;
336
337         *ret_uid = uid;
338         return 0;
339 }
340
341 int safe_atou(const char *s, unsigned *ret_u) {
342         char *x = NULL;
343         unsigned long l;
344
345         assert(s);
346         assert(ret_u);
347
348         errno = 0;
349         l = strtoul(s, &x, 0);
350
351         if (!x || *x || errno)
352                 return errno ? -errno : -EINVAL;
353
354         if ((unsigned long) (unsigned) l != l)
355                 return -ERANGE;
356
357         *ret_u = (unsigned) l;
358         return 0;
359 }
360
361 int safe_atoi(const char *s, int *ret_i) {
362         char *x = NULL;
363         long l;
364
365         assert(s);
366         assert(ret_i);
367
368         errno = 0;
369         l = strtol(s, &x, 0);
370
371         if (!x || *x || errno)
372                 return errno ? -errno : -EINVAL;
373
374         if ((long) (int) l != l)
375                 return -ERANGE;
376
377         *ret_i = (int) l;
378         return 0;
379 }
380
381 int safe_atollu(const char *s, long long unsigned *ret_llu) {
382         char *x = NULL;
383         unsigned long long l;
384
385         assert(s);
386         assert(ret_llu);
387
388         errno = 0;
389         l = strtoull(s, &x, 0);
390
391         if (!x || *x || errno)
392                 return errno ? -errno : -EINVAL;
393
394         *ret_llu = l;
395         return 0;
396 }
397
398 int safe_atolli(const char *s, long long int *ret_lli) {
399         char *x = NULL;
400         long long l;
401
402         assert(s);
403         assert(ret_lli);
404
405         errno = 0;
406         l = strtoll(s, &x, 0);
407
408         if (!x || *x || errno)
409                 return errno ? -errno : -EINVAL;
410
411         *ret_lli = l;
412         return 0;
413 }
414
415 /* Split a string into words. */
416 char *split(const char *c, size_t *l, const char *separator, char **state) {
417         char *current;
418
419         current = *state ? *state : (char*) c;
420
421         if (!*current || *c == 0)
422                 return NULL;
423
424         current += strspn(current, separator);
425         *l = strcspn(current, separator);
426         *state = current+*l;
427
428         return (char*) current;
429 }
430
431 /* Split a string into words, but consider strings enclosed in '' and
432  * "" as words even if they include spaces. */
433 char *split_quoted(const char *c, size_t *l, char **state) {
434         char *current, *e;
435         bool escaped = false;
436
437         current = *state ? *state : (char*) c;
438
439         if (!*current || *c == 0)
440                 return NULL;
441
442         current += strspn(current, WHITESPACE);
443
444         if (*current == '\'') {
445                 current ++;
446
447                 for (e = current; *e; e++) {
448                         if (escaped)
449                                 escaped = false;
450                         else if (*e == '\\')
451                                 escaped = true;
452                         else if (*e == '\'')
453                                 break;
454                 }
455
456                 *l = e-current;
457                 *state = *e == 0 ? e : e+1;
458         } else if (*current == '\"') {
459                 current ++;
460
461                 for (e = current; *e; e++) {
462                         if (escaped)
463                                 escaped = false;
464                         else if (*e == '\\')
465                                 escaped = true;
466                         else if (*e == '\"')
467                                 break;
468                 }
469
470                 *l = e-current;
471                 *state = *e == 0 ? e : e+1;
472         } else {
473                 for (e = current; *e; e++) {
474                         if (escaped)
475                                 escaped = false;
476                         else if (*e == '\\')
477                                 escaped = true;
478                         else if (strchr(WHITESPACE, *e))
479                                 break;
480                 }
481                 *l = e-current;
482                 *state = e;
483         }
484
485         return (char*) current;
486 }
487
488 char **split_path_and_make_absolute(const char *p) {
489         char **l;
490         assert(p);
491
492         if (!(l = strv_split(p, ":")))
493                 return NULL;
494
495         if (!strv_path_make_absolute_cwd(l)) {
496                 strv_free(l);
497                 return NULL;
498         }
499
500         return l;
501 }
502
503 int get_parent_of_pid(pid_t pid, pid_t *_ppid) {
504         int r;
505         FILE *f;
506         char fn[PATH_MAX], line[LINE_MAX], *p;
507         long unsigned ppid;
508
509         assert(pid > 0);
510         assert(_ppid);
511
512         assert_se(snprintf(fn, sizeof(fn)-1, "/proc/%lu/stat", (unsigned long) pid) < (int) (sizeof(fn)-1));
513         char_array_0(fn);
514
515         if (!(f = fopen(fn, "re")))
516                 return -errno;
517
518         if (!(fgets(line, sizeof(line), f))) {
519                 r = -errno;
520                 fclose(f);
521                 return r;
522         }
523
524         fclose(f);
525
526         /* Let's skip the pid and comm fields. The latter is enclosed
527          * in () but does not escape any () in its value, so let's
528          * skip over it manually */
529
530         if (!(p = strrchr(line, ')')))
531                 return -EIO;
532
533         p++;
534
535         if (sscanf(p, " "
536                    "%*c "  /* state */
537                    "%lu ", /* ppid */
538                    &ppid) != 1)
539                 return -EIO;
540
541         if ((long unsigned) (pid_t) ppid != ppid)
542                 return -ERANGE;
543
544         *_ppid = (pid_t) ppid;
545
546         return 0;
547 }
548
549 int get_starttime_of_pid(pid_t pid, unsigned long long *st) {
550         int r;
551         FILE *f;
552         char fn[PATH_MAX], line[LINE_MAX], *p;
553
554         assert(pid > 0);
555         assert(st);
556
557         assert_se(snprintf(fn, sizeof(fn)-1, "/proc/%lu/stat", (unsigned long) pid) < (int) (sizeof(fn)-1));
558         char_array_0(fn);
559
560         if (!(f = fopen(fn, "re")))
561                 return -errno;
562
563         if (!(fgets(line, sizeof(line), f))) {
564                 r = -errno;
565                 fclose(f);
566                 return r;
567         }
568
569         fclose(f);
570
571         /* Let's skip the pid and comm fields. The latter is enclosed
572          * in () but does not escape any () in its value, so let's
573          * skip over it manually */
574
575         if (!(p = strrchr(line, ')')))
576                 return -EIO;
577
578         p++;
579
580         if (sscanf(p, " "
581                    "%*c "  /* state */
582                    "%*d "  /* ppid */
583                    "%*d "  /* pgrp */
584                    "%*d "  /* session */
585                    "%*d "  /* tty_nr */
586                    "%*d "  /* tpgid */
587                    "%*u "  /* flags */
588                    "%*u "  /* minflt */
589                    "%*u "  /* cminflt */
590                    "%*u "  /* majflt */
591                    "%*u "  /* cmajflt */
592                    "%*u "  /* utime */
593                    "%*u "  /* stime */
594                    "%*d "  /* cutime */
595                    "%*d "  /* cstime */
596                    "%*d "  /* priority */
597                    "%*d "  /* nice */
598                    "%*d "  /* num_threads */
599                    "%*d "  /* itrealvalue */
600                    "%llu "  /* starttime */,
601                    st) != 1)
602                 return -EIO;
603
604         return 0;
605 }
606
607 int write_one_line_file(const char *fn, const char *line) {
608         FILE *f;
609         int r;
610
611         assert(fn);
612         assert(line);
613
614         if (!(f = fopen(fn, "we")))
615                 return -errno;
616
617         errno = 0;
618         if (fputs(line, f) < 0) {
619                 r = -errno;
620                 goto finish;
621         }
622
623         if (!endswith(line, "\n"))
624                 fputc('\n', f);
625
626         fflush(f);
627
628         if (ferror(f)) {
629                 if (errno != 0)
630                         r = -errno;
631                 else
632                         r = -EIO;
633         } else
634                 r = 0;
635
636 finish:
637         fclose(f);
638         return r;
639 }
640
641 int fchmod_umask(int fd, mode_t m) {
642         mode_t u;
643         int r;
644
645         u = umask(0777);
646         r = fchmod(fd, m & (~u)) < 0 ? -errno : 0;
647         umask(u);
648
649         return r;
650 }
651
652 int write_one_line_file_atomic(const char *fn, const char *line) {
653         FILE *f;
654         int r;
655         char *p;
656
657         assert(fn);
658         assert(line);
659
660         r = fopen_temporary(fn, &f, &p);
661         if (r < 0)
662                 return r;
663
664         fchmod_umask(fileno(f), 0644);
665
666         errno = 0;
667         if (fputs(line, f) < 0) {
668                 r = -errno;
669                 goto finish;
670         }
671
672         if (!endswith(line, "\n"))
673                 fputc('\n', f);
674
675         fflush(f);
676
677         if (ferror(f)) {
678                 if (errno != 0)
679                         r = -errno;
680                 else
681                         r = -EIO;
682         } else {
683                 if (rename(p, fn) < 0)
684                         r = -errno;
685                 else
686                         r = 0;
687         }
688
689 finish:
690         if (r < 0)
691                 unlink(p);
692
693         fclose(f);
694         free(p);
695
696         return r;
697 }
698
699 int read_one_line_file(const char *fn, char **line) {
700         FILE *f;
701         int r;
702         char t[LINE_MAX], *c;
703
704         assert(fn);
705         assert(line);
706
707         if (!(f = fopen(fn, "re")))
708                 return -errno;
709
710         if (!(fgets(t, sizeof(t), f))) {
711                 r = -errno;
712                 goto finish;
713         }
714
715         if (!(c = strdup(t))) {
716                 r = -ENOMEM;
717                 goto finish;
718         }
719
720         truncate_nl(c);
721
722         *line = c;
723         r = 0;
724
725 finish:
726         fclose(f);
727         return r;
728 }
729
730 int read_full_file(const char *fn, char **contents, size_t *size) {
731         FILE *f;
732         int r;
733         size_t n, l;
734         char *buf = NULL;
735         struct stat st;
736
737         if (!(f = fopen(fn, "re")))
738                 return -errno;
739
740         if (fstat(fileno(f), &st) < 0) {
741                 r = -errno;
742                 goto finish;
743         }
744
745         /* Safety check */
746         if (st.st_size > 4*1024*1024) {
747                 r = -E2BIG;
748                 goto finish;
749         }
750
751         n = st.st_size > 0 ? st.st_size : LINE_MAX;
752         l = 0;
753
754         for (;;) {
755                 char *t;
756                 size_t k;
757
758                 if (!(t = realloc(buf, n+1))) {
759                         r = -ENOMEM;
760                         goto finish;
761                 }
762
763                 buf = t;
764                 k = fread(buf + l, 1, n - l, f);
765
766                 if (k <= 0) {
767                         if (ferror(f)) {
768                                 r = -errno;
769                                 goto finish;
770                         }
771
772                         break;
773                 }
774
775                 l += k;
776                 n *= 2;
777
778                 /* Safety check */
779                 if (n > 4*1024*1024) {
780                         r = -E2BIG;
781                         goto finish;
782                 }
783         }
784
785         buf[l] = 0;
786         *contents = buf;
787         buf = NULL;
788
789         if (size)
790                 *size = l;
791
792         r = 0;
793
794 finish:
795         fclose(f);
796         free(buf);
797
798         return r;
799 }
800
801 int parse_env_file(
802                 const char *fname,
803                 const char *separator, ...) {
804
805         int r = 0;
806         char *contents = NULL, *p;
807
808         assert(fname);
809         assert(separator);
810
811         if ((r = read_full_file(fname, &contents, NULL)) < 0)
812                 return r;
813
814         p = contents;
815         for (;;) {
816                 const char *key = NULL;
817
818                 p += strspn(p, separator);
819                 p += strspn(p, WHITESPACE);
820
821                 if (!*p)
822                         break;
823
824                 if (!strchr(COMMENTS, *p)) {
825                         va_list ap;
826                         char **value;
827
828                         va_start(ap, separator);
829                         while ((key = va_arg(ap, char *))) {
830                                 size_t n;
831                                 char *v;
832
833                                 value = va_arg(ap, char **);
834
835                                 n = strlen(key);
836                                 if (strncmp(p, key, n) != 0 ||
837                                     p[n] != '=')
838                                         continue;
839
840                                 p += n + 1;
841                                 n = strcspn(p, separator);
842
843                                 if (n >= 2 &&
844                                     strchr(QUOTES, p[0]) &&
845                                     p[n-1] == p[0])
846                                         v = strndup(p+1, n-2);
847                                 else
848                                         v = strndup(p, n);
849
850                                 if (!v) {
851                                         r = -ENOMEM;
852                                         va_end(ap);
853                                         goto fail;
854                                 }
855
856                                 if (v[0] == '\0') {
857                                         /* return empty value strings as NULL */
858                                         free(v);
859                                         v = NULL;
860                                 }
861
862                                 free(*value);
863                                 *value = v;
864
865                                 p += n;
866
867                                 r ++;
868                                 break;
869                         }
870                         va_end(ap);
871                 }
872
873                 if (!key)
874                         p += strcspn(p, separator);
875         }
876
877 fail:
878         free(contents);
879         return r;
880 }
881
882 int load_env_file(
883                 const char *fname,
884                 char ***rl) {
885
886         FILE *f;
887         char **m = 0;
888         int r;
889
890         assert(fname);
891         assert(rl);
892
893         if (!(f = fopen(fname, "re")))
894                 return -errno;
895
896         while (!feof(f)) {
897                 char l[LINE_MAX], *p, *u;
898                 char **t;
899
900                 if (!fgets(l, sizeof(l), f)) {
901                         if (feof(f))
902                                 break;
903
904                         r = -errno;
905                         goto finish;
906                 }
907
908                 p = strstrip(l);
909
910                 if (!*p)
911                         continue;
912
913                 if (strchr(COMMENTS, *p))
914                         continue;
915
916                 if (!(u = normalize_env_assignment(p))) {
917                         log_error("Out of memory");
918                         r = -ENOMEM;
919                         goto finish;
920                 }
921
922                 t = strv_append(m, u);
923                 free(u);
924
925                 if (!t) {
926                         log_error("Out of memory");
927                         r = -ENOMEM;
928                         goto finish;
929                 }
930
931                 strv_free(m);
932                 m = t;
933         }
934
935         r = 0;
936
937         *rl = m;
938         m = NULL;
939
940 finish:
941         if (f)
942                 fclose(f);
943
944         strv_free(m);
945
946         return r;
947 }
948
949 int write_env_file(const char *fname, char **l) {
950         char **i, *p;
951         FILE *f;
952         int r;
953
954         r = fopen_temporary(fname, &f, &p);
955         if (r < 0)
956                 return r;
957
958         fchmod_umask(fileno(f), 0644);
959
960         errno = 0;
961         STRV_FOREACH(i, l) {
962                 fputs(*i, f);
963                 fputc('\n', f);
964         }
965
966         fflush(f);
967
968         if (ferror(f)) {
969                 if (errno != 0)
970                         r = -errno;
971                 else
972                         r = -EIO;
973         } else {
974                 if (rename(p, fname) < 0)
975                         r = -errno;
976                 else
977                         r = 0;
978         }
979
980         if (r < 0)
981                 unlink(p);
982
983         fclose(f);
984         free(p);
985
986         return r;
987 }
988
989 char *truncate_nl(char *s) {
990         assert(s);
991
992         s[strcspn(s, NEWLINE)] = 0;
993         return s;
994 }
995
996 int get_process_name(pid_t pid, char **name) {
997         char *p;
998         int r;
999
1000         assert(pid >= 1);
1001         assert(name);
1002
1003         if (asprintf(&p, "/proc/%lu/comm", (unsigned long) pid) < 0)
1004                 return -ENOMEM;
1005
1006         r = read_one_line_file(p, name);
1007         free(p);
1008
1009         if (r < 0)
1010                 return r;
1011
1012         return 0;
1013 }
1014
1015 int get_process_cmdline(pid_t pid, size_t max_length, char **line) {
1016         char *p, *r, *k;
1017         int c;
1018         bool space = false;
1019         size_t left;
1020         FILE *f;
1021
1022         assert(pid >= 1);
1023         assert(max_length > 0);
1024         assert(line);
1025
1026         if (asprintf(&p, "/proc/%lu/cmdline", (unsigned long) pid) < 0)
1027                 return -ENOMEM;
1028
1029         f = fopen(p, "re");
1030         free(p);
1031
1032         if (!f)
1033                 return -errno;
1034
1035         if (!(r = new(char, max_length))) {
1036                 fclose(f);
1037                 return -ENOMEM;
1038         }
1039
1040         k = r;
1041         left = max_length;
1042         while ((c = getc(f)) != EOF) {
1043
1044                 if (isprint(c)) {
1045                         if (space) {
1046                                 if (left <= 4)
1047                                         break;
1048
1049                                 *(k++) = ' ';
1050                                 left--;
1051                                 space = false;
1052                         }
1053
1054                         if (left <= 4)
1055                                 break;
1056
1057                         *(k++) = (char) c;
1058                         left--;
1059                 }  else
1060                         space = true;
1061         }
1062
1063         if (left <= 4) {
1064                 size_t n = MIN(left-1, 3U);
1065                 memcpy(k, "...", n);
1066                 k[n] = 0;
1067         } else
1068                 *k = 0;
1069
1070         fclose(f);
1071
1072         /* Kernel threads have no argv[] */
1073         if (r[0] == 0) {
1074                 char *t;
1075                 int h;
1076
1077                 free(r);
1078
1079                 if ((h = get_process_name(pid, &t)) < 0)
1080                         return h;
1081
1082                 h = asprintf(&r, "[%s]", t);
1083                 free(t);
1084
1085                 if (h < 0)
1086                         return -ENOMEM;
1087         }
1088
1089         *line = r;
1090         return 0;
1091 }
1092
1093 char *strnappend(const char *s, const char *suffix, size_t b) {
1094         size_t a;
1095         char *r;
1096
1097         if (!s && !suffix)
1098                 return strdup("");
1099
1100         if (!s)
1101                 return strndup(suffix, b);
1102
1103         if (!suffix)
1104                 return strdup(s);
1105
1106         assert(s);
1107         assert(suffix);
1108
1109         a = strlen(s);
1110
1111         if (!(r = new(char, a+b+1)))
1112                 return NULL;
1113
1114         memcpy(r, s, a);
1115         memcpy(r+a, suffix, b);
1116         r[a+b] = 0;
1117
1118         return r;
1119 }
1120
1121 char *strappend(const char *s, const char *suffix) {
1122         return strnappend(s, suffix, suffix ? strlen(suffix) : 0);
1123 }
1124
1125 int readlink_malloc(const char *p, char **r) {
1126         size_t l = 100;
1127
1128         assert(p);
1129         assert(r);
1130
1131         for (;;) {
1132                 char *c;
1133                 ssize_t n;
1134
1135                 if (!(c = new(char, l)))
1136                         return -ENOMEM;
1137
1138                 if ((n = readlink(p, c, l-1)) < 0) {
1139                         int ret = -errno;
1140                         free(c);
1141                         return ret;
1142                 }
1143
1144                 if ((size_t) n < l-1) {
1145                         c[n] = 0;
1146                         *r = c;
1147                         return 0;
1148                 }
1149
1150                 free(c);
1151                 l *= 2;
1152         }
1153 }
1154
1155 int readlink_and_make_absolute(const char *p, char **r) {
1156         char *target, *k;
1157         int j;
1158
1159         assert(p);
1160         assert(r);
1161
1162         if ((j = readlink_malloc(p, &target)) < 0)
1163                 return j;
1164
1165         k = file_in_same_dir(p, target);
1166         free(target);
1167
1168         if (!k)
1169                 return -ENOMEM;
1170
1171         *r = k;
1172         return 0;
1173 }
1174
1175 int readlink_and_canonicalize(const char *p, char **r) {
1176         char *t, *s;
1177         int j;
1178
1179         assert(p);
1180         assert(r);
1181
1182         j = readlink_and_make_absolute(p, &t);
1183         if (j < 0)
1184                 return j;
1185
1186         s = canonicalize_file_name(t);
1187         if (s) {
1188                 free(t);
1189                 *r = s;
1190         } else
1191                 *r = t;
1192
1193         path_kill_slashes(*r);
1194
1195         return 0;
1196 }
1197
1198 int parent_of_path(const char *path, char **_r) {
1199         const char *e, *a = NULL, *b = NULL, *p;
1200         char *r;
1201         bool slash = false;
1202
1203         assert(path);
1204         assert(_r);
1205
1206         if (!*path)
1207                 return -EINVAL;
1208
1209         for (e = path; *e; e++) {
1210
1211                 if (!slash && *e == '/') {
1212                         a = b;
1213                         b = e;
1214                         slash = true;
1215                 } else if (slash && *e != '/')
1216                         slash = false;
1217         }
1218
1219         if (*(e-1) == '/')
1220                 p = a;
1221         else
1222                 p = b;
1223
1224         if (!p)
1225                 return -EINVAL;
1226
1227         if (p == path)
1228                 r = strdup("/");
1229         else
1230                 r = strndup(path, p-path);
1231
1232         if (!r)
1233                 return -ENOMEM;
1234
1235         *_r = r;
1236         return 0;
1237 }
1238
1239
1240 char *file_name_from_path(const char *p) {
1241         char *r;
1242
1243         assert(p);
1244
1245         if ((r = strrchr(p, '/')))
1246                 return r + 1;
1247
1248         return (char*) p;
1249 }
1250
1251 bool path_is_absolute(const char *p) {
1252         assert(p);
1253
1254         return p[0] == '/';
1255 }
1256
1257 bool is_path(const char *p) {
1258
1259         return !!strchr(p, '/');
1260 }
1261
1262 char *path_make_absolute(const char *p, const char *prefix) {
1263         assert(p);
1264
1265         /* Makes every item in the list an absolute path by prepending
1266          * the prefix, if specified and necessary */
1267
1268         if (path_is_absolute(p) || !prefix)
1269                 return strdup(p);
1270
1271         return join(prefix, "/", p, NULL);
1272 }
1273
1274 char *path_make_absolute_cwd(const char *p) {
1275         char *cwd, *r;
1276
1277         assert(p);
1278
1279         /* Similar to path_make_absolute(), but prefixes with the
1280          * current working directory. */
1281
1282         if (path_is_absolute(p))
1283                 return strdup(p);
1284
1285         if (!(cwd = get_current_dir_name()))
1286                 return NULL;
1287
1288         r = path_make_absolute(p, cwd);
1289         free(cwd);
1290
1291         return r;
1292 }
1293
1294 char **strv_path_make_absolute_cwd(char **l) {
1295         char **s;
1296
1297         /* Goes through every item in the string list and makes it
1298          * absolute. This works in place and won't rollback any
1299          * changes on failure. */
1300
1301         STRV_FOREACH(s, l) {
1302                 char *t;
1303
1304                 if (!(t = path_make_absolute_cwd(*s)))
1305                         return NULL;
1306
1307                 free(*s);
1308                 *s = t;
1309         }
1310
1311         return l;
1312 }
1313
1314 char **strv_path_canonicalize(char **l) {
1315         char **s;
1316         unsigned k = 0;
1317         bool enomem = false;
1318
1319         if (strv_isempty(l))
1320                 return l;
1321
1322         /* Goes through every item in the string list and canonicalize
1323          * the path. This works in place and won't rollback any
1324          * changes on failure. */
1325
1326         STRV_FOREACH(s, l) {
1327                 char *t, *u;
1328
1329                 t = path_make_absolute_cwd(*s);
1330                 free(*s);
1331
1332                 if (!t) {
1333                         enomem = true;
1334                         continue;
1335                 }
1336
1337                 errno = 0;
1338                 u = canonicalize_file_name(t);
1339                 free(t);
1340
1341                 if (!u) {
1342                         if (errno == ENOMEM || !errno)
1343                                 enomem = true;
1344
1345                         continue;
1346                 }
1347
1348                 l[k++] = u;
1349         }
1350
1351         l[k] = NULL;
1352
1353         if (enomem)
1354                 return NULL;
1355
1356         return l;
1357 }
1358
1359 char **strv_path_remove_empty(char **l) {
1360         char **f, **t;
1361
1362         if (!l)
1363                 return NULL;
1364
1365         for (f = t = l; *f; f++) {
1366
1367                 if (dir_is_empty(*f) > 0) {
1368                         free(*f);
1369                         continue;
1370                 }
1371
1372                 *(t++) = *f;
1373         }
1374
1375         *t = NULL;
1376         return l;
1377 }
1378
1379 int reset_all_signal_handlers(void) {
1380         int sig;
1381
1382         for (sig = 1; sig < _NSIG; sig++) {
1383                 struct sigaction sa;
1384
1385                 if (sig == SIGKILL || sig == SIGSTOP)
1386                         continue;
1387
1388                 zero(sa);
1389                 sa.sa_handler = SIG_DFL;
1390                 sa.sa_flags = SA_RESTART;
1391
1392                 /* On Linux the first two RT signals are reserved by
1393                  * glibc, and sigaction() will return EINVAL for them. */
1394                 if ((sigaction(sig, &sa, NULL) < 0))
1395                         if (errno != EINVAL)
1396                                 return -errno;
1397         }
1398
1399         return 0;
1400 }
1401
1402 char *strstrip(char *s) {
1403         char *e;
1404
1405         /* Drops trailing whitespace. Modifies the string in
1406          * place. Returns pointer to first non-space character */
1407
1408         s += strspn(s, WHITESPACE);
1409
1410         for (e = strchr(s, 0); e > s; e --)
1411                 if (!strchr(WHITESPACE, e[-1]))
1412                         break;
1413
1414         *e = 0;
1415
1416         return s;
1417 }
1418
1419 char *delete_chars(char *s, const char *bad) {
1420         char *f, *t;
1421
1422         /* Drops all whitespace, regardless where in the string */
1423
1424         for (f = s, t = s; *f; f++) {
1425                 if (strchr(bad, *f))
1426                         continue;
1427
1428                 *(t++) = *f;
1429         }
1430
1431         *t = 0;
1432
1433         return s;
1434 }
1435
1436 bool in_charset(const char *s, const char* charset) {
1437         const char *i;
1438
1439         assert(s);
1440         assert(charset);
1441
1442         for (i = s; *i; i++)
1443                 if (!strchr(charset, *i))
1444                         return false;
1445
1446         return true;
1447 }
1448
1449 char *file_in_same_dir(const char *path, const char *filename) {
1450         char *e, *r;
1451         size_t k;
1452
1453         assert(path);
1454         assert(filename);
1455
1456         /* This removes the last component of path and appends
1457          * filename, unless the latter is absolute anyway or the
1458          * former isn't */
1459
1460         if (path_is_absolute(filename))
1461                 return strdup(filename);
1462
1463         if (!(e = strrchr(path, '/')))
1464                 return strdup(filename);
1465
1466         k = strlen(filename);
1467         if (!(r = new(char, e-path+1+k+1)))
1468                 return NULL;
1469
1470         memcpy(r, path, e-path+1);
1471         memcpy(r+(e-path)+1, filename, k+1);
1472
1473         return r;
1474 }
1475
1476 int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid) {
1477         struct stat st;
1478
1479         if (label_mkdir(path, mode) >= 0)
1480                 if (chmod_and_chown(path, mode, uid, gid) < 0)
1481                         return -errno;
1482
1483         if (lstat(path, &st) < 0)
1484                 return -errno;
1485
1486         if ((st.st_mode & 0777) != mode ||
1487             st.st_uid != uid ||
1488             st.st_gid != gid ||
1489             !S_ISDIR(st.st_mode)) {
1490                 errno = EEXIST;
1491                 return -errno;
1492         }
1493
1494         return 0;
1495 }
1496
1497
1498 int mkdir_parents(const char *path, mode_t mode) {
1499         const char *p, *e;
1500
1501         assert(path);
1502
1503         /* Creates every parent directory in the path except the last
1504          * component. */
1505
1506         p = path + strspn(path, "/");
1507         for (;;) {
1508                 int r;
1509                 char *t;
1510
1511                 e = p + strcspn(p, "/");
1512                 p = e + strspn(e, "/");
1513
1514                 /* Is this the last component? If so, then we're
1515                  * done */
1516                 if (*p == 0)
1517                         return 0;
1518
1519                 if (!(t = strndup(path, e - path)))
1520                         return -ENOMEM;
1521
1522                 r = label_mkdir(t, mode);
1523                 free(t);
1524
1525                 if (r < 0 && errno != EEXIST)
1526                         return -errno;
1527         }
1528 }
1529
1530 int mkdir_p(const char *path, mode_t mode) {
1531         int r;
1532
1533         /* Like mkdir -p */
1534
1535         if ((r = mkdir_parents(path, mode)) < 0)
1536                 return r;
1537
1538         if (label_mkdir(path, mode) < 0 && errno != EEXIST)
1539                 return -errno;
1540
1541         return 0;
1542 }
1543
1544 int rmdir_parents(const char *path, const char *stop) {
1545         size_t l;
1546         int r = 0;
1547
1548         assert(path);
1549         assert(stop);
1550
1551         l = strlen(path);
1552
1553         /* Skip trailing slashes */
1554         while (l > 0 && path[l-1] == '/')
1555                 l--;
1556
1557         while (l > 0) {
1558                 char *t;
1559
1560                 /* Skip last component */
1561                 while (l > 0 && path[l-1] != '/')
1562                         l--;
1563
1564                 /* Skip trailing slashes */
1565                 while (l > 0 && path[l-1] == '/')
1566                         l--;
1567
1568                 if (l <= 0)
1569                         break;
1570
1571                 if (!(t = strndup(path, l)))
1572                         return -ENOMEM;
1573
1574                 if (path_startswith(stop, t)) {
1575                         free(t);
1576                         return 0;
1577                 }
1578
1579                 r = rmdir(t);
1580                 free(t);
1581
1582                 if (r < 0)
1583                         if (errno != ENOENT)
1584                                 return -errno;
1585         }
1586
1587         return 0;
1588 }
1589
1590
1591 char hexchar(int x) {
1592         static const char table[16] = "0123456789abcdef";
1593
1594         return table[x & 15];
1595 }
1596
1597 int unhexchar(char c) {
1598
1599         if (c >= '0' && c <= '9')
1600                 return c - '0';
1601
1602         if (c >= 'a' && c <= 'f')
1603                 return c - 'a' + 10;
1604
1605         if (c >= 'A' && c <= 'F')
1606                 return c - 'A' + 10;
1607
1608         return -1;
1609 }
1610
1611 char octchar(int x) {
1612         return '0' + (x & 7);
1613 }
1614
1615 int unoctchar(char c) {
1616
1617         if (c >= '0' && c <= '7')
1618                 return c - '0';
1619
1620         return -1;
1621 }
1622
1623 char decchar(int x) {
1624         return '0' + (x % 10);
1625 }
1626
1627 int undecchar(char c) {
1628
1629         if (c >= '0' && c <= '9')
1630                 return c - '0';
1631
1632         return -1;
1633 }
1634
1635 char *cescape(const char *s) {
1636         char *r, *t;
1637         const char *f;
1638
1639         assert(s);
1640
1641         /* Does C style string escaping. */
1642
1643         if (!(r = new(char, strlen(s)*4 + 1)))
1644                 return NULL;
1645
1646         for (f = s, t = r; *f; f++)
1647
1648                 switch (*f) {
1649
1650                 case '\a':
1651                         *(t++) = '\\';
1652                         *(t++) = 'a';
1653                         break;
1654                 case '\b':
1655                         *(t++) = '\\';
1656                         *(t++) = 'b';
1657                         break;
1658                 case '\f':
1659                         *(t++) = '\\';
1660                         *(t++) = 'f';
1661                         break;
1662                 case '\n':
1663                         *(t++) = '\\';
1664                         *(t++) = 'n';
1665                         break;
1666                 case '\r':
1667                         *(t++) = '\\';
1668                         *(t++) = 'r';
1669                         break;
1670                 case '\t':
1671                         *(t++) = '\\';
1672                         *(t++) = 't';
1673                         break;
1674                 case '\v':
1675                         *(t++) = '\\';
1676                         *(t++) = 'v';
1677                         break;
1678                 case '\\':
1679                         *(t++) = '\\';
1680                         *(t++) = '\\';
1681                         break;
1682                 case '"':
1683                         *(t++) = '\\';
1684                         *(t++) = '"';
1685                         break;
1686                 case '\'':
1687                         *(t++) = '\\';
1688                         *(t++) = '\'';
1689                         break;
1690
1691                 default:
1692                         /* For special chars we prefer octal over
1693                          * hexadecimal encoding, simply because glib's
1694                          * g_strescape() does the same */
1695                         if ((*f < ' ') || (*f >= 127)) {
1696                                 *(t++) = '\\';
1697                                 *(t++) = octchar((unsigned char) *f >> 6);
1698                                 *(t++) = octchar((unsigned char) *f >> 3);
1699                                 *(t++) = octchar((unsigned char) *f);
1700                         } else
1701                                 *(t++) = *f;
1702                         break;
1703                 }
1704
1705         *t = 0;
1706
1707         return r;
1708 }
1709
1710 char *cunescape_length(const char *s, size_t length) {
1711         char *r, *t;
1712         const char *f;
1713
1714         assert(s);
1715
1716         /* Undoes C style string escaping */
1717
1718         if (!(r = new(char, length+1)))
1719                 return r;
1720
1721         for (f = s, t = r; f < s + length; f++) {
1722
1723                 if (*f != '\\') {
1724                         *(t++) = *f;
1725                         continue;
1726                 }
1727
1728                 f++;
1729
1730                 switch (*f) {
1731
1732                 case 'a':
1733                         *(t++) = '\a';
1734                         break;
1735                 case 'b':
1736                         *(t++) = '\b';
1737                         break;
1738                 case 'f':
1739                         *(t++) = '\f';
1740                         break;
1741                 case 'n':
1742                         *(t++) = '\n';
1743                         break;
1744                 case 'r':
1745                         *(t++) = '\r';
1746                         break;
1747                 case 't':
1748                         *(t++) = '\t';
1749                         break;
1750                 case 'v':
1751                         *(t++) = '\v';
1752                         break;
1753                 case '\\':
1754                         *(t++) = '\\';
1755                         break;
1756                 case '"':
1757                         *(t++) = '"';
1758                         break;
1759                 case '\'':
1760                         *(t++) = '\'';
1761                         break;
1762
1763                 case 's':
1764                         /* This is an extension of the XDG syntax files */
1765                         *(t++) = ' ';
1766                         break;
1767
1768                 case 'x': {
1769                         /* hexadecimal encoding */
1770                         int a, b;
1771
1772                         if ((a = unhexchar(f[1])) < 0 ||
1773                             (b = unhexchar(f[2])) < 0) {
1774                                 /* Invalid escape code, let's take it literal then */
1775                                 *(t++) = '\\';
1776                                 *(t++) = 'x';
1777                         } else {
1778                                 *(t++) = (char) ((a << 4) | b);
1779                                 f += 2;
1780                         }
1781
1782                         break;
1783                 }
1784
1785                 case '0':
1786                 case '1':
1787                 case '2':
1788                 case '3':
1789                 case '4':
1790                 case '5':
1791                 case '6':
1792                 case '7': {
1793                         /* octal encoding */
1794                         int a, b, c;
1795
1796                         if ((a = unoctchar(f[0])) < 0 ||
1797                             (b = unoctchar(f[1])) < 0 ||
1798                             (c = unoctchar(f[2])) < 0) {
1799                                 /* Invalid escape code, let's take it literal then */
1800                                 *(t++) = '\\';
1801                                 *(t++) = f[0];
1802                         } else {
1803                                 *(t++) = (char) ((a << 6) | (b << 3) | c);
1804                                 f += 2;
1805                         }
1806
1807                         break;
1808                 }
1809
1810                 case 0:
1811                         /* premature end of string.*/
1812                         *(t++) = '\\';
1813                         goto finish;
1814
1815                 default:
1816                         /* Invalid escape code, let's take it literal then */
1817                         *(t++) = '\\';
1818                         *(t++) = *f;
1819                         break;
1820                 }
1821         }
1822
1823 finish:
1824         *t = 0;
1825         return r;
1826 }
1827
1828 char *cunescape(const char *s) {
1829         return cunescape_length(s, strlen(s));
1830 }
1831
1832 char *xescape(const char *s, const char *bad) {
1833         char *r, *t;
1834         const char *f;
1835
1836         /* Escapes all chars in bad, in addition to \ and all special
1837          * chars, in \xFF style escaping. May be reversed with
1838          * cunescape. */
1839
1840         if (!(r = new(char, strlen(s)*4+1)))
1841                 return NULL;
1842
1843         for (f = s, t = r; *f; f++) {
1844
1845                 if ((*f < ' ') || (*f >= 127) ||
1846                     (*f == '\\') || strchr(bad, *f)) {
1847                         *(t++) = '\\';
1848                         *(t++) = 'x';
1849                         *(t++) = hexchar(*f >> 4);
1850                         *(t++) = hexchar(*f);
1851                 } else
1852                         *(t++) = *f;
1853         }
1854
1855         *t = 0;
1856
1857         return r;
1858 }
1859
1860 char *bus_path_escape(const char *s) {
1861         char *r, *t;
1862         const char *f;
1863
1864         assert(s);
1865
1866         /* Escapes all chars that D-Bus' object path cannot deal
1867          * with. Can be reverse with bus_path_unescape() */
1868
1869         if (!(r = new(char, strlen(s)*3+1)))
1870                 return NULL;
1871
1872         for (f = s, t = r; *f; f++) {
1873
1874                 if (!(*f >= 'A' && *f <= 'Z') &&
1875                     !(*f >= 'a' && *f <= 'z') &&
1876                     !(*f >= '0' && *f <= '9')) {
1877                         *(t++) = '_';
1878                         *(t++) = hexchar(*f >> 4);
1879                         *(t++) = hexchar(*f);
1880                 } else
1881                         *(t++) = *f;
1882         }
1883
1884         *t = 0;
1885
1886         return r;
1887 }
1888
1889 char *bus_path_unescape(const char *f) {
1890         char *r, *t;
1891
1892         assert(f);
1893
1894         if (!(r = strdup(f)))
1895                 return NULL;
1896
1897         for (t = r; *f; f++) {
1898
1899                 if (*f == '_') {
1900                         int a, b;
1901
1902                         if ((a = unhexchar(f[1])) < 0 ||
1903                             (b = unhexchar(f[2])) < 0) {
1904                                 /* Invalid escape code, let's take it literal then */
1905                                 *(t++) = '_';
1906                         } else {
1907                                 *(t++) = (char) ((a << 4) | b);
1908                                 f += 2;
1909                         }
1910                 } else
1911                         *(t++) = *f;
1912         }
1913
1914         *t = 0;
1915
1916         return r;
1917 }
1918
1919 char *path_kill_slashes(char *path) {
1920         char *f, *t;
1921         bool slash = false;
1922
1923         /* Removes redundant inner and trailing slashes. Modifies the
1924          * passed string in-place.
1925          *
1926          * ///foo///bar/ becomes /foo/bar
1927          */
1928
1929         for (f = path, t = path; *f; f++) {
1930
1931                 if (*f == '/') {
1932                         slash = true;
1933                         continue;
1934                 }
1935
1936                 if (slash) {
1937                         slash = false;
1938                         *(t++) = '/';
1939                 }
1940
1941                 *(t++) = *f;
1942         }
1943
1944         /* Special rule, if we are talking of the root directory, a
1945         trailing slash is good */
1946
1947         if (t == path && slash)
1948                 *(t++) = '/';
1949
1950         *t = 0;
1951         return path;
1952 }
1953
1954 bool path_startswith(const char *path, const char *prefix) {
1955         assert(path);
1956         assert(prefix);
1957
1958         if ((path[0] == '/') != (prefix[0] == '/'))
1959                 return false;
1960
1961         for (;;) {
1962                 size_t a, b;
1963
1964                 path += strspn(path, "/");
1965                 prefix += strspn(prefix, "/");
1966
1967                 if (*prefix == 0)
1968                         return true;
1969
1970                 if (*path == 0)
1971                         return false;
1972
1973                 a = strcspn(path, "/");
1974                 b = strcspn(prefix, "/");
1975
1976                 if (a != b)
1977                         return false;
1978
1979                 if (memcmp(path, prefix, a) != 0)
1980                         return false;
1981
1982                 path += a;
1983                 prefix += b;
1984         }
1985 }
1986
1987 bool path_equal(const char *a, const char *b) {
1988         assert(a);
1989         assert(b);
1990
1991         if ((a[0] == '/') != (b[0] == '/'))
1992                 return false;
1993
1994         for (;;) {
1995                 size_t j, k;
1996
1997                 a += strspn(a, "/");
1998                 b += strspn(b, "/");
1999
2000                 if (*a == 0 && *b == 0)
2001                         return true;
2002
2003                 if (*a == 0 || *b == 0)
2004                         return false;
2005
2006                 j = strcspn(a, "/");
2007                 k = strcspn(b, "/");
2008
2009                 if (j != k)
2010                         return false;
2011
2012                 if (memcmp(a, b, j) != 0)
2013                         return false;
2014
2015                 a += j;
2016                 b += k;
2017         }
2018 }
2019
2020 char *ascii_strlower(char *t) {
2021         char *p;
2022
2023         assert(t);
2024
2025         for (p = t; *p; p++)
2026                 if (*p >= 'A' && *p <= 'Z')
2027                         *p = *p - 'A' + 'a';
2028
2029         return t;
2030 }
2031
2032 bool ignore_file(const char *filename) {
2033         assert(filename);
2034
2035         return
2036                 filename[0] == '.' ||
2037                 streq(filename, "lost+found") ||
2038                 streq(filename, "aquota.user") ||
2039                 streq(filename, "aquota.group") ||
2040                 endswith(filename, "~") ||
2041                 endswith(filename, ".rpmnew") ||
2042                 endswith(filename, ".rpmsave") ||
2043                 endswith(filename, ".rpmorig") ||
2044                 endswith(filename, ".dpkg-old") ||
2045                 endswith(filename, ".dpkg-new") ||
2046                 endswith(filename, ".swp");
2047 }
2048
2049 int fd_nonblock(int fd, bool nonblock) {
2050         int flags;
2051
2052         assert(fd >= 0);
2053
2054         if ((flags = fcntl(fd, F_GETFL, 0)) < 0)
2055                 return -errno;
2056
2057         if (nonblock)
2058                 flags |= O_NONBLOCK;
2059         else
2060                 flags &= ~O_NONBLOCK;
2061
2062         if (fcntl(fd, F_SETFL, flags) < 0)
2063                 return -errno;
2064
2065         return 0;
2066 }
2067
2068 int fd_cloexec(int fd, bool cloexec) {
2069         int flags;
2070
2071         assert(fd >= 0);
2072
2073         if ((flags = fcntl(fd, F_GETFD, 0)) < 0)
2074                 return -errno;
2075
2076         if (cloexec)
2077                 flags |= FD_CLOEXEC;
2078         else
2079                 flags &= ~FD_CLOEXEC;
2080
2081         if (fcntl(fd, F_SETFD, flags) < 0)
2082                 return -errno;
2083
2084         return 0;
2085 }
2086
2087 int close_all_fds(const int except[], unsigned n_except) {
2088         DIR *d;
2089         struct dirent *de;
2090         int r = 0;
2091
2092         if (!(d = opendir("/proc/self/fd")))
2093                 return -errno;
2094
2095         while ((de = readdir(d))) {
2096                 int fd = -1;
2097
2098                 if (ignore_file(de->d_name))
2099                         continue;
2100
2101                 if (safe_atoi(de->d_name, &fd) < 0)
2102                         /* Let's better ignore this, just in case */
2103                         continue;
2104
2105                 if (fd < 3)
2106                         continue;
2107
2108                 if (fd == dirfd(d))
2109                         continue;
2110
2111                 if (except) {
2112                         bool found;
2113                         unsigned i;
2114
2115                         found = false;
2116                         for (i = 0; i < n_except; i++)
2117                                 if (except[i] == fd) {
2118                                         found = true;
2119                                         break;
2120                                 }
2121
2122                         if (found)
2123                                 continue;
2124                 }
2125
2126                 if (close_nointr(fd) < 0) {
2127                         /* Valgrind has its own FD and doesn't want to have it closed */
2128                         if (errno != EBADF && r == 0)
2129                                 r = -errno;
2130                 }
2131         }
2132
2133         closedir(d);
2134         return r;
2135 }
2136
2137 bool chars_intersect(const char *a, const char *b) {
2138         const char *p;
2139
2140         /* Returns true if any of the chars in a are in b. */
2141         for (p = a; *p; p++)
2142                 if (strchr(b, *p))
2143                         return true;
2144
2145         return false;
2146 }
2147
2148 char *format_timestamp(char *buf, size_t l, usec_t t) {
2149         struct tm tm;
2150         time_t sec;
2151
2152         assert(buf);
2153         assert(l > 0);
2154
2155         if (t <= 0)
2156                 return NULL;
2157
2158         sec = (time_t) (t / USEC_PER_SEC);
2159
2160         if (strftime(buf, l, "%a, %d %b %Y %H:%M:%S %z", localtime_r(&sec, &tm)) <= 0)
2161                 return NULL;
2162
2163         return buf;
2164 }
2165
2166 char *format_timestamp_pretty(char *buf, size_t l, usec_t t) {
2167         usec_t n, d;
2168
2169         n = now(CLOCK_REALTIME);
2170
2171         if (t <= 0 || t > n || t + USEC_PER_DAY*7 <= t)
2172                 return NULL;
2173
2174         d = n - t;
2175
2176         if (d >= USEC_PER_YEAR)
2177                 snprintf(buf, l, "%llu years and %llu months ago",
2178                          (unsigned long long) (d / USEC_PER_YEAR),
2179                          (unsigned long long) ((d % USEC_PER_YEAR) / USEC_PER_MONTH));
2180         else if (d >= USEC_PER_MONTH)
2181                 snprintf(buf, l, "%llu months and %llu days ago",
2182                          (unsigned long long) (d / USEC_PER_MONTH),
2183                          (unsigned long long) ((d % USEC_PER_MONTH) / USEC_PER_DAY));
2184         else if (d >= USEC_PER_WEEK)
2185                 snprintf(buf, l, "%llu weeks and %llu days ago",
2186                          (unsigned long long) (d / USEC_PER_WEEK),
2187                          (unsigned long long) ((d % USEC_PER_WEEK) / USEC_PER_DAY));
2188         else if (d >= 2*USEC_PER_DAY)
2189                 snprintf(buf, l, "%llu days ago", (unsigned long long) (d / USEC_PER_DAY));
2190         else if (d >= 25*USEC_PER_HOUR)
2191                 snprintf(buf, l, "1 day and %lluh ago",
2192                          (unsigned long long) ((d - USEC_PER_DAY) / USEC_PER_HOUR));
2193         else if (d >= 6*USEC_PER_HOUR)
2194                 snprintf(buf, l, "%lluh ago",
2195                          (unsigned long long) (d / USEC_PER_HOUR));
2196         else if (d >= USEC_PER_HOUR)
2197                 snprintf(buf, l, "%lluh %llumin ago",
2198                          (unsigned long long) (d / USEC_PER_HOUR),
2199                          (unsigned long long) ((d % USEC_PER_HOUR) / USEC_PER_MINUTE));
2200         else if (d >= 5*USEC_PER_MINUTE)
2201                 snprintf(buf, l, "%llumin ago",
2202                          (unsigned long long) (d / USEC_PER_MINUTE));
2203         else if (d >= USEC_PER_MINUTE)
2204                 snprintf(buf, l, "%llumin %llus ago",
2205                          (unsigned long long) (d / USEC_PER_MINUTE),
2206                          (unsigned long long) ((d % USEC_PER_MINUTE) / USEC_PER_SEC));
2207         else if (d >= USEC_PER_SEC)
2208                 snprintf(buf, l, "%llus ago",
2209                          (unsigned long long) (d / USEC_PER_SEC));
2210         else if (d >= USEC_PER_MSEC)
2211                 snprintf(buf, l, "%llums ago",
2212                          (unsigned long long) (d / USEC_PER_MSEC));
2213         else if (d > 0)
2214                 snprintf(buf, l, "%lluus ago",
2215                          (unsigned long long) d);
2216         else
2217                 snprintf(buf, l, "now");
2218
2219         buf[l-1] = 0;
2220         return buf;
2221 }
2222
2223 char *format_timespan(char *buf, size_t l, usec_t t) {
2224         static const struct {
2225                 const char *suffix;
2226                 usec_t usec;
2227         } table[] = {
2228                 { "w", USEC_PER_WEEK },
2229                 { "d", USEC_PER_DAY },
2230                 { "h", USEC_PER_HOUR },
2231                 { "min", USEC_PER_MINUTE },
2232                 { "s", USEC_PER_SEC },
2233                 { "ms", USEC_PER_MSEC },
2234                 { "us", 1 },
2235         };
2236
2237         unsigned i;
2238         char *p = buf;
2239
2240         assert(buf);
2241         assert(l > 0);
2242
2243         if (t == (usec_t) -1)
2244                 return NULL;
2245
2246         if (t == 0) {
2247                 snprintf(p, l, "0");
2248                 p[l-1] = 0;
2249                 return p;
2250         }
2251
2252         /* The result of this function can be parsed with parse_usec */
2253
2254         for (i = 0; i < ELEMENTSOF(table); i++) {
2255                 int k;
2256                 size_t n;
2257
2258                 if (t < table[i].usec)
2259                         continue;
2260
2261                 if (l <= 1)
2262                         break;
2263
2264                 k = snprintf(p, l, "%s%llu%s", p > buf ? " " : "", (unsigned long long) (t / table[i].usec), table[i].suffix);
2265                 n = MIN((size_t) k, l);
2266
2267                 l -= n;
2268                 p += n;
2269
2270                 t %= table[i].usec;
2271         }
2272
2273         *p = 0;
2274
2275         return buf;
2276 }
2277
2278 bool fstype_is_network(const char *fstype) {
2279         static const char * const table[] = {
2280                 "cifs",
2281                 "smbfs",
2282                 "ncpfs",
2283                 "nfs",
2284                 "nfs4",
2285                 "gfs",
2286                 "gfs2"
2287         };
2288
2289         unsigned i;
2290
2291         for (i = 0; i < ELEMENTSOF(table); i++)
2292                 if (streq(table[i], fstype))
2293                         return true;
2294
2295         return false;
2296 }
2297
2298 int chvt(int vt) {
2299         int fd, r = 0;
2300
2301         if ((fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0)
2302                 return -errno;
2303
2304         if (vt < 0) {
2305                 int tiocl[2] = {
2306                         TIOCL_GETKMSGREDIRECT,
2307                         0
2308                 };
2309
2310                 if (ioctl(fd, TIOCLINUX, tiocl) < 0)
2311                         return -errno;
2312
2313                 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
2314         }
2315
2316         if (ioctl(fd, VT_ACTIVATE, vt) < 0)
2317                 r = -errno;
2318
2319         close_nointr_nofail(r);
2320         return r;
2321 }
2322
2323 int read_one_char(FILE *f, char *ret, bool *need_nl) {
2324         struct termios old_termios, new_termios;
2325         char c;
2326         char line[LINE_MAX];
2327
2328         assert(f);
2329         assert(ret);
2330
2331         if (tcgetattr(fileno(f), &old_termios) >= 0) {
2332                 new_termios = old_termios;
2333
2334                 new_termios.c_lflag &= ~ICANON;
2335                 new_termios.c_cc[VMIN] = 1;
2336                 new_termios.c_cc[VTIME] = 0;
2337
2338                 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
2339                         size_t k;
2340
2341                         k = fread(&c, 1, 1, f);
2342
2343                         tcsetattr(fileno(f), TCSADRAIN, &old_termios);
2344
2345                         if (k <= 0)
2346                                 return -EIO;
2347
2348                         if (need_nl)
2349                                 *need_nl = c != '\n';
2350
2351                         *ret = c;
2352                         return 0;
2353                 }
2354         }
2355
2356         if (!(fgets(line, sizeof(line), f)))
2357                 return -EIO;
2358
2359         truncate_nl(line);
2360
2361         if (strlen(line) != 1)
2362                 return -EBADMSG;
2363
2364         if (need_nl)
2365                 *need_nl = false;
2366
2367         *ret = line[0];
2368         return 0;
2369 }
2370
2371 int ask(char *ret, const char *replies, const char *text, ...) {
2372         bool on_tty;
2373
2374         assert(ret);
2375         assert(replies);
2376         assert(text);
2377
2378         on_tty = isatty(STDOUT_FILENO);
2379
2380         for (;;) {
2381                 va_list ap;
2382                 char c;
2383                 int r;
2384                 bool need_nl = true;
2385
2386                 if (on_tty)
2387                         fputs("\x1B[1m", stdout);
2388
2389                 va_start(ap, text);
2390                 vprintf(text, ap);
2391                 va_end(ap);
2392
2393                 if (on_tty)
2394                         fputs("\x1B[0m", stdout);
2395
2396                 fflush(stdout);
2397
2398                 if ((r = read_one_char(stdin, &c, &need_nl)) < 0) {
2399
2400                         if (r == -EBADMSG) {
2401                                 puts("Bad input, please try again.");
2402                                 continue;
2403                         }
2404
2405                         putchar('\n');
2406                         return r;
2407                 }
2408
2409                 if (need_nl)
2410                         putchar('\n');
2411
2412                 if (strchr(replies, c)) {
2413                         *ret = c;
2414                         return 0;
2415                 }
2416
2417                 puts("Read unexpected character, please try again.");
2418         }
2419 }
2420
2421 int reset_terminal_fd(int fd) {
2422         struct termios termios;
2423         int r = 0;
2424         long arg;
2425
2426         /* Set terminal to some sane defaults */
2427
2428         assert(fd >= 0);
2429
2430         /* We leave locked terminal attributes untouched, so that
2431          * Plymouth may set whatever it wants to set, and we don't
2432          * interfere with that. */
2433
2434         /* Disable exclusive mode, just in case */
2435         ioctl(fd, TIOCNXCL);
2436
2437         /* Enable console unicode mode */
2438         arg = K_UNICODE;
2439         ioctl(fd, KDSKBMODE, &arg);
2440
2441         if (tcgetattr(fd, &termios) < 0) {
2442                 r = -errno;
2443                 goto finish;
2444         }
2445
2446         /* We only reset the stuff that matters to the software. How
2447          * hardware is set up we don't touch assuming that somebody
2448          * else will do that for us */
2449
2450         termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
2451         termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
2452         termios.c_oflag |= ONLCR;
2453         termios.c_cflag |= CREAD;
2454         termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
2455
2456         termios.c_cc[VINTR]    =   03;  /* ^C */
2457         termios.c_cc[VQUIT]    =  034;  /* ^\ */
2458         termios.c_cc[VERASE]   = 0177;
2459         termios.c_cc[VKILL]    =  025;  /* ^X */
2460         termios.c_cc[VEOF]     =   04;  /* ^D */
2461         termios.c_cc[VSTART]   =  021;  /* ^Q */
2462         termios.c_cc[VSTOP]    =  023;  /* ^S */
2463         termios.c_cc[VSUSP]    =  032;  /* ^Z */
2464         termios.c_cc[VLNEXT]   =  026;  /* ^V */
2465         termios.c_cc[VWERASE]  =  027;  /* ^W */
2466         termios.c_cc[VREPRINT] =  022;  /* ^R */
2467         termios.c_cc[VEOL]     =    0;
2468         termios.c_cc[VEOL2]    =    0;
2469
2470         termios.c_cc[VTIME]  = 0;
2471         termios.c_cc[VMIN]   = 1;
2472
2473         if (tcsetattr(fd, TCSANOW, &termios) < 0)
2474                 r = -errno;
2475
2476 finish:
2477         /* Just in case, flush all crap out */
2478         tcflush(fd, TCIOFLUSH);
2479
2480         return r;
2481 }
2482
2483 int reset_terminal(const char *name) {
2484         int fd, r;
2485
2486         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
2487         if (fd < 0)
2488                 return fd;
2489
2490         r = reset_terminal_fd(fd);
2491         close_nointr_nofail(fd);
2492
2493         return r;
2494 }
2495
2496 int open_terminal(const char *name, int mode) {
2497         int fd, r;
2498         unsigned c = 0;
2499
2500         /*
2501          * If a TTY is in the process of being closed opening it might
2502          * cause EIO. This is horribly awful, but unlikely to be
2503          * changed in the kernel. Hence we work around this problem by
2504          * retrying a couple of times.
2505          *
2506          * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
2507          */
2508
2509         for (;;) {
2510                 if ((fd = open(name, mode)) >= 0)
2511                         break;
2512
2513                 if (errno != EIO)
2514                         return -errno;
2515
2516                 if (c >= 20)
2517                         return -errno;
2518
2519                 usleep(50 * USEC_PER_MSEC);
2520                 c++;
2521         }
2522
2523         if (fd < 0)
2524                 return -errno;
2525
2526         if ((r = isatty(fd)) < 0) {
2527                 close_nointr_nofail(fd);
2528                 return -errno;
2529         }
2530
2531         if (!r) {
2532                 close_nointr_nofail(fd);
2533                 return -ENOTTY;
2534         }
2535
2536         return fd;
2537 }
2538
2539 int flush_fd(int fd) {
2540         struct pollfd pollfd;
2541
2542         zero(pollfd);
2543         pollfd.fd = fd;
2544         pollfd.events = POLLIN;
2545
2546         for (;;) {
2547                 char buf[LINE_MAX];
2548                 ssize_t l;
2549                 int r;
2550
2551                 if ((r = poll(&pollfd, 1, 0)) < 0) {
2552
2553                         if (errno == EINTR)
2554                                 continue;
2555
2556                         return -errno;
2557                 }
2558
2559                 if (r == 0)
2560                         return 0;
2561
2562                 if ((l = read(fd, buf, sizeof(buf))) < 0) {
2563
2564                         if (errno == EINTR)
2565                                 continue;
2566
2567                         if (errno == EAGAIN)
2568                                 return 0;
2569
2570                         return -errno;
2571                 }
2572
2573                 if (l <= 0)
2574                         return 0;
2575         }
2576 }
2577
2578 int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm) {
2579         int fd = -1, notify = -1, r, wd = -1;
2580
2581         assert(name);
2582
2583         /* We use inotify to be notified when the tty is closed. We
2584          * create the watch before checking if we can actually acquire
2585          * it, so that we don't lose any event.
2586          *
2587          * Note: strictly speaking this actually watches for the
2588          * device being closed, it does *not* really watch whether a
2589          * tty loses its controlling process. However, unless some
2590          * rogue process uses TIOCNOTTY on /dev/tty *after* closing
2591          * its tty otherwise this will not become a problem. As long
2592          * as the administrator makes sure not configure any service
2593          * on the same tty as an untrusted user this should not be a
2594          * problem. (Which he probably should not do anyway.) */
2595
2596         if (!fail && !force) {
2597                 if ((notify = inotify_init1(IN_CLOEXEC)) < 0) {
2598                         r = -errno;
2599                         goto fail;
2600                 }
2601
2602                 if ((wd = inotify_add_watch(notify, name, IN_CLOSE)) < 0) {
2603                         r = -errno;
2604                         goto fail;
2605                 }
2606         }
2607
2608         for (;;) {
2609                 if (notify >= 0)
2610                         if ((r = flush_fd(notify)) < 0)
2611                                 goto fail;
2612
2613                 /* We pass here O_NOCTTY only so that we can check the return
2614                  * value TIOCSCTTY and have a reliable way to figure out if we
2615                  * successfully became the controlling process of the tty */
2616                 if ((fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0)
2617                         return fd;
2618
2619                 /* First, try to get the tty */
2620                 r = ioctl(fd, TIOCSCTTY, force);
2621
2622                 /* Sometimes it makes sense to ignore TIOCSCTTY
2623                  * returning EPERM, i.e. when very likely we already
2624                  * are have this controlling terminal. */
2625                 if (r < 0 && errno == EPERM && ignore_tiocstty_eperm)
2626                         r = 0;
2627
2628                 if (r < 0 && (force || fail || errno != EPERM)) {
2629                         r = -errno;
2630                         goto fail;
2631                 }
2632
2633                 if (r >= 0)
2634                         break;
2635
2636                 assert(!fail);
2637                 assert(!force);
2638                 assert(notify >= 0);
2639
2640                 for (;;) {
2641                         uint8_t inotify_buffer[sizeof(struct inotify_event) + FILENAME_MAX];
2642                         ssize_t l;
2643                         struct inotify_event *e;
2644
2645                         if ((l = read(notify, &inotify_buffer, sizeof(inotify_buffer))) < 0) {
2646
2647                                 if (errno == EINTR)
2648                                         continue;
2649
2650                                 r = -errno;
2651                                 goto fail;
2652                         }
2653
2654                         e = (struct inotify_event*) inotify_buffer;
2655
2656                         while (l > 0) {
2657                                 size_t step;
2658
2659                                 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
2660                                         r = -EIO;
2661                                         goto fail;
2662                                 }
2663
2664                                 step = sizeof(struct inotify_event) + e->len;
2665                                 assert(step <= (size_t) l);
2666
2667                                 e = (struct inotify_event*) ((uint8_t*) e + step);
2668                                 l -= step;
2669                         }
2670
2671                         break;
2672                 }
2673
2674                 /* We close the tty fd here since if the old session
2675                  * ended our handle will be dead. It's important that
2676                  * we do this after sleeping, so that we don't enter
2677                  * an endless loop. */
2678                 close_nointr_nofail(fd);
2679         }
2680
2681         if (notify >= 0)
2682                 close_nointr_nofail(notify);
2683
2684         if ((r = reset_terminal_fd(fd)) < 0)
2685                 log_warning("Failed to reset terminal: %s", strerror(-r));
2686
2687         return fd;
2688
2689 fail:
2690         if (fd >= 0)
2691                 close_nointr_nofail(fd);
2692
2693         if (notify >= 0)
2694                 close_nointr_nofail(notify);
2695
2696         return r;
2697 }
2698
2699 int release_terminal(void) {
2700         int r = 0, fd;
2701         struct sigaction sa_old, sa_new;
2702
2703         if ((fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_NDELAY|O_CLOEXEC)) < 0)
2704                 return -errno;
2705
2706         /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
2707          * by our own TIOCNOTTY */
2708
2709         zero(sa_new);
2710         sa_new.sa_handler = SIG_IGN;
2711         sa_new.sa_flags = SA_RESTART;
2712         assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
2713
2714         if (ioctl(fd, TIOCNOTTY) < 0)
2715                 r = -errno;
2716
2717         assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
2718
2719         close_nointr_nofail(fd);
2720         return r;
2721 }
2722
2723 int sigaction_many(const struct sigaction *sa, ...) {
2724         va_list ap;
2725         int r = 0, sig;
2726
2727         va_start(ap, sa);
2728         while ((sig = va_arg(ap, int)) > 0)
2729                 if (sigaction(sig, sa, NULL) < 0)
2730                         r = -errno;
2731         va_end(ap);
2732
2733         return r;
2734 }
2735
2736 int ignore_signals(int sig, ...) {
2737         struct sigaction sa;
2738         va_list ap;
2739         int r = 0;
2740
2741         zero(sa);
2742         sa.sa_handler = SIG_IGN;
2743         sa.sa_flags = SA_RESTART;
2744
2745         if (sigaction(sig, &sa, NULL) < 0)
2746                 r = -errno;
2747
2748         va_start(ap, sig);
2749         while ((sig = va_arg(ap, int)) > 0)
2750                 if (sigaction(sig, &sa, NULL) < 0)
2751                         r = -errno;
2752         va_end(ap);
2753
2754         return r;
2755 }
2756
2757 int default_signals(int sig, ...) {
2758         struct sigaction sa;
2759         va_list ap;
2760         int r = 0;
2761
2762         zero(sa);
2763         sa.sa_handler = SIG_DFL;
2764         sa.sa_flags = SA_RESTART;
2765
2766         if (sigaction(sig, &sa, NULL) < 0)
2767                 r = -errno;
2768
2769         va_start(ap, sig);
2770         while ((sig = va_arg(ap, int)) > 0)
2771                 if (sigaction(sig, &sa, NULL) < 0)
2772                         r = -errno;
2773         va_end(ap);
2774
2775         return r;
2776 }
2777
2778 int close_pipe(int p[]) {
2779         int a = 0, b = 0;
2780
2781         assert(p);
2782
2783         if (p[0] >= 0) {
2784                 a = close_nointr(p[0]);
2785                 p[0] = -1;
2786         }
2787
2788         if (p[1] >= 0) {
2789                 b = close_nointr(p[1]);
2790                 p[1] = -1;
2791         }
2792
2793         return a < 0 ? a : b;
2794 }
2795
2796 ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll) {
2797         uint8_t *p;
2798         ssize_t n = 0;
2799
2800         assert(fd >= 0);
2801         assert(buf);
2802
2803         p = buf;
2804
2805         while (nbytes > 0) {
2806                 ssize_t k;
2807
2808                 if ((k = read(fd, p, nbytes)) <= 0) {
2809
2810                         if (k < 0 && errno == EINTR)
2811                                 continue;
2812
2813                         if (k < 0 && errno == EAGAIN && do_poll) {
2814                                 struct pollfd pollfd;
2815
2816                                 zero(pollfd);
2817                                 pollfd.fd = fd;
2818                                 pollfd.events = POLLIN;
2819
2820                                 if (poll(&pollfd, 1, -1) < 0) {
2821                                         if (errno == EINTR)
2822                                                 continue;
2823
2824                                         return n > 0 ? n : -errno;
2825                                 }
2826
2827                                 if (pollfd.revents != POLLIN)
2828                                         return n > 0 ? n : -EIO;
2829
2830                                 continue;
2831                         }
2832
2833                         return n > 0 ? n : (k < 0 ? -errno : 0);
2834                 }
2835
2836                 p += k;
2837                 nbytes -= k;
2838                 n += k;
2839         }
2840
2841         return n;
2842 }
2843
2844 ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll) {
2845         const uint8_t *p;
2846         ssize_t n = 0;
2847
2848         assert(fd >= 0);
2849         assert(buf);
2850
2851         p = buf;
2852
2853         while (nbytes > 0) {
2854                 ssize_t k;
2855
2856                 if ((k = write(fd, p, nbytes)) <= 0) {
2857
2858                         if (k < 0 && errno == EINTR)
2859                                 continue;
2860
2861                         if (k < 0 && errno == EAGAIN && do_poll) {
2862                                 struct pollfd pollfd;
2863
2864                                 zero(pollfd);
2865                                 pollfd.fd = fd;
2866                                 pollfd.events = POLLOUT;
2867
2868                                 if (poll(&pollfd, 1, -1) < 0) {
2869                                         if (errno == EINTR)
2870                                                 continue;
2871
2872                                         return n > 0 ? n : -errno;
2873                                 }
2874
2875                                 if (pollfd.revents != POLLOUT)
2876                                         return n > 0 ? n : -EIO;
2877
2878                                 continue;
2879                         }
2880
2881                         return n > 0 ? n : (k < 0 ? -errno : 0);
2882                 }
2883
2884                 p += k;
2885                 nbytes -= k;
2886                 n += k;
2887         }
2888
2889         return n;
2890 }
2891
2892 int path_is_mount_point(const char *t, bool allow_symlink) {
2893         struct stat a, b;
2894         char *parent;
2895         int r;
2896
2897         if (allow_symlink)
2898                 r = stat(t, &a);
2899         else
2900                 r = lstat(t, &a);
2901
2902         if (r < 0) {
2903                 if (errno == ENOENT)
2904                         return 0;
2905
2906                 return -errno;
2907         }
2908
2909         r = parent_of_path(t, &parent);
2910         if (r < 0)
2911                 return r;
2912
2913         r = lstat(parent, &b);
2914         free(parent);
2915
2916         if (r < 0)
2917                 return -errno;
2918
2919         return a.st_dev != b.st_dev;
2920 }
2921
2922 int parse_usec(const char *t, usec_t *usec) {
2923         static const struct {
2924                 const char *suffix;
2925                 usec_t usec;
2926         } table[] = {
2927                 { "sec", USEC_PER_SEC },
2928                 { "s", USEC_PER_SEC },
2929                 { "min", USEC_PER_MINUTE },
2930                 { "hr", USEC_PER_HOUR },
2931                 { "h", USEC_PER_HOUR },
2932                 { "d", USEC_PER_DAY },
2933                 { "w", USEC_PER_WEEK },
2934                 { "msec", USEC_PER_MSEC },
2935                 { "ms", USEC_PER_MSEC },
2936                 { "m", USEC_PER_MINUTE },
2937                 { "usec", 1ULL },
2938                 { "us", 1ULL },
2939                 { "", USEC_PER_SEC },
2940         };
2941
2942         const char *p;
2943         usec_t r = 0;
2944
2945         assert(t);
2946         assert(usec);
2947
2948         p = t;
2949         do {
2950                 long long l;
2951                 char *e;
2952                 unsigned i;
2953
2954                 errno = 0;
2955                 l = strtoll(p, &e, 10);
2956
2957                 if (errno != 0)
2958                         return -errno;
2959
2960                 if (l < 0)
2961                         return -ERANGE;
2962
2963                 if (e == p)
2964                         return -EINVAL;
2965
2966                 e += strspn(e, WHITESPACE);
2967
2968                 for (i = 0; i < ELEMENTSOF(table); i++)
2969                         if (startswith(e, table[i].suffix)) {
2970                                 r += (usec_t) l * table[i].usec;
2971                                 p = e + strlen(table[i].suffix);
2972                                 break;
2973                         }
2974
2975                 if (i >= ELEMENTSOF(table))
2976                         return -EINVAL;
2977
2978         } while (*p != 0);
2979
2980         *usec = r;
2981
2982         return 0;
2983 }
2984
2985 int parse_bytes(const char *t, off_t *bytes) {
2986         static const struct {
2987                 const char *suffix;
2988                 off_t factor;
2989         } table[] = {
2990                 { "B", 1 },
2991                 { "K", 1024ULL },
2992                 { "M", 1024ULL*1024ULL },
2993                 { "G", 1024ULL*1024ULL*1024ULL },
2994                 { "T", 1024ULL*1024ULL*1024ULL*1024ULL },
2995                 { "", 1 },
2996         };
2997
2998         const char *p;
2999         off_t r = 0;
3000
3001         assert(t);
3002         assert(bytes);
3003
3004         p = t;
3005         do {
3006                 long long l;
3007                 char *e;
3008                 unsigned i;
3009
3010                 errno = 0;
3011                 l = strtoll(p, &e, 10);
3012
3013                 if (errno != 0)
3014                         return -errno;
3015
3016                 if (l < 0)
3017                         return -ERANGE;
3018
3019                 if (e == p)
3020                         return -EINVAL;
3021
3022                 e += strspn(e, WHITESPACE);
3023
3024                 for (i = 0; i < ELEMENTSOF(table); i++)
3025                         if (startswith(e, table[i].suffix)) {
3026                                 r += (off_t) l * table[i].factor;
3027                                 p = e + strlen(table[i].suffix);
3028                                 break;
3029                         }
3030
3031                 if (i >= ELEMENTSOF(table))
3032                         return -EINVAL;
3033
3034         } while (*p != 0);
3035
3036         *bytes = r;
3037
3038         return 0;
3039 }
3040
3041 int make_stdio(int fd) {
3042         int r, s, t;
3043
3044         assert(fd >= 0);
3045
3046         r = dup2(fd, STDIN_FILENO);
3047         s = dup2(fd, STDOUT_FILENO);
3048         t = dup2(fd, STDERR_FILENO);
3049
3050         if (fd >= 3)
3051                 close_nointr_nofail(fd);
3052
3053         if (r < 0 || s < 0 || t < 0)
3054                 return -errno;
3055
3056         fd_cloexec(STDIN_FILENO, false);
3057         fd_cloexec(STDOUT_FILENO, false);
3058         fd_cloexec(STDERR_FILENO, false);
3059
3060         return 0;
3061 }
3062
3063 int make_null_stdio(void) {
3064         int null_fd;
3065
3066         if ((null_fd = open("/dev/null", O_RDWR|O_NOCTTY)) < 0)
3067                 return -errno;
3068
3069         return make_stdio(null_fd);
3070 }
3071
3072 bool is_device_path(const char *path) {
3073
3074         /* Returns true on paths that refer to a device, either in
3075          * sysfs or in /dev */
3076
3077         return
3078                 path_startswith(path, "/dev/") ||
3079                 path_startswith(path, "/sys/");
3080 }
3081
3082 int dir_is_empty(const char *path) {
3083         DIR *d;
3084         int r;
3085         struct dirent buf, *de;
3086
3087         if (!(d = opendir(path)))
3088                 return -errno;
3089
3090         for (;;) {
3091                 if ((r = readdir_r(d, &buf, &de)) > 0) {
3092                         r = -r;
3093                         break;
3094                 }
3095
3096                 if (!de) {
3097                         r = 1;
3098                         break;
3099                 }
3100
3101                 if (!ignore_file(de->d_name)) {
3102                         r = 0;
3103                         break;
3104                 }
3105         }
3106
3107         closedir(d);
3108         return r;
3109 }
3110
3111 unsigned long long random_ull(void) {
3112         int fd;
3113         uint64_t ull;
3114         ssize_t r;
3115
3116         if ((fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY)) < 0)
3117                 goto fallback;
3118
3119         r = loop_read(fd, &ull, sizeof(ull), true);
3120         close_nointr_nofail(fd);
3121
3122         if (r != sizeof(ull))
3123                 goto fallback;
3124
3125         return ull;
3126
3127 fallback:
3128         return random() * RAND_MAX + random();
3129 }
3130
3131 void rename_process(const char name[8]) {
3132         assert(name);
3133
3134         prctl(PR_SET_NAME, name);
3135
3136         /* This is a like a poor man's setproctitle(). The string
3137          * passed should fit in 7 chars (i.e. the length of
3138          * "systemd") */
3139
3140         if (program_invocation_name)
3141                 strncpy(program_invocation_name, name, strlen(program_invocation_name));
3142
3143         if (saved_argc > 0) {
3144                 int i;
3145
3146                 if (saved_argv[0])
3147                         strncpy(saved_argv[0], name, strlen(saved_argv[0]));
3148
3149                 for (i = 1; i < saved_argc; i++) {
3150                         if (!saved_argv[i])
3151                                 break;
3152
3153                         memset(saved_argv[i], 0, strlen(saved_argv[i]));
3154                 }
3155         }
3156 }
3157
3158 void sigset_add_many(sigset_t *ss, ...) {
3159         va_list ap;
3160         int sig;
3161
3162         assert(ss);
3163
3164         va_start(ap, ss);
3165         while ((sig = va_arg(ap, int)) > 0)
3166                 assert_se(sigaddset(ss, sig) == 0);
3167         va_end(ap);
3168 }
3169
3170 char* gethostname_malloc(void) {
3171         struct utsname u;
3172
3173         assert_se(uname(&u) >= 0);
3174
3175         if (u.nodename[0])
3176                 return strdup(u.nodename);
3177
3178         return strdup(u.sysname);
3179 }
3180
3181 char* getlogname_malloc(void) {
3182         uid_t uid;
3183         long bufsize;
3184         char *buf, *name;
3185         struct passwd pwbuf, *pw = NULL;
3186         struct stat st;
3187
3188         if (isatty(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0)
3189                 uid = st.st_uid;
3190         else
3191                 uid = getuid();
3192
3193         /* Shortcut things to avoid NSS lookups */
3194         if (uid == 0)
3195                 return strdup("root");
3196
3197         if ((bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)) <= 0)
3198                 bufsize = 4096;
3199
3200         if (!(buf = malloc(bufsize)))
3201                 return NULL;
3202
3203         if (getpwuid_r(uid, &pwbuf, buf, bufsize, &pw) == 0 && pw) {
3204                 name = strdup(pw->pw_name);
3205                 free(buf);
3206                 return name;
3207         }
3208
3209         free(buf);
3210
3211         if (asprintf(&name, "%lu", (unsigned long) uid) < 0)
3212                 return NULL;
3213
3214         return name;
3215 }
3216
3217 int getttyname_malloc(int fd, char **r) {
3218         char path[PATH_MAX], *c;
3219         int k;
3220
3221         assert(r);
3222
3223         if ((k = ttyname_r(fd, path, sizeof(path))) != 0)
3224                 return -k;
3225
3226         char_array_0(path);
3227
3228         if (!(c = strdup(startswith(path, "/dev/") ? path + 5 : path)))
3229                 return -ENOMEM;
3230
3231         *r = c;
3232         return 0;
3233 }
3234
3235 int getttyname_harder(int fd, char **r) {
3236         int k;
3237         char *s;
3238
3239         if ((k = getttyname_malloc(fd, &s)) < 0)
3240                 return k;
3241
3242         if (streq(s, "tty")) {
3243                 free(s);
3244                 return get_ctty(0, NULL, r);
3245         }
3246
3247         *r = s;
3248         return 0;
3249 }
3250
3251 int get_ctty_devnr(pid_t pid, dev_t *d) {
3252         int k;
3253         char line[LINE_MAX], *p, *fn;
3254         unsigned long ttynr;
3255         FILE *f;
3256
3257         if (asprintf(&fn, "/proc/%lu/stat", (unsigned long) (pid <= 0 ? getpid() : pid)) < 0)
3258                 return -ENOMEM;
3259
3260         f = fopen(fn, "re");
3261         free(fn);
3262         if (!f)
3263                 return -errno;
3264
3265         if (!fgets(line, sizeof(line), f)) {
3266                 k = -errno;
3267                 fclose(f);
3268                 return k;
3269         }
3270
3271         fclose(f);
3272
3273         p = strrchr(line, ')');
3274         if (!p)
3275                 return -EIO;
3276
3277         p++;
3278
3279         if (sscanf(p, " "
3280                    "%*c "  /* state */
3281                    "%*d "  /* ppid */
3282                    "%*d "  /* pgrp */
3283                    "%*d "  /* session */
3284                    "%lu ", /* ttynr */
3285                    &ttynr) != 1)
3286                 return -EIO;
3287
3288         *d = (dev_t) ttynr;
3289         return 0;
3290 }
3291
3292 int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
3293         int k;
3294         char fn[PATH_MAX], *s, *b, *p;
3295         dev_t devnr;
3296
3297         assert(r);
3298
3299         k = get_ctty_devnr(pid, &devnr);
3300         if (k < 0)
3301                 return k;
3302
3303         snprintf(fn, sizeof(fn), "/dev/char/%u:%u", major(devnr), minor(devnr));
3304         char_array_0(fn);
3305
3306         if ((k = readlink_malloc(fn, &s)) < 0) {
3307
3308                 if (k != -ENOENT)
3309                         return k;
3310
3311                 /* This is an ugly hack */
3312                 if (major(devnr) == 136) {
3313                         if (asprintf(&b, "pts/%lu", (unsigned long) minor(devnr)) < 0)
3314                                 return -ENOMEM;
3315
3316                         *r = b;
3317                         if (_devnr)
3318                                 *_devnr = devnr;
3319
3320                         return 0;
3321                 }
3322
3323                 /* Probably something like the ptys which have no
3324                  * symlink in /dev/char. Let's return something
3325                  * vaguely useful. */
3326
3327                 if (!(b = strdup(fn + 5)))
3328                         return -ENOMEM;
3329
3330                 *r = b;
3331                 if (_devnr)
3332                         *_devnr = devnr;
3333
3334                 return 0;
3335         }
3336
3337         if (startswith(s, "/dev/"))
3338                 p = s + 5;
3339         else if (startswith(s, "../"))
3340                 p = s + 3;
3341         else
3342                 p = s;
3343
3344         b = strdup(p);
3345         free(s);
3346
3347         if (!b)
3348                 return -ENOMEM;
3349
3350         *r = b;
3351         if (_devnr)
3352                 *_devnr = devnr;
3353
3354         return 0;
3355 }
3356
3357 static int rm_rf_children(int fd, bool only_dirs, bool honour_sticky) {
3358         DIR *d;
3359         int ret = 0;
3360
3361         assert(fd >= 0);
3362
3363         /* This returns the first error we run into, but nevertheless
3364          * tries to go on */
3365
3366         if (!(d = fdopendir(fd))) {
3367                 close_nointr_nofail(fd);
3368
3369                 return errno == ENOENT ? 0 : -errno;
3370         }
3371
3372         for (;;) {
3373                 struct dirent buf, *de;
3374                 bool is_dir, keep_around = false;
3375                 int r;
3376
3377                 if ((r = readdir_r(d, &buf, &de)) != 0) {
3378                         if (ret == 0)
3379                                 ret = -r;
3380                         break;
3381                 }
3382
3383                 if (!de)
3384                         break;
3385
3386                 if (streq(de->d_name, ".") || streq(de->d_name, ".."))
3387                         continue;
3388
3389                 if (de->d_type == DT_UNKNOWN) {
3390                         struct stat st;
3391
3392                         if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
3393                                 if (ret == 0 && errno != ENOENT)
3394                                         ret = -errno;
3395                                 continue;
3396                         }
3397
3398                         if (honour_sticky)
3399                                 keep_around = st.st_uid == 0 && (st.st_mode & S_ISVTX);
3400
3401                         is_dir = S_ISDIR(st.st_mode);
3402
3403                 } else {
3404                         if (honour_sticky) {
3405                                 struct stat st;
3406
3407                                 if (fstatat(fd, de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0) {
3408                                         if (ret == 0 && errno != ENOENT)
3409                                                 ret = -errno;
3410                                         continue;
3411                                 }
3412
3413                                 keep_around = st.st_uid == 0 && (st.st_mode & S_ISVTX);
3414                         }
3415
3416                         is_dir = de->d_type == DT_DIR;
3417                 }
3418
3419                 if (is_dir) {
3420                         int subdir_fd;
3421
3422                         if ((subdir_fd = openat(fd, de->d_name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC)) < 0) {
3423                                 if (ret == 0 && errno != ENOENT)
3424                                         ret = -errno;
3425                                 continue;
3426                         }
3427
3428                         if ((r = rm_rf_children(subdir_fd, only_dirs, honour_sticky)) < 0) {
3429                                 if (ret == 0)
3430                                         ret = r;
3431                         }
3432
3433                         if (!keep_around)
3434                                 if (unlinkat(fd, de->d_name, AT_REMOVEDIR) < 0) {
3435                                         if (ret == 0 && errno != ENOENT)
3436                                                 ret = -errno;
3437                                 }
3438
3439                 } else if (!only_dirs && !keep_around) {
3440
3441                         if (unlinkat(fd, de->d_name, 0) < 0) {
3442                                 if (ret == 0 && errno != ENOENT)
3443                                         ret = -errno;
3444                         }
3445                 }
3446         }
3447
3448         closedir(d);
3449
3450         return ret;
3451 }
3452
3453 int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky) {
3454         int fd;
3455         int r;
3456
3457         assert(path);
3458
3459         if ((fd = open(path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC)) < 0) {
3460
3461                 if (errno != ENOTDIR)
3462                         return -errno;
3463
3464                 if (delete_root && !only_dirs)
3465                         if (unlink(path) < 0)
3466                                 return -errno;
3467
3468                 return 0;
3469         }
3470
3471         r = rm_rf_children(fd, only_dirs, honour_sticky);
3472
3473         if (delete_root) {
3474
3475                 if (honour_sticky && file_is_sticky(path) > 0)
3476                         return r;
3477
3478                 if (rmdir(path) < 0 && errno != ENOENT) {
3479                         if (r == 0)
3480                                 r = -errno;
3481                 }
3482         }
3483
3484         return r;
3485 }
3486
3487 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid) {
3488         assert(path);
3489
3490         /* Under the assumption that we are running privileged we
3491          * first change the access mode and only then hand out
3492          * ownership to avoid a window where access is too open. */
3493
3494         if (chmod(path, mode) < 0)
3495                 return -errno;
3496
3497         if (chown(path, uid, gid) < 0)
3498                 return -errno;
3499
3500         return 0;
3501 }
3502
3503 cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
3504         cpu_set_t *r;
3505         unsigned n = 1024;
3506
3507         /* Allocates the cpuset in the right size */
3508
3509         for (;;) {
3510                 if (!(r = CPU_ALLOC(n)))
3511                         return NULL;
3512
3513                 if (sched_getaffinity(0, CPU_ALLOC_SIZE(n), r) >= 0) {
3514                         CPU_ZERO_S(CPU_ALLOC_SIZE(n), r);
3515
3516                         if (ncpus)
3517                                 *ncpus = n;
3518
3519                         return r;
3520                 }
3521
3522                 CPU_FREE(r);
3523
3524                 if (errno != EINVAL)
3525                         return NULL;
3526
3527                 n *= 2;
3528         }
3529 }
3530
3531 void status_vprintf(const char *format, va_list ap) {
3532         char *s = NULL;
3533         int fd = -1;
3534
3535         assert(format);
3536
3537         /* This independent of logging, as status messages are
3538          * optional and go exclusively to the console. */
3539
3540         if (vasprintf(&s, format, ap) < 0)
3541                 goto finish;
3542
3543         if ((fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC)) < 0)
3544                 goto finish;
3545
3546         write(fd, s, strlen(s));
3547
3548 finish:
3549         free(s);
3550
3551         if (fd >= 0)
3552                 close_nointr_nofail(fd);
3553 }
3554
3555 void status_printf(const char *format, ...) {
3556         va_list ap;
3557
3558         assert(format);
3559
3560         va_start(ap, format);
3561         status_vprintf(format, ap);
3562         va_end(ap);
3563 }
3564
3565 void status_welcome(void) {
3566         char *pretty_name = NULL, *ansi_color = NULL;
3567         const char *const_pretty = NULL, *const_color = NULL;
3568         int r;
3569
3570         if ((r = parse_env_file("/etc/os-release", NEWLINE,
3571                                 "PRETTY_NAME", &pretty_name,
3572                                 "ANSI_COLOR", &ansi_color,
3573                                 NULL)) < 0) {
3574
3575                 if (r != -ENOENT)
3576                         log_warning("Failed to read /etc/os-release: %s", strerror(-r));
3577         }
3578
3579 #if defined(TARGET_FEDORA)
3580         if (!pretty_name) {
3581                 if ((r = read_one_line_file("/etc/system-release", &pretty_name)) < 0) {
3582
3583                         if (r != -ENOENT)
3584                                 log_warning("Failed to read /etc/system-release: %s", strerror(-r));
3585                 }
3586         }
3587
3588         if (!ansi_color && pretty_name) {
3589
3590                 /* This tries to mimic the color magic the old Red Hat sysinit
3591                  * script did. */
3592
3593                 if (startswith(pretty_name, "Red Hat"))
3594                         const_color = "0;31"; /* Red for RHEL */
3595                 else if (startswith(pretty_name, "Fedora"))
3596                         const_color = "0;34"; /* Blue for Fedora */
3597         }
3598
3599 #elif defined(TARGET_SUSE)
3600
3601         if (!pretty_name) {
3602                 if ((r = read_one_line_file("/etc/SuSE-release", &pretty_name)) < 0) {
3603
3604                         if (r != -ENOENT)
3605                                 log_warning("Failed to read /etc/SuSE-release: %s", strerror(-r));
3606                 }
3607         }
3608
3609         if (!ansi_color)
3610                 const_color = "0;32"; /* Green for openSUSE */
3611
3612 #elif defined(TARGET_GENTOO)
3613
3614         if (!pretty_name) {
3615                 if ((r = read_one_line_file("/etc/gentoo-release", &pretty_name)) < 0) {
3616
3617                         if (r != -ENOENT)
3618                                 log_warning("Failed to read /etc/gentoo-release: %s", strerror(-r));
3619                 }
3620         }
3621
3622         if (!ansi_color)
3623                 const_color = "1;34"; /* Light Blue for Gentoo */
3624
3625 #elif defined(TARGET_ALTLINUX)
3626
3627         if (!pretty_name) {
3628                 if ((r = read_one_line_file("/etc/altlinux-release", &pretty_name)) < 0) {
3629
3630                         if (r != -ENOENT)
3631                                 log_warning("Failed to read /etc/altlinux-release: %s", strerror(-r));
3632                 }
3633         }
3634
3635         if (!ansi_color)
3636                 const_color = "0;36"; /* Cyan for ALTLinux */
3637
3638
3639 #elif defined(TARGET_DEBIAN)
3640
3641         if (!pretty_name) {
3642                 char *version;
3643
3644                 if ((r = read_one_line_file("/etc/debian_version", &version)) < 0) {
3645
3646                         if (r != -ENOENT)
3647                                 log_warning("Failed to read /etc/debian_version: %s", strerror(-r));
3648                 } else {
3649                         pretty_name = strappend("Debian ", version);
3650                         free(version);
3651
3652                         if (!pretty_name)
3653                                 log_warning("Failed to allocate Debian version string.");
3654                 }
3655         }
3656
3657         if (!ansi_color)
3658                 const_color = "1;31"; /* Light Red for Debian */
3659
3660 #elif defined(TARGET_UBUNTU)
3661
3662         if ((r = parse_env_file("/etc/lsb-release", NEWLINE,
3663                                 "DISTRIB_DESCRIPTION", &pretty_name,
3664                                 NULL)) < 0) {
3665
3666                 if (r != -ENOENT)
3667                         log_warning("Failed to read /etc/lsb-release: %s", strerror(-r));
3668         }
3669
3670         if (!ansi_color)
3671                 const_color = "0;33"; /* Orange/Brown for Ubuntu */
3672
3673 #elif defined(TARGET_MANDRIVA)
3674
3675         if (!pretty_name) {
3676                 char *s, *p;
3677
3678                 if ((r = read_one_line_file("/etc/mandriva-release", &s) < 0)) {
3679                         if (r != -ENOENT)
3680                                 log_warning("Failed to read /etc/mandriva-release: %s", strerror(-r));
3681                 } else {
3682                         p = strstr(s, " release ");
3683                         if (p) {
3684                                 *p = '\0';
3685                                 p += 9;
3686                                 p[strcspn(p, " ")] = '\0';
3687
3688                                 /* This corresponds to standard rc.sysinit */
3689                                 if (asprintf(&pretty_name, "%s\x1B[0;39m %s", s, p) > 0)
3690                                         const_color = "1;36";
3691                                 else
3692                                         log_warning("Failed to allocate Mandriva version string.");
3693                         } else
3694                                 log_warning("Failed to parse /etc/mandriva-release");
3695                         free(s);
3696                 }
3697         }
3698 #elif defined(TARGET_MEEGO)
3699
3700         if (!pretty_name) {
3701                 if ((r = read_one_line_file("/etc/meego-release", &pretty_name)) < 0) {
3702
3703                         if (r != -ENOENT)
3704                                 log_warning("Failed to read /etc/meego-release: %s", strerror(-r));
3705                 }
3706         }
3707
3708        if (!ansi_color)
3709                const_color = "1;35"; /* Bright Magenta for MeeGo */
3710 #endif
3711
3712         if (!pretty_name && !const_pretty)
3713                 const_pretty = "Linux";
3714
3715         if (!ansi_color && !const_color)
3716                 const_color = "1";
3717
3718         status_printf("\nWelcome to \x1B[%sm%s\x1B[0m!\n\n",
3719                       const_color ? const_color : ansi_color,
3720                       const_pretty ? const_pretty : pretty_name);
3721
3722         free(ansi_color);
3723         free(pretty_name);
3724 }
3725
3726 char *replace_env(const char *format, char **env) {
3727         enum {
3728                 WORD,
3729                 CURLY,
3730                 VARIABLE
3731         } state = WORD;
3732
3733         const char *e, *word = format;
3734         char *r = NULL, *k;
3735
3736         assert(format);
3737
3738         for (e = format; *e; e ++) {
3739
3740                 switch (state) {
3741
3742                 case WORD:
3743                         if (*e == '$')
3744                                 state = CURLY;
3745                         break;
3746
3747                 case CURLY:
3748                         if (*e == '{') {
3749                                 if (!(k = strnappend(r, word, e-word-1)))
3750                                         goto fail;
3751
3752                                 free(r);
3753                                 r = k;
3754
3755                                 word = e-1;
3756                                 state = VARIABLE;
3757
3758                         } else if (*e == '$') {
3759                                 if (!(k = strnappend(r, word, e-word)))
3760                                         goto fail;
3761
3762                                 free(r);
3763                                 r = k;
3764
3765                                 word = e+1;
3766                                 state = WORD;
3767                         } else
3768                                 state = WORD;
3769                         break;
3770
3771                 case VARIABLE:
3772                         if (*e == '}') {
3773                                 const char *t;
3774
3775                                 if (!(t = strv_env_get_with_length(env, word+2, e-word-2)))
3776                                         t = "";
3777
3778                                 if (!(k = strappend(r, t)))
3779                                         goto fail;
3780
3781                                 free(r);
3782                                 r = k;
3783
3784                                 word = e+1;
3785                                 state = WORD;
3786                         }
3787                         break;
3788                 }
3789         }
3790
3791         if (!(k = strnappend(r, word, e-word)))
3792                 goto fail;
3793
3794         free(r);
3795         return k;
3796
3797 fail:
3798         free(r);
3799         return NULL;
3800 }
3801
3802 char **replace_env_argv(char **argv, char **env) {
3803         char **r, **i;
3804         unsigned k = 0, l = 0;
3805
3806         l = strv_length(argv);
3807
3808         if (!(r = new(char*, l+1)))
3809                 return NULL;
3810
3811         STRV_FOREACH(i, argv) {
3812
3813                 /* If $FOO appears as single word, replace it by the split up variable */
3814                 if ((*i)[0] == '$' && (*i)[1] != '{') {
3815                         char *e;
3816                         char **w, **m;
3817                         unsigned q;
3818
3819                         if ((e = strv_env_get(env, *i+1))) {
3820
3821                                 if (!(m = strv_split_quoted(e))) {
3822                                         r[k] = NULL;
3823                                         strv_free(r);
3824                                         return NULL;
3825                                 }
3826                         } else
3827                                 m = NULL;
3828
3829                         q = strv_length(m);
3830                         l = l + q - 1;
3831
3832                         if (!(w = realloc(r, sizeof(char*) * (l+1)))) {
3833                                 r[k] = NULL;
3834                                 strv_free(r);
3835                                 strv_free(m);
3836                                 return NULL;
3837                         }
3838
3839                         r = w;
3840                         if (m) {
3841                                 memcpy(r + k, m, q * sizeof(char*));
3842                                 free(m);
3843                         }
3844
3845                         k += q;
3846                         continue;
3847                 }
3848
3849                 /* If ${FOO} appears as part of a word, replace it by the variable as-is */
3850                 if (!(r[k++] = replace_env(*i, env))) {
3851                         strv_free(r);
3852                         return NULL;
3853                 }
3854         }
3855
3856         r[k] = NULL;
3857         return r;
3858 }
3859
3860 int columns(void) {
3861         static __thread int parsed_columns = 0;
3862         const char *e;
3863
3864         if (_likely_(parsed_columns > 0))
3865                 return parsed_columns;
3866
3867         if ((e = getenv("COLUMNS")))
3868                 parsed_columns = atoi(e);
3869
3870         if (parsed_columns <= 0) {
3871                 struct winsize ws;
3872                 zero(ws);
3873
3874                 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) >= 0)
3875                         parsed_columns = ws.ws_col;
3876         }
3877
3878         if (parsed_columns <= 0)
3879                 parsed_columns = 80;
3880
3881         return parsed_columns;
3882 }
3883
3884 int running_in_chroot(void) {
3885         struct stat a, b;
3886
3887         zero(a);
3888         zero(b);
3889
3890         /* Only works as root */
3891
3892         if (stat("/proc/1/root", &a) < 0)
3893                 return -errno;
3894
3895         if (stat("/", &b) < 0)
3896                 return -errno;
3897
3898         return
3899                 a.st_dev != b.st_dev ||
3900                 a.st_ino != b.st_ino;
3901 }
3902
3903 char *ellipsize(const char *s, unsigned length, unsigned percent) {
3904         size_t l, x;
3905         char *r;
3906
3907         assert(s);
3908         assert(percent <= 100);
3909         assert(length >= 3);
3910
3911         l = strlen(s);
3912
3913         if (l <= 3 || l <= length)
3914                 return strdup(s);
3915
3916         if (!(r = new0(char, length+1)))
3917                 return r;
3918
3919         x = (length * percent) / 100;
3920
3921         if (x > length - 3)
3922                 x = length - 3;
3923
3924         memcpy(r, s, x);
3925         r[x] = '.';
3926         r[x+1] = '.';
3927         r[x+2] = '.';
3928         memcpy(r + x + 3,
3929                s + l - (length - x - 3),
3930                length - x - 3);
3931
3932         return r;
3933 }
3934
3935 int touch(const char *path) {
3936         int fd;
3937
3938         assert(path);
3939
3940         if ((fd = open(path, O_WRONLY|O_CREAT|O_CLOEXEC|O_NOCTTY, 0644)) < 0)
3941                 return -errno;
3942
3943         close_nointr_nofail(fd);
3944         return 0;
3945 }
3946
3947 char *unquote(const char *s, const char* quotes) {
3948         size_t l;
3949         assert(s);
3950
3951         if ((l = strlen(s)) < 2)
3952                 return strdup(s);
3953
3954         if (strchr(quotes, s[0]) && s[l-1] == s[0])
3955                 return strndup(s+1, l-2);
3956
3957         return strdup(s);
3958 }
3959
3960 char *normalize_env_assignment(const char *s) {
3961         char *name, *value, *p, *r;
3962
3963         p = strchr(s, '=');
3964
3965         if (!p) {
3966                 if (!(r = strdup(s)))
3967                         return NULL;
3968
3969                 return strstrip(r);
3970         }
3971
3972         if (!(name = strndup(s, p - s)))
3973                 return NULL;
3974
3975         if (!(p = strdup(p+1))) {
3976                 free(name);
3977                 return NULL;
3978         }
3979
3980         value = unquote(strstrip(p), QUOTES);
3981         free(p);
3982
3983         if (!value) {
3984                 free(name);
3985                 return NULL;
3986         }
3987
3988         if (asprintf(&r, "%s=%s", name, value) < 0)
3989                 r = NULL;
3990
3991         free(value);
3992         free(name);
3993
3994         return r;
3995 }
3996
3997 int wait_for_terminate(pid_t pid, siginfo_t *status) {
3998         siginfo_t dummy;
3999
4000         assert(pid >= 1);
4001
4002         if (!status)
4003                 status = &dummy;
4004
4005         for (;;) {
4006                 zero(*status);
4007
4008                 if (waitid(P_PID, pid, status, WEXITED) < 0) {
4009
4010                         if (errno == EINTR)
4011                                 continue;
4012
4013                         return -errno;
4014                 }
4015
4016                 return 0;
4017         }
4018 }
4019
4020 int wait_for_terminate_and_warn(const char *name, pid_t pid) {
4021         int r;
4022         siginfo_t status;
4023
4024         assert(name);
4025         assert(pid > 1);
4026
4027         if ((r = wait_for_terminate(pid, &status)) < 0) {
4028                 log_warning("Failed to wait for %s: %s", name, strerror(-r));
4029                 return r;
4030         }
4031
4032         if (status.si_code == CLD_EXITED) {
4033                 if (status.si_status != 0) {
4034                         log_warning("%s failed with error code %i.", name, status.si_status);
4035                         return status.si_status;
4036                 }
4037
4038                 log_debug("%s succeeded.", name);
4039                 return 0;
4040
4041         } else if (status.si_code == CLD_KILLED ||
4042                    status.si_code == CLD_DUMPED) {
4043
4044                 log_warning("%s terminated by signal %s.", name, signal_to_string(status.si_status));
4045                 return -EPROTO;
4046         }
4047
4048         log_warning("%s failed due to unknown reason.", name);
4049         return -EPROTO;
4050
4051 }
4052
4053 void freeze(void) {
4054
4055         /* Make sure nobody waits for us on a socket anymore */
4056         close_all_fds(NULL, 0);
4057
4058         sync();
4059
4060         for (;;)
4061                 pause();
4062 }
4063
4064 bool null_or_empty(struct stat *st) {
4065         assert(st);
4066
4067         if (S_ISREG(st->st_mode) && st->st_size <= 0)
4068                 return true;
4069
4070         if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode))
4071                 return true;
4072
4073         return false;
4074 }
4075
4076 int null_or_empty_path(const char *fn) {
4077         struct stat st;
4078
4079         assert(fn);
4080
4081         if (stat(fn, &st) < 0)
4082                 return -errno;
4083
4084         return null_or_empty(&st);
4085 }
4086
4087 DIR *xopendirat(int fd, const char *name, int flags) {
4088         int nfd;
4089         DIR *d;
4090
4091         if ((nfd = openat(fd, name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|flags)) < 0)
4092                 return NULL;
4093
4094         if (!(d = fdopendir(nfd))) {
4095                 close_nointr_nofail(nfd);
4096                 return NULL;
4097         }
4098
4099         return d;
4100 }
4101
4102 int signal_from_string_try_harder(const char *s) {
4103         int signo;
4104         assert(s);
4105
4106         if ((signo = signal_from_string(s)) <= 0)
4107                 if (startswith(s, "SIG"))
4108                         return signal_from_string(s+3);
4109
4110         return signo;
4111 }
4112
4113 void dual_timestamp_serialize(FILE *f, const char *name, dual_timestamp *t) {
4114
4115         assert(f);
4116         assert(name);
4117         assert(t);
4118
4119         if (!dual_timestamp_is_set(t))
4120                 return;
4121
4122         fprintf(f, "%s=%llu %llu\n",
4123                 name,
4124                 (unsigned long long) t->realtime,
4125                 (unsigned long long) t->monotonic);
4126 }
4127
4128 void dual_timestamp_deserialize(const char *value, dual_timestamp *t) {
4129         unsigned long long a, b;
4130
4131         assert(value);
4132         assert(t);
4133
4134         if (sscanf(value, "%lli %llu", &a, &b) != 2)
4135                 log_debug("Failed to parse finish timestamp value %s", value);
4136         else {
4137                 t->realtime = a;
4138                 t->monotonic = b;
4139         }
4140 }
4141
4142 char *fstab_node_to_udev_node(const char *p) {
4143         char *dn, *t, *u;
4144         int r;
4145
4146         /* FIXME: to follow udev's logic 100% we need to leave valid
4147          * UTF8 chars unescaped */
4148
4149         if (startswith(p, "LABEL=")) {
4150
4151                 if (!(u = unquote(p+6, "\"\'")))
4152                         return NULL;
4153
4154                 t = xescape(u, "/ ");
4155                 free(u);
4156
4157                 if (!t)
4158                         return NULL;
4159
4160                 r = asprintf(&dn, "/dev/disk/by-label/%s", t);
4161                 free(t);
4162
4163                 if (r < 0)
4164                         return NULL;
4165
4166                 return dn;
4167         }
4168
4169         if (startswith(p, "UUID=")) {
4170
4171                 if (!(u = unquote(p+5, "\"\'")))
4172                         return NULL;
4173
4174                 t = xescape(u, "/ ");
4175                 free(u);
4176
4177                 if (!t)
4178                         return NULL;
4179
4180                 r = asprintf(&dn, "/dev/disk/by-uuid/%s", t);
4181                 free(t);
4182
4183                 if (r < 0)
4184                         return NULL;
4185
4186                 return dn;
4187         }
4188
4189         return strdup(p);
4190 }
4191
4192 void filter_environ(const char *prefix) {
4193         int i, j;
4194         assert(prefix);
4195
4196         if (!environ)
4197                 return;
4198
4199         for (i = 0, j = 0; environ[i]; i++) {
4200
4201                 if (startswith(environ[i], prefix))
4202                         continue;
4203
4204                 environ[j++] = environ[i];
4205         }
4206
4207         environ[j] = NULL;
4208 }
4209
4210 bool tty_is_vc(const char *tty) {
4211         assert(tty);
4212
4213         if (startswith(tty, "/dev/"))
4214                 tty += 5;
4215
4216         return vtnr_from_tty(tty) >= 0;
4217 }
4218
4219 int vtnr_from_tty(const char *tty) {
4220         int i, r;
4221
4222         assert(tty);
4223
4224         if (startswith(tty, "/dev/"))
4225                 tty += 5;
4226
4227         if (!startswith(tty, "tty") )
4228                 return -EINVAL;
4229
4230         if (tty[3] < '0' || tty[3] > '9')
4231                 return -EINVAL;
4232
4233         r = safe_atoi(tty+3, &i);
4234         if (r < 0)
4235                 return r;
4236
4237         if (i < 0 || i > 63)
4238                 return -EINVAL;
4239
4240         return i;
4241 }
4242
4243 const char *default_term_for_tty(const char *tty) {
4244         char *active = NULL;
4245         const char *term;
4246
4247         assert(tty);
4248
4249         if (startswith(tty, "/dev/"))
4250                 tty += 5;
4251
4252         /* Resolve where /dev/console is pointing when determining
4253          * TERM */
4254         if (streq(tty, "console"))
4255                 if (read_one_line_file("/sys/class/tty/console/active", &active) >= 0) {
4256                         /* If multiple log outputs are configured the
4257                          * last one is what /dev/console points to */
4258                         if ((tty = strrchr(active, ' ')))
4259                                 tty++;
4260                         else
4261                                 tty = active;
4262                 }
4263
4264         term = tty_is_vc(tty) ? "TERM=linux" : "TERM=vt100";
4265         free(active);
4266
4267         return term;
4268 }
4269
4270 bool dirent_is_file(struct dirent *de) {
4271         assert(de);
4272
4273         if (ignore_file(de->d_name))
4274                 return false;
4275
4276         if (de->d_type != DT_REG &&
4277             de->d_type != DT_LNK &&
4278             de->d_type != DT_UNKNOWN)
4279                 return false;
4280
4281         return true;
4282 }
4283
4284 void execute_directory(const char *directory, DIR *d, char *argv[]) {
4285         DIR *_d = NULL;
4286         struct dirent *de;
4287         Hashmap *pids = NULL;
4288
4289         assert(directory);
4290
4291         /* Executes all binaries in a directory in parallel and waits
4292          * until all they all finished. */
4293
4294         if (!d) {
4295                 if (!(_d = opendir(directory))) {
4296
4297                         if (errno == ENOENT)
4298                                 return;
4299
4300                         log_error("Failed to enumerate directory %s: %m", directory);
4301                         return;
4302                 }
4303
4304                 d = _d;
4305         }
4306
4307         if (!(pids = hashmap_new(trivial_hash_func, trivial_compare_func))) {
4308                 log_error("Failed to allocate set.");
4309                 goto finish;
4310         }
4311
4312         while ((de = readdir(d))) {
4313                 char *path;
4314                 pid_t pid;
4315                 int k;
4316
4317                 if (!dirent_is_file(de))
4318                         continue;
4319
4320                 if (asprintf(&path, "%s/%s", directory, de->d_name) < 0) {
4321                         log_error("Out of memory");
4322                         continue;
4323                 }
4324
4325                 if ((pid = fork()) < 0) {
4326                         log_error("Failed to fork: %m");
4327                         free(path);
4328                         continue;
4329                 }
4330
4331                 if (pid == 0) {
4332                         char *_argv[2];
4333                         /* Child */
4334
4335                         if (!argv) {
4336                                 _argv[0] = path;
4337                                 _argv[1] = NULL;
4338                                 argv = _argv;
4339                         } else
4340                                 if (!argv[0])
4341                                         argv[0] = path;
4342
4343                         execv(path, argv);
4344
4345                         log_error("Failed to execute %s: %m", path);
4346                         _exit(EXIT_FAILURE);
4347                 }
4348
4349                 log_debug("Spawned %s as %lu", path, (unsigned long) pid);
4350
4351                 if ((k = hashmap_put(pids, UINT_TO_PTR(pid), path)) < 0) {
4352                         log_error("Failed to add PID to set: %s", strerror(-k));
4353                         free(path);
4354                 }
4355         }
4356
4357         while (!hashmap_isempty(pids)) {
4358                 siginfo_t si;
4359                 char *path;
4360
4361                 zero(si);
4362                 if (waitid(P_ALL, 0, &si, WEXITED) < 0) {
4363
4364                         if (errno == EINTR)
4365                                 continue;
4366
4367                         log_error("waitid() failed: %m");
4368                         goto finish;
4369                 }
4370
4371                 if ((path = hashmap_remove(pids, UINT_TO_PTR(si.si_pid)))) {
4372                         if (!is_clean_exit(si.si_code, si.si_status)) {
4373                                 if (si.si_code == CLD_EXITED)
4374                                         log_error("%s exited with exit status %i.", path, si.si_status);
4375                                 else
4376                                         log_error("%s terminated by signal %s.", path, signal_to_string(si.si_status));
4377                         } else
4378                                 log_debug("%s exited successfully.", path);
4379
4380                         free(path);
4381                 }
4382         }
4383
4384 finish:
4385         if (_d)
4386                 closedir(_d);
4387
4388         if (pids)
4389                 hashmap_free_free(pids);
4390 }
4391
4392 int kill_and_sigcont(pid_t pid, int sig) {
4393         int r;
4394
4395         r = kill(pid, sig) < 0 ? -errno : 0;
4396
4397         if (r >= 0)
4398                 kill(pid, SIGCONT);
4399
4400         return r;
4401 }
4402
4403 bool nulstr_contains(const char*nulstr, const char *needle) {
4404         const char *i;
4405
4406         if (!nulstr)
4407                 return false;
4408
4409         NULSTR_FOREACH(i, nulstr)
4410                 if (streq(i, needle))
4411                         return true;
4412
4413         return false;
4414 }
4415
4416 bool plymouth_running(void) {
4417         return access("/run/plymouth/pid", F_OK) >= 0;
4418 }
4419
4420 void parse_syslog_priority(char **p, int *priority) {
4421         int a = 0, b = 0, c = 0;
4422         int k;
4423
4424         assert(p);
4425         assert(*p);
4426         assert(priority);
4427
4428         if ((*p)[0] != '<')
4429                 return;
4430
4431         if (!strchr(*p, '>'))
4432                 return;
4433
4434         if ((*p)[2] == '>') {
4435                 c = undecchar((*p)[1]);
4436                 k = 3;
4437         } else if ((*p)[3] == '>') {
4438                 b = undecchar((*p)[1]);
4439                 c = undecchar((*p)[2]);
4440                 k = 4;
4441         } else if ((*p)[4] == '>') {
4442                 a = undecchar((*p)[1]);
4443                 b = undecchar((*p)[2]);
4444                 c = undecchar((*p)[3]);
4445                 k = 5;
4446         } else
4447                 return;
4448
4449         if (a < 0 || b < 0 || c < 0)
4450                 return;
4451
4452         *priority = a*100+b*10+c;
4453         *p += k;
4454 }
4455
4456 int have_effective_cap(int value) {
4457         cap_t cap;
4458         cap_flag_value_t fv;
4459         int r;
4460
4461         if (!(cap = cap_get_proc()))
4462                 return -errno;
4463
4464         if (cap_get_flag(cap, value, CAP_EFFECTIVE, &fv) < 0)
4465                 r = -errno;
4466         else
4467                 r = fv == CAP_SET;
4468
4469         cap_free(cap);
4470         return r;
4471 }
4472
4473 char* strshorten(char *s, size_t l) {
4474         assert(s);
4475
4476         if (l < strlen(s))
4477                 s[l] = 0;
4478
4479         return s;
4480 }
4481
4482 static bool hostname_valid_char(char c) {
4483         return
4484                 (c >= 'a' && c <= 'z') ||
4485                 (c >= 'A' && c <= 'Z') ||
4486                 (c >= '0' && c <= '9') ||
4487                 c == '-' ||
4488                 c == '_' ||
4489                 c == '.';
4490 }
4491
4492 bool hostname_is_valid(const char *s) {
4493         const char *p;
4494
4495         if (isempty(s))
4496                 return false;
4497
4498         for (p = s; *p; p++)
4499                 if (!hostname_valid_char(*p))
4500                         return false;
4501
4502         if (p-s > HOST_NAME_MAX)
4503                 return false;
4504
4505         return true;
4506 }
4507
4508 char* hostname_cleanup(char *s) {
4509         char *p, *d;
4510
4511         for (p = s, d = s; *p; p++)
4512                 if ((*p >= 'a' && *p <= 'z') ||
4513                     (*p >= 'A' && *p <= 'Z') ||
4514                     (*p >= '0' && *p <= '9') ||
4515                     *p == '-' ||
4516                     *p == '_' ||
4517                     *p == '.')
4518                         *(d++) = *p;
4519
4520         *d = 0;
4521
4522         strshorten(s, HOST_NAME_MAX);
4523         return s;
4524 }
4525
4526 int pipe_eof(int fd) {
4527         struct pollfd pollfd;
4528         int r;
4529
4530         zero(pollfd);
4531         pollfd.fd = fd;
4532         pollfd.events = POLLIN|POLLHUP;
4533
4534         r = poll(&pollfd, 1, 0);
4535         if (r < 0)
4536                 return -errno;
4537
4538         if (r == 0)
4539                 return 0;
4540
4541         return pollfd.revents & POLLHUP;
4542 }
4543
4544 int fopen_temporary(const char *path, FILE **_f, char **_temp_path) {
4545         FILE *f;
4546         char *t;
4547         const char *fn;
4548         size_t k;
4549         int fd;
4550
4551         assert(path);
4552         assert(_f);
4553         assert(_temp_path);
4554
4555         t = new(char, strlen(path) + 1 + 6 + 1);
4556         if (!t)
4557                 return -ENOMEM;
4558
4559         fn = file_name_from_path(path);
4560         k = fn-path;
4561         memcpy(t, path, k);
4562         t[k] = '.';
4563         stpcpy(stpcpy(t+k+1, fn), "XXXXXX");
4564
4565         fd = mkostemp(t, O_WRONLY|O_CLOEXEC);
4566         if (fd < 0) {
4567                 free(t);
4568                 return -errno;
4569         }
4570
4571         f = fdopen(fd, "we");
4572         if (!f) {
4573                 unlink(t);
4574                 free(t);
4575                 return -errno;
4576         }
4577
4578         *_f = f;
4579         *_temp_path = t;
4580
4581         return 0;
4582 }
4583
4584 int terminal_vhangup_fd(int fd) {
4585         assert(fd >= 0);
4586
4587         if (ioctl(fd, TIOCVHANGUP) < 0)
4588                 return -errno;
4589
4590         return 0;
4591 }
4592
4593 int terminal_vhangup(const char *name) {
4594         int fd, r;
4595
4596         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
4597         if (fd < 0)
4598                 return fd;
4599
4600         r = terminal_vhangup_fd(fd);
4601         close_nointr_nofail(fd);
4602
4603         return r;
4604 }
4605
4606 int vt_disallocate(const char *name) {
4607         int fd, r;
4608         unsigned u;
4609
4610         /* Deallocate the VT if possible. If not possible
4611          * (i.e. because it is the active one), at least clear it
4612          * entirely (including the scrollback buffer) */
4613
4614         if (!startswith(name, "/dev/"))
4615                 return -EINVAL;
4616
4617         if (!tty_is_vc(name)) {
4618                 /* So this is not a VT. I guess we cannot deallocate
4619                  * it then. But let's at least clear the screen */
4620
4621                 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
4622                 if (fd < 0)
4623                         return fd;
4624
4625                 loop_write(fd,
4626                            "\033[r"    /* clear scrolling region */
4627                            "\033[H"    /* move home */
4628                            "\033[2J",  /* clear screen */
4629                            10, false);
4630                 close_nointr_nofail(fd);
4631
4632                 return 0;
4633         }
4634
4635         if (!startswith(name, "/dev/tty"))
4636                 return -EINVAL;
4637
4638         r = safe_atou(name+8, &u);
4639         if (r < 0)
4640                 return r;
4641
4642         if (u <= 0)
4643                 return -EINVAL;
4644
4645         /* Try to deallocate */
4646         fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
4647         if (fd < 0)
4648                 return fd;
4649
4650         r = ioctl(fd, VT_DISALLOCATE, u);
4651         close_nointr_nofail(fd);
4652
4653         if (r >= 0)
4654                 return 0;
4655
4656         if (errno != EBUSY)
4657                 return -errno;
4658
4659         /* Couldn't deallocate, so let's clear it fully with
4660          * scrollback */
4661         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
4662         if (fd < 0)
4663                 return fd;
4664
4665         loop_write(fd,
4666                    "\033[r"   /* clear scrolling region */
4667                    "\033[H"   /* move home */
4668                    "\033[3J", /* clear screen including scrollback, requires Linux 2.6.40 */
4669                    10, false);
4670         close_nointr_nofail(fd);
4671
4672         return 0;
4673 }
4674
4675
4676 static int file_is_conf(const struct dirent *d, const char *suffix) {
4677         assert(d);
4678
4679         if (ignore_file(d->d_name))
4680                 return 0;
4681
4682         if (d->d_type != DT_REG &&
4683             d->d_type != DT_LNK &&
4684             d->d_type != DT_UNKNOWN)
4685                 return 0;
4686
4687         return endswith(d->d_name, suffix);
4688 }
4689
4690 static int files_add(Hashmap *h, const char *path, const char *suffix) {
4691         DIR *dir;
4692         struct dirent buffer, *de;
4693         int r = 0;
4694
4695         dir = opendir(path);
4696         if (!dir) {
4697                 if (errno == ENOENT)
4698                         return 0;
4699                 return -errno;
4700         }
4701
4702         for (;;) {
4703                 int k;
4704                 char *p, *f;
4705
4706                 k = readdir_r(dir, &buffer, &de);
4707                 if (k != 0) {
4708                         r = -k;
4709                         goto finish;
4710                 }
4711
4712                 if (!de)
4713                         break;
4714
4715                 if (!file_is_conf(de, suffix))
4716                         continue;
4717
4718                 if (asprintf(&p, "%s/%s", path, de->d_name) < 0) {
4719                         r = -ENOMEM;
4720                         goto finish;
4721                 }
4722
4723                 f = canonicalize_file_name(p);
4724                 if (!f) {
4725                         log_error("Failed to canonicalize file name '%s': %m", p);
4726                         free(p);
4727                         continue;
4728                 }
4729                 free(p);
4730
4731                 log_debug("found: %s\n", f);
4732                 if (hashmap_put(h, file_name_from_path(f), f) <= 0)
4733                         free(f);
4734         }
4735
4736 finish:
4737         closedir(dir);
4738         return r;
4739 }
4740
4741 static int base_cmp(const void *a, const void *b) {
4742         const char *s1, *s2;
4743
4744         s1 = *(char * const *)a;
4745         s2 = *(char * const *)b;
4746         return strcmp(file_name_from_path(s1), file_name_from_path(s2));
4747 }
4748
4749 int conf_files_list(char ***strv, const char *suffix, const char *dir, ...) {
4750         Hashmap *fh = NULL;
4751         char **dirs = NULL;
4752         char **files = NULL;
4753         char **p;
4754         va_list ap;
4755         int r = 0;
4756
4757         va_start(ap, dir);
4758         dirs = strv_new_ap(dir, ap);
4759         va_end(ap);
4760         if (!dirs) {
4761                 r = -ENOMEM;
4762                 goto finish;
4763         }
4764         if (!strv_path_canonicalize(dirs)) {
4765                 r = -ENOMEM;
4766                 goto finish;
4767         }
4768         if (!strv_uniq(dirs)) {
4769                 r = -ENOMEM;
4770                 goto finish;
4771         }
4772
4773         fh = hashmap_new(string_hash_func, string_compare_func);
4774         if (!fh) {
4775                 r = -ENOMEM;
4776                 goto finish;
4777         }
4778
4779         STRV_FOREACH(p, dirs) {
4780                 if (files_add(fh, *p, suffix) < 0) {
4781                         log_error("Failed to search for files.");
4782                         r = -EINVAL;
4783                         goto finish;
4784                 }
4785         }
4786
4787         files = hashmap_get_strv(fh);
4788         if (files == NULL) {
4789                 log_error("Failed to compose list of files.");
4790                 r = -ENOMEM;
4791                 goto finish;
4792         }
4793
4794         qsort(files, hashmap_size(fh), sizeof(char *), base_cmp);
4795
4796 finish:
4797         strv_free(dirs);
4798         hashmap_free(fh);
4799         *strv = files;
4800         return r;
4801 }
4802
4803 int hwclock_is_localtime(void) {
4804         FILE *f;
4805         bool local = false;
4806
4807         /*
4808          * The third line of adjtime is "UTC" or "LOCAL" or nothing.
4809          *   # /etc/adjtime
4810          *   0.0 0 0
4811          *   0
4812          *   UTC
4813          */
4814         f = fopen("/etc/adjtime", "re");
4815         if (f) {
4816                 char line[LINE_MAX];
4817                 bool b;
4818
4819                 b = fgets(line, sizeof(line), f) &&
4820                         fgets(line, sizeof(line), f) &&
4821                         fgets(line, sizeof(line), f);
4822
4823                 fclose(f);
4824
4825                 if (!b)
4826                         return -EIO;
4827
4828
4829                 truncate_nl(line);
4830                 local = streq(line, "LOCAL");
4831
4832         } else if (errno != -ENOENT)
4833                 return -errno;
4834
4835         return local;
4836 }
4837
4838 int hwclock_apply_localtime_delta(int *min) {
4839         const struct timeval *tv_null = NULL;
4840         struct timespec ts;
4841         struct tm *tm;
4842         int minuteswest;
4843         struct timezone tz;
4844
4845         assert_se(clock_gettime(CLOCK_REALTIME, &ts) == 0);
4846         assert_se(tm = localtime(&ts.tv_sec));
4847         minuteswest = tm->tm_gmtoff / 60;
4848
4849         tz.tz_minuteswest = -minuteswest;
4850         tz.tz_dsttime = 0; /* DST_NONE*/
4851
4852         /*
4853          * If the hardware clock does not run in UTC, but in local time:
4854          * The very first time we set the kernel's timezone, it will warp
4855          * the clock so that it runs in UTC instead of local time.
4856          */
4857         if (settimeofday(tv_null, &tz) < 0)
4858                 return -errno;
4859         if (min)
4860                 *min = minuteswest;
4861         return 0;
4862 }
4863
4864 int hwclock_reset_localtime_delta(void) {
4865         const struct timeval *tv_null = NULL;
4866         struct timezone tz;
4867
4868         tz.tz_minuteswest = 0;
4869         tz.tz_dsttime = 0; /* DST_NONE*/
4870
4871         if (settimeofday(tv_null, &tz) < 0)
4872                 return -errno;
4873
4874         return 0;
4875 }
4876
4877 int hwclock_get_time(struct tm *tm) {
4878         int fd;
4879         int err = 0;
4880
4881         assert(tm);
4882
4883         fd = open("/dev/rtc0", O_RDONLY|O_CLOEXEC);
4884         if (fd < 0)
4885                 return -errno;
4886
4887         /* This leaves the timezone fields of struct tm
4888          * uninitialized! */
4889         if (ioctl(fd, RTC_RD_TIME, tm) < 0)
4890                 err = -errno;
4891
4892         /* We don't now daylight saving, so we reset this in order not
4893          * to confused mktime(). */
4894         tm->tm_isdst = -1;
4895
4896         close_nointr_nofail(fd);
4897
4898         return err;
4899 }
4900
4901 int hwclock_set_time(const struct tm *tm) {
4902         int fd;
4903         int err = 0;
4904
4905         assert(tm);
4906
4907         fd = open("/dev/rtc0", O_RDONLY|O_CLOEXEC);
4908         if (fd < 0)
4909                 return -errno;
4910
4911         if (ioctl(fd, RTC_SET_TIME, tm) < 0)
4912                 err = -errno;
4913
4914         close_nointr_nofail(fd);
4915
4916         return err;
4917 }
4918
4919 int copy_file(const char *from, const char *to) {
4920         int r, fdf, fdt;
4921
4922         assert(from);
4923         assert(to);
4924
4925         fdf = open(from, O_RDONLY|O_CLOEXEC|O_NOCTTY);
4926         if (fdf < 0)
4927                 return -errno;
4928
4929         fdt = open(to, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC|O_NOCTTY, 0644);
4930         if (fdt < 0) {
4931                 close_nointr_nofail(fdf);
4932                 return -errno;
4933         }
4934
4935         for (;;) {
4936                 char buf[PIPE_BUF];
4937                 ssize_t n, k;
4938
4939                 n = read(fdf, buf, sizeof(buf));
4940                 if (n < 0) {
4941                         r = -errno;
4942
4943                         close_nointr_nofail(fdf);
4944                         close_nointr(fdt);
4945                         unlink(to);
4946
4947                         return r;
4948                 }
4949
4950                 if (n == 0)
4951                         break;
4952
4953                 errno = 0;
4954                 k = loop_write(fdt, buf, n, false);
4955                 if (n != k) {
4956                         r = k < 0 ? k : (errno ? -errno : -EIO);
4957
4958                         close_nointr_nofail(fdf);
4959                         close_nointr(fdt);
4960
4961                         unlink(to);
4962                         return r;
4963                 }
4964         }
4965
4966         close_nointr_nofail(fdf);
4967         r = close_nointr(fdt);
4968
4969         if (r < 0) {
4970                 unlink(to);
4971                 return r;
4972         }
4973
4974         return 0;
4975 }
4976
4977 int symlink_or_copy(const char *from, const char *to) {
4978         char *pf = NULL, *pt = NULL;
4979         struct stat a, b;
4980         int r;
4981
4982         assert(from);
4983         assert(to);
4984
4985         if (parent_of_path(from, &pf) < 0 ||
4986             parent_of_path(to, &pt) < 0) {
4987                 r = -ENOMEM;
4988                 goto finish;
4989         }
4990
4991         if (stat(pf, &a) < 0 ||
4992             stat(pt, &b) < 0) {
4993                 r = -errno;
4994                 goto finish;
4995         }
4996
4997         if (a.st_dev != b.st_dev) {
4998                 free(pf);
4999                 free(pt);
5000
5001                 return copy_file(from, to);
5002         }
5003
5004         if (symlink(from, to) < 0) {
5005                 r = -errno;
5006                 goto finish;
5007         }
5008
5009         r = 0;
5010
5011 finish:
5012         free(pf);
5013         free(pt);
5014
5015         return r;
5016 }
5017
5018 int symlink_or_copy_atomic(const char *from, const char *to) {
5019         char *t, *x;
5020         const char *fn;
5021         size_t k;
5022         unsigned long long ull;
5023         unsigned i;
5024         int r;
5025
5026         assert(from);
5027         assert(to);
5028
5029         t = new(char, strlen(to) + 1 + 16 + 1);
5030         if (!t)
5031                 return -ENOMEM;
5032
5033         fn = file_name_from_path(to);
5034         k = fn-to;
5035         memcpy(t, to, k);
5036         t[k] = '.';
5037         x = stpcpy(t+k+1, fn);
5038
5039         ull = random_ull();
5040         for (i = 0; i < 16; i++) {
5041                 *(x++) = hexchar(ull & 0xF);
5042                 ull >>= 4;
5043         }
5044
5045         *x = 0;
5046
5047         r = symlink_or_copy(from, t);
5048         if (r < 0) {
5049                 unlink(t);
5050                 free(t);
5051                 return r;
5052         }
5053
5054         if (rename(t, to) < 0) {
5055                 r = -errno;
5056                 unlink(t);
5057                 free(t);
5058                 return r;
5059         }
5060
5061         free(t);
5062         return r;
5063 }
5064
5065 int audit_session_from_pid(pid_t pid, uint32_t *id) {
5066         char *p, *s;
5067         uint32_t u;
5068         int r;
5069
5070         assert(pid >= 1);
5071         assert(id);
5072
5073         if (have_effective_cap(CAP_AUDIT_CONTROL) <= 0)
5074                 return -ENOENT;
5075
5076         if (asprintf(&p, "/proc/%lu/sessionid", (unsigned long) pid) < 0)
5077                 return -ENOMEM;
5078
5079         r = read_one_line_file(p, &s);
5080         free(p);
5081         if (r < 0)
5082                 return r;
5083
5084         r = safe_atou32(s, &u);
5085         free(s);
5086
5087         if (r < 0)
5088                 return r;
5089
5090         if (u == (uint32_t) -1 || u <= 0)
5091                 return -ENOENT;
5092
5093         *id = u;
5094         return 0;
5095 }
5096
5097 bool display_is_local(const char *display) {
5098         assert(display);
5099
5100         return
5101                 display[0] == ':' &&
5102                 display[1] >= '0' &&
5103                 display[1] <= '9';
5104 }
5105
5106 int socket_from_display(const char *display, char **path) {
5107         size_t k;
5108         char *f, *c;
5109
5110         assert(display);
5111         assert(path);
5112
5113         if (!display_is_local(display))
5114                 return -EINVAL;
5115
5116         k = strspn(display+1, "0123456789");
5117
5118         f = new(char, sizeof("/tmp/.X11-unix/X") + k);
5119         if (!f)
5120                 return -ENOMEM;
5121
5122         c = stpcpy(f, "/tmp/.X11-unix/X");
5123         memcpy(c, display+1, k);
5124         c[k] = 0;
5125
5126         *path = f;
5127
5128         return 0;
5129 }
5130
5131 int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home) {
5132         struct passwd *p;
5133         uid_t u;
5134
5135         assert(username);
5136         assert(*username);
5137
5138         /* We enforce some special rules for uid=0: in order to avoid
5139          * NSS lookups for root we hardcode its data. */
5140
5141         if (streq(*username, "root") || streq(*username, "0")) {
5142                 *username = "root";
5143
5144                 if (uid)
5145                         *uid = 0;
5146
5147                 if (gid)
5148                         *gid = 0;
5149
5150                 if (home)
5151                         *home = "/root";
5152                 return 0;
5153         }
5154
5155         if (parse_uid(*username, &u) >= 0) {
5156                 errno = 0;
5157                 p = getpwuid(u);
5158
5159                 /* If there are multiple users with the same id, make
5160                  * sure to leave $USER to the configured value instead
5161                  * of the first occurrence in the database. However if
5162                  * the uid was configured by a numeric uid, then let's
5163                  * pick the real username from /etc/passwd. */
5164                 if (p)
5165                         *username = p->pw_name;
5166         } else {
5167                 errno = 0;
5168                 p = getpwnam(*username);
5169         }
5170
5171         if (!p)
5172                 return errno != 0 ? -errno : -ESRCH;
5173
5174         if (uid)
5175                 *uid = p->pw_uid;
5176
5177         if (gid)
5178                 *gid = p->pw_gid;
5179
5180         if (home)
5181                 *home = p->pw_dir;
5182
5183         return 0;
5184 }
5185
5186 int get_group_creds(const char **groupname, gid_t *gid) {
5187         struct group *g;
5188         gid_t id;
5189
5190         assert(groupname);
5191
5192         /* We enforce some special rules for gid=0: in order to avoid
5193          * NSS lookups for root we hardcode its data. */
5194
5195         if (streq(*groupname, "root") || streq(*groupname, "0")) {
5196                 *groupname = "root";
5197
5198                 if (gid)
5199                         *gid = 0;
5200
5201                 return 0;
5202         }
5203
5204         if (parse_gid(*groupname, &id) >= 0) {
5205                 errno = 0;
5206                 g = getgrgid(id);
5207
5208                 if (g)
5209                         *groupname = g->gr_name;
5210         } else {
5211                 errno = 0;
5212                 g = getgrnam(*groupname);
5213         }
5214
5215         if (!g)
5216                 return errno != 0 ? -errno : -ESRCH;
5217
5218         if (gid)
5219                 *gid = g->gr_gid;
5220
5221         return 0;
5222 }
5223
5224 int glob_exists(const char *path) {
5225         glob_t g;
5226         int r, k;
5227
5228         assert(path);
5229
5230         zero(g);
5231         errno = 0;
5232         k = glob(path, GLOB_NOSORT|GLOB_BRACE, NULL, &g);
5233
5234         if (k == GLOB_NOMATCH)
5235                 r = 0;
5236         else if (k == GLOB_NOSPACE)
5237                 r = -ENOMEM;
5238         else if (k == 0)
5239                 r = !strv_isempty(g.gl_pathv);
5240         else
5241                 r = errno ? -errno : -EIO;
5242
5243         globfree(&g);
5244
5245         return r;
5246 }
5247
5248 int dirent_ensure_type(DIR *d, struct dirent *de) {
5249         struct stat st;
5250
5251         assert(d);
5252         assert(de);
5253
5254         if (de->d_type != DT_UNKNOWN)
5255                 return 0;
5256
5257         if (fstatat(dirfd(d), de->d_name, &st, AT_SYMLINK_NOFOLLOW) < 0)
5258                 return -errno;
5259
5260         de->d_type =
5261                 S_ISREG(st.st_mode)  ? DT_REG  :
5262                 S_ISDIR(st.st_mode)  ? DT_DIR  :
5263                 S_ISLNK(st.st_mode)  ? DT_LNK  :
5264                 S_ISFIFO(st.st_mode) ? DT_FIFO :
5265                 S_ISSOCK(st.st_mode) ? DT_SOCK :
5266                 S_ISCHR(st.st_mode)  ? DT_CHR  :
5267                 S_ISBLK(st.st_mode)  ? DT_BLK  :
5268                                        DT_UNKNOWN;
5269
5270         return 0;
5271 }
5272
5273 int in_search_path(const char *path, char **search) {
5274         char **i, *parent;
5275         int r;
5276
5277         r = parent_of_path(path, &parent);
5278         if (r < 0)
5279                 return r;
5280
5281         r = 0;
5282
5283         STRV_FOREACH(i, search) {
5284                 if (path_equal(parent, *i)) {
5285                         r = 1;
5286                         break;
5287                 }
5288         }
5289
5290         free(parent);
5291
5292         return r;
5293 }
5294
5295 int get_files_in_directory(const char *path, char ***list) {
5296         DIR *d;
5297         int r = 0;
5298         unsigned n = 0;
5299         char **l = NULL;
5300
5301         assert(path);
5302
5303         /* Returns all files in a directory in *list, and the number
5304          * of files as return value. If list is NULL returns only the
5305          * number */
5306
5307         d = opendir(path);
5308         if (!d)
5309                 return -errno;
5310
5311         for (;;) {
5312                 struct dirent buffer, *de;
5313                 int k;
5314
5315                 k = readdir_r(d, &buffer, &de);
5316                 if (k != 0) {
5317                         r = -k;
5318                         goto finish;
5319                 }
5320
5321                 if (!de)
5322                         break;
5323
5324                 dirent_ensure_type(d, de);
5325
5326                 if (!dirent_is_file(de))
5327                         continue;
5328
5329                 if (list) {
5330                         if ((unsigned) r >= n) {
5331                                 char **t;
5332
5333                                 n = MAX(16, 2*r);
5334                                 t = realloc(l, sizeof(char*) * n);
5335                                 if (!t) {
5336                                         r = -ENOMEM;
5337                                         goto finish;
5338                                 }
5339
5340                                 l = t;
5341                         }
5342
5343                         assert((unsigned) r < n);
5344
5345                         l[r] = strdup(de->d_name);
5346                         if (!l[r]) {
5347                                 r = -ENOMEM;
5348                                 goto finish;
5349                         }
5350
5351                         l[++r] = NULL;
5352                 } else
5353                         r++;
5354         }
5355
5356 finish:
5357         if (d)
5358                 closedir(d);
5359
5360         if (r >= 0) {
5361                 if (list)
5362                         *list = l;
5363         } else
5364                 strv_free(l);
5365
5366         return r;
5367 }
5368
5369 char *join(const char *x, ...) {
5370         va_list ap;
5371         size_t l;
5372         char *r, *p;
5373
5374         va_start(ap, x);
5375
5376         if (x) {
5377                 l = strlen(x);
5378
5379                 for (;;) {
5380                         const char *t;
5381
5382                         t = va_arg(ap, const char *);
5383                         if (!t)
5384                                 break;
5385
5386                         l += strlen(t);
5387                 }
5388         } else
5389                 l = 0;
5390
5391         va_end(ap);
5392
5393         r = new(char, l+1);
5394         if (!r)
5395                 return NULL;
5396
5397         if (x) {
5398                 p = stpcpy(r, x);
5399
5400                 va_start(ap, x);
5401
5402                 for (;;) {
5403                         const char *t;
5404
5405                         t = va_arg(ap, const char *);
5406                         if (!t)
5407                                 break;
5408
5409                         p = stpcpy(p, t);
5410                 }
5411
5412                 va_end(ap);
5413         } else
5414                 r[0] = 0;
5415
5416         return r;
5417 }
5418
5419 bool is_main_thread(void) {
5420         static __thread int cached = 0;
5421
5422         if (_unlikely_(cached == 0))
5423                 cached = getpid() == gettid() ? 1 : -1;
5424
5425         return cached > 0;
5426 }
5427
5428 int block_get_whole_disk(dev_t d, dev_t *ret) {
5429         char *p, *s;
5430         int r;
5431         unsigned n, m;
5432
5433         assert(ret);
5434
5435         /* If it has a queue this is good enough for us */
5436         if (asprintf(&p, "/sys/dev/block/%u:%u/queue", major(d), minor(d)) < 0)
5437                 return -ENOMEM;
5438
5439         r = access(p, F_OK);
5440         free(p);
5441
5442         if (r >= 0) {
5443                 *ret = d;
5444                 return 0;
5445         }
5446
5447         /* If it is a partition find the originating device */
5448         if (asprintf(&p, "/sys/dev/block/%u:%u/partition", major(d), minor(d)) < 0)
5449                 return -ENOMEM;
5450
5451         r = access(p, F_OK);
5452         free(p);
5453
5454         if (r < 0)
5455                 return -ENOENT;
5456
5457         /* Get parent dev_t */
5458         if (asprintf(&p, "/sys/dev/block/%u:%u/../dev", major(d), minor(d)) < 0)
5459                 return -ENOMEM;
5460
5461         r = read_one_line_file(p, &s);
5462         free(p);
5463
5464         if (r < 0)
5465                 return r;
5466
5467         r = sscanf(s, "%u:%u", &m, &n);
5468         free(s);
5469
5470         if (r != 2)
5471                 return -EINVAL;
5472
5473         /* Only return this if it is really good enough for us. */
5474         if (asprintf(&p, "/sys/dev/block/%u:%u/queue", m, n) < 0)
5475                 return -ENOMEM;
5476
5477         r = access(p, F_OK);
5478         free(p);
5479
5480         if (r >= 0) {
5481                 *ret = makedev(m, n);
5482                 return 0;
5483         }
5484
5485         return -ENOENT;
5486 }
5487
5488 int file_is_sticky(const char *p) {
5489         struct stat st;
5490
5491         assert(p);
5492
5493         if (lstat(p, &st) < 0)
5494                 return -errno;
5495
5496         return
5497                 st.st_uid == 0 &&
5498                 (st.st_mode & S_ISVTX);
5499 }
5500
5501 static const char *const ioprio_class_table[] = {
5502         [IOPRIO_CLASS_NONE] = "none",
5503         [IOPRIO_CLASS_RT] = "realtime",
5504         [IOPRIO_CLASS_BE] = "best-effort",
5505         [IOPRIO_CLASS_IDLE] = "idle"
5506 };
5507
5508 DEFINE_STRING_TABLE_LOOKUP(ioprio_class, int);
5509
5510 static const char *const sigchld_code_table[] = {
5511         [CLD_EXITED] = "exited",
5512         [CLD_KILLED] = "killed",
5513         [CLD_DUMPED] = "dumped",
5514         [CLD_TRAPPED] = "trapped",
5515         [CLD_STOPPED] = "stopped",
5516         [CLD_CONTINUED] = "continued",
5517 };
5518
5519 DEFINE_STRING_TABLE_LOOKUP(sigchld_code, int);
5520
5521 static const char *const log_facility_unshifted_table[LOG_NFACILITIES] = {
5522         [LOG_FAC(LOG_KERN)] = "kern",
5523         [LOG_FAC(LOG_USER)] = "user",
5524         [LOG_FAC(LOG_MAIL)] = "mail",
5525         [LOG_FAC(LOG_DAEMON)] = "daemon",
5526         [LOG_FAC(LOG_AUTH)] = "auth",
5527         [LOG_FAC(LOG_SYSLOG)] = "syslog",
5528         [LOG_FAC(LOG_LPR)] = "lpr",
5529         [LOG_FAC(LOG_NEWS)] = "news",
5530         [LOG_FAC(LOG_UUCP)] = "uucp",
5531         [LOG_FAC(LOG_CRON)] = "cron",
5532         [LOG_FAC(LOG_AUTHPRIV)] = "authpriv",
5533         [LOG_FAC(LOG_FTP)] = "ftp",
5534         [LOG_FAC(LOG_LOCAL0)] = "local0",
5535         [LOG_FAC(LOG_LOCAL1)] = "local1",
5536         [LOG_FAC(LOG_LOCAL2)] = "local2",
5537         [LOG_FAC(LOG_LOCAL3)] = "local3",
5538         [LOG_FAC(LOG_LOCAL4)] = "local4",
5539         [LOG_FAC(LOG_LOCAL5)] = "local5",
5540         [LOG_FAC(LOG_LOCAL6)] = "local6",
5541         [LOG_FAC(LOG_LOCAL7)] = "local7"
5542 };
5543
5544 DEFINE_STRING_TABLE_LOOKUP(log_facility_unshifted, int);
5545
5546 static const char *const log_level_table[] = {
5547         [LOG_EMERG] = "emerg",
5548         [LOG_ALERT] = "alert",
5549         [LOG_CRIT] = "crit",
5550         [LOG_ERR] = "err",
5551         [LOG_WARNING] = "warning",
5552         [LOG_NOTICE] = "notice",
5553         [LOG_INFO] = "info",
5554         [LOG_DEBUG] = "debug"
5555 };
5556
5557 DEFINE_STRING_TABLE_LOOKUP(log_level, int);
5558
5559 static const char* const sched_policy_table[] = {
5560         [SCHED_OTHER] = "other",
5561         [SCHED_BATCH] = "batch",
5562         [SCHED_IDLE] = "idle",
5563         [SCHED_FIFO] = "fifo",
5564         [SCHED_RR] = "rr"
5565 };
5566
5567 DEFINE_STRING_TABLE_LOOKUP(sched_policy, int);
5568
5569 static const char* const rlimit_table[] = {
5570         [RLIMIT_CPU] = "LimitCPU",
5571         [RLIMIT_FSIZE] = "LimitFSIZE",
5572         [RLIMIT_DATA] = "LimitDATA",
5573         [RLIMIT_STACK] = "LimitSTACK",
5574         [RLIMIT_CORE] = "LimitCORE",
5575         [RLIMIT_RSS] = "LimitRSS",
5576         [RLIMIT_NOFILE] = "LimitNOFILE",
5577         [RLIMIT_AS] = "LimitAS",
5578         [RLIMIT_NPROC] = "LimitNPROC",
5579         [RLIMIT_MEMLOCK] = "LimitMEMLOCK",
5580         [RLIMIT_LOCKS] = "LimitLOCKS",
5581         [RLIMIT_SIGPENDING] = "LimitSIGPENDING",
5582         [RLIMIT_MSGQUEUE] = "LimitMSGQUEUE",
5583         [RLIMIT_NICE] = "LimitNICE",
5584         [RLIMIT_RTPRIO] = "LimitRTPRIO",
5585         [RLIMIT_RTTIME] = "LimitRTTIME"
5586 };
5587
5588 DEFINE_STRING_TABLE_LOOKUP(rlimit, int);
5589
5590 static const char* const ip_tos_table[] = {
5591         [IPTOS_LOWDELAY] = "low-delay",
5592         [IPTOS_THROUGHPUT] = "throughput",
5593         [IPTOS_RELIABILITY] = "reliability",
5594         [IPTOS_LOWCOST] = "low-cost",
5595 };
5596
5597 DEFINE_STRING_TABLE_LOOKUP(ip_tos, int);
5598
5599 static const char *const __signal_table[] = {
5600         [SIGHUP] = "HUP",
5601         [SIGINT] = "INT",
5602         [SIGQUIT] = "QUIT",
5603         [SIGILL] = "ILL",
5604         [SIGTRAP] = "TRAP",
5605         [SIGABRT] = "ABRT",
5606         [SIGBUS] = "BUS",
5607         [SIGFPE] = "FPE",
5608         [SIGKILL] = "KILL",
5609         [SIGUSR1] = "USR1",
5610         [SIGSEGV] = "SEGV",
5611         [SIGUSR2] = "USR2",
5612         [SIGPIPE] = "PIPE",
5613         [SIGALRM] = "ALRM",
5614         [SIGTERM] = "TERM",
5615 #ifdef SIGSTKFLT
5616         [SIGSTKFLT] = "STKFLT",  /* Linux on SPARC doesn't know SIGSTKFLT */
5617 #endif
5618         [SIGCHLD] = "CHLD",
5619         [SIGCONT] = "CONT",
5620         [SIGSTOP] = "STOP",
5621         [SIGTSTP] = "TSTP",
5622         [SIGTTIN] = "TTIN",
5623         [SIGTTOU] = "TTOU",
5624         [SIGURG] = "URG",
5625         [SIGXCPU] = "XCPU",
5626         [SIGXFSZ] = "XFSZ",
5627         [SIGVTALRM] = "VTALRM",
5628         [SIGPROF] = "PROF",
5629         [SIGWINCH] = "WINCH",
5630         [SIGIO] = "IO",
5631         [SIGPWR] = "PWR",
5632         [SIGSYS] = "SYS"
5633 };
5634
5635 DEFINE_PRIVATE_STRING_TABLE_LOOKUP(__signal, int);
5636
5637 const char *signal_to_string(int signo) {
5638         static __thread char buf[12];
5639         const char *name;
5640
5641         name = __signal_to_string(signo);
5642         if (name)
5643                 return name;
5644
5645         if (signo >= SIGRTMIN && signo <= SIGRTMAX)
5646                 snprintf(buf, sizeof(buf) - 1, "RTMIN+%d", signo - SIGRTMIN);
5647         else
5648                 snprintf(buf, sizeof(buf) - 1, "%d", signo);
5649         char_array_0(buf);
5650         return buf;
5651 }
5652
5653 int signal_from_string(const char *s) {
5654         int signo;
5655         int offset = 0;
5656         unsigned u;
5657
5658         signo =__signal_from_string(s);
5659         if (signo > 0)
5660                 return signo;
5661
5662         if (startswith(s, "RTMIN+")) {
5663                 s += 6;
5664                 offset = SIGRTMIN;
5665         }
5666         if (safe_atou(s, &u) >= 0) {
5667                 signo = (int) u + offset;
5668                 if (signo > 0 && signo < _NSIG)
5669                         return signo;
5670         }
5671         return -1;
5672 }
5673
5674 bool kexec_loaded(void) {
5675        bool loaded = false;
5676        char *s;
5677
5678        if (read_one_line_file("/sys/kernel/kexec_loaded", &s) >= 0) {
5679                if (s[0] == '1')
5680                        loaded = true;
5681                free(s);
5682        }
5683        return loaded;
5684 }
5685
5686 int strdup_or_null(const char *a, char **b) {
5687         char *c;
5688
5689         assert(b);
5690
5691         if (!a) {
5692                 *b = NULL;
5693                 return 0;
5694         }
5695
5696         c = strdup(a);
5697         if (!c)
5698                 return -ENOMEM;
5699
5700         *b = c;
5701         return 0;
5702 }