]>
Commit | Line | Data |
---|---|---|
03467c88 | 1 | /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ |
60918275 LP |
2 | |
3 | #ifndef fooutilhfoo | |
4 | #define fooutilhfoo | |
5 | ||
a7334b09 LP |
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 | ||
60918275 LP |
25 | #include <inttypes.h> |
26 | #include <time.h> | |
27 | #include <sys/time.h> | |
28 | #include <stdbool.h> | |
5cb5a6ff | 29 | #include <stdlib.h> |
80876c20 | 30 | #include <stdio.h> |
9a34ec5f | 31 | #include <signal.h> |
82c121a4 | 32 | #include <sched.h> |
8f75a603 | 33 | #include <limits.h> |
60918275 | 34 | |
a838e6a1 LP |
35 | #include "macro.h" |
36 | ||
60918275 LP |
37 | typedef uint64_t usec_t; |
38 | ||
63983207 | 39 | typedef struct dual_timestamp { |
871d7de4 LP |
40 | usec_t realtime; |
41 | usec_t monotonic; | |
63983207 | 42 | } dual_timestamp; |
871d7de4 | 43 | |
034c6ed7 LP |
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 | |
60918275 LP |
49 | #define NSEC_PER_USEC 1000ULL |
50 | ||
24a6e4a4 LP |
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) | |
584be568 LP |
55 | #define USEC_PER_MONTH (2629800ULL*USEC_PER_SEC) |
56 | #define USEC_PER_YEAR (31557600ULL*USEC_PER_SEC) | |
24a6e4a4 | 57 | |
44d8db9e | 58 | /* What is interpreted as whitespace? */ |
4a72ff34 | 59 | #define WHITESPACE " \t\n\r" |
7072ced8 | 60 | #define NEWLINE "\n\r" |
44d8db9e | 61 | |
8b6c7120 | 62 | #define FORMAT_TIMESTAMP_MAX 64 |
584be568 | 63 | #define FORMAT_TIMESTAMP_PRETTY_MAX 256 |
871d7de4 | 64 | #define FORMAT_TIMESPAN_MAX 64 |
8b6c7120 | 65 | |
61cbdc4b | 66 | #define ANSI_HIGHLIGHT_ON "\x1B[1;31m" |
2ee68f72 | 67 | #define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m" |
61cbdc4b LP |
68 | #define ANSI_HIGHLIGHT_OFF "\x1B[0m" |
69 | ||
60918275 LP |
70 | usec_t now(clockid_t clock); |
71 | ||
63983207 | 72 | dual_timestamp* dual_timestamp_get(dual_timestamp *ts); |
871d7de4 | 73 | |
60918275 LP |
74 | usec_t timespec_load(const struct timespec *ts); |
75 | struct timespec *timespec_store(struct timespec *ts, usec_t u); | |
76 | ||
77 | usec_t timeval_load(const struct timeval *tv); | |
78 | struct timeval *timeval_store(struct timeval *tv, usec_t u); | |
79 | ||
80 | #define streq(a,b) (strcmp((a),(b)) == 0) | |
81 | ||
e05797fb LP |
82 | bool streq_ptr(const char *a, const char *b); |
83 | ||
60918275 LP |
84 | #define new(t, n) ((t*) malloc(sizeof(t)*(n))) |
85 | ||
86 | #define new0(t, n) ((t*) calloc((n), sizeof(t))) | |
87 | ||
88 | #define malloc0(n) (calloc((n), 1)) | |
89 | ||
90 | static inline const char* yes_no(bool b) { | |
91 | return b ? "yes" : "no"; | |
92 | } | |
93 | ||
94 | static inline const char* strempty(const char *s) { | |
95 | return s ? s : ""; | |
96 | } | |
97 | ||
98 | static inline const char* strnull(const char *s) { | |
99 | return s ? s : "(null)"; | |
100 | } | |
101 | ||
04fd6fe4 LP |
102 | static inline const char *strna(const char *s) { |
103 | return s ? s : "n/a"; | |
104 | } | |
105 | ||
106 | static inline bool is_path_absolute(const char *p) { | |
107 | return *p == '/'; | |
108 | } | |
109 | ||
60918275 LP |
110 | bool endswith(const char *s, const char *postfix); |
111 | bool startswith(const char *s, const char *prefix); | |
3177a7fa | 112 | bool startswith_no_case(const char *s, const char *prefix); |
60918275 | 113 | |
79d6d816 LP |
114 | bool first_word(const char *s, const char *word); |
115 | ||
42f4e3c4 | 116 | int close_nointr(int fd); |
85f136b5 | 117 | void close_nointr_nofail(int fd); |
5b6319dc | 118 | void close_many(const int fds[], unsigned n_fd); |
60918275 | 119 | |
85261803 | 120 | int parse_boolean(const char *v); |
24a6e4a4 | 121 | int parse_usec(const char *t, usec_t *usec); |
3ba686c1 | 122 | int parse_pid(const char *s, pid_t* ret_pid); |
85261803 LP |
123 | |
124 | int safe_atou(const char *s, unsigned *ret_u); | |
125 | int safe_atoi(const char *s, int *ret_i); | |
126 | ||
8f75a603 LP |
127 | int safe_atollu(const char *s, unsigned long long *ret_u); |
128 | int safe_atolli(const char *s, long long int *ret_i); | |
129 | ||
130 | #if __WORDSIZE == 32 | |
131 | static inline int safe_atolu(const char *s, unsigned long *ret_u) { | |
132 | assert_cc(sizeof(unsigned long) == sizeof(unsigned)); | |
133 | return safe_atou(s, (unsigned*) ret_u); | |
134 | } | |
135 | static inline int safe_atoli(const char *s, long int *ret_u) { | |
136 | assert_cc(sizeof(long int) == sizeof(int)); | |
137 | return safe_atoi(s, (int*) ret_u); | |
138 | } | |
139 | #else | |
140 | static inline int safe_atolu(const char *s, unsigned long *ret_u) { | |
141 | assert_cc(sizeof(unsigned long) == sizeof(unsigned long long)); | |
142 | return safe_atollu(s, (unsigned long long*) ret_u); | |
143 | } | |
144 | static inline int safe_atoli(const char *s, long int *ret_u) { | |
145 | assert_cc(sizeof(long int) == sizeof(long long int)); | |
146 | return safe_atolli(s, (long long int*) ret_u); | |
147 | } | |
148 | #endif | |
149 | ||
a838e6a1 LP |
150 | static inline int safe_atou32(const char *s, uint32_t *ret_u) { |
151 | assert_cc(sizeof(uint32_t) == sizeof(unsigned)); | |
152 | return safe_atou(s, (unsigned*) ret_u); | |
153 | } | |
154 | ||
8f75a603 | 155 | static inline int safe_atoi32(const char *s, int32_t *ret_i) { |
a838e6a1 | 156 | assert_cc(sizeof(int32_t) == sizeof(int)); |
8f75a603 | 157 | return safe_atoi(s, (int*) ret_i); |
a838e6a1 LP |
158 | } |
159 | ||
8f75a603 LP |
160 | static inline int safe_atou64(const char *s, uint64_t *ret_u) { |
161 | assert_cc(sizeof(uint64_t) == sizeof(unsigned long long)); | |
162 | return safe_atollu(s, (unsigned long long*) ret_u); | |
163 | } | |
034c6ed7 | 164 | |
8f75a603 LP |
165 | static inline int safe_atoi64(const char *s, int64_t *ret_i) { |
166 | assert_cc(sizeof(int64_t) == sizeof(long long int)); | |
167 | return safe_atolli(s, (long long int*) ret_i); | |
168 | } | |
034c6ed7 | 169 | |
65d2ebdc | 170 | char *split(const char *c, size_t *l, const char *separator, char **state); |
034c6ed7 | 171 | char *split_quoted(const char *c, size_t *l, char **state); |
a41e8209 | 172 | |
034c6ed7 | 173 | #define FOREACH_WORD(word, length, s, state) \ |
f62c0e4f | 174 | for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state))) |
65d2ebdc LP |
175 | |
176 | #define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \ | |
f62c0e4f | 177 | for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state))) |
a41e8209 | 178 | |
034c6ed7 | 179 | #define FOREACH_WORD_QUOTED(word, length, s, state) \ |
f62c0e4f | 180 | for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state))) |
034c6ed7 | 181 | |
65d2ebdc | 182 | char **split_path_and_make_absolute(const char *p); |
82919e3d | 183 | |
034c6ed7 LP |
184 | pid_t get_parent_of_pid(pid_t pid, pid_t *ppid); |
185 | ||
186 | int write_one_line_file(const char *fn, const char *line); | |
187 | int read_one_line_file(const char *fn, char **line); | |
188 | ||
44d8db9e | 189 | char *strappend(const char *s, const char *suffix); |
fab56fc5 LP |
190 | char *strnappend(const char *s, const char *suffix, size_t length); |
191 | ||
192 | char *replace_env(const char *format, char **env); | |
193 | char **replace_env_argv(char **argv, char **env); | |
44d8db9e | 194 | |
87f0e418 | 195 | int readlink_malloc(const char *p, char **r); |
2c7108c4 | 196 | int readlink_and_make_absolute(const char *p, char **r); |
87f0e418 LP |
197 | |
198 | char *file_name_from_path(const char *p); | |
0301abf4 LP |
199 | bool is_path(const char *p); |
200 | ||
201 | bool path_is_absolute(const char *p); | |
202 | char *path_make_absolute(const char *p, const char *prefix); | |
65d2ebdc | 203 | char *path_make_absolute_cwd(const char *p); |
c3f6d675 | 204 | |
65d2ebdc | 205 | char **strv_path_make_absolute_cwd(char **l); |
c3f6d675 | 206 | char **strv_path_canonicalize(char **l); |
87f0e418 | 207 | |
2a987ee8 LP |
208 | int reset_all_signal_handlers(void); |
209 | ||
4a72ff34 | 210 | char *strstrip(char *s); |
ee9b5e01 | 211 | char *delete_chars(char *s, const char *bad); |
7072ced8 | 212 | char *truncate_nl(char *s); |
ee9b5e01 | 213 | |
4a72ff34 | 214 | char *file_in_same_dir(const char *path, const char *filename); |
8c6db833 | 215 | int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid); |
a9f5d454 | 216 | int mkdir_parents(const char *path, mode_t mode); |
bbd67135 | 217 | int mkdir_p(const char *path, mode_t mode); |
4a72ff34 | 218 | |
35d2e7ec LP |
219 | int parent_of_path(const char *path, char **parent); |
220 | ||
c32dd69b LP |
221 | int rmdir_parents(const char *path, const char *stop); |
222 | ||
7072ced8 | 223 | int get_process_name(pid_t pid, char **name); |
c59760ee | 224 | int get_process_cmdline(pid_t pid, size_t max_length, char **line); |
7072ced8 | 225 | |
fb624d04 | 226 | char hexchar(int x); |
4fe88d28 LP |
227 | int unhexchar(char c); |
228 | char octchar(int x); | |
229 | int unoctchar(char c); | |
5af98f82 LP |
230 | char decchar(int x); |
231 | int undecchar(char c); | |
4fe88d28 LP |
232 | |
233 | char *cescape(const char *s); | |
234 | char *cunescape(const char *s); | |
6febfd0d LP |
235 | char *cunescape_length(const char *s, size_t length); |
236 | ||
237 | char *xescape(const char *s, const char *bad); | |
238 | ||
239 | char *bus_path_escape(const char *s); | |
240 | char *bus_path_unescape(const char *s); | |
4fe88d28 LP |
241 | |
242 | char *path_kill_slashes(char *path); | |
243 | ||
244 | bool path_startswith(const char *path, const char *prefix); | |
15ae422b | 245 | bool path_equal(const char *a, const char *b); |
4fe88d28 LP |
246 | |
247 | char *ascii_strlower(char *path); | |
248 | ||
c85dc17b LP |
249 | bool ignore_file(const char *filename); |
250 | ||
db12775d LP |
251 | bool chars_intersect(const char *a, const char *b); |
252 | ||
8b6c7120 | 253 | char *format_timestamp(char *buf, size_t l, usec_t t); |
584be568 | 254 | char *format_timestamp_pretty(char *buf, size_t l, usec_t t); |
871d7de4 | 255 | char *format_timespan(char *buf, size_t l, usec_t t); |
8b6c7120 | 256 | |
843d2643 LP |
257 | int make_stdio(int fd); |
258 | ||
cb8a8f78 | 259 | bool is_clean_exit(int code, int status); |
d06dacd0 | 260 | bool is_clean_exit_lsb(int code, int status); |
cb8a8f78 | 261 | |
d3782d60 LP |
262 | unsigned long long random_ull(void); |
263 | ||
1dccbe19 LP |
264 | #define DEFINE_STRING_TABLE_LOOKUP(name,type) \ |
265 | const char *name##_to_string(type i) { \ | |
266 | if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \ | |
267 | return NULL; \ | |
268 | return name##_table[i]; \ | |
269 | } \ | |
270 | type name##_from_string(const char *s) { \ | |
271 | type i; \ | |
a7610064 | 272 | unsigned u = 0; \ |
1dccbe19 LP |
273 | assert(s); \ |
274 | for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \ | |
4fd5948e LP |
275 | if (name##_table[i] && \ |
276 | streq(name##_table[i], s)) \ | |
1dccbe19 | 277 | return i; \ |
d3725859 LP |
278 | if (safe_atou(s, &u) >= 0 && \ |
279 | u < ELEMENTSOF(name##_table)) \ | |
280 | return (type) u; \ | |
1dccbe19 LP |
281 | return (type) -1; \ |
282 | } \ | |
283 | struct __useless_struct_to_allow_trailing_semicolon__ | |
284 | ||
285 | ||
3a0ecb08 LP |
286 | int fd_nonblock(int fd, bool nonblock); |
287 | int fd_cloexec(int fd, bool cloexec); | |
288 | ||
a0d40ac5 LP |
289 | int close_all_fds(const int except[], unsigned n_except); |
290 | ||
42856c10 LP |
291 | bool fstype_is_network(const char *fstype); |
292 | ||
601f6a1e LP |
293 | int chvt(int vt); |
294 | ||
80876c20 LP |
295 | int read_one_char(FILE *f, char *ret, bool *need_nl); |
296 | int ask(char *ret, const char *replies, const char *text, ...); | |
297 | ||
298 | int reset_terminal(int fd); | |
299 | int open_terminal(const char *name, int mode); | |
21de3988 | 300 | int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm); |
80876c20 LP |
301 | int release_terminal(void); |
302 | ||
303 | int flush_fd(int fd); | |
304 | ||
9a34ec5f LP |
305 | int ignore_signals(int sig, ...); |
306 | int default_signals(int sig, ...); | |
307 | int sigaction_many(const struct sigaction *sa, ...); | |
a337c6fc | 308 | |
8d567588 LP |
309 | int close_pipe(int p[]); |
310 | ||
eb22ac37 LP |
311 | ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll); |
312 | ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll); | |
8d567588 LP |
313 | |
314 | int path_is_mount_point(const char *path); | |
315 | ||
8407a5d0 LP |
316 | bool is_device_path(const char *path); |
317 | ||
01f78473 LP |
318 | int dir_is_empty(const char *path); |
319 | ||
5b6319dc | 320 | void rename_process(const char name[8]); |
2d368c14 | 321 | |
7d793605 LP |
322 | void sigset_add_many(sigset_t *ss, ...); |
323 | ||
ef2f1067 LP |
324 | char* gethostname_malloc(void); |
325 | char* getlogname_malloc(void); | |
8c6db833 | 326 | int getttyname_malloc(char **r); |
8c6db833 LP |
327 | |
328 | int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid); | |
329 | ||
330 | int rm_rf(const char *path, bool only_dirs, bool delete_root); | |
ef2f1067 | 331 | |
82c121a4 LP |
332 | cpu_set_t* cpu_set_malloc(unsigned *ncpus); |
333 | ||
9e58ff9c | 334 | void status_vprintf(const char *format, va_list ap); |
c846ff47 LP |
335 | void status_printf(const char *format, ...); |
336 | void status_welcome(void); | |
9e58ff9c | 337 | |
fa776d8e LP |
338 | int columns(void); |
339 | ||
b4f10a5e LP |
340 | int running_in_chroot(void); |
341 | ||
8fe914ec LP |
342 | char *ellipsize(const char *s, unsigned length, unsigned percent); |
343 | ||
f6144808 LP |
344 | int touch(const char *path); |
345 | ||
11ce3427 LP |
346 | char *unquote(const char *s, const char quote); |
347 | ||
c4e2ceae LP |
348 | #define NULSTR_FOREACH(i, l) \ |
349 | for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1) | |
350 | ||
1dccbe19 LP |
351 | const char *ioprio_class_to_string(int i); |
352 | int ioprio_class_from_string(const char *s); | |
353 | ||
354 | const char *sigchld_code_to_string(int i); | |
355 | int sigchld_code_from_string(const char *s); | |
356 | ||
357 | const char *log_facility_to_string(int i); | |
358 | int log_facility_from_string(const char *s); | |
359 | ||
360 | const char *log_level_to_string(int i); | |
361 | int log_level_from_string(const char *s); | |
362 | ||
363 | const char *sched_policy_to_string(int i); | |
364 | int sched_policy_from_string(const char *s); | |
365 | ||
366 | const char *rlimit_to_string(int i); | |
367 | int rlimit_from_string(const char *s); | |
368 | ||
4fd5948e LP |
369 | const char *ip_tos_to_string(int i); |
370 | int ip_tos_from_string(const char *s); | |
371 | ||
2e22afe9 LP |
372 | const char *signal_to_string(int i); |
373 | int signal_from_string(const char *s); | |
374 | ||
60918275 | 375 | #endif |