1 #ifndef _system_filesys_h
2 #define _system_filesys_h
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
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/>.
32 #ifdef HAVE_SYS_PARAM_H
33 #include <sys/param.h>
36 #ifdef HAVE_SYS_MOUNT_H
37 #include <sys/mount.h>
52 #ifdef HAVE_ACL_LIBACL_H
53 #include <acl/libacl.h>
56 #ifdef HAVE_SYS_FS_S5PARAM_H
57 #include <sys/fs/s5param.h>
60 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
61 #include <sys/filsys.h>
64 #ifdef HAVE_SYS_STATFS_H
65 # include <sys/statfs.h>
69 #include <sys/dustat.h>
72 #ifdef HAVE_SYS_STATVFS_H
73 #include <sys/statvfs.h>
76 #ifdef HAVE_SYS_FILIO_H
77 #include <sys/filio.h>
80 #ifdef HAVE_SYS_FILE_H
87 #ifdef HAVE_SYS_FCNTL_H
88 #include <sys/fcntl.h>
92 #ifdef HAVE_SYS_MODE_H
93 /* apparently AIX needs this for S_ISLNK */
99 #ifdef HAVE_SYS_IOCTL_H
100 #include <sys/ioctl.h>
104 * Veritas File System. Often in addition to native.
107 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
111 #if HAVE_SYS_ATTRIBUTES_H
112 #include <sys/attributes.h>
115 /* mutually exclusive (SuSE 8.2) */
116 #if HAVE_ATTR_XATTR_H
117 #include <attr/xattr.h>
118 #elif HAVE_SYS_XATTR_H
119 #include <sys/xattr.h>
123 #ifdef HAVE_SYS_RESOURCE_H
124 #include <sys/resource.h>
127 /* Some POSIX definitions for those without */
130 #define S_IFDIR 0x4000
133 #define S_ISDIR(mode) ((mode & 0xF000) == S_IFDIR)
136 #define S_IRWXU 00700 /* read, write, execute: owner */
139 #define S_IRUSR 00400 /* read permission: owner */
142 #define S_IWUSR 00200 /* write permission: owner */
145 #define S_IXUSR 00100 /* execute permission: owner */
148 #define S_IRWXG 00070 /* read, write, execute: group */
151 #define S_IRGRP 00040 /* read permission: group */
154 #define S_IWGRP 00020 /* write permission: group */
157 #define S_IXGRP 00010 /* execute permission: group */
160 #define S_IRWXO 00007 /* read, write, execute: other */
163 #define S_IROTH 00004 /* read permission: other */
166 #define S_IWOTH 00002 /* write permission: other */
169 #define S_IXOTH 00001 /* execute permission: other */
173 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
177 #define MAXPATHLEN 256
185 #define mkdir(d,m) _mkdir(d)