blob: b0adf263965f5ab72040425cfca4d324b6cb44b2 [file] [log] [blame]
Elliott Hughes567a8de2013-10-24 17:14:55 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29// This file perpetuates the mistakes of the past, but only for 32-bit targets.
30#if !defined(__LP64__)
31
Elliott Hughesefbdb532014-04-07 15:17:19 -070032#include <ctype.h>
33#include <inttypes.h>
Calin Juravlea4eafa62014-03-10 18:10:04 +000034#include <pthread.h>
Dan Albert205dd7d2014-06-04 10:14:19 -070035#include <signal.h>
Elliott Hughesfcac8ff2014-05-22 01:24:30 -070036#include <stdio.h>
Elliott Hughes567a8de2013-10-24 17:14:55 -070037#include <stdlib.h>
38#include <sys/resource.h>
Elliott Hughesbd3a98c2014-05-24 17:19:36 -070039#include <sys/syscall.h>
Elliott Hughes567a8de2013-10-24 17:14:55 -070040#include <sys/time.h>
41#include <sys/types.h>
42#include <sys/wait.h>
43#include <unistd.h>
Dan Albert001f8f02014-06-04 09:53:06 -070044#include <wchar.h>
Elliott Hughes567a8de2013-10-24 17:14:55 -070045
46// These were accidentally declared in <unistd.h> because we stupidly used to inline
47// getpagesize() and __getpageshift(). Needed for backwards compatibility with old NDK apps.
48extern "C" {
49 unsigned int __page_size = PAGE_SIZE;
Elliott Hughes0e44bc32014-02-24 15:55:31 -080050 unsigned int __page_shift = 12;
Elliott Hughes567a8de2013-10-24 17:14:55 -070051}
52
53// TODO: remove this backward compatibility hack (for jb-mr1 strace binaries).
54extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) {
55 return wait4(pid, status, options, rusage);
56}
57
Elliott Hughes06209252013-11-06 16:20:54 -080058// TODO: does anything still need this?
Elliott Hughes567a8de2013-10-24 17:14:55 -070059extern "C" int __open() {
60 abort();
61}
62
Elliott Hughes06209252013-11-06 16:20:54 -080063// TODO: does anything still need this?
64extern "C" void** __get_tls() {
65#include "private/__get_tls.h"
66 return __get_tls();
67}
68
Elliott Hughes152b9de2014-03-10 15:54:40 -070069// This non-standard function was in our <string.h> for some reason.
70extern "C" void memswap(void* m1, void* m2, size_t n) {
71 char* p = reinterpret_cast<char*>(m1);
72 char* p_end = p + n;
73 char* q = reinterpret_cast<char*>(m2);
74 while (p < p_end) {
75 char tmp = *p;
76 *p = *q;
77 *q = tmp;
78 p++;
79 q++;
80 }
81}
82
Calin Juravlea4eafa62014-03-10 18:10:04 +000083extern "C" int pthread_attr_setstackaddr(pthread_attr_t*, void*) {
84 // This was removed from POSIX.1-2008, and is not implemented on bionic.
85 // Needed for ABI compatibility with the NDK.
86 return ENOSYS;
87}
88
89extern "C" int pthread_attr_getstackaddr(const pthread_attr_t* attr, void** stack_addr) {
90 // This was removed from POSIX.1-2008.
91 // Needed for ABI compatibility with the NDK.
92 *stack_addr = (char*)attr->stack_base + attr->stack_size;
93 return 0;
94}
95
Elliott Hughesefbdb532014-04-07 15:17:19 -070096// Non-standard cruft that should only ever have been in system/core/toolbox.
97extern "C" char* strtotimeval(const char* str, struct timeval* ts) {
98 char* s;
99 ts->tv_sec = strtoumax(str, &s, 10);
100
101 long fractional_seconds = 0;
102 if (*s == '.') {
103 s++;
104 int count = 0;
105
106 // Read up to 6 digits (microseconds).
107 while (*s && isdigit(*s)) {
108 if (++count < 7) {
109 fractional_seconds = fractional_seconds*10 + (*s - '0');
110 }
111 s++;
112 }
113
114 for (; count < 6; count++) {
115 fractional_seconds *= 10;
116 }
117 }
118
119 ts->tv_usec = fractional_seconds;
120 return s;
121}
122
Elliott Hugheseae59022014-04-22 17:56:42 -0700123static inline int digitval(int ch) {
124 unsigned d;
125
126 d = (unsigned)(ch - '0');
127 if (d < 10) return (int)d;
128
129 d = (unsigned)(ch - 'a');
130 if (d < 6) return (int)(d+10);
131
132 d = (unsigned)(ch - 'A');
133 if (d < 6) return (int)(d+10);
134
135 return -1;
136}
137
138// This non-standard function was in our <inttypes.h> for some reason.
139extern "C" uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) {
140 const unsigned char* p = (const unsigned char *)nptr;
141 const unsigned char* end = p + n;
142 int minus = 0;
143 uintmax_t v = 0;
144 int d;
145
146 while (p < end && isspace(*p)) {
147 p++;
148 }
149
150 if (p < end) {
151 char c = p[0];
152 if (c == '-' || c == '+') {
153 minus = (c == '-');
154 p++;
155 }
156 }
157
158 if (base == 0) {
159 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
160 p += 2;
161 base = 16;
162 } else if (p+1 < end && p[0] == '0') {
163 p += 1;
164 base = 8;
165 } else {
166 base = 10;
167 }
168 } else if (base == 16) {
169 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
170 p += 2;
171 }
172 }
173
174 while (p < end && (d = digitval(*p)) >= 0 && d < base) {
175 v = v*base + d;
176 p += 1;
177 }
178
179 if (endptr) {
180 *endptr = (char*) p;
181 }
182
183 return minus ? -v : v;
184}
185
186// This non-standard function was in our <inttypes.h> for some reason.
187extern "C" intmax_t strntoimax(const char* nptr, char** endptr, int base, size_t n) {
188 return (intmax_t) strntoumax(nptr, endptr, base, n);
189}
190
Elliott Hughesfcac8ff2014-05-22 01:24:30 -0700191// POSIX calls this dprintf, but LP32 Android had fdprintf instead.
192extern "C" int fdprintf(int fd, const char* fmt, ...) {
193 va_list ap;
194 va_start(ap, fmt);
195 int rc = vdprintf(fd, fmt, ap);
196 va_end(ap);
197 return rc;
198}
199
200// POSIX calls this vdprintf, but LP32 Android had fdprintf instead.
201extern "C" int vfdprintf(int fd, const char* fmt, va_list ap) {
202 return vdprintf(fd, fmt, ap);
203}
204
Elliott Hughesb30aff42014-05-28 19:35:33 +0000205#define __futex_wake __real_futex_wake
206#define __futex_wait __real_futex_wait
207#include "private/bionic_futex.h"
208#undef __futex_wake
209#undef __futex_wait
Elliott Hughesbd3a98c2014-05-24 17:19:36 -0700210
211// This used to be in <sys/atomics.h>.
212extern "C" int __futex_wake(volatile void* ftx, int count) {
Elliott Hughesb30aff42014-05-28 19:35:33 +0000213 return __real_futex_wake(ftx, count);
Elliott Hughesbd3a98c2014-05-24 17:19:36 -0700214}
215
216// This used to be in <sys/atomics.h>.
217extern "C" int __futex_wait(volatile void* ftx, int value, const struct timespec* timeout) {
Elliott Hughesb30aff42014-05-28 19:35:33 +0000218 return __real_futex_wait(ftx, value, timeout);
Elliott Hughesbd3a98c2014-05-24 17:19:36 -0700219}
220
Anthony King00170732014-05-24 16:47:14 +0000221// Unity's libmono uses this.
222extern "C" int tkill(pid_t tid, int sig) {
223 return syscall(__NR_tkill, tid, sig);
224}
225
Dan Albert001f8f02014-06-04 09:53:06 -0700226extern "C" wchar_t* wcswcs(wchar_t* haystack, wchar_t* needle) {
227 return wcsstr(haystack, needle);
228}
229
Dan Albert205dd7d2014-06-04 10:14:19 -0700230// This was removed from POSIX 2008.
231extern "C" sighandler_t bsd_signal(int signum, sighandler_t handler) {
232 return signal(signum, handler);
233}
234
235// sysv_signal() was never in POSIX.
236extern sighandler_t _signal(int signum, sighandler_t handler, int flags);
237extern "C" sighandler_t sysv_signal(int signum, sighandler_t handler) {
238 return _signal(signum, handler, SA_RESETHAND);
239}
240
Elliott Hughes3d5cb302014-06-06 11:44:55 -0700241// This is a system call that was never in POSIX. Use readdir(3) instead.
242extern "C" int getdents(unsigned int fd, struct dirent* dirp, unsigned int count) {
243 return __getdents64(fd, dirp, count);
244}
245
Elliott Hughes567a8de2013-10-24 17:14:55 -0700246#endif