preparing for release of alpha.0.8
[Samba.git] / source / include / vfs.h
blobd4ca8823ca15716c59a5641ca8bd87b3cd23320f
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 VFS structures and parameters
5 Copyright (C) Tim Potter 1999
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.
22 #ifndef _VFS_H
23 #define _VFS_H
25 /* Types used in the definition of VFS operations. These are included
26 here so the vfs.h file can be included by VFS modules without
27 having to pull in unnecessary amounts of other stuff. Note to VFS
28 writers: you must include config.h before including this file.
29 The following type definitions reference the HAVE_* symbols which
30 are defined in config.h */
32 #ifndef SMB_OFF_T
33 # ifdef HAVE_OFF64_T
34 # define SMB_OFF_T off64_t
35 # else
36 # define SMB_OFF_T off_t
37 # endif
38 #endif
40 #ifndef SMB_STRUCT_STAT
41 # if defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
42 # define SMB_STRUCT_STAT struct stat64
43 # else
44 # define SMB_STRUCT_STAT struct stat
45 # endif
46 #endif
48 #ifndef _BOOL
49 typedef int BOOL;
50 #endif
52 #ifndef _PSTRING
53 #define PSTRING_LEN 1024
54 #define FSTRING_LEN 128
56 typedef char pstring[PSTRING_LEN];
57 typedef char fstring[FSTRING_LEN];
58 #define _PSTRING
59 #endif
61 #if defined(HAVE_LONGLONG)
62 #define SMB_BIG_UINT unsigned long long
63 #else
64 #define SMB_BIG_UINT unsigned long
65 #endif
67 /* Information from the connection_struct passed to the vfs layer */
69 struct vfs_connection_struct {
71 /* Connection information */
73 BOOL printer;
74 BOOL ipc;
75 BOOL read_only;
76 BOOL admin_user;
78 /* Paths */
80 pstring dirpath;
81 pstring connectpath;
82 pstring origpath;
83 pstring service;
85 /* Information on user who *opened* this connection */
87 pstring user;
88 uid_t uid;
89 gid_t gid;
90 int ngroups;
91 gid_t *groups;
94 /* Avoid conflict with an AIX include file */
96 #ifdef vfs_ops
97 #undef vfs_ops
98 #endif
100 /* VFS operations structure */
102 struct vfs_ops {
104 /* Disk operations */
106 int (*connect)(struct vfs_connection_struct *conn, char *service,
107 char *user);
108 void (*disconnect)(void);
109 SMB_BIG_UINT (*disk_free)(char *path, SMB_BIG_UINT *bsize,
110 SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize);
112 /* Directory operations */
114 DIR *(*opendir)(char *fname);
115 struct dirent *(*readdir)(DIR *dirp);
116 int (*mkdir)(char *path, mode_t mode);
117 int (*rmdir)(char *path);
118 int (*closedir)(DIR *dir);
120 /* File operations */
122 int (*open)(char *fname, int flags, mode_t mode);
123 int (*close)(int fd);
124 ssize_t (*read)(int fd, char *data, size_t n);
125 ssize_t (*write)(int fd, char *data, size_t n);
126 SMB_OFF_T (*lseek)(int filedes, SMB_OFF_T offset, int whence);
127 int (*rename)(char *old, char *new);
128 void (*sync)(int fd);
129 int (*stat)(char *fname, SMB_STRUCT_STAT *sbuf);
130 int (*fstat)(int fd, SMB_STRUCT_STAT *sbuf);
131 int (*lstat)(char *path, SMB_STRUCT_STAT *sbuf);
132 BOOL (*lock)(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
133 int (*unlink)(char *path);
134 int (*chmod)(char *path, mode_t mode);
135 int (*utime)(char *path, struct utimbuf *times);
138 /* VFS options for configuration file */
140 struct vfs_options {
141 struct vfs_options *prev, *next;
142 char *name;
143 char *value;
146 #endif /* _VFS_H */