blob: 6c21c5b4985a7f63755671d38e922301a19389e6 [file] [log] [blame]
Elliott Hughes01339442014-02-20 18:04:58 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes5c5152b2019-10-29 19:59:28 -070017#pragma once
Elliott Hughes01339442014-02-20 18:04:58 -080018
Elliott Hughesb8104622014-08-19 09:18:03 -070019#define _BSD_SOURCE
Dan Albertf79ee062014-07-01 22:41:50 +000020#include <sys/cdefs.h>
Elliott Hughes8465e962017-09-27 16:33:35 -070021
Elliott Hughes9a4b68e2019-11-20 14:56:22 -080022#include <unistd.h> // For environ.
23
Elliott Hughes2b67d7d2014-07-18 15:57:41 -070024#include <stddef.h> // For size_t.
Dan Albertf79ee062014-07-01 22:41:50 +000025
Elliott Hughes5c5152b2019-10-29 19:59:28 -070026#include <sys/random.h> // For getentropy.
Elliott Hughes8465e962017-09-27 16:33:35 -070027
Elliott Hughese1dc4f62021-01-11 11:51:29 -080028#include "private/bsd_sys_param.h"
29
Elliott Hughesb3646832017-07-11 12:34:19 -070030#define __BEGIN_HIDDEN_DECLS _Pragma("GCC visibility push(hidden)")
31#define __END_HIDDEN_DECLS _Pragma("GCC visibility pop")
32
33extern const char* __progname;
34
Elliott Hughes506c6de2016-01-15 16:30:18 -080035/* Ignore all DEF_STRONG/DEF_WEAK in OpenBSD. */
36#define DEF_STRONG(sym)
37#define DEF_WEAK(sym)
Elliott Hughesf826a372017-07-13 09:35:15 -070038#define __weak_alias __strong_alias
Chih-Hung Hsiehb6b5cb52014-08-28 11:47:48 -070039
Elliott Hughes998f2d52014-12-19 19:30:11 -080040/* Ignore all __warn_references in OpenBSD. */
41#define __warn_references(sym,msg)
42
Elliott Hughescdb4a262020-06-05 16:56:53 -070043#define PROTO_NORMAL(x)
44
Elliott Hughesf3c73902014-04-18 10:29:16 -070045/* OpenBSD's <ctype.h> uses these names, which conflicted with stlport.
46 * Additionally, we changed the numeric/digit type from N to D for libcxx.
47 */
48#define _U _CTYPE_U
49#define _L _CTYPE_L
50#define _N _CTYPE_D
51#define _S _CTYPE_S
52#define _P _CTYPE_P
53#define _C _CTYPE_C
54#define _X _CTYPE_X
55#define _B _CTYPE_B
56
Elliott Hughesb4e099c2014-05-29 16:04:53 -070057/* OpenBSD has this, but we can't really implement it correctly on Linux. */
58#define issetugid() 0
59
Elliott Hughes2b67d7d2014-07-18 15:57:41 -070060#define explicit_bzero(p, s) memset(p, 0, s)
61
Yabin Cui3471fcb2015-01-07 20:36:20 -080062/* OpenBSD has this in paths.h. But this directory doesn't normally exist.
63 * Even when it does exist, only the 'shell' user has permissions.
64 */
65#define _PATH_TMP "/data/local/tmp/"
66
Sandeep Patil9b1ca562017-08-21 12:17:19 -070067/* Use appropriate shell depending on process's executable. */
68__LIBC_HIDDEN__ extern const char* __bionic_get_shell_path();
69#define _PATH_BSHELL __bionic_get_shell_path()
70
Elliott Hughesa167eef2014-07-14 14:41:47 -070071__LIBC_HIDDEN__ extern char* __findenv(const char*, int, int*);
72__LIBC_HIDDEN__ extern char* _mktemp(char*);
Elliott Hughes26b06072020-07-31 11:00:10 -070073
74// Only OpenBSD has this at the moment, and we're more likely to just say
75// "malloc is always calloc", so we don't expose this as libc API.
76__LIBC_HIDDEN__ void* recallocarray(void*, size_t, size_t, size_t);