2 Unix SMB/Netbios implementation.
4 defintions of syscall entries
5 Copyright (C) Andrew Tridgell 1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 /* amazingly, IRIX gets its own syscall numbers wrong! */
27 #define SYSVoffset 1000
32 /* this file is partly derived from zlibc by Alain Knaff */
34 #define real_access(fn, mode) (syscall(SYS_access, (fn), (mode)))
35 #define real_chdir(fn) (syscall(SYS_chdir, (fn)))
36 #define real_chmod(fn, mode) (syscall(SYS_chmod,(fn), (mode)))
37 #define real_chown(fn, owner, group) (syscall(SYS_chown,(fn),(owner),(group)))
39 #define real_getdents(fd, dirp, count) (syscall(SYS_getdents, (fd), (dirp), (count)))
40 #define real_link(fn1, fn2) (syscall(SYS_link, (fn1), (fn2)))
42 #define real_open(fn,flags,mode) (syscall(SYS_open, (fn), (flags), (mode)))
45 #define real_open64(fn,flags,mode) (syscall(SYS_open64, (fn), (flags), (mode)))
47 #define real_open64(fn,flags,mode) (_open64(fn,flags,mode))
48 #define NO_OPEN64_ALIAS
50 #define real_open64(fn,flags,mode) (__open64(fn,flags,mode))
51 #define NO_OPEN64_ALIAS
55 #define real_opendir(fn) ((DIR *)_opendir(fn))
57 #define real_opendir(fn) ((DIR *)syscall(SYS_opendir,(fn)))
59 #define real_opendir(fn) ((DIR *)__opendir(fn))
63 #define real_readdir(d) ((struct dirent *)_readdir(d))
65 #define real_readdir(d) ((struct dirent *)__readdir(d))
67 #define real_readdir(d) ((struct dirent *)syscall(SYS_readdir,(d)))
71 #define real_closedir(d) (_closedir(d))
73 #define real_closedir(d) (syscall(SYS_closedir,(d)))
75 #define real_closedir(d) (__closedir(d))
79 #define real_seekdir(d,l) (_seekdir(d,l))
81 #define real_seekdir(d,l) (syscall(SYS_seekdir,(d),(l)))
83 #define real_seekdir(d) (__seekdir(d,l))
85 #define NO_SEEKDIR_WRAPPER
89 #define real_telldir(d) (_telldir(d))
91 #define real_telldir(d) (syscall(SYS_telldir,(d)))
93 #define real_telldir(d) (__telldir(d))
97 #define real_dup(d) (_dup(d))
99 #define real_dup(d) (syscall(SYS_dup,(d)))
101 #define real_dup(d) (__dup(d))
105 #define real_dup2(d1,d2) (_dup2(d1,d2))
107 #define real_dup2(d1,d2) (syscall(SYS_dup2,(d1),(d2)))
109 #define real_dup2(d1,d2) (__dup2(d1,d2))
113 #define real_getcwd(b,s) ((char *)_getcwd(b,s))
115 #define real_getcwd(b,s) ((char *)syscall(SYS_getcwd,(b),(s)))
117 #define real_getcwd(b,s) ((char *)__getcwd(b,s))
121 #define real_stat(fn,st) (_stat(fn,st))
123 #define real_stat(fn,st) (syscall(SYS_stat,(fn),(st)))
125 #define real_stat(fn,st) (__stat(fn,st))
129 #define real_lstat(fn,st) (_lstat(fn,st))
131 #define real_lstat(fn,st) (syscall(SYS_lstat,(fn),(st)))
133 #define real_lstat(fn,st) (__lstat(fn,st))
137 #define real_fstat(fd,st) (_fstat(fd,st))
139 #define real_fstat(fd,st) (syscall(SYS_fstat,(fd),(st)))
141 #define real_fstat(fd,st) (__fstat(fd,st))
145 #define real_acl(fn,cmd,n,buf) (_acl(fn,cmd,n,buf))
147 #define real_acl(fn,cmd,n,buf) (syscall(SYS_acl,(fn),(cmd),(n),(buf)))
149 #define real_acl(fn,cmd,n,buf) (__acl(fn,cmd,n,buf))
151 #define NO_ACL_WRAPPER
155 #define real_facl(fd,cmd,n,buf) (_facl(fd,cmd,n,buf))
157 #define real_facl(fd,cmd,n,buf) (syscall(SYS_facl,(fd),(cmd),(n),(buf)))
159 #define real_facl(fd,cmd,n,buf) (__facl(fd,cmd,n,buf))
161 #define NO_FACL_WRAPPER
166 #define real_stat64(fn,st) (_stat64(fn,st))
168 #define real_stat64(fn,st) (__stat64(fn,st))
172 #define real_lstat64(fn,st) (_lstat64(fn,st))
174 #define real_lstat64(fn,st) (__lstat64(fn,st))
178 #define real_fstat64(fd,st) (_fstat64(fd,st))
180 #define real_fstat64(fd,st) (__fstat64(fd,st))
183 #ifdef HAVE__READDIR64
184 #define real_readdir64(d) ((struct dirent64 *)_readdir64(d))
185 #elif HAVE___READDIR64
186 #define real_readdir64(d) ((struct dirent64 *)__readdir64(d))
190 #define real_llseek(fd,ofs,whence) (_llseek(fd,ofs,whence))
192 #define real_llseek(fd,ofs,whence) (__llseek(fd,ofs,whence))
197 #define real_pread(fd,buf,size,ofs) (_pread(fd,buf,size,ofs))
199 #define real_pread(fd,buf,size,ofs) (__pread(fd,buf,size,ofs))
203 #define real_pread64(fd,buf,size,ofs) (_pread64(fd,buf,size,ofs))
205 #define real_pread64(fd,buf,size,ofs) (__pread64(fd,buf,size,ofs))
209 #define real_pwrite(fd,buf,size,ofs) (_pwrite(fd,buf,size,ofs))
211 #define real_pwrite(fd,buf,size,ofs) (__pwrite(fd,buf,size,ofs))
214 #ifdef HAVE__PWRITE64
215 #define real_pwrite64(fd,buf,size,ofs) (_pwrite64(fd,buf,size,ofs))
216 #elif HAVE___PWRITE64
217 #define real_pwrite64(fd,buf,size,ofs) (__pwrite64(fd,buf,size,ofs))
221 #define real_readlink(fn,buf,len) (syscall(SYS_readlink, (fn), (buf), (len)))
222 #define real_rename(fn1, fn2) (syscall(SYS_rename, (fn1), (fn2)))
223 #define real_symlink(fn1, fn2) (syscall(SYS_symlink, (fn1), (fn2)))
224 #define real_read(fd, buf, count ) (syscall(SYS_read, (fd), (buf), (count)))
225 #define real_lseek(fd, offset, whence) (syscall(SYS_lseek, (fd), (offset), (whence)))
226 #define real_write(fd, buf, count ) (syscall(SYS_write, (fd), (buf), (count)))
227 #define real_close(fd) (syscall(SYS_close, (fd)))
228 #define real_fchdir(fd) (syscall(SYS_fchdir, (fd)))
229 #define real_fcntl(fd,cmd,arg) (syscall(SYS_fcntl, (fd), (cmd), (arg)))
230 #define real_symlink(fn1, fn2) (syscall(SYS_symlink, (fn1), (fn2)))
231 #define real_unlink(fn) (syscall(SYS_unlink, (fn)))
232 #define real_rmdir(fn) (syscall(SYS_rmdir, (fn)))
233 #define real_mkdir(fn, mode) (syscall(SYS_mkdir, (fn), (mode)))
236 #define real_utime(fn, buf) (syscall(SYS_utime, (fn), (buf)))
238 #define REPLACE_UTIME 1
242 #define real_utimes(fn, buf) (syscall(SYS_utimes, (fn), (buf)))
244 #define REPLACE_UTIMES 1