blob: c310572367b0a367d9528fbac6f20f4127ed5031 [file] [log] [blame]
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -07001/* util.h
Mike Frysinger4c331892022-09-13 05:17:08 -04002 * Copyright 2012 The ChromiumOS Authors
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -07003 * 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
Luis Hector Chavezeb42bb72018-10-15 09:46:29 -070012#include <stdbool.h>
Luis Hector Chavez114a9302017-09-05 20:36:58 -070013#include <stdio.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070014#include <stdlib.h>
Mike Frysinger22dc3522022-07-07 19:24:13 -040015#include <string.h>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040016#include <sys/types.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070017#include <syslog.h>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040018#include <unistd.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070019
Nicole Anderson-Au461d8fb2020-11-09 22:53:40 +000020#include "libsyscalls.h"
21
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -040022#ifdef __cplusplus
23extern "C" {
24#endif
25
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040026/*
27 * Silence compiler warnings for unused variables/functions.
28 *
29 * If the definition is actually used, the attribute should be removed, but if
30 * it's forgotten or left in place, it doesn't cause a problem.
31 *
32 * If the definition is actually unused, the compiler is free to remove it from
33 * the output so as to save size. If you want to make sure the definition is
34 * kept (e.g. for ABI compatibility), look at the "used" attribute instead.
35 */
36#define attribute_unused __attribute__((__unused__))
37
38/*
39 * Mark the symbol as "weak" in the ELF output. This provides a fallback symbol
40 * that may be overriden at link time. See this page for more details:
41 * https://en.wikipedia.org/wiki/Weak_symbol
42 */
43#define attribute_weak __attribute__((__weak__))
44
45/*
46 * Mark the function as a printf-style function.
47 * @format_idx The index in the function argument list where the format string
48 * is passed (where the first argument is "1").
49 * @check_idx The index in the function argument list where the first argument
50 * used in the format string is passed.
51 * Some examples:
52 * foo([1] const char *format, [2] ...): format=1 check=2
53 * foo([1] int, [2] const char *format, [3] ...): format=2 check=3
54 * foo([1] const char *format, [2] const char *, [3] ...): format=1 check=3
55 */
56#define attribute_printf(format_idx, check_idx) \
57 __attribute__((__format__(__printf__, format_idx, check_idx)))
58
Mike Frysingerc150d6d2021-07-16 02:47:06 -040059#ifndef __cplusplus
60/* If writing C++, use std::unique_ptr with a destructor instead. */
61
Mike Frysingerdebdf5d2021-06-21 09:52:06 -040062/*
63 * Mark a local variable for automatic cleanup when exiting its scope.
64 * See attribute_cleanup_fp as an example below.
65 * Make sure any variable using this is always initialized to something.
66 * @func The function to call on (a pointer to) the variable.
67 */
68#define attribute_cleanup(func) \
69 __attribute__((__cleanup__(func)))
70
71/*
72 * Automatically close a FILE* when exiting its scope.
73 * Make sure the pointer is always initialized.
74 * Some examples:
75 * attribute_cleanup_fp FILE *fp = fopen(...);
76 * attribute_cleanup_fp FILE *fp = NULL;
77 * ...
78 * fp = fopen(...);
Mike Frysinger94cff172021-07-16 02:59:04 -040079 *
80 * NB: This will automatically close the underlying fd, so do not use this
81 * with fdopen calls if the fd should be left open.
Mike Frysingerdebdf5d2021-06-21 09:52:06 -040082 */
83#define attribute_cleanup_fp attribute_cleanup(_cleanup_fp)
84static inline void _cleanup_fp(FILE **fp)
85{
86 if (*fp)
87 fclose(*fp);
88}
89
Mike Frysinger94cff172021-07-16 02:59:04 -040090/*
91 * Automatically close a fd when exiting its scope.
92 * Make sure the fd is always initialized.
93 * Some examples:
94 * attribute_cleanup_fd int fd = open(...);
95 * attribute_cleanup_fd int fd = -1;
96 * ...
97 * fd = open(...);
98 *
99 * NB: Be careful when using this with attribute_cleanup_fp and fdopen.
100 */
101#define attribute_cleanup_fd attribute_cleanup(_cleanup_fd)
102static inline void _cleanup_fd(int *fd)
103{
104 if (*fd >= 0)
105 close(*fd);
106}
107
Mike Frysingere933fce2021-10-02 01:28:06 -0400108/*
109 * Automatically free a heap allocation when exiting its scope.
110 * Make sure the pointer is always initialized.
111 * Some examples:
112 * attribute_cleanup_str char *s = strdup(...);
113 * attribute_cleanup_str char *s = NULL;
114 * ...
115 * s = strdup(...);
116 */
117#define attribute_cleanup_str attribute_cleanup(_cleanup_str)
118static inline void _cleanup_str(char **ptr)
119{
120 free(*ptr);
121}
122
Mike Frysingerc150d6d2021-07-16 02:47:06 -0400123#endif /* __cplusplus */
124
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400125/* clang-format off */
Luis Hector Chavezcc559e82018-07-09 13:26:31 -0700126#define die(_msg, ...) \
127 do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700128
129#define pdie(_msg, ...) \
Mike Frysingerb5d7b9f2015-01-09 03:50:15 -0500130 die(_msg ": %m", ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700131
132#define warn(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700133 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700134
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -0400135#define pwarn(_msg, ...) \
136 warn(_msg ": %m", ## __VA_ARGS__)
137
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700138#define info(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700139 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700140
Mike Frysinger404d2bb2017-01-17 19:29:00 -0500141#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400142/* clang-format on */
Mike Frysinger404d2bb2017-01-17 19:29:00 -0500143
Mike Frysinger70674982021-11-23 00:07:14 -0500144extern const char *const log_syscalls[];
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700145extern const size_t log_syscalls_len;
146
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700147enum logging_system_t {
148 /* Log to syslog. This is the default. */
149 LOG_TO_SYSLOG = 0,
150
151 /* Log to a file descriptor. */
152 LOG_TO_FD,
153};
154
Luis Hector Chavezcc559e82018-07-09 13:26:31 -0700155/*
156 * Even though this function internally calls abort(2)/exit(2), it is
157 * intentionally not marked with the noreturn attribute. When marked as
158 * noreturn, clang coalesces several of the do_fatal_log() calls in methods that
159 * have a large number of such calls (like minijail_enter()), making it
160 * impossible for breakpad to correctly identify the line where it was called,
161 * making the backtrace somewhat useless.
162 */
163extern void do_fatal_log(int priority, const char *format, ...)
164 attribute_printf(2, 3);
165
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700166extern void do_log(int priority, const char *format, ...)
Mike Frysingerd9ef07c2018-05-30 16:51:36 -0400167 attribute_printf(2, 3);
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700168
Mike Frysinger8c013272017-09-06 19:26:46 -0400169static inline int is_android(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400170{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -0800171#if defined(__ANDROID__)
172 return 1;
173#else
174 return 0;
175#endif
176}
177
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700178static inline bool compiled_with_asan(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400179{
Luis Hector Chavezeb42bb72018-10-15 09:46:29 -0700180#if defined(__SANITIZE_ADDRESS__)
181 /* For gcc. */
182 return true;
183#elif defined(__has_feature)
184 /* For clang. */
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700185 return __has_feature(address_sanitizer) ||
186 __has_feature(hwaddress_sanitizer);
Luis Hector Chavezeb42bb72018-10-15 09:46:29 -0700187#else
188 return false;
189#endif
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -0700190}
191
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700192void __asan_init(void) attribute_weak;
193void __hwasan_init(void) attribute_weak;
194
195static inline bool running_with_asan(void)
196{
197 /*
198 * There are some configurations under which ASan needs a dynamic (as
199 * opposed to compile-time) test. Some Android processes that start
200 * before /data is mounted run with non-instrumented libminijail.so, so
201 * the symbol-sniffing code must be present to make the right decision.
202 */
203 return compiled_with_asan() || &__asan_init != 0 || &__hwasan_init != 0;
204}
205
Zi Lin2c794452021-10-13 03:07:07 +0000206static inline bool debug_logging_allowed(void)
207{
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400208#if defined(ALLOW_DEBUG_LOGGING)
209 return true;
210#else
211 return false;
212#endif
213}
214
Zi Lin2c794452021-10-13 03:07:07 +0000215static inline bool seccomp_default_ret_log(void)
216{
Adrian Ratiu8ef61252021-06-08 03:46:24 +0300217#if defined(SECCOMP_DEFAULT_RET_LOG)
218 return true;
219#else
220 return false;
221#endif
222}
223
Jorge Lucangeli Obesa8eef8b2022-07-20 19:20:06 -0400224static inline bool block_symlinks_in_bindmount_paths(void)
225{
226#if defined(BLOCK_SYMLINKS_IN_BINDMOUNT_PATHS)
227 return true;
228#else
229 return false;
230#endif
231}
232
Ryan Borzellob12f5672022-08-19 22:48:06 +0000233static inline bool block_symlinks_in_noninit_mountns_tmp(void)
234{
235#if defined(BLOCK_SYMLINKS_IN_NONINIT_MOUNTNS_TMP)
236 return true;
237#else
238 return false;
239#endif
240}
241
Nicole Anderson-Au461d8fb2020-11-09 22:53:40 +0000242static inline size_t get_num_syscalls(void)
243{
244 return syscall_table_size;
245}
246
Nicole Anderson-Aubcc8cfd2020-11-10 20:33:27 +0000247int lookup_syscall(const char *name, size_t *ind);
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700248const char *lookup_syscall_name(int nr);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400249
Mike Frysingere34d7fe2018-05-23 04:18:30 -0400250long int parse_single_constant(char *constant_str, char **endptr);
Luis Hector Chavez40b25742013-09-22 19:44:06 -0700251long int parse_constant(char *constant_str, char **endptr);
Martin Pelikánab9eb442017-01-25 11:53:58 +1100252int parse_size(size_t *size, const char *sizespec);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400253
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700254char *strip(char *s);
Mike Frysingerb4c7e772018-01-17 17:40:15 -0500255
256/*
Mike Frysinger22dc3522022-07-07 19:24:13 -0400257 * streq: determine whether two strings are equal.
258 */
259static inline bool streq(const char *s1, const char *s2)
260{
261 return strcmp(s1, s2) == 0;
262}
263
264/*
Mike Frysingerb4c7e772018-01-17 17:40:15 -0500265 * tokenize: locate the next token in @stringp using the @delim
266 * @stringp A pointer to the string to scan for tokens
267 * @delim The delimiter to split by
268 *
269 * Note that, unlike strtok, @delim is not a set of characters, but the full
270 * delimiter. e.g. "a,;b,;c" with a delim of ",;" will yield ["a","b","c"].
271 *
272 * Note that, unlike strtok, this may return an empty token. e.g. "a,,b" with
273 * strtok will yield ["a","b"], but this will yield ["a","","b"].
274 */
Jorge Lucangeli Obes66cfc142012-11-30 15:42:52 -0800275char *tokenize(char **stringp, const char *delim);
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700276
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400277char *path_join(const char *external_path, const char *internal_path);
278
279/*
Jorge Lucangeli Obesa8eef8b2022-07-20 19:20:06 -0400280 * path_is_parent: checks whether @parent is a parent of @child.
281 * Note: this function does not evaluate '.' or '..' nor does it resolve
282 * symlinks.
283 */
284bool path_is_parent(const char *parent, const char *child);
285
286/*
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400287 * consumebytes: consumes @length bytes from a buffer @buf of length @buflength
288 * @length Number of bytes to consume
289 * @buf Buffer to consume from
290 * @buflength Size of @buf
291 *
292 * Returns a pointer to the base of the bytes, or NULL for errors.
293 */
294void *consumebytes(size_t length, char **buf, size_t *buflength);
295
296/*
297 * consumestr: consumes a C string from a buffer @buf of length @length
298 * @buf Buffer to consume
299 * @length Length of buffer
300 *
301 * Returns a pointer to the base of the string, or NULL for errors.
302 */
303char *consumestr(char **buf, size_t *buflength);
304
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700305/*
306 * init_logging: initializes the module-wide logging.
307 * @logger The logging system to use.
308 * @fd The file descriptor to log into. Ignored unless
309 * @logger = LOG_TO_FD.
310 * @min_priority The minimum priority to display. Corresponds to syslog's
Zi Lin2c794452021-10-13 03:07:07 +0000311 * priority parameter. Ignored unless @logger = LOG_TO_FD.
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700312 */
313void init_logging(enum logging_system_t logger, int fd, int min_priority);
314
Mattias Nisslerb35f2c12020-02-07 13:37:36 +0100315/*
316 * minjail_free_env: Frees an environment array plus the environment strings it
317 * points to. The environment and its constituent strings must have been
318 * allocated (as opposed to pointing to static data), e.g. by using
319 * minijail_copy_env() and minijail_setenv().
320 *
321 * @env The environment to free.
322 */
323void minijail_free_env(char **env);
324
325/*
326 * minjail_copy_env: Copy an environment array (such as passed to execve),
327 * duplicating the environment strings and the array pointing at them.
328 *
329 * @env The environment to copy.
330 *
331 * Returns a pointer to the copied environment or NULL on memory allocation
332 * failure.
333 */
334char **minijail_copy_env(char *const *env);
335
336/*
337 * minjail_setenv: Set an environment variable in @env. Semantics match the
338 * standard setenv() function, but this operates on @env, not the global
339 * environment. @env must be dynamically allocated (as opposed to pointing to
340 * static data), e.g. via minijail_copy_env(). @name and @value get copied into
341 * newly-allocated memory.
342 *
343 * @env Address of the environment to modify. Might be re-allocated to
344 * make room for the new entry.
345 * @name Name of the key to set.
346 * @value The value to set.
347 * @overwrite Whether to replace the existing value for @name. If non-zero and
348 * the entry is already present, no changes will be made.
349 *
350 * Returns 0 and modifies *@env on success, returns an error code otherwise.
351 */
352int minijail_setenv(char ***env, const char *name, const char *value,
353 int overwrite);
354
Zi Lin2c794452021-10-13 03:07:07 +0000355/*
356 * getmultiline: This is like getline() but supports line wrapping with \.
357 *
358 * @lineptr Address of a buffer that a mutli-line is stored.
359 * @n Number of bytes stored in *lineptr.
360 * @stream Input stream to read from.
361 *
362 * Returns number of bytes read or -1 on failure to read (including EOF).
363 */
364ssize_t getmultiline(char **lineptr, size_t *n, FILE *stream);
365
Stéphane Lesimple66bcc8c2022-01-06 13:11:37 +0100366/*
367 * minjail_getenv: Get an environment variable from @envp. Semantics match the
368 * standard getenv() function, but this operates on @envp, not the global
369 * environment (usually referred to as `extern char **environ`).
370 *
371 * @env Address of the environment to read from.
372 * @name Name of the key to get.
373 *
374 * Returns a pointer to the corresponding environment value. The caller must
375 * take care not to modify the pointed value, as this points directly to memory
376 * pointed to by @envp.
377 * If the environment variable name is not found, returns NULL.
378 */
379char *minijail_getenv(char **env, const char *name);
380
381/*
382 * minjail_unsetenv: Clear the environment variable @name from the @envp array
383 * of pointers to strings that have the KEY=VALUE format. If the operation is
384 * successful, the array will contain one item less than before the call.
385 * Only the first occurence is removed.
386 *
387 * @envp Address of the environment to clear the variable from.
388 * @name Name of the variable to clear.
389 *
390 * Returns false and modifies *@envp on success, returns true otherwise.
391 */
392bool minijail_unsetenv(char **envp, const char *name);
393
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -0400394#ifdef __cplusplus
395}; /* extern "C" */
396#endif
397
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700398#endif /* _UTIL_H_ */