r3276: - allow for more than 256 open old style searches (limit currently set at...
[metze/samba/wip.git] / source4 / ntvfs / posix / vfs_posix.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - structure definitions
5
6    Copyright (C) Andrew Tridgell 2004
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #ifndef _VFS_POSIX_H_
24 #define _VFS_POSIX_H_
25
26 /* this is the private structure for the posix vfs backend. It is used
27    to hold per-connection (per tree connect) state information */
28 struct pvfs_state {
29         struct smbsrv_tcon *tcon;
30         const char *base_directory;
31
32         const char *share_name;
33         uint_t flags;
34
35         struct pvfs_file *open_files;
36
37         struct pvfs_mangle_context *mangle_ctx;
38
39         struct brl_context *brl_context;
40         struct odb_context *odb_context;
41
42         /* an id tree mapping open search ID to a pvfs_search_state structure */
43         struct idr_context *idtree_search;
44
45         /* an id tree mapping open file handle -> struct pvfs_file */
46         struct idr_context *idtree_fnum;
47 };
48
49
50 /* this is the basic information needed about a file from the filesystem */
51 struct pvfs_dos_fileinfo {
52         NTTIME create_time;
53         NTTIME access_time;
54         NTTIME write_time;
55         NTTIME change_time;
56         uint32_t attrib;
57         uint64_t alloc_size;
58         uint32_t nlink;
59         uint32_t ea_size;
60         uint64_t file_id;
61 };
62
63 /*
64   this is the structure returned by pvfs_resolve_name(). It holds the posix details of
65   a filename passed by the client to any function
66 */
67 struct pvfs_filename {
68         const char *original_name;
69         char *full_name;
70         const char *stream_name;
71         BOOL has_wildcard;
72         BOOL exists;
73         struct stat st;
74         struct pvfs_dos_fileinfo dos;
75 };
76
77
78 /* open file state */
79 struct pvfs_file {
80         struct pvfs_file *next, *prev;
81         int fd;
82         uint16_t fnum;
83         struct pvfs_filename *name;
84
85         /* we need to remember the session it was opened on,
86            as it is illegal to operate on someone elses fnum */
87         struct smbsrv_session *session;
88
89         /* we need to remember the client pid that 
90            opened the file so SMBexit works */
91         uint16_t smbpid;
92
93         /* a unique file key to be used for file locking */
94         DATA_BLOB locking_key;
95
96         /* we need this hook back to our parent for lock destruction */
97         struct pvfs_state *pvfs;
98
99         /* a list of pending locks - used for locking cancel operations */
100         struct pvfs_pending_lock *pending_list;
101
102         /* a count of active locks - used to avoid calling brl_close on
103            file close */
104         uint64_t lock_count;
105
106         uint32_t create_options;
107         uint32_t share_access;
108         uint32_t access_mask;
109
110         /* yes, we need 2 independent positions ... */
111         uint64_t seek_offset;
112         uint64_t position;
113 };
114
115
116 struct pvfs_mangle_context {
117         uint8_t char_flags[256];
118         /*
119           this determines how many characters are used from the original
120           filename in the 8.3 mangled name. A larger value leads to a weaker
121           hash and more collisions.  The largest possible value is 6.
122         */
123         int mangle_prefix;
124         uint32_t mangle_modulus;
125
126         /* we will use a very simple direct mapped prefix cache. The big
127            advantage of this cache structure is speed and low memory usage 
128
129            The cache is indexed by the low-order bits of the hash, and confirmed by
130            hashing the resulting cache entry to match the known hash
131         */
132         char **prefix_cache;
133         uint32_t *prefix_cache_hashes;
134
135         /* this is used to reverse the base 36 mapping */
136         unsigned char base_reverse[256];
137 };
138
139
140
141 /* flags to pvfs_resolve_name() */
142 #define PVFS_RESOLVE_NO_WILDCARD (1<<0)
143 #define PVFS_RESOLVE_STREAMS     (1<<1)
144
145 /* flags in pvfs->flags */
146 #define PVFS_FLAG_CI_FILESYSTEM  (1<<0) /* the filesystem is case insensitive */
147 #define PVFS_FLAG_MAP_ARCHIVE    (1<<1)
148 #define PVFS_FLAG_MAP_SYSTEM     (1<<2)
149 #define PVFS_FLAG_MAP_HIDDEN     (1<<3)
150 #define PVFS_FLAG_READONLY       (1<<4)
151 #define PVFS_FLAG_STRICT_SYNC    (1<<5)
152 #define PVFS_FLAG_STRICT_LOCKING (1<<6)
153
154 /* forward declare some anonymous structures */
155 struct pvfs_dir;
156
157 #endif /* _VFS_POSIX_H_ */