1/*
2 * Copyright (C) 2008 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#ifndef _UNISTD_H_
29#define _UNISTD_H_
30
31#include <stddef.h>
32#include <sys/cdefs.h>
33#include <sys/types.h>
34#include <sys/select.h>
35#include <sys/sysconf.h>
36#include <linux/capability.h>
37#include <pathconf.h>
38
39__BEGIN_DECLS
40
41/* Standard file descriptor numbers. */
42#define STDIN_FILENO	0
43#define STDOUT_FILENO	1
44#define STDERR_FILENO	2
45
46/* Values for whence in fseek and lseek */
47#define SEEK_SET 0
48#define SEEK_CUR 1
49#define SEEK_END 2
50
51extern char **environ;
52extern __noreturn void _exit(int);
53
54extern pid_t  fork(void);
55extern pid_t  vfork(void);
56extern pid_t  getpid(void);
57extern pid_t  gettid(void);
58extern pid_t  getpgid(pid_t);
59extern int    setpgid(pid_t, pid_t);
60extern pid_t  getppid(void);
61extern pid_t  getpgrp(void);
62extern int    setpgrp(void);
63extern pid_t  setsid(void);
64extern pid_t  getsid(pid_t);
65
66extern int execv(const char *, char * const *);
67extern int execvp(const char *, char * const *);
68extern int execve(const char *, char * const *, char * const *);
69extern int execvpe(const char *, char * const *, char * const *);
70extern int execl(const char *, const char *, ...);
71extern int execlp(const char *, const char *, ...);
72extern int execle(const char *, const char *, ...);
73extern int execlpe(const char *, const char *, ...);
74extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
75extern int capset(cap_user_header_t hdrp, const cap_user_data_t datap);
76extern int prctl(int  option,  unsigned long arg2, unsigned long arg3,
77                 unsigned long arg4, unsigned long arg5);
78
79extern int nice(int);
80
81extern int setuid(uid_t);
82extern uid_t getuid(void);
83extern int seteuid(uid_t);
84extern uid_t geteuid(void);
85extern int setgid(gid_t);
86extern gid_t getgid(void);
87extern int setegid(gid_t);
88extern gid_t getegid(void);
89extern int getgroups(int, gid_t *);
90extern int setgroups(size_t, const gid_t *);
91extern int setreuid(uid_t, uid_t);
92extern int setregid(gid_t, gid_t);
93extern int setresuid(uid_t, uid_t, uid_t);
94extern int setresgid(gid_t, gid_t, gid_t);
95extern int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid);
96extern int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid);
97extern int getfsuid(uid_t);
98extern int setfsuid(uid_t);
99extern int issetugid(void);
100extern char* getlogin(void);
101extern int getlogin_r(char* name, size_t namesize);
102
103
104/* Macros for access() */
105#define R_OK  4  /* Read */
106#define W_OK  2  /* Write */
107#define X_OK  1  /* Execute */
108#define F_OK  0  /* Existence */
109
110extern int access(const char *, int);
111extern int link(const char *, const char *);
112extern int unlink(const char *);
113extern int chdir(const char *);
114extern int fchdir(int);
115extern int rmdir(const char *);
116extern int pipe(int *);
117extern int chroot(const char *);
118extern int symlink(const char *, const char *);
119extern int readlink(const char *, char *, size_t);
120extern int chown(const char *, uid_t, gid_t);
121extern int fchown(int, uid_t, gid_t);
122extern int lchown(const char *, uid_t, gid_t);
123extern char *getcwd(char *, size_t);
124
125extern int sync(void);
126
127extern int close(int);
128extern off_t lseek(int, off_t, int);
129extern loff_t lseek64(int, loff_t, int);
130
131extern ssize_t read(int, void *, size_t);
132extern ssize_t write(int, const void *, size_t);
133extern ssize_t pread(int, void *, size_t, off_t);
134extern ssize_t pwrite(int, void *, size_t, off_t);
135
136extern int dup(int);
137extern int dup2(int, int);
138extern int fcntl(int, int, ...);
139extern int ioctl(int, int, ...);
140extern int flock(int, int);
141extern int fsync(int);
142extern int fdatasync(int);
143extern int ftruncate(int, off_t);
144
145extern int pause(void);
146extern unsigned int alarm(unsigned int);
147extern unsigned int sleep(unsigned int);
148extern void usleep(unsigned long);
149
150extern int gethostname(char *, size_t);
151extern int sethostname(const char *, size_t);
152extern int getdomainname(char *, size_t);
153extern int setdomainname(const char *, size_t);
154
155extern int getdtablesize(void);
156
157extern void *__brk(void *);
158extern int brk(void *);
159extern void *sbrk(ptrdiff_t);
160
161extern int getopt(int, char * const *, const char *);
162extern char *optarg;
163extern int optind, opterr, optopt;
164
165extern int isatty(int);
166
167extern int  acct(const char*  filepath);
168
169static __inline__ int getpagesize(void) {
170  extern unsigned int __page_size;
171  return __page_size;
172}
173static __inline__ int __getpageshift(void) {
174  extern unsigned int __page_shift;
175  return __page_shift;
176}
177
178extern int sysconf(int  name);
179
180extern int daemon(int, int);
181
182/* A special syscall that is only available on the ARM, not x86 function. */
183extern int cacheflush(long start, long end, long flags);
184
185extern pid_t tcgetpgrp(int fd);
186extern int   tcsetpgrp(int fd, pid_t _pid);
187
188__END_DECLS
189
190#endif /* _UNISTD_H_ */
191