blob: a71fd29f324ef68848a187c36a7827fba104633b [file] [log] [blame]
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -07001/* 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
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>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040015#include <sys/types.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070016#include <syslog.h>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040017#include <unistd.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070018
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -040019#ifdef __cplusplus
20extern "C" {
21#endif
22
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040023/*
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
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040056/* clang-format off */
Luis Hector Chavezcc559e82018-07-09 13:26:31 -070057#define die(_msg, ...) \
58 do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070059
60#define pdie(_msg, ...) \
Mike Frysingerb5d7b9f2015-01-09 03:50:15 -050061 die(_msg ": %m", ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070062
63#define warn(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070064 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070065
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -040066#define pwarn(_msg, ...) \
67 warn(_msg ": %m", ## __VA_ARGS__)
68
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070069#define info(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070070 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070071
Mike Frysinger404d2bb2017-01-17 19:29:00 -050072#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040073/* clang-format on */
Mike Frysinger404d2bb2017-01-17 19:29:00 -050074
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -070075extern const char *log_syscalls[];
76extern const size_t log_syscalls_len;
77
Luis Hector Chavez114a9302017-09-05 20:36:58 -070078enum 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
Luis Hector Chavezcc559e82018-07-09 13:26:31 -070086/*
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 */
94extern void do_fatal_log(int priority, const char *format, ...)
95 attribute_printf(2, 3);
96
Luis Hector Chavez114a9302017-09-05 20:36:58 -070097extern void do_log(int priority, const char *format, ...)
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040098 attribute_printf(2, 3);
Luis Hector Chavez114a9302017-09-05 20:36:58 -070099
Mike Frysinger8c013272017-09-06 19:26:46 -0400100static inline int is_android(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400101{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -0800102#if defined(__ANDROID__)
103 return 1;
104#else
105 return 0;
106#endif
107}
108
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700109static inline bool compiled_with_asan(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400110{
Luis Hector Chavezeb42bb72018-10-15 09:46:29 -0700111#if defined(__SANITIZE_ADDRESS__)
112 /* For gcc. */
113 return true;
114#elif defined(__has_feature)
115 /* For clang. */
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700116 return __has_feature(address_sanitizer) ||
117 __has_feature(hwaddress_sanitizer);
Luis Hector Chavezeb42bb72018-10-15 09:46:29 -0700118#else
119 return false;
120#endif
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -0700121}
122
Luis Hector Chavezfc814552019-04-22 09:44:18 -0700123void __asan_init(void) attribute_weak;
124void __hwasan_init(void) attribute_weak;
125
126static 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
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400137static inline bool debug_logging_allowed(void) {
138#if defined(ALLOW_DEBUG_LOGGING)
139 return true;
140#else
141 return false;
142#endif
143}
144
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700145int lookup_syscall(const char *name);
146const char *lookup_syscall_name(int nr);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400147
Mike Frysingere34d7fe2018-05-23 04:18:30 -0400148long int parse_single_constant(char *constant_str, char **endptr);
Luis Hector Chavez40b25742013-09-22 19:44:06 -0700149long int parse_constant(char *constant_str, char **endptr);
Martin Pelikánab9eb442017-01-25 11:53:58 +1100150int parse_size(size_t *size, const char *sizespec);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400151
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700152char *strip(char *s);
Mike Frysingerb4c7e772018-01-17 17:40:15 -0500153
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 */
Jorge Lucangeli Obes66cfc142012-11-30 15:42:52 -0800165char *tokenize(char **stringp, const char *delim);
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700166
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400167char *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 */
177void *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 */
186char *consumestr(char **buf, size_t *buflength);
187
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700188/*
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 */
196void init_logging(enum logging_system_t logger, int fd, int min_priority);
197
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -0400198#ifdef __cplusplus
199}; /* extern "C" */
200#endif
201
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700202#endif /* _UTIL_H_ */