blob: b77826ea95d5122552f85bc4c537f7da59ff5ead [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 Chavez114a9302017-09-05 20:36:58 -070012#include <stdio.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070013#include <stdlib.h>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040014#include <sys/types.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070015#include <syslog.h>
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -040016#include <unistd.h>
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070017
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -040018#ifdef __cplusplus
19extern "C" {
20#endif
21
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040022/*
23 * Silence compiler warnings for unused variables/functions.
24 *
25 * If the definition is actually used, the attribute should be removed, but if
26 * it's forgotten or left in place, it doesn't cause a problem.
27 *
28 * If the definition is actually unused, the compiler is free to remove it from
29 * the output so as to save size. If you want to make sure the definition is
30 * kept (e.g. for ABI compatibility), look at the "used" attribute instead.
31 */
32#define attribute_unused __attribute__((__unused__))
33
34/*
35 * Mark the symbol as "weak" in the ELF output. This provides a fallback symbol
36 * that may be overriden at link time. See this page for more details:
37 * https://en.wikipedia.org/wiki/Weak_symbol
38 */
39#define attribute_weak __attribute__((__weak__))
40
41/*
42 * Mark the function as a printf-style function.
43 * @format_idx The index in the function argument list where the format string
44 * is passed (where the first argument is "1").
45 * @check_idx The index in the function argument list where the first argument
46 * used in the format string is passed.
47 * Some examples:
48 * foo([1] const char *format, [2] ...): format=1 check=2
49 * foo([1] int, [2] const char *format, [3] ...): format=2 check=3
50 * foo([1] const char *format, [2] const char *, [3] ...): format=1 check=3
51 */
52#define attribute_printf(format_idx, check_idx) \
53 __attribute__((__format__(__printf__, format_idx, check_idx)))
54
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040055/* clang-format off */
Luis Hector Chavezcc559e82018-07-09 13:26:31 -070056#define die(_msg, ...) \
57 do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070058
59#define pdie(_msg, ...) \
Mike Frysingerb5d7b9f2015-01-09 03:50:15 -050060 die(_msg ": %m", ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070061
62#define warn(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070063 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070064
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -040065#define pwarn(_msg, ...) \
66 warn(_msg ": %m", ## __VA_ARGS__)
67
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070068#define info(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070069 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070070
Mike Frysinger404d2bb2017-01-17 19:29:00 -050071#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040072/* clang-format on */
Mike Frysinger404d2bb2017-01-17 19:29:00 -050073
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -070074extern const char *log_syscalls[];
75extern const size_t log_syscalls_len;
76
Luis Hector Chavez114a9302017-09-05 20:36:58 -070077enum logging_system_t {
78 /* Log to syslog. This is the default. */
79 LOG_TO_SYSLOG = 0,
80
81 /* Log to a file descriptor. */
82 LOG_TO_FD,
83};
84
Luis Hector Chavezcc559e82018-07-09 13:26:31 -070085/*
86 * Even though this function internally calls abort(2)/exit(2), it is
87 * intentionally not marked with the noreturn attribute. When marked as
88 * noreturn, clang coalesces several of the do_fatal_log() calls in methods that
89 * have a large number of such calls (like minijail_enter()), making it
90 * impossible for breakpad to correctly identify the line where it was called,
91 * making the backtrace somewhat useless.
92 */
93extern void do_fatal_log(int priority, const char *format, ...)
94 attribute_printf(2, 3);
95
Luis Hector Chavez114a9302017-09-05 20:36:58 -070096extern void do_log(int priority, const char *format, ...)
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040097 attribute_printf(2, 3);
Luis Hector Chavez114a9302017-09-05 20:36:58 -070098
Mike Frysinger8c013272017-09-06 19:26:46 -040099static inline int is_android(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400100{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -0800101#if defined(__ANDROID__)
102 return 1;
103#else
104 return 0;
105#endif
106}
107
Mike Frysingerd9ef07c2018-05-30 16:51:36 -0400108void __asan_init(void) attribute_weak;
Evgenii Stepanov825828c2018-07-27 11:57:07 -0700109void __hwasan_init(void) attribute_weak;
Jorge Lucangeli Obes9e35c092016-04-11 13:30:08 -0700110
Evgenii Stepanov3d98f3c2018-08-23 15:06:50 -0700111static inline int running_with_asan(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400112{
Evgenii Stepanov825828c2018-07-27 11:57:07 -0700113 return &__asan_init != 0 || &__hwasan_init != 0;
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -0700114}
115
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700116int lookup_syscall(const char *name);
117const char *lookup_syscall_name(int nr);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400118
Mike Frysingere34d7fe2018-05-23 04:18:30 -0400119long int parse_single_constant(char *constant_str, char **endptr);
Luis Hector Chavez40b25742013-09-22 19:44:06 -0700120long int parse_constant(char *constant_str, char **endptr);
Martin Pelikánab9eb442017-01-25 11:53:58 +1100121int parse_size(size_t *size, const char *sizespec);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400122
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700123char *strip(char *s);
Mike Frysingerb4c7e772018-01-17 17:40:15 -0500124
125/*
126 * tokenize: locate the next token in @stringp using the @delim
127 * @stringp A pointer to the string to scan for tokens
128 * @delim The delimiter to split by
129 *
130 * Note that, unlike strtok, @delim is not a set of characters, but the full
131 * delimiter. e.g. "a,;b,;c" with a delim of ",;" will yield ["a","b","c"].
132 *
133 * Note that, unlike strtok, this may return an empty token. e.g. "a,,b" with
134 * strtok will yield ["a","b"], but this will yield ["a","","b"].
135 */
Jorge Lucangeli Obes66cfc142012-11-30 15:42:52 -0800136char *tokenize(char **stringp, const char *delim);
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700137
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400138char *path_join(const char *external_path, const char *internal_path);
139
140/*
141 * consumebytes: consumes @length bytes from a buffer @buf of length @buflength
142 * @length Number of bytes to consume
143 * @buf Buffer to consume from
144 * @buflength Size of @buf
145 *
146 * Returns a pointer to the base of the bytes, or NULL for errors.
147 */
148void *consumebytes(size_t length, char **buf, size_t *buflength);
149
150/*
151 * consumestr: consumes a C string from a buffer @buf of length @length
152 * @buf Buffer to consume
153 * @length Length of buffer
154 *
155 * Returns a pointer to the base of the string, or NULL for errors.
156 */
157char *consumestr(char **buf, size_t *buflength);
158
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700159/*
160 * init_logging: initializes the module-wide logging.
161 * @logger The logging system to use.
162 * @fd The file descriptor to log into. Ignored unless
163 * @logger = LOG_TO_FD.
164 * @min_priority The minimum priority to display. Corresponds to syslog's
165 priority parameter. Ignored unless @logger = LOG_TO_FD.
166 */
167void init_logging(enum logging_system_t logger, int fd, int min_priority);
168
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -0400169#ifdef __cplusplus
170}; /* extern "C" */
171#endif
172
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700173#endif /* _UTIL_H_ */