Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 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 | |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 12 | #include <stdio.h> |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 13 | #include <stdlib.h> |
Jorge Lucangeli Obes | f205fff | 2016-08-06 09:06:21 -0400 | [diff] [blame] | 14 | #include <sys/types.h> |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 15 | #include <syslog.h> |
Jorge Lucangeli Obes | f205fff | 2016-08-06 09:06:21 -0400 | [diff] [blame] | 16 | #include <unistd.h> |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 17 | |
Jorge Lucangeli Obes | a67bd6a | 2016-08-19 15:33:48 -0400 | [diff] [blame] | 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
Mike Frysinger | d9ef07c | 2018-05-30 16:51:36 -0400 | [diff] [blame] | 22 | /* |
| 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 Obes | 0b20877 | 2017-04-19 14:15:46 -0400 | [diff] [blame] | 55 | /* clang-format off */ |
Luis Hector Chavez | cc559e8 | 2018-07-09 13:26:31 -0700 | [diff] [blame] | 56 | #define die(_msg, ...) \ |
| 57 | do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__) |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 58 | |
| 59 | #define pdie(_msg, ...) \ |
Mike Frysinger | b5d7b9f | 2015-01-09 03:50:15 -0500 | [diff] [blame] | 60 | die(_msg ": %m", ## __VA_ARGS__) |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 61 | |
| 62 | #define warn(_msg, ...) \ |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 63 | do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__) |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 64 | |
Jorge Lucangeli Obes | a205390 | 2016-08-02 12:08:15 -0400 | [diff] [blame] | 65 | #define pwarn(_msg, ...) \ |
| 66 | warn(_msg ": %m", ## __VA_ARGS__) |
| 67 | |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 68 | #define info(_msg, ...) \ |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 69 | do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__) |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 70 | |
Mike Frysinger | 404d2bb | 2017-01-17 19:29:00 -0500 | [diff] [blame] | 71 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) |
Jorge Lucangeli Obes | 0b20877 | 2017-04-19 14:15:46 -0400 | [diff] [blame] | 72 | /* clang-format on */ |
Mike Frysinger | 404d2bb | 2017-01-17 19:29:00 -0500 | [diff] [blame] | 73 | |
Jorge Lucangeli Obes | bda833c | 2012-07-31 16:25:56 -0700 | [diff] [blame] | 74 | extern const char *log_syscalls[]; |
| 75 | extern const size_t log_syscalls_len; |
| 76 | |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 77 | enum 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 Chavez | cc559e8 | 2018-07-09 13:26:31 -0700 | [diff] [blame] | 85 | /* |
| 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 | */ |
| 93 | extern void do_fatal_log(int priority, const char *format, ...) |
| 94 | attribute_printf(2, 3); |
| 95 | |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 96 | extern void do_log(int priority, const char *format, ...) |
Mike Frysinger | d9ef07c | 2018-05-30 16:51:36 -0400 | [diff] [blame] | 97 | attribute_printf(2, 3); |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 98 | |
Mike Frysinger | 8c01327 | 2017-09-06 19:26:46 -0400 | [diff] [blame] | 99 | static inline int is_android(void) |
Jorge Lucangeli Obes | 0b20877 | 2017-04-19 14:15:46 -0400 | [diff] [blame] | 100 | { |
Jorge Lucangeli Obes | 4b276a6 | 2016-01-07 14:31:33 -0800 | [diff] [blame] | 101 | #if defined(__ANDROID__) |
| 102 | return 1; |
| 103 | #else |
| 104 | return 0; |
| 105 | #endif |
| 106 | } |
| 107 | |
Mike Frysinger | d9ef07c | 2018-05-30 16:51:36 -0400 | [diff] [blame] | 108 | void __asan_init(void) attribute_weak; |
Evgenii Stepanov | 825828c | 2018-07-27 11:57:07 -0700 | [diff] [blame] | 109 | void __hwasan_init(void) attribute_weak; |
Jorge Lucangeli Obes | 9e35c09 | 2016-04-11 13:30:08 -0700 | [diff] [blame] | 110 | |
Evgenii Stepanov | 3d98f3c | 2018-08-23 15:06:50 -0700 | [diff] [blame] | 111 | static inline int running_with_asan(void) |
Jorge Lucangeli Obes | 0b20877 | 2017-04-19 14:15:46 -0400 | [diff] [blame] | 112 | { |
Evgenii Stepanov | 825828c | 2018-07-27 11:57:07 -0700 | [diff] [blame] | 113 | return &__asan_init != 0 || &__hwasan_init != 0; |
Jorge Lucangeli Obes | 2413f37 | 2016-04-06 18:43:10 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 116 | int lookup_syscall(const char *name); |
| 117 | const char *lookup_syscall_name(int nr); |
Jorge Lucangeli Obes | 7b2e29c | 2016-08-04 12:21:03 -0400 | [diff] [blame] | 118 | |
Mike Frysinger | e34d7fe | 2018-05-23 04:18:30 -0400 | [diff] [blame] | 119 | long int parse_single_constant(char *constant_str, char **endptr); |
Luis Hector Chavez | 40b2574 | 2013-09-22 19:44:06 -0700 | [diff] [blame] | 120 | long int parse_constant(char *constant_str, char **endptr); |
Martin Pelikán | ab9eb44 | 2017-01-25 11:53:58 +1100 | [diff] [blame] | 121 | int parse_size(size_t *size, const char *sizespec); |
Jorge Lucangeli Obes | 7b2e29c | 2016-08-04 12:21:03 -0400 | [diff] [blame] | 122 | |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 123 | char *strip(char *s); |
Mike Frysinger | b4c7e77 | 2018-01-17 17:40:15 -0500 | [diff] [blame] | 124 | |
| 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 Obes | 66cfc14 | 2012-11-30 15:42:52 -0800 | [diff] [blame] | 136 | char *tokenize(char **stringp, const char *delim); |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 137 | |
Jorge Lucangeli Obes | 7b2e29c | 2016-08-04 12:21:03 -0400 | [diff] [blame] | 138 | char *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 | */ |
| 148 | void *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 | */ |
| 157 | char *consumestr(char **buf, size_t *buflength); |
| 158 | |
Luis Hector Chavez | 114a930 | 2017-09-05 20:36:58 -0700 | [diff] [blame] | 159 | /* |
| 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 | */ |
| 167 | void init_logging(enum logging_system_t logger, int fd, int min_priority); |
| 168 | |
Jorge Lucangeli Obes | a67bd6a | 2016-08-19 15:33:48 -0400 | [diff] [blame] | 169 | #ifdef __cplusplus |
| 170 | }; /* extern "C" */ |
| 171 | #endif |
| 172 | |
Jorge Lucangeli Obes | a6b034d | 2012-08-07 15:29:20 -0700 | [diff] [blame] | 173 | #endif /* _UTIL_H_ */ |