1 /* util.h
2 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
6 * Logging and other utility functions.
7 */
8
9 #ifndef _UTIL_H_
10 #define _UTIL_H_
11
12 #include <stdbool.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <sys/types.h>
16 #include <syslog.h>
17 #include <unistd.h>
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 /*
24 * Silence compiler warnings for unused variables/functions.
25 *
26 * If the definition is actually used, the attribute should be removed, but if
27 * it's forgotten or left in place, it doesn't cause a problem.
28 *
29 * If the definition is actually unused, the compiler is free to remove it from
30 * the output so as to save size. If you want to make sure the definition is
31 * kept (e.g. for ABI compatibility), look at the "used" attribute instead.
32 */
33 #define attribute_unused __attribute__((__unused__))
34
35 /*
36 * Mark the symbol as "weak" in the ELF output. This provides a fallback symbol
37 * that may be overriden at link time. See this page for more details:
38 * https://en.wikipedia.org/wiki/Weak_symbol
39 */
40 #define attribute_weak __attribute__((__weak__))
41
42 /*
43 * Mark the function as a printf-style function.
44 * @format_idx The index in the function argument list where the format string
45 * is passed (where the first argument is "1").
46 * @check_idx The index in the function argument list where the first argument
47 * used in the format string is passed.
48 * Some examples:
49 * foo([1] const char *format, [2] ...): format=1 check=2
50 * foo([1] int, [2] const char *format, [3] ...): format=2 check=3
51 * foo([1] const char *format, [2] const char *, [3] ...): format=1 check=3
52 */
53 #define attribute_printf(format_idx, check_idx) \
54 __attribute__((__format__(__printf__, format_idx, check_idx)))
55
56 /* clang-format off */
57 #define die(_msg, ...) \
58 do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
59
60 #define pdie(_msg, ...) \
61 die(_msg ": %m", ## __VA_ARGS__)
62
63 #define warn(_msg, ...) \
64 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
65
66 #define pwarn(_msg, ...) \
67 warn(_msg ": %m", ## __VA_ARGS__)
68
69 #define info(_msg, ...) \
70 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
71
72 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
73 /* clang-format on */
74
75 extern const char *log_syscalls[];
76 extern const size_t log_syscalls_len;
77
78 enum logging_system_t {
79 /* Log to syslog. This is the default. */
80 LOG_TO_SYSLOG = 0,
81
82 /* Log to a file descriptor. */
83 LOG_TO_FD,
84 };
85
86 /*
87 * Even though this function internally calls abort(2)/exit(2), it is
88 * intentionally not marked with the noreturn attribute. When marked as
89 * noreturn, clang coalesces several of the do_fatal_log() calls in methods that
90 * have a large number of such calls (like minijail_enter()), making it
91 * impossible for breakpad to correctly identify the line where it was called,
92 * making the backtrace somewhat useless.
93 */
94 extern void do_fatal_log(int priority, const char *format, ...)
95 attribute_printf(2, 3);
96
97 extern void do_log(int priority, const char *format, ...)
98 attribute_printf(2, 3);
99
is_android(void)100 static inline int is_android(void)
101 {
102 #if defined(__ANDROID__)
103 return 1;
104 #else
105 return 0;
106 #endif
107 }
108
compiled_with_asan(void)109 static inline bool compiled_with_asan(void)
110 {
111 #if defined(__SANITIZE_ADDRESS__)
112 /* For gcc. */
113 return true;
114 #elif defined(__has_feature)
115 /* For clang. */
116 return __has_feature(address_sanitizer) ||
117 __has_feature(hwaddress_sanitizer);
118 #else
119 return false;
120 #endif
121 }
122
123 void __asan_init(void) attribute_weak;
124 void __hwasan_init(void) attribute_weak;
125
running_with_asan(void)126 static inline bool running_with_asan(void)
127 {
128 /*
129 * There are some configurations under which ASan needs a dynamic (as
130 * opposed to compile-time) test. Some Android processes that start
131 * before /data is mounted run with non-instrumented libminijail.so, so
132 * the symbol-sniffing code must be present to make the right decision.
133 */
134 return compiled_with_asan() || &__asan_init != 0 || &__hwasan_init != 0;
135 }
136
debug_logging_allowed(void)137 static inline bool debug_logging_allowed(void) {
138 #if defined(ALLOW_DEBUG_LOGGING)
139 return true;
140 #else
141 return false;
142 #endif
143 }
144
145 int lookup_syscall(const char *name);
146 const char *lookup_syscall_name(int nr);
147
148 long int parse_single_constant(char *constant_str, char **endptr);
149 long int parse_constant(char *constant_str, char **endptr);
150 int parse_size(size_t *size, const char *sizespec);
151
152 char *strip(char *s);
153
154 /*
155 * tokenize: locate the next token in @stringp using the @delim
156 * @stringp A pointer to the string to scan for tokens
157 * @delim The delimiter to split by
158 *
159 * Note that, unlike strtok, @delim is not a set of characters, but the full
160 * delimiter. e.g. "a,;b,;c" with a delim of ",;" will yield ["a","b","c"].
161 *
162 * Note that, unlike strtok, this may return an empty token. e.g. "a,,b" with
163 * strtok will yield ["a","b"], but this will yield ["a","","b"].
164 */
165 char *tokenize(char **stringp, const char *delim);
166
167 char *path_join(const char *external_path, const char *internal_path);
168
169 /*
170 * consumebytes: consumes @length bytes from a buffer @buf of length @buflength
171 * @length Number of bytes to consume
172 * @buf Buffer to consume from
173 * @buflength Size of @buf
174 *
175 * Returns a pointer to the base of the bytes, or NULL for errors.
176 */
177 void *consumebytes(size_t length, char **buf, size_t *buflength);
178
179 /*
180 * consumestr: consumes a C string from a buffer @buf of length @length
181 * @buf Buffer to consume
182 * @length Length of buffer
183 *
184 * Returns a pointer to the base of the string, or NULL for errors.
185 */
186 char *consumestr(char **buf, size_t *buflength);
187
188 /*
189 * init_logging: initializes the module-wide logging.
190 * @logger The logging system to use.
191 * @fd The file descriptor to log into. Ignored unless
192 * @logger = LOG_TO_FD.
193 * @min_priority The minimum priority to display. Corresponds to syslog's
194 priority parameter. Ignored unless @logger = LOG_TO_FD.
195 */
196 void init_logging(enum logging_system_t logger, int fd, int min_priority);
197
198 /*
199 * minjail_free_env: Frees an environment array plus the environment strings it
200 * points to. The environment and its constituent strings must have been
201 * allocated (as opposed to pointing to static data), e.g. by using
202 * minijail_copy_env() and minijail_setenv().
203 *
204 * @env The environment to free.
205 */
206 void minijail_free_env(char **env);
207
208 /*
209 * minjail_copy_env: Copy an environment array (such as passed to execve),
210 * duplicating the environment strings and the array pointing at them.
211 *
212 * @env The environment to copy.
213 *
214 * Returns a pointer to the copied environment or NULL on memory allocation
215 * failure.
216 */
217 char **minijail_copy_env(char *const *env);
218
219 /*
220 * minjail_setenv: Set an environment variable in @env. Semantics match the
221 * standard setenv() function, but this operates on @env, not the global
222 * environment. @env must be dynamically allocated (as opposed to pointing to
223 * static data), e.g. via minijail_copy_env(). @name and @value get copied into
224 * newly-allocated memory.
225 *
226 * @env Address of the environment to modify. Might be re-allocated to
227 * make room for the new entry.
228 * @name Name of the key to set.
229 * @value The value to set.
230 * @overwrite Whether to replace the existing value for @name. If non-zero and
231 * the entry is already present, no changes will be made.
232 *
233 * Returns 0 and modifies *@env on success, returns an error code otherwise.
234 */
235 int minijail_setenv(char ***env, const char *name, const char *value,
236 int overwrite);
237
238 #ifdef __cplusplus
239 }; /* extern "C" */
240 #endif
241
242 #endif /* _UTIL_H_ */
243