]> git.ipfire.org Git - people/ms/systemd.git/blame - util.h
manager: instead of using siginfo_t when reading SIGCHLD PIDs, run waitid() twice...
[people/ms/systemd.git] / util.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
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>
60918275
LP
30
31typedef uint64_t usec_t;
32
034c6ed7
LP
33#define MSEC_PER_SEC 1000ULL
34#define USEC_PER_SEC 1000000ULL
35#define USEC_PER_MSEC 1000ULL
36#define NSEC_PER_SEC 1000000000ULL
37#define NSEC_PER_MSEC 1000000ULL
60918275
LP
38#define NSEC_PER_USEC 1000ULL
39
44d8db9e 40/* What is interpreted as whitespace? */
4a72ff34 41#define WHITESPACE " \t\n\r"
7072ced8 42#define NEWLINE "\n\r"
44d8db9e 43
8b6c7120
LP
44#define FORMAT_TIMESTAMP_MAX 64
45
60918275
LP
46usec_t now(clockid_t clock);
47
48usec_t timespec_load(const struct timespec *ts);
49struct timespec *timespec_store(struct timespec *ts, usec_t u);
50
51usec_t timeval_load(const struct timeval *tv);
52struct timeval *timeval_store(struct timeval *tv, usec_t u);
53
54#define streq(a,b) (strcmp((a),(b)) == 0)
55
e05797fb
LP
56bool streq_ptr(const char *a, const char *b);
57
60918275
LP
58#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
59
60#define new0(t, n) ((t*) calloc((n), sizeof(t)))
61
62#define malloc0(n) (calloc((n), 1))
63
64static inline const char* yes_no(bool b) {
65 return b ? "yes" : "no";
66}
67
68static inline const char* strempty(const char *s) {
69 return s ? s : "";
70}
71
72static inline const char* strnull(const char *s) {
73 return s ? s : "(null)";
74}
75
04fd6fe4
LP
76static inline const char *strna(const char *s) {
77 return s ? s : "n/a";
78}
79
80static inline bool is_path_absolute(const char *p) {
81 return *p == '/';
82}
83
60918275
LP
84bool endswith(const char *s, const char *postfix);
85bool startswith(const char *s, const char *prefix);
86
79d6d816
LP
87bool first_word(const char *s, const char *word);
88
42f4e3c4 89int close_nointr(int fd);
85f136b5 90void close_nointr_nofail(int fd);
60918275 91
85261803
LP
92int parse_boolean(const char *v);
93
94int safe_atou(const char *s, unsigned *ret_u);
95int safe_atoi(const char *s, int *ret_i);
96
034c6ed7
LP
97int safe_atolu(const char *s, unsigned long *ret_u);
98int safe_atoli(const char *s, long int *ret_i);
99
100int safe_atollu(const char *s, unsigned long long *ret_u);
101int safe_atolli(const char *s, long long int *ret_i);
102
65d2ebdc 103char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 104char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 105
034c6ed7 106#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 107 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
108
109#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 110 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 111
034c6ed7 112#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 113 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 114
65d2ebdc 115char **split_path_and_make_absolute(const char *p);
82919e3d 116
034c6ed7
LP
117pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
118
119int write_one_line_file(const char *fn, const char *line);
120int read_one_line_file(const char *fn, char **line);
121
44d8db9e
LP
122char *strappend(const char *s, const char *suffix);
123
87f0e418
LP
124int readlink_malloc(const char *p, char **r);
125
126char *file_name_from_path(const char *p);
0301abf4
LP
127bool is_path(const char *p);
128
129bool path_is_absolute(const char *p);
130char *path_make_absolute(const char *p, const char *prefix);
65d2ebdc
LP
131char *path_make_absolute_cwd(const char *p);
132char **strv_path_make_absolute_cwd(char **l);
87f0e418 133
2a987ee8
LP
134int reset_all_signal_handlers(void);
135
4a72ff34 136char *strstrip(char *s);
ee9b5e01 137char *delete_chars(char *s, const char *bad);
7072ced8 138char *truncate_nl(char *s);
ee9b5e01 139
4a72ff34 140char *file_in_same_dir(const char *path, const char *filename);
a9f5d454 141int mkdir_parents(const char *path, mode_t mode);
bbd67135 142int mkdir_p(const char *path, mode_t mode);
4a72ff34 143
7072ced8
LP
144int get_process_name(pid_t pid, char **name);
145
fb624d04 146char hexchar(int x);
4fe88d28
LP
147int unhexchar(char c);
148char octchar(int x);
149int unoctchar(char c);
5af98f82
LP
150char decchar(int x);
151int undecchar(char c);
4fe88d28
LP
152
153char *cescape(const char *s);
154char *cunescape(const char *s);
155
156char *path_kill_slashes(char *path);
157
158bool path_startswith(const char *path, const char *prefix);
159
160char *ascii_strlower(char *path);
161
162char *xescape(const char *s, const char *bad);
fb624d04 163
ea430986
LP
164char *bus_path_escape(const char *s);
165char *bus_path_unescape(const char *s);
166
c85dc17b
LP
167bool ignore_file(const char *filename);
168
db12775d
LP
169bool chars_intersect(const char *a, const char *b);
170
8b6c7120
LP
171char *format_timestamp(char *buf, size_t l, usec_t t);
172
1dccbe19
LP
173#define DEFINE_STRING_TABLE_LOOKUP(name,type) \
174 const char *name##_to_string(type i) { \
175 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
176 return NULL; \
177 return name##_table[i]; \
178 } \
179 type name##_from_string(const char *s) { \
180 type i; \
a7610064 181 unsigned u = 0; \
1dccbe19
LP
182 assert(s); \
183 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
184 if (streq(name##_table[i], s)) \
185 return i; \
d3725859
LP
186 if (safe_atou(s, &u) >= 0 && \
187 u < ELEMENTSOF(name##_table)) \
188 return (type) u; \
1dccbe19
LP
189 return (type) -1; \
190 } \
191 struct __useless_struct_to_allow_trailing_semicolon__
192
193
3a0ecb08
LP
194int fd_nonblock(int fd, bool nonblock);
195int fd_cloexec(int fd, bool cloexec);
196
a0d40ac5
LP
197int close_all_fds(const int except[], unsigned n_except);
198
42856c10
LP
199bool fstype_is_network(const char *fstype);
200
601f6a1e
LP
201int chvt(int vt);
202
2d368c14
LP
203extern char * __progname;
204
1dccbe19
LP
205const char *ioprio_class_to_string(int i);
206int ioprio_class_from_string(const char *s);
207
208const char *sigchld_code_to_string(int i);
209int sigchld_code_from_string(const char *s);
210
211const char *log_facility_to_string(int i);
212int log_facility_from_string(const char *s);
213
214const char *log_level_to_string(int i);
215int log_level_from_string(const char *s);
216
217const char *sched_policy_to_string(int i);
218int sched_policy_from_string(const char *s);
219
220const char *rlimit_to_string(int i);
221int rlimit_from_string(const char *s);
222
60918275 223#endif