chiark / gitweb /
tree-wide: remove Lennart's copyright lines
[elogind.git] / src / basic / util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <alloca.h>
5 #include <errno.h>
6 #include <fcntl.h>
7 #include <inttypes.h>
8 #include <limits.h>
9 #include <locale.h>
10 #include <stdarg.h>
11 #include <stdbool.h>
12 #include <stddef.h>
13 #include <stdint.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <sys/inotify.h>
18 #include <sys/socket.h>
19 #include <sys/stat.h>
20 #include <sys/statfs.h>
21 #include <sys/sysmacros.h>
22 #include <sys/types.h>
23 #include <time.h>
24 #include <unistd.h>
25
26 #include "format-util.h"
27 #include "macro.h"
28 #include "missing.h"
29 #include "time-util.h"
30
31 size_t page_size(void) _pure_;
32 #define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
33
34 static inline const char* yes_no(bool b) {
35         return b ? "yes" : "no";
36 }
37
38 static inline const char* true_false(bool b) {
39         return b ? "true" : "false";
40 }
41
42 static inline const char* one_zero(bool b) {
43         return b ? "1" : "0";
44 }
45
46 static inline const char* enable_disable(bool b) {
47         return b ? "enable" : "disable";
48 }
49
50 #if 0 /// UNNEEDED by elogind
51 bool plymouth_running(void);
52 #endif // 0
53
54 bool display_is_local(const char *display) _pure_;
55 int socket_from_display(const char *display, char **path);
56
57 #if 0 /// UNNEEDED by elogind
58 #endif // 0
59 #define NULSTR_FOREACH(i, l)                                    \
60         for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
61
62 #define NULSTR_FOREACH_PAIR(i, j, l)                             \
63         for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
64
65 extern int saved_argc;
66 extern char **saved_argv;
67
68 #if 0 /// UNNEEDED by elogind
69 bool kexec_loaded(void);
70
71 int prot_from_flags(int flags) _const_;
72 #endif // 0
73
74 bool in_initrd(void);
75 #if 0 /// UNNEEDED by elogind
76 void in_initrd_force(bool value);
77
78 void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
79                  int (*compar) (const void *, const void *, void *),
80                  void *arg);
81 #endif // 0
82
83 /**
84  * Normal bsearch requires base to be nonnull. Here were require
85  * that only if nmemb > 0.
86  */
87 static inline void* bsearch_safe(const void *key, const void *base,
88                                  size_t nmemb, size_t size, comparison_fn_t compar) {
89         if (nmemb <= 0)
90                 return NULL;
91
92         assert(base);
93         return bsearch(key, base, nmemb, size, compar);
94 }
95
96 /**
97  * Normal qsort requires base to be nonnull. Here were require
98  * that only if nmemb > 0.
99  */
100 static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) {
101         if (nmemb <= 1)
102                 return;
103
104         assert(base);
105         qsort(base, nmemb, size, compar);
106 }
107
108 /* A wrapper around the above, but that adds typesafety: the element size is automatically derived from the type and so
109  * is the prototype for the comparison function */
110 #define typesafe_qsort(p, n, func)                                      \
111         ({                                                              \
112                 int (*_func_)(const typeof(p[0])*, const typeof(p[0])*) = func; \
113                 qsort_safe((p), (n), sizeof((p)[0]), (__compar_fn_t) _func_); \
114         })
115
116 static inline void qsort_r_safe(void *base, size_t nmemb, size_t size, int (*compar)(const void*, const void*, void*), void *userdata) {
117         if (nmemb <= 1)
118                 return;
119
120         assert(base);
121         qsort_r(base, nmemb, size, compar, userdata);
122 }
123
124 /**
125  * Normal memcpy requires src to be nonnull. We do nothing if n is 0.
126  */
127 static inline void memcpy_safe(void *dst, const void *src, size_t n) {
128         if (n == 0)
129                 return;
130         assert(src);
131         memcpy(dst, src, n);
132 }
133
134 int on_ac_power(void);
135
136 #define memzero(x,l) (memset((x), 0, (l)))
137 #define zero(x) (memzero(&(x), sizeof(x)))
138
139 static inline void *mempset(void *s, int c, size_t n) {
140         memset(s, c, n);
141         return (uint8_t*)s + n;
142 }
143
144 static inline void _reset_errno_(int *saved_errno) {
145         errno = *saved_errno;
146 }
147
148 #define PROTECT_ERRNO _cleanup_(_reset_errno_) __attribute__((unused)) int _saved_errno_ = errno
149
150 static inline int negative_errno(void) {
151         /* This helper should be used to shut up gcc if you know 'errno' is
152          * negative. Instead of "return -errno;", use "return negative_errno();"
153          * It will suppress bogus gcc warnings in case it assumes 'errno' might
154          * be 0 and thus the caller's error-handling might not be triggered. */
155         assert_return(errno > 0, -EINVAL);
156         return -errno;
157 }
158
159 static inline unsigned u64log2(uint64_t n) {
160 #if __SIZEOF_LONG_LONG__ == 8
161         return (n > 1) ? (unsigned) __builtin_clzll(n) ^ 63U : 0;
162 #else
163 #error "Wut?"
164 #endif
165 }
166
167 static inline unsigned u32ctz(uint32_t n) {
168 #if __SIZEOF_INT__ == 4
169         return __builtin_ctz(n);
170 #else
171 #error "Wut?"
172 #endif
173 }
174
175 static inline unsigned log2i(int x) {
176         assert(x > 0);
177
178         return __SIZEOF_INT__ * 8 - __builtin_clz(x) - 1;
179 }
180
181 static inline unsigned log2u(unsigned x) {
182         assert(x > 0);
183
184         return sizeof(unsigned) * 8 - __builtin_clz(x) - 1;
185 }
186
187 static inline unsigned log2u_round_up(unsigned x) {
188         assert(x > 0);
189
190         if (x == 1)
191                 return 0;
192
193         return log2u(x - 1) + 1;
194 }
195
196 int container_get_leader(const char *machine, pid_t *pid);
197
198 int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *netns_fd, int *userns_fd, int *root_fd);
199 int namespace_enter(int pidns_fd, int mntns_fd, int netns_fd, int userns_fd, int root_fd);
200
201 uint64_t physical_memory(void);
202 uint64_t physical_memory_scale(uint64_t v, uint64_t max);
203
204 uint64_t system_tasks_max(void);
205 uint64_t system_tasks_max_scale(uint64_t v, uint64_t max);
206
207 int version(void);
208
209 #if 0 /// UNNEEDED by elogind
210 int str_verscmp(const char *s1, const char *s2);
211
212 void disable_coredumps(void);
213 #endif // 0