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