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