blob: 30222df781599c966ac3da440cdb6b47d26248e9 [file] [log] [blame]
Ian Lance Taylore02ed812012-01-26 20:24:01 +00001/* go-nosys.c -- functions missing from system.
2
3 Copyright 2012 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
6
7/* This file exists to provide definitions for functions that are
8 missing from libc, according to the configure script. This permits
9 the Go syscall package to not worry about whether the functions
10 exist or not. */
11
12#include "config.h"
13
14#include <errno.h>
15#include <fcntl.h>
Ian Lance Taylor324612b2012-04-27 16:38:11 +000016#include <math.h>
Ian Lance Taylore0f69f32016-08-06 00:36:33 +000017#include <pthread.h>
Ian Lance Taylore02ed812012-01-26 20:24:01 +000018#include <stdint.h>
Ian Lance Taylore0f69f32016-08-06 00:36:33 +000019#include <stdlib.h>
20#include <string.h>
Ian Lance Taylore02ed812012-01-26 20:24:01 +000021#include <sys/types.h>
Ian Lance Taylore0f69f32016-08-06 00:36:33 +000022#include <sys/resource.h>
Ian Lance Taylord6f29222013-01-29 20:52:43 +000023#include <sys/socket.h>
Ian Lance Taylore02ed812012-01-26 20:24:01 +000024#include <sys/stat.h>
25#include <sys/time.h>
Ian Lance Taylore0f69f32016-08-06 00:36:33 +000026#include <sys/wait.h>
Ian Lance Taylord6f29222013-01-29 20:52:43 +000027#include <time.h>
Ian Lance Taylore02ed812012-01-26 20:24:01 +000028#include <unistd.h>
29
30#ifndef HAVE_OFF64_T
31typedef signed int off64_t __attribute__ ((mode (DI)));
32#endif
33
34#ifndef HAVE_LOFF_T
35typedef off64_t loff_t;
36#endif
37
Ian Lance Taylord6f29222013-01-29 20:52:43 +000038#ifndef HAVE_ACCEPT4
39struct sockaddr;
40int
41accept4 (int sockfd __attribute__ ((unused)),
42 struct sockaddr *addr __attribute__ ((unused)),
43 socklen_t *addrlen __attribute__ ((unused)),
44 int flags __attribute__ ((unused)))
45{
46 errno = ENOSYS;
47 return -1;
48}
49#endif
50
Ian Lance Taylord5b18b02013-10-17 18:41:12 +000051#ifndef HAVE_DUP3
52int
53dup3 (int oldfd __attribute__ ((unused)),
54 int newfd __attribute__ ((unused)),
Ian Lance Taylor134e6222013-10-18 13:26:40 +000055 int flags __attribute__ ((unused)))
Ian Lance Taylord5b18b02013-10-17 18:41:12 +000056{
57 errno = ENOSYS;
58 return -1;
59}
60#endif
61
Ian Lance Taylore02ed812012-01-26 20:24:01 +000062#ifndef HAVE_EPOLL_CREATE1
63int
64epoll_create1 (int flags __attribute__ ((unused)))
65{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +000066 errno = ENOSYS;
67 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +000068}
69#endif
70
71#ifndef HAVE_FACCESSAT
72int
73faccessat (int fd __attribute__ ((unused)),
74 const char *pathname __attribute__ ((unused)),
75 int mode __attribute__ ((unused)),
76 int flags __attribute__ ((unused)))
77{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +000078 errno = ENOSYS;
79 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +000080}
81#endif
82
Ian Lance Taylor5d46bf02012-02-18 01:22:02 +000083#ifndef HAVE_FALLOCATE
84int
85fallocate (int fd __attribute__ ((unused)),
86 int mode __attribute__ ((unused)),
Ian Lance Taylor2ef7cdf2012-02-25 02:11:29 +000087 off_t offset __attribute__ ((unused)),
Ian Lance Taylor5d46bf02012-02-18 01:22:02 +000088 off_t len __attribute__ ((unused)))
89{
90 errno = ENOSYS;
91 return -1;
92}
93#endif
94
Ian Lance Taylore02ed812012-01-26 20:24:01 +000095#ifndef HAVE_FCHMODAT
96int
97fchmodat (int dirfd __attribute__ ((unused)),
98 const char *pathname __attribute__ ((unused)),
99 mode_t mode __attribute__ ((unused)),
100 int flags __attribute__ ((unused)))
101{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000102 errno = ENOSYS;
103 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000104}
105#endif
106
107#ifndef HAVE_FCHOWNAT
108int
109fchownat (int dirfd __attribute__ ((unused)),
110 const char *pathname __attribute__ ((unused)),
111 uid_t owner __attribute__ ((unused)),
112 gid_t group __attribute__ ((unused)),
113 int flags __attribute__ ((unused)))
114{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000115 errno = ENOSYS;
116 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000117}
118#endif
119
120#ifndef HAVE_FUTIMESAT
121int
122futimesat (int dirfd __attribute__ ((unused)),
123 const char *pathname __attribute__ ((unused)),
124 const struct timeval times[2] __attribute__ ((unused)))
125{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000126 errno = ENOSYS;
127 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000128}
129#endif
130
Ian Lance Taylord5b18b02013-10-17 18:41:12 +0000131#ifndef HAVE_GETXATTR
132ssize_t
133getxattr (const char *path __attribute__ ((unused)),
134 const char *name __attribute__ ((unused)),
135 void *value __attribute__ ((unused)),
136 size_t size __attribute__ ((unused)))
137{
138 errno = ENOSYS;
139 return -1;
140}
141#endif
142
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000143#ifndef HAVE_INOTIFY_ADD_WATCH
144int
145inotify_add_watch (int fd __attribute__ ((unused)),
146 const char* pathname __attribute__ ((unused)),
147 uint32_t mask __attribute__ ((unused)))
148{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000149 errno = ENOSYS;
150 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000151}
152#endif
153
154#ifndef HAVE_INOTIFY_INIT
155int
156inotify_init (void)
157{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000158 errno = ENOSYS;
159 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000160}
161#endif
162
Ian Lance Taylorb65734a2012-02-29 20:02:31 +0000163#ifndef HAVE_INOTIFY_INIT1
164int
165inotify_init1 (int flags __attribute__ ((unused)))
166{
167 errno = ENOSYS;
168 return -1;
169}
170#endif
171
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000172#ifndef HAVE_INOTIFY_RM_WATCH
173int
174inotify_rm_watch (int fd __attribute__ ((unused)),
175 uint32_t wd __attribute__ ((unused)))
176{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000177 errno = ENOSYS;
178 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000179}
180#endif
181
Ian Lance Taylord5b18b02013-10-17 18:41:12 +0000182#ifndef HAVE_LISTXATTR
183ssize_t
184listxattr (const char *path __attribute__ ((unused)),
185 char *list __attribute__ ((unused)),
186 size_t size __attribute__ ((unused)))
187{
188 errno = ENOSYS;
189 return -1;
190}
191#endif
192
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000193#ifndef HAVE_MKDIRAT
194int
195mkdirat (int dirfd __attribute__ ((unused)),
196 const char *pathname __attribute__ ((unused)),
197 mode_t mode __attribute__ ((unused)))
198{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000199 errno = ENOSYS;
200 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000201}
202#endif
203
204#ifndef HAVE_MKNODAT
205int
206mknodat (int dirfd __attribute__ ((unused)),
207 const char *pathname __attribute__ ((unused)),
208 mode_t mode __attribute__ ((unused)),
209 dev_t dev __attribute__ ((unused)))
210{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000211 errno = ENOSYS;
212 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000213}
214#endif
215
216#ifndef HAVE_OPENAT
217int
218openat (int dirfd __attribute__ ((unused)),
219 const char *pathname __attribute__ ((unused)),
220 int oflag __attribute__ ((unused)),
221 ...)
222{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000223 errno = ENOSYS;
224 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000225}
226#endif
227
Ian Lance Taylord6f29222013-01-29 20:52:43 +0000228#ifndef HAVE_PIPE2
229int
230pipe2 (int pipefd[2] __attribute__ ((unused)),
231 int flags __attribute__ ((unused)))
232{
233 errno = ENOSYS;
234 return -1;
235}
236#endif
237
Ian Lance Taylord5b18b02013-10-17 18:41:12 +0000238#ifndef HAVE_REMOVEXATTR
239int
240removexattr (const char *path __attribute__ ((unused)),
241 const char *name __attribute__ ((unused)))
242{
243 errno = ENOSYS;
244 return -1;
245}
246#endif
247
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000248#ifndef HAVE_RENAMEAT
249int
250renameat (int olddirfd __attribute__ ((unused)),
251 const char *oldpath __attribute__ ((unused)),
252 int newdirfd __attribute__ ((unused)),
253 const char *newpath __attribute__ ((unused)))
254{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000255 errno = ENOSYS;
256 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000257}
258#endif
259
Ian Lance Taylord5b18b02013-10-17 18:41:12 +0000260#ifndef HAVE_SETXATTR
261int
262setxattr (const char *path __attribute__ ((unused)),
263 const char *name __attribute__ ((unused)),
264 const void *value __attribute__ ((unused)),
265 size_t size __attribute__ ((unused)),
266 int flags __attribute__ ((unused)))
267{
268 errno = ENOSYS;
269 return -1;
270}
271#endif
272
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000273#ifndef HAVE_SPLICE
274int
275splice (int fd __attribute__ ((unused)),
276 loff_t *off_in __attribute__ ((unused)),
277 int fd_out __attribute__ ((unused)),
278 loff_t *off_out __attribute__ ((unused)),
279 size_t len __attribute__ ((unused)),
280 unsigned int flags __attribute__ ((unused)))
281{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000282 errno = ENOSYS;
283 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000284}
285#endif
286
Ian Lance Taylorb65734a2012-02-29 20:02:31 +0000287#ifndef HAVE_SYNC_FILE_RANGE
288int
289sync_file_range (int fd __attribute__ ((unused)),
290 off64_t offset __attribute__ ((unused)),
291 off64_t nbytes __attribute__ ((unused)),
292 unsigned int flags __attribute__ ((unused)))
293{
294 errno = ENOSYS;
295 return -1;
296}
297#endif
298
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000299#ifndef HAVE_TEE
300int
301tee (int fd_in __attribute__ ((unused)),
302 int fd_out __attribute__ ((unused)),
303 size_t len __attribute__ ((unused)),
304 unsigned int flags __attribute__ ((unused)))
305{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000306 errno = ENOSYS;
307 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000308}
309#endif
310
311#ifndef HAVE_UNLINKAT
312int
313unlinkat (int dirfd __attribute__ ((unused)),
314 const char *pathname __attribute__ ((unused)),
315 int flags __attribute__ ((unused)))
316{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000317 errno = ENOSYS;
318 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000319}
320#endif
321
322#ifndef HAVE_UNSHARE
323int
324unshare (int flags __attribute__ ((unused)))
325{
Ian Lance Taylor1c69e5e2012-02-02 22:58:54 +0000326 errno = ENOSYS;
327 return -1;
Ian Lance Taylore02ed812012-01-26 20:24:01 +0000328}
329#endif
Ian Lance Taylor324612b2012-04-27 16:38:11 +0000330
Ian Lance Taylord6f29222013-01-29 20:52:43 +0000331#ifndef HAVE_UTIMENSAT
332struct timespec;
333int
334utimensat(int dirfd __attribute__ ((unused)),
335 const char *pathname __attribute__ ((unused)),
336 const struct timespec times[2] __attribute__ ((unused)),
337 int flags __attribute__ ((unused)))
338{
339 errno = ENOSYS;
340 return -1;
341}
342#endif
343
Ian Lance Taylorf1639072017-05-10 17:26:09 +0000344
345#ifndef HAVE_MINCORE
346int
347mincore(void *addr __attribute__ ((unused)),
348 size_t length __attribute__ ((unused)),
349 unsigned char *vec __attribute__ ((unused)))
350{
351 errno = ENOSYS;
352 return -1;
353}
354#endif
355
Ian Lance Taylor324612b2012-04-27 16:38:11 +0000356/* Long double math functions. These are needed on old i386 systems
357 that don't have them in libm. The compiler translates calls to
358 these functions on float64 to call an 80-bit floating point
359 function instead, because when optimizing that function can be
360 executed as an x87 instructure. However, when not optimizing, this
361 translates into a call to the math function. So on systems that
362 don't provide these functions, we provide a version that just calls
363 the float64 version. */
364
365#ifndef HAVE_COSL
366long double
367cosl (long double a)
368{
369 return (long double) cos ((double) a);
370}
371#endif
372
373#ifndef HAVE_EXPL
374long double
375expl (long double a)
376{
377 return (long double) exp ((double) a);
378}
379#endif
380
381#ifndef HAVE_LOGL
382long double
383logl (long double a)
384{
385 return (long double) log ((double) a);
386}
387#endif
388
389#ifndef HAVE_SINL
390long double
391sinl (long double a)
392{
393 return (long double) sin ((double) a);
394}
395#endif
396
397#ifndef HAVE_TANL
398long double
399tanl (long double a)
400{
401 return (long double) tan ((double) a);
402}
403#endif
404
405#ifndef HAVE_ACOSL
406long double
407acosl (long double a)
408{
409 return (long double) acos ((double) a);
410}
411#endif
412
413#ifndef HAVE_ASINL
414long double
415asinl (long double a)
416{
417 return (long double) asin ((double) a);
418}
419#endif
420
421#ifndef HAVE_ATANL
422long double
423atanl (long double a)
424{
425 return (long double) atan ((double) a);
426}
427#endif
428
429#ifndef HAVE_ATAN2L
430long double
431atan2l (long double a, long double b)
432{
433 return (long double) atan2 ((double) a, (double) b);
434}
435#endif
436
437#ifndef HAVE_EXPM1L
438long double
439expm1l (long double a)
440{
441 return (long double) expm1 ((double) a);
442}
443#endif
444
445#ifndef HAVE_LDEXPL
446long double
447ldexpl (long double a, int exp)
448{
449 return (long double) ldexp ((double) a, exp);
450}
451#endif
452
453#ifndef HAVE_LOG10L
454long double
455log10l (long double a)
456{
457 return (long double) log10 ((double) a);
458}
459#endif
460
461#ifndef HAVE_LOG1PL
462long double
463log1pl (long double a)
464{
465 return (long double) log1p ((double) a);
466}
467#endif
Ian Lance Taylore0f69f32016-08-06 00:36:33 +0000468
469#ifndef HAVE_STRERROR_R
470
471/* Some old systems do not have strerror_r. This is a replacement.
472 It assumes that nothing else in the program calls strerror. */
473
474static pthread_mutex_t strerror_lock = PTHREAD_MUTEX_INITIALIZER;
475
476int
477strerror_r (int errnum, char *buf, size_t buflen)
478{
479 int i;
480 char *errmsg;
481 size_t len;
482 int ret;
483
484 i = pthread_mutex_lock (&strerror_lock);
485 if (i != 0)
486 abort ();
487
488 errmsg = strerror (errnum);
489 len = strlen (errmsg);
490 if (len >= buflen)
491 ret = ERANGE;
492 else
493 {
494 memcpy (buf, errmsg, len + 1);
495 ret = 0;
496 }
497
498 i = pthread_mutex_unlock (&strerror_lock);
499 if (i != 0)
500 abort ();
501
502 return ret;
503}
504
505#endif /* ! HAVE_STRERROR_R */
506
Ian Lance Taylorf1639072017-05-10 17:26:09 +0000507#ifndef HAVE_SYSCALL
508int
Ian Lance Taylor6fa7df92017-08-29 20:57:20 +0000509syscall(int number __attribute__ ((unused)), ...)
Ian Lance Taylorf1639072017-05-10 17:26:09 +0000510{
511 errno = ENOSYS;
512 return -1;
513}
514#endif
515
Ian Lance Taylore0f69f32016-08-06 00:36:33 +0000516#ifndef HAVE_WAIT4
517
518/* Some old systems do not have wait4. This is a replacement that
519 uses waitpid. */
520
521pid_t
522wait4 (pid_t pid, int *status, int options, struct rusage *rusage __attribute__ ((unused)))
523{
524 return waitpid (pid, status, options);
525}
526
527#endif