nsswitch: Fix two bitfield constants being the same.
[Samba/gebeck_regimport.git] / lib / replace / system / filesys.h
blobc8ac2b4f748738f7dd82594ec6c99cba87b01344
1 #ifndef _system_filesys_h
2 #define _system_filesys_h
3 /*
4 Unix SMB/CIFS implementation.
6 filesystem system include wrappers
8 Copyright (C) Andrew Tridgell 2004
10 ** NOTE! The following LGPL license applies to the replace
11 ** library. This does NOT imply that all of Samba is released
12 ** under the LGPL
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 3 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, see <http://www.gnu.org/licenses/>.
29 #include <unistd.h>
30 #include <sys/stat.h>
32 #ifdef HAVE_SYS_PARAM_H
33 #include <sys/param.h>
34 #endif
36 #ifdef HAVE_SYS_MOUNT_H
37 #include <sys/mount.h>
38 #endif
40 #ifdef HAVE_MNTENT_H
41 #include <mntent.h>
42 #endif
44 #ifdef HAVE_SYS_VFS_H
45 #include <sys/vfs.h>
46 #endif
48 #ifdef HAVE_SYS_ACL_H
49 #include <sys/acl.h>
50 #endif
52 #ifdef HAVE_ACL_LIBACL_H
53 #include <acl/libacl.h>
54 #endif
56 #ifdef HAVE_SYS_FS_S5PARAM_H
57 #include <sys/fs/s5param.h>
58 #endif
60 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
61 #include <sys/filsys.h>
62 #endif
64 #ifdef HAVE_SYS_STATFS_H
65 # include <sys/statfs.h>
66 #endif
68 #ifdef HAVE_DUSTAT_H
69 #include <sys/dustat.h>
70 #endif
72 #ifdef HAVE_SYS_STATVFS_H
73 #include <sys/statvfs.h>
74 #endif
76 #ifdef HAVE_SYS_FILIO_H
77 #include <sys/filio.h>
78 #endif
80 #ifdef HAVE_SYS_FILE_H
81 #include <sys/file.h>
82 #endif
84 #ifdef HAVE_FCNTL_H
85 #include <fcntl.h>
86 #else
87 #ifdef HAVE_SYS_FCNTL_H
88 #include <sys/fcntl.h>
89 #endif
90 #endif
92 #ifdef HAVE_SYS_MODE_H
93 /* apparently AIX needs this for S_ISLNK */
94 #ifndef S_ISLNK
95 #include <sys/mode.h>
96 #endif
97 #endif
99 #ifdef HAVE_SYS_IOCTL_H
100 #include <sys/ioctl.h>
101 #endif
103 #ifdef HAVE_SYS_UIO_H
104 #include <sys/uio.h>
105 #endif
108 * Veritas File System. Often in addition to native.
109 * Quotas different.
111 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
112 #define VXFS_QUOTA
113 #endif
115 #if HAVE_SYS_ATTRIBUTES_H
116 #include <sys/attributes.h>
117 #elif HAVE_ATTR_ATTRIBUTES_H
118 #include <attr/attributes.h>
119 #endif
121 /* mutually exclusive (SuSE 8.2) */
122 #if HAVE_ATTR_XATTR_H
123 #include <attr/xattr.h>
124 #elif HAVE_SYS_XATTR_H
125 #include <sys/xattr.h>
126 #endif
128 #ifdef HAVE_SYS_EA_H
129 #include <sys/ea.h>
130 #endif
132 #ifdef HAVE_SYS_EXTATTR_H
133 #include <sys/extattr.h>
134 #endif
136 #ifdef HAVE_SYS_RESOURCE_H
137 #include <sys/resource.h>
138 #endif
140 #ifndef XATTR_CREATE
141 #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
142 #endif
144 #ifndef XATTR_REPLACE
145 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
146 #endif
148 /* Some POSIX definitions for those without */
150 #ifndef S_IFDIR
151 #define S_IFDIR 0x4000
152 #endif
153 #ifndef S_ISDIR
154 #define S_ISDIR(mode) ((mode & 0xF000) == S_IFDIR)
155 #endif
156 #ifndef S_IRWXU
157 #define S_IRWXU 00700 /* read, write, execute: owner */
158 #endif
159 #ifndef S_IRUSR
160 #define S_IRUSR 00400 /* read permission: owner */
161 #endif
162 #ifndef S_IWUSR
163 #define S_IWUSR 00200 /* write permission: owner */
164 #endif
165 #ifndef S_IXUSR
166 #define S_IXUSR 00100 /* execute permission: owner */
167 #endif
168 #ifndef S_IRWXG
169 #define S_IRWXG 00070 /* read, write, execute: group */
170 #endif
171 #ifndef S_IRGRP
172 #define S_IRGRP 00040 /* read permission: group */
173 #endif
174 #ifndef S_IWGRP
175 #define S_IWGRP 00020 /* write permission: group */
176 #endif
177 #ifndef S_IXGRP
178 #define S_IXGRP 00010 /* execute permission: group */
179 #endif
180 #ifndef S_IRWXO
181 #define S_IRWXO 00007 /* read, write, execute: other */
182 #endif
183 #ifndef S_IROTH
184 #define S_IROTH 00004 /* read permission: other */
185 #endif
186 #ifndef S_IWOTH
187 #define S_IWOTH 00002 /* write permission: other */
188 #endif
189 #ifndef S_IXOTH
190 #define S_IXOTH 00001 /* execute permission: other */
191 #endif
193 #ifndef O_ACCMODE
194 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
195 #endif
197 #ifndef MAXPATHLEN
198 #define MAXPATHLEN 256
199 #endif
201 #ifndef SEEK_SET
202 #define SEEK_SET 0
203 #endif
205 #ifdef _WIN32
206 #define mkdir(d,m) _mkdir(d)
207 #endif
209 #ifdef UID_WRAPPER
210 # ifndef UID_WRAPPER_DISABLE
211 # ifndef UID_WRAPPER_NOT_REPLACE
212 # define UID_WRAPPER_REPLACE
213 # endif /* UID_WRAPPER_NOT_REPLACE */
214 # include "../uid_wrapper/uid_wrapper.h"
215 # endif /* UID_WRAPPER_DISABLE */
216 #else /* UID_WRAPPER */
217 # define uwrap_enabled() 0
218 #endif /* UID_WRAPPER */
221 this allows us to use a uniform error handling for our xattr
222 wrappers
224 #ifndef ENOATTR
225 #define ENOATTR ENODATA
226 #endif
229 #if !defined(HAVE_GETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
230 ssize_t rep_getxattr (const char *path, const char *name, void *value, size_t size);
231 #define getxattr(path, name, value, size) rep_getxattr(path, name, value, size)
232 /* define is in "replace.h" */
233 #endif
235 #if !defined(HAVE_FGETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
236 ssize_t rep_fgetxattr (int filedes, const char *name, void *value, size_t size);
237 #define fgetxattr(filedes, name, value, size) rep_fgetxattr(filedes, name, value, size)
238 /* define is in "replace.h" */
239 #endif
241 #if !defined(HAVE_LISTXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
242 ssize_t rep_listxattr (const char *path, char *list, size_t size);
243 #define listxattr(path, list, size) rep_listxattr(path, list, size)
244 /* define is in "replace.h" */
245 #endif
247 #if !defined(HAVE_FLISTXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
248 ssize_t rep_flistxattr (int filedes, char *list, size_t size);
249 #define flistxattr(filedes, value, size) rep_flistxattr(filedes, value, size)
250 /* define is in "replace.h" */
251 #endif
253 #if !defined(HAVE_REMOVEXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
254 int rep_removexattr (const char *path, const char *name);
255 #define removexattr(path, name) rep_removexattr(path, name)
256 /* define is in "replace.h" */
257 #endif
259 #if !defined(HAVE_FREMOVEXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
260 int rep_fremovexattr (int filedes, const char *name);
261 #define fremovexattr(filedes, name) rep_fremovexattr(filedes, name)
262 /* define is in "replace.h" */
263 #endif
265 #if !defined(HAVE_SETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
266 int rep_setxattr (const char *path, const char *name, const void *value, size_t size, int flags);
267 #define setxattr(path, name, value, size, flags) rep_setxattr(path, name, value, size, flags)
268 /* define is in "replace.h" */
269 #endif
271 #if !defined(HAVE_FSETXATTR) || defined(XATTR_ADDITIONAL_OPTIONS)
272 int rep_fsetxattr (int filedes, const char *name, const void *value, size_t size, int flags);
273 #define fsetxattr(filedes, name, value, size, flags) rep_fsetxattr(filedes, name, value, size, flags)
274 /* define is in "replace.h" */
275 #endif
277 #endif