chiark / gitweb /
unit: don't show ENOENT configuration file warnings for units that are not essential
[elogind.git] / src / util.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef fooutilhfoo
4 #define fooutilhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <inttypes.h>
26 #include <time.h>
27 #include <sys/time.h>
28 #include <stdbool.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <signal.h>
32 #include <sched.h>
33 #include <limits.h>
34
35 #include "macro.h"
36
37 typedef uint64_t usec_t;
38
39 typedef struct dual_timestamp {
40         usec_t realtime;
41         usec_t monotonic;
42 } dual_timestamp;
43
44 #define MSEC_PER_SEC  1000ULL
45 #define USEC_PER_SEC  1000000ULL
46 #define USEC_PER_MSEC 1000ULL
47 #define NSEC_PER_SEC  1000000000ULL
48 #define NSEC_PER_MSEC 1000000ULL
49 #define NSEC_PER_USEC 1000ULL
50
51 #define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
52 #define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
53 #define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
54 #define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
55
56 /* What is interpreted as whitespace? */
57 #define WHITESPACE " \t\n\r"
58 #define NEWLINE "\n\r"
59
60 #define FORMAT_TIMESTAMP_MAX 64
61 #define FORMAT_TIMESPAN_MAX 64
62
63 #define ANSI_HIGHLIGHT_ON "\x1B[1;31m"
64 #define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m"
65 #define ANSI_HIGHLIGHT_OFF "\x1B[0m"
66
67 usec_t now(clockid_t clock);
68
69 dual_timestamp* dual_timestamp_get(dual_timestamp *ts);
70
71 usec_t timespec_load(const struct timespec *ts);
72 struct timespec *timespec_store(struct timespec *ts, usec_t u);
73
74 usec_t timeval_load(const struct timeval *tv);
75 struct timeval *timeval_store(struct timeval *tv, usec_t u);
76
77 #define streq(a,b) (strcmp((a),(b)) == 0)
78
79 bool streq_ptr(const char *a, const char *b);
80
81 #define new(t, n) ((t*) malloc(sizeof(t)*(n)))
82
83 #define new0(t, n) ((t*) calloc((n), sizeof(t)))
84
85 #define malloc0(n) (calloc((n), 1))
86
87 static inline const char* yes_no(bool b) {
88         return b ? "yes" : "no";
89 }
90
91 static inline const char* strempty(const char *s) {
92         return s ? s : "";
93 }
94
95 static inline const char* strnull(const char *s) {
96         return s ? s : "(null)";
97 }
98
99 static inline const char *strna(const char *s) {
100         return s ? s : "n/a";
101 }
102
103 static inline bool is_path_absolute(const char *p) {
104         return *p == '/';
105 }
106
107 bool endswith(const char *s, const char *postfix);
108 bool startswith(const char *s, const char *prefix);
109 bool startswith_no_case(const char *s, const char *prefix);
110
111 bool first_word(const char *s, const char *word);
112
113 int close_nointr(int fd);
114 void close_nointr_nofail(int fd);
115 void close_many(const int fds[], unsigned n_fd);
116
117 int parse_boolean(const char *v);
118 int parse_usec(const char *t, usec_t *usec);
119 int parse_pid(const char *s, pid_t* ret_pid);
120
121 int safe_atou(const char *s, unsigned *ret_u);
122 int safe_atoi(const char *s, int *ret_i);
123
124 int safe_atollu(const char *s, unsigned long long *ret_u);
125 int safe_atolli(const char *s, long long int *ret_i);
126
127 #if __WORDSIZE == 32
128 static inline int safe_atolu(const char *s, unsigned long *ret_u) {
129         assert_cc(sizeof(unsigned long) == sizeof(unsigned));
130         return safe_atou(s, (unsigned*) ret_u);
131 }
132 static inline int safe_atoli(const char *s, long int *ret_u) {
133         assert_cc(sizeof(long int) == sizeof(int));
134         return safe_atoi(s, (int*) ret_u);
135 }
136 #else
137 static inline int safe_atolu(const char *s, unsigned long *ret_u) {
138         assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
139         return safe_atollu(s, (unsigned long long*) ret_u);
140 }
141 static inline int safe_atoli(const char *s, long int *ret_u) {
142         assert_cc(sizeof(long int) == sizeof(long long int));
143         return safe_atolli(s, (long long int*) ret_u);
144 }
145 #endif
146
147 static inline int safe_atou32(const char *s, uint32_t *ret_u) {
148         assert_cc(sizeof(uint32_t) == sizeof(unsigned));
149         return safe_atou(s, (unsigned*) ret_u);
150 }
151
152 static inline int safe_atoi32(const char *s, int32_t *ret_i) {
153         assert_cc(sizeof(int32_t) == sizeof(int));
154         return safe_atoi(s, (int*) ret_i);
155 }
156
157 static inline int safe_atou64(const char *s, uint64_t *ret_u) {
158         assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
159         return safe_atollu(s, (unsigned long long*) ret_u);
160 }
161
162 static inline int safe_atoi64(const char *s, int64_t *ret_i) {
163         assert_cc(sizeof(int64_t) == sizeof(long long int));
164         return safe_atolli(s, (long long int*) ret_i);
165 }
166
167 char *split(const char *c, size_t *l, const char *separator, char **state);
168 char *split_quoted(const char *c, size_t *l, char **state);
169
170 #define FOREACH_WORD(word, length, s, state)                            \
171         for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
172
173 #define FOREACH_WORD_SEPARATOR(word, length, s, separator, state)       \
174         for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
175
176 #define FOREACH_WORD_QUOTED(word, length, s, state)                     \
177         for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
178
179 char **split_path_and_make_absolute(const char *p);
180
181 pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
182
183 int write_one_line_file(const char *fn, const char *line);
184 int read_one_line_file(const char *fn, char **line);
185
186 char *strappend(const char *s, const char *suffix);
187 char *strnappend(const char *s, const char *suffix, size_t length);
188
189 char *replace_env(const char *format, char **env);
190 char **replace_env_argv(char **argv, char **env);
191
192 int readlink_malloc(const char *p, char **r);
193 int readlink_and_make_absolute(const char *p, char **r);
194
195 char *file_name_from_path(const char *p);
196 bool is_path(const char *p);
197
198 bool path_is_absolute(const char *p);
199 char *path_make_absolute(const char *p, const char *prefix);
200 char *path_make_absolute_cwd(const char *p);
201
202 char **strv_path_make_absolute_cwd(char **l);
203 char **strv_path_canonicalize(char **l);
204
205 int reset_all_signal_handlers(void);
206
207 char *strstrip(char *s);
208 char *delete_chars(char *s, const char *bad);
209 char *truncate_nl(char *s);
210
211 char *file_in_same_dir(const char *path, const char *filename);
212 int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid);
213 int mkdir_parents(const char *path, mode_t mode);
214 int mkdir_p(const char *path, mode_t mode);
215
216 int parent_of_path(const char *path, char **parent);
217
218 int rmdir_parents(const char *path, const char *stop);
219
220 int get_process_name(pid_t pid, char **name);
221 int get_process_cmdline(pid_t pid, size_t max_length, char **line);
222
223 char hexchar(int x);
224 int unhexchar(char c);
225 char octchar(int x);
226 int unoctchar(char c);
227 char decchar(int x);
228 int undecchar(char c);
229
230 char *cescape(const char *s);
231 char *cunescape(const char *s);
232 char *cunescape_length(const char *s, size_t length);
233
234 char *xescape(const char *s, const char *bad);
235
236 char *bus_path_escape(const char *s);
237 char *bus_path_unescape(const char *s);
238
239 char *path_kill_slashes(char *path);
240
241 bool path_startswith(const char *path, const char *prefix);
242 bool path_equal(const char *a, const char *b);
243
244 char *ascii_strlower(char *path);
245
246 bool ignore_file(const char *filename);
247
248 bool chars_intersect(const char *a, const char *b);
249
250 char *format_timestamp(char *buf, size_t l, usec_t t);
251 char *format_timespan(char *buf, size_t l, usec_t t);
252
253 int make_stdio(int fd);
254
255 bool is_clean_exit(int code, int status);
256
257 unsigned long long random_ull(void);
258
259 #define DEFINE_STRING_TABLE_LOOKUP(name,type)                           \
260         const char *name##_to_string(type i) {                          \
261                 if (i < 0 || i >= (type) ELEMENTSOF(name##_table))      \
262                         return NULL;                                    \
263                 return name##_table[i];                                 \
264         }                                                               \
265         type name##_from_string(const char *s) {                        \
266                 type i;                                                 \
267                 unsigned u = 0;                                         \
268                 assert(s);                                              \
269                 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++)    \
270                         if (name##_table[i] &&                          \
271                             streq(name##_table[i], s))                  \
272                                 return i;                               \
273                 if (safe_atou(s, &u) >= 0 &&                            \
274                     u < ELEMENTSOF(name##_table))                       \
275                         return (type) u;                                \
276                 return (type) -1;                                       \
277         }                                                               \
278         struct __useless_struct_to_allow_trailing_semicolon__
279
280
281 int fd_nonblock(int fd, bool nonblock);
282 int fd_cloexec(int fd, bool cloexec);
283
284 int close_all_fds(const int except[], unsigned n_except);
285
286 bool fstype_is_network(const char *fstype);
287
288 int chvt(int vt);
289
290 int read_one_char(FILE *f, char *ret, bool *need_nl);
291 int ask(char *ret, const char *replies, const char *text, ...);
292
293 int reset_terminal(int fd);
294 int open_terminal(const char *name, int mode);
295 int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm);
296 int release_terminal(void);
297
298 int flush_fd(int fd);
299
300 int ignore_signals(int sig, ...);
301 int default_signals(int sig, ...);
302 int sigaction_many(const struct sigaction *sa, ...);
303
304 int close_pipe(int p[]);
305
306 ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
307 ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
308
309 int path_is_mount_point(const char *path);
310
311 bool is_device_path(const char *path);
312
313 int dir_is_empty(const char *path);
314
315 void rename_process(const char name[8]);
316
317 void sigset_add_many(sigset_t *ss, ...);
318
319 char* gethostname_malloc(void);
320 char* getlogname_malloc(void);
321 int getttyname_malloc(char **r);
322
323 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
324
325 int rm_rf(const char *path, bool only_dirs, bool delete_root);
326
327 cpu_set_t* cpu_set_malloc(unsigned *ncpus);
328
329 void status_vprintf(const char *format, va_list ap);
330 void status_printf(const char *format, ...);
331 void status_welcome(void);
332
333 int columns(void);
334
335 int running_in_chroot(void);
336
337 char *ellipsize(const char *s, unsigned length, unsigned percent);
338
339 void nss_disable_nscd(void);
340
341 const char *ioprio_class_to_string(int i);
342 int ioprio_class_from_string(const char *s);
343
344 const char *sigchld_code_to_string(int i);
345 int sigchld_code_from_string(const char *s);
346
347 const char *log_facility_to_string(int i);
348 int log_facility_from_string(const char *s);
349
350 const char *log_level_to_string(int i);
351 int log_level_from_string(const char *s);
352
353 const char *sched_policy_to_string(int i);
354 int sched_policy_from_string(const char *s);
355
356 const char *rlimit_to_string(int i);
357 int rlimit_from_string(const char *s);
358
359 const char *ip_tos_to_string(int i);
360 int ip_tos_from_string(const char *s);
361
362 const char *signal_to_string(int i);
363 int signal_from_string(const char *s);
364
365 #endif