]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/util.h
dbus: automatically generate and install introspection files
[thirdparty/systemd.git] / src / 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>
80876c20 30#include <stdio.h>
9a34ec5f 31#include <signal.h>
60918275
LP
32
33typedef uint64_t usec_t;
34
034c6ed7
LP
35#define MSEC_PER_SEC 1000ULL
36#define USEC_PER_SEC 1000000ULL
37#define USEC_PER_MSEC 1000ULL
38#define NSEC_PER_SEC 1000000000ULL
39#define NSEC_PER_MSEC 1000000ULL
60918275
LP
40#define NSEC_PER_USEC 1000ULL
41
24a6e4a4
LP
42#define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
43#define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
44#define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
45#define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
46
44d8db9e 47/* What is interpreted as whitespace? */
4a72ff34 48#define WHITESPACE " \t\n\r"
7072ced8 49#define NEWLINE "\n\r"
44d8db9e 50
8b6c7120
LP
51#define FORMAT_TIMESTAMP_MAX 64
52
60918275
LP
53usec_t now(clockid_t clock);
54
55usec_t timespec_load(const struct timespec *ts);
56struct timespec *timespec_store(struct timespec *ts, usec_t u);
57
58usec_t timeval_load(const struct timeval *tv);
59struct timeval *timeval_store(struct timeval *tv, usec_t u);
60
61#define streq(a,b) (strcmp((a),(b)) == 0)
62
e05797fb
LP
63bool streq_ptr(const char *a, const char *b);
64
60918275
LP
65#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
66
67#define new0(t, n) ((t*) calloc((n), sizeof(t)))
68
69#define malloc0(n) (calloc((n), 1))
70
71static inline const char* yes_no(bool b) {
72 return b ? "yes" : "no";
73}
74
75static inline const char* strempty(const char *s) {
76 return s ? s : "";
77}
78
79static inline const char* strnull(const char *s) {
80 return s ? s : "(null)";
81}
82
04fd6fe4
LP
83static inline const char *strna(const char *s) {
84 return s ? s : "n/a";
85}
86
87static inline bool is_path_absolute(const char *p) {
88 return *p == '/';
89}
90
60918275
LP
91bool endswith(const char *s, const char *postfix);
92bool startswith(const char *s, const char *prefix);
3177a7fa 93bool startswith_no_case(const char *s, const char *prefix);
60918275 94
79d6d816
LP
95bool first_word(const char *s, const char *word);
96
42f4e3c4 97int close_nointr(int fd);
85f136b5 98void close_nointr_nofail(int fd);
60918275 99
85261803 100int parse_boolean(const char *v);
24a6e4a4 101int parse_usec(const char *t, usec_t *usec);
85261803
LP
102
103int safe_atou(const char *s, unsigned *ret_u);
104int safe_atoi(const char *s, int *ret_i);
105
034c6ed7
LP
106int safe_atolu(const char *s, unsigned long *ret_u);
107int safe_atoli(const char *s, long int *ret_i);
108
109int safe_atollu(const char *s, unsigned long long *ret_u);
110int safe_atolli(const char *s, long long int *ret_i);
111
65d2ebdc 112char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 113char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 114
034c6ed7 115#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 116 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
117
118#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 119 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 120
034c6ed7 121#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 122 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 123
65d2ebdc 124char **split_path_and_make_absolute(const char *p);
82919e3d 125
034c6ed7
LP
126pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
127
128int write_one_line_file(const char *fn, const char *line);
129int read_one_line_file(const char *fn, char **line);
130
44d8db9e
LP
131char *strappend(const char *s, const char *suffix);
132
87f0e418
LP
133int readlink_malloc(const char *p, char **r);
134
135char *file_name_from_path(const char *p);
0301abf4
LP
136bool is_path(const char *p);
137
138bool path_is_absolute(const char *p);
139char *path_make_absolute(const char *p, const char *prefix);
65d2ebdc 140char *path_make_absolute_cwd(const char *p);
c3f6d675 141
65d2ebdc 142char **strv_path_make_absolute_cwd(char **l);
c3f6d675 143char **strv_path_canonicalize(char **l);
87f0e418 144
2a987ee8
LP
145int reset_all_signal_handlers(void);
146
4a72ff34 147char *strstrip(char *s);
ee9b5e01 148char *delete_chars(char *s, const char *bad);
7072ced8 149char *truncate_nl(char *s);
ee9b5e01 150
4a72ff34 151char *file_in_same_dir(const char *path, const char *filename);
a9f5d454 152int mkdir_parents(const char *path, mode_t mode);
bbd67135 153int mkdir_p(const char *path, mode_t mode);
4a72ff34 154
7072ced8
LP
155int get_process_name(pid_t pid, char **name);
156
fb624d04 157char hexchar(int x);
4fe88d28
LP
158int unhexchar(char c);
159char octchar(int x);
160int unoctchar(char c);
5af98f82
LP
161char decchar(int x);
162int undecchar(char c);
4fe88d28
LP
163
164char *cescape(const char *s);
165char *cunescape(const char *s);
166
167char *path_kill_slashes(char *path);
168
169bool path_startswith(const char *path, const char *prefix);
15ae422b 170bool path_equal(const char *a, const char *b);
4fe88d28
LP
171
172char *ascii_strlower(char *path);
173
174char *xescape(const char *s, const char *bad);
fb624d04 175
ea430986
LP
176char *bus_path_escape(const char *s);
177char *bus_path_unescape(const char *s);
178
c85dc17b
LP
179bool ignore_file(const char *filename);
180
db12775d
LP
181bool chars_intersect(const char *a, const char *b);
182
8b6c7120
LP
183char *format_timestamp(char *buf, size_t l, usec_t t);
184
843d2643
LP
185int make_stdio(int fd);
186
cb8a8f78
LP
187bool is_clean_exit(int code, int status);
188
1dccbe19
LP
189#define DEFINE_STRING_TABLE_LOOKUP(name,type) \
190 const char *name##_to_string(type i) { \
191 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
192 return NULL; \
193 return name##_table[i]; \
194 } \
195 type name##_from_string(const char *s) { \
196 type i; \
a7610064 197 unsigned u = 0; \
1dccbe19
LP
198 assert(s); \
199 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
200 if (streq(name##_table[i], s)) \
201 return i; \
d3725859
LP
202 if (safe_atou(s, &u) >= 0 && \
203 u < ELEMENTSOF(name##_table)) \
204 return (type) u; \
1dccbe19
LP
205 return (type) -1; \
206 } \
207 struct __useless_struct_to_allow_trailing_semicolon__
208
209
3a0ecb08
LP
210int fd_nonblock(int fd, bool nonblock);
211int fd_cloexec(int fd, bool cloexec);
212
a0d40ac5
LP
213int close_all_fds(const int except[], unsigned n_except);
214
42856c10
LP
215bool fstype_is_network(const char *fstype);
216
601f6a1e
LP
217int chvt(int vt);
218
80876c20
LP
219int read_one_char(FILE *f, char *ret, bool *need_nl);
220int ask(char *ret, const char *replies, const char *text, ...);
221
222int reset_terminal(int fd);
223int open_terminal(const char *name, int mode);
21de3988 224int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm);
80876c20
LP
225int release_terminal(void);
226
227int flush_fd(int fd);
228
9a34ec5f
LP
229int ignore_signals(int sig, ...);
230int default_signals(int sig, ...);
231int sigaction_many(const struct sigaction *sa, ...);
a337c6fc 232
8d567588
LP
233int close_pipe(int p[]);
234
235ssize_t loop_read(int fd, void *buf, size_t nbytes);
236
237int path_is_mount_point(const char *path);
238
8407a5d0
LP
239bool is_device_path(const char *path);
240
2d368c14
LP
241extern char * __progname;
242
1dccbe19
LP
243const char *ioprio_class_to_string(int i);
244int ioprio_class_from_string(const char *s);
245
246const char *sigchld_code_to_string(int i);
247int sigchld_code_from_string(const char *s);
248
249const char *log_facility_to_string(int i);
250int log_facility_from_string(const char *s);
251
252const char *log_level_to_string(int i);
253int log_level_from_string(const char *s);
254
255const char *sched_policy_to_string(int i);
256int sched_policy_from_string(const char *s);
257
258const char *rlimit_to_string(int i);
259int rlimit_from_string(const char *s);
260
60918275 261#endif