blob: b82046174b49c5dc76027dac4c64cc1edebbb6e1 [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
Luis Hector Chavezdaa03712017-09-06 08:10:33 -070055#if defined(USE_EXIT_ON_DIE)
56#define do_abort() exit(1)
57#else
58#define do_abort() abort()
59#endif
60
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040061/* clang-format off */
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070062#define die(_msg, ...) do { \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070063 do_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__); \
Luis Hector Chavezdaa03712017-09-06 08:10:33 -070064 do_abort(); \
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070065} while (0)
66
67#define pdie(_msg, ...) \
Mike Frysingerb5d7b9f2015-01-09 03:50:15 -050068 die(_msg ": %m", ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070069
70#define warn(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070071 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070072
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -040073#define pwarn(_msg, ...) \
74 warn(_msg ": %m", ## __VA_ARGS__)
75
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070076#define info(_msg, ...) \
Luis Hector Chavez114a9302017-09-05 20:36:58 -070077 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070078
Mike Frysinger404d2bb2017-01-17 19:29:00 -050079#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040080/* clang-format on */
Mike Frysinger404d2bb2017-01-17 19:29:00 -050081
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -070082extern const char *log_syscalls[];
83extern const size_t log_syscalls_len;
84
Luis Hector Chavez114a9302017-09-05 20:36:58 -070085enum logging_system_t {
86 /* Log to syslog. This is the default. */
87 LOG_TO_SYSLOG = 0,
88
89 /* Log to a file descriptor. */
90 LOG_TO_FD,
91};
92
93extern void do_log(int priority, const char *format, ...)
Mike Frysingerd9ef07c2018-05-30 16:51:36 -040094 attribute_printf(2, 3);
Luis Hector Chavez114a9302017-09-05 20:36:58 -070095
Mike Frysinger8c013272017-09-06 19:26:46 -040096static inline int is_android(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040097{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -080098#if defined(__ANDROID__)
99 return 1;
100#else
101 return 0;
102#endif
103}
104
Mike Frysingerd9ef07c2018-05-30 16:51:36 -0400105void __asan_init(void) attribute_weak;
Jorge Lucangeli Obes9e35c092016-04-11 13:30:08 -0700106
Mike Frysinger8c013272017-09-06 19:26:46 -0400107static inline int running_with_asan(void)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -0400108{
Evgenii Stepanov97ba2b22016-09-15 17:09:38 -0700109 return &__asan_init != 0;
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -0700110}
111
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700112int lookup_syscall(const char *name);
113const char *lookup_syscall_name(int nr);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400114
Mike Frysingere34d7fe2018-05-23 04:18:30 -0400115long int parse_single_constant(char *constant_str, char **endptr);
Luis Hector Chavez40b25742013-09-22 19:44:06 -0700116long int parse_constant(char *constant_str, char **endptr);
Martin Pelikánab9eb442017-01-25 11:53:58 +1100117int parse_size(size_t *size, const char *sizespec);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400118
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700119char *strip(char *s);
Mike Frysingerb4c7e772018-01-17 17:40:15 -0500120
121/*
122 * tokenize: locate the next token in @stringp using the @delim
123 * @stringp A pointer to the string to scan for tokens
124 * @delim The delimiter to split by
125 *
126 * Note that, unlike strtok, @delim is not a set of characters, but the full
127 * delimiter. e.g. "a,;b,;c" with a delim of ",;" will yield ["a","b","c"].
128 *
129 * Note that, unlike strtok, this may return an empty token. e.g. "a,,b" with
130 * strtok will yield ["a","b"], but this will yield ["a","","b"].
131 */
Jorge Lucangeli Obes66cfc142012-11-30 15:42:52 -0800132char *tokenize(char **stringp, const char *delim);
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700133
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400134char *path_join(const char *external_path, const char *internal_path);
135
136/*
137 * consumebytes: consumes @length bytes from a buffer @buf of length @buflength
138 * @length Number of bytes to consume
139 * @buf Buffer to consume from
140 * @buflength Size of @buf
141 *
142 * Returns a pointer to the base of the bytes, or NULL for errors.
143 */
144void *consumebytes(size_t length, char **buf, size_t *buflength);
145
146/*
147 * consumestr: consumes a C string from a buffer @buf of length @length
148 * @buf Buffer to consume
149 * @length Length of buffer
150 *
151 * Returns a pointer to the base of the string, or NULL for errors.
152 */
153char *consumestr(char **buf, size_t *buflength);
154
Luis Hector Chavez114a9302017-09-05 20:36:58 -0700155/*
156 * init_logging: initializes the module-wide logging.
157 * @logger The logging system to use.
158 * @fd The file descriptor to log into. Ignored unless
159 * @logger = LOG_TO_FD.
160 * @min_priority The minimum priority to display. Corresponds to syslog's
161 priority parameter. Ignored unless @logger = LOG_TO_FD.
162 */
163void init_logging(enum logging_system_t logger, int fd, int min_priority);
164
Jorge Lucangeli Obesa67bd6a2016-08-19 15:33:48 -0400165#ifdef __cplusplus
166}; /* extern "C" */
167#endif
168
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -0700169#endif /* _UTIL_H_ */