r15613: the snum doesn't identify the tcon, but the brl_context pointer does
[ambi/samba-autobuild/.git] / source4 / ntvfs / posix / vfs_posix.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend
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   this implements most of the POSIX NTVFS backend
24   This is the default backend
25 */
26
27 #include "includes.h"
28 #include "vfs_posix.h"
29 #include "librpc/gen_ndr/security.h"
30 #include "lib/tdb/include/tdb.h"
31 #include "db_wrap.h"
32 #include "libcli/security/security.h"
33 #include "lib/events/events.h"
34
35
36 /*
37   setup config options for a posix share
38 */
39 static void pvfs_setup_options(struct pvfs_state *pvfs)
40 {
41         int snum = pvfs->ntvfs->ctx->config.snum;
42         const char *eadb;
43
44         if (lp_map_hidden(snum))     pvfs->flags |= PVFS_FLAG_MAP_HIDDEN;
45         if (lp_map_archive(snum))    pvfs->flags |= PVFS_FLAG_MAP_ARCHIVE;
46         if (lp_map_system(snum))     pvfs->flags |= PVFS_FLAG_MAP_SYSTEM;
47         if (lp_readonly(snum))       pvfs->flags |= PVFS_FLAG_READONLY;
48         if (lp_strict_sync(snum))    pvfs->flags |= PVFS_FLAG_STRICT_SYNC;
49         if (lp_strict_locking(snum)) pvfs->flags |= PVFS_FLAG_STRICT_LOCKING;
50         if (lp_ci_filesystem(snum))  pvfs->flags |= PVFS_FLAG_CI_FILESYSTEM;
51
52         if (lp_parm_bool(snum, "posix", "fakeoplocks", False)) {
53                 pvfs->flags |= PVFS_FLAG_FAKE_OPLOCKS;
54         }
55
56         /* this must be a power of 2 */
57         pvfs->alloc_size_rounding = lp_parm_int(snum, 
58                                                 "posix", "allocationrounding", 512);
59
60         pvfs->search.inactivity_time = lp_parm_int(snum, 
61                                                    "posix", "searchinactivity", 300);
62
63 #if HAVE_XATTR_SUPPORT
64         if (lp_parm_bool(snum, "posix", "xattr", True)) pvfs->flags |= PVFS_FLAG_XATTR_ENABLE;
65 #endif
66
67         pvfs->sharing_violation_delay = lp_parm_int(snum, "posix", "sharedelay", 1000000);
68
69         pvfs->share_name = talloc_strdup(pvfs, lp_servicename(snum));
70
71         pvfs->fs_attribs = 
72                 FS_ATTR_CASE_SENSITIVE_SEARCH | 
73                 FS_ATTR_CASE_PRESERVED_NAMES |
74                 FS_ATTR_UNICODE_ON_DISK |
75                 FS_ATTR_SPARSE_FILES;
76
77         /* allow xattrs to be stored in a external tdb */
78         eadb = lp_parm_string(snum, "posix", "eadb");
79         if (eadb != NULL) {
80                 pvfs->ea_db = tdb_wrap_open(pvfs, eadb, 50000,  
81                                             TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
82                 if (pvfs->ea_db != NULL) {
83                         pvfs->flags |= PVFS_FLAG_XATTR_ENABLE;
84                 } else {
85                         DEBUG(0,("Failed to open eadb '%s' - %s\n",
86                                  eadb, strerror(errno)));
87                         pvfs->flags &= ~PVFS_FLAG_XATTR_ENABLE;
88                 }
89         }
90
91         if (pvfs->flags & PVFS_FLAG_XATTR_ENABLE) {
92                 pvfs->fs_attribs |= FS_ATTR_NAMED_STREAMS;
93         }
94         if (pvfs->flags & PVFS_FLAG_XATTR_ENABLE) {
95                 pvfs->fs_attribs |= FS_ATTR_PERSISTANT_ACLS;
96         }
97
98         pvfs->sid_cache.creator_owner = dom_sid_parse_talloc(pvfs, SID_CREATOR_OWNER);
99         pvfs->sid_cache.creator_group = dom_sid_parse_talloc(pvfs, SID_CREATOR_GROUP);
100
101         /* check if the system really supports xattrs */
102         if (pvfs->flags & PVFS_FLAG_XATTR_ENABLE) {
103                 pvfs_xattr_probe(pvfs);
104         }
105 }
106
107 static int pvfs_state_destructor(void *ptr)
108 {
109         struct pvfs_state *pvfs = talloc_get_type(ptr, struct pvfs_state);
110         struct pvfs_file *f, *fn;
111         struct pvfs_search_state *s, *sn;
112
113         /* 
114          * make sure we cleanup files and searches before anything else
115          * because there destructors need to acess the pvfs_state struct
116          */
117         for (f=pvfs->files.list; f; f=fn) {
118                 fn = f->next;
119                 talloc_free(f);
120         }
121
122         for (s=pvfs->search.list; s; s=sn) {
123                 sn = s->next;
124                 talloc_free(s);
125         }
126
127         return 0;
128 }
129
130 /*
131   connect to a share - used when a tree_connect operation comes
132   in. For a disk based backend we needs to ensure that the base
133   directory exists (tho it doesn't need to be accessible by the user,
134   that comes later)
135 */
136 static NTSTATUS pvfs_connect(struct ntvfs_module_context *ntvfs,
137                              struct ntvfs_request *req, const char *sharename)
138 {
139         struct pvfs_state *pvfs;
140         struct stat st;
141         char *base_directory;
142         NTSTATUS status;
143
144         pvfs = talloc_zero(ntvfs, struct pvfs_state);
145         NT_STATUS_HAVE_NO_MEMORY(pvfs);
146
147         /* for simplicity of path construction, remove any trailing slash now */
148         base_directory = talloc_strdup(pvfs, lp_pathname(ntvfs->ctx->config.snum));
149         NT_STATUS_HAVE_NO_MEMORY(base_directory);
150         if (strcmp(base_directory, "/") != 0) {
151                 trim_string(base_directory, NULL, "/");
152         }
153
154         pvfs->ntvfs = ntvfs;
155         pvfs->base_directory = base_directory;
156
157         /* the directory must exist. Note that we deliberately don't
158            check that it is readable */
159         if (stat(pvfs->base_directory, &st) != 0 || !S_ISDIR(st.st_mode)) {
160                 DEBUG(0,("pvfs_connect: '%s' is not a directory, when connecting to [%s]\n", 
161                          pvfs->base_directory, sharename));
162                 return NT_STATUS_BAD_NETWORK_NAME;
163         }
164
165         ntvfs->ctx->fs_type = talloc_strdup(ntvfs->ctx, "NTFS");
166         NT_STATUS_HAVE_NO_MEMORY(ntvfs->ctx->fs_type);
167
168         ntvfs->ctx->dev_type = talloc_strdup(ntvfs->ctx, "A:");
169         NT_STATUS_HAVE_NO_MEMORY(ntvfs->ctx->dev_type);
170
171         ntvfs->private_data = pvfs;
172
173         pvfs->brl_context = brl_init(pvfs, 
174                                      pvfs->ntvfs->ctx->server_id,
175                                      pvfs->ntvfs->ctx->msg_ctx);
176         if (pvfs->brl_context == NULL) {
177                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
178         }
179
180         pvfs->odb_context = odb_init(pvfs, pvfs->ntvfs->ctx);
181         if (pvfs->odb_context == NULL) {
182                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
183         }
184
185         /* allow this to be NULL - we just disable change notify */
186         pvfs->notify_context = notify_init(pvfs, 
187                                            pvfs->ntvfs->ctx->server_id,  
188                                            pvfs->ntvfs->ctx->msg_ctx, 
189                                            event_context_find(pvfs),
190                                            pvfs->ntvfs->ctx->config.snum);
191
192         pvfs->sidmap = sidmap_open(pvfs);
193         if (pvfs->sidmap == NULL) {
194                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
195         }
196
197         /* allocate the fnum id -> ptr tree */
198         pvfs->files.idtree = idr_init(pvfs);
199         NT_STATUS_HAVE_NO_MEMORY(pvfs->files.idtree);
200
201         /* allocate the search handle -> ptr tree */
202         pvfs->search.idtree = idr_init(pvfs);
203         NT_STATUS_HAVE_NO_MEMORY(pvfs->search.idtree);
204
205         status = pvfs_mangle_init(pvfs);
206         NT_STATUS_NOT_OK_RETURN(status);
207
208         pvfs_setup_options(pvfs);
209
210         talloc_set_destructor(pvfs, pvfs_state_destructor);
211
212 #ifdef SIGXFSZ
213         /* who had the stupid idea to generate a signal on a large
214            file write instead of just failing it!? */
215         BlockSignals(True, SIGXFSZ);
216 #endif
217
218         return NT_STATUS_OK;
219 }
220
221 /*
222   disconnect from a share
223 */
224 static NTSTATUS pvfs_disconnect(struct ntvfs_module_context *ntvfs)
225 {
226         return NT_STATUS_OK;
227 }
228
229 /*
230   check if a directory exists
231 */
232 static NTSTATUS pvfs_chkpath(struct ntvfs_module_context *ntvfs,
233                              struct ntvfs_request *req,
234                              union smb_chkpath *cp)
235 {
236         struct pvfs_state *pvfs = ntvfs->private_data;
237         struct pvfs_filename *name;
238         NTSTATUS status;
239
240         /* resolve the cifs name to a posix name */
241         status = pvfs_resolve_name(pvfs, req, cp->chkpath.in.path, 0, &name);
242         NT_STATUS_NOT_OK_RETURN(status);
243
244         if (!name->exists) {
245                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
246         }
247
248         if (!S_ISDIR(name->st.st_mode)) {
249                 return NT_STATUS_NOT_A_DIRECTORY;
250         }
251
252         return NT_STATUS_OK;
253 }
254
255 /*
256   copy a set of files
257 */
258 static NTSTATUS pvfs_copy(struct ntvfs_module_context *ntvfs,
259                           struct ntvfs_request *req, struct smb_copy *cp)
260 {
261         DEBUG(0,("pvfs_copy not implemented\n"));
262         return NT_STATUS_NOT_SUPPORTED;
263 }
264
265 /*
266   return print queue info
267 */
268 static NTSTATUS pvfs_lpq(struct ntvfs_module_context *ntvfs,
269                          struct ntvfs_request *req, union smb_lpq *lpq)
270 {
271         return NT_STATUS_NOT_SUPPORTED;
272 }
273
274 /* SMBtrans - not used on file shares */
275 static NTSTATUS pvfs_trans(struct ntvfs_module_context *ntvfs,
276                            struct ntvfs_request *req, struct smb_trans2 *trans2)
277 {
278         return NT_STATUS_ACCESS_DENIED;
279 }
280
281 /*
282   initialialise the POSIX disk backend, registering ourselves with the ntvfs subsystem
283  */
284 NTSTATUS ntvfs_posix_init(void)
285 {
286         NTSTATUS ret;
287         struct ntvfs_ops ops;
288         NTVFS_CURRENT_CRITICAL_SIZES(vers);
289
290         ZERO_STRUCT(ops);
291
292         ops.type = NTVFS_DISK;
293         
294         /* fill in all the operations */
295         ops.connect = pvfs_connect;
296         ops.disconnect = pvfs_disconnect;
297         ops.unlink = pvfs_unlink;
298         ops.chkpath = pvfs_chkpath;
299         ops.qpathinfo = pvfs_qpathinfo;
300         ops.setpathinfo = pvfs_setpathinfo;
301         ops.open = pvfs_open;
302         ops.mkdir = pvfs_mkdir;
303         ops.rmdir = pvfs_rmdir;
304         ops.rename = pvfs_rename;
305         ops.copy = pvfs_copy;
306         ops.ioctl = pvfs_ioctl;
307         ops.read = pvfs_read;
308         ops.write = pvfs_write;
309         ops.seek = pvfs_seek;
310         ops.flush = pvfs_flush; 
311         ops.close = pvfs_close;
312         ops.exit = pvfs_exit;
313         ops.lock = pvfs_lock;
314         ops.setfileinfo = pvfs_setfileinfo;
315         ops.qfileinfo = pvfs_qfileinfo;
316         ops.fsinfo = pvfs_fsinfo;
317         ops.lpq = pvfs_lpq;
318         ops.search_first = pvfs_search_first;
319         ops.search_next = pvfs_search_next;
320         ops.search_close = pvfs_search_close;
321         ops.trans = pvfs_trans;
322         ops.logoff = pvfs_logoff;
323         ops.async_setup = pvfs_async_setup;
324         ops.cancel = pvfs_cancel;
325         ops.notify = pvfs_notify;
326
327         /* register ourselves with the NTVFS subsystem. We register
328            under the name 'default' as we wish to be the default
329            backend, and also register as 'posix' */
330         ops.name = "default";
331         ret = ntvfs_register(&ops, &vers);
332
333         if (!NT_STATUS_IS_OK(ret)) {
334                 DEBUG(0,("Failed to register POSIX backend as '%s'!\n", ops.name));
335         }
336
337         ops.name = "posix";
338         ret = ntvfs_register(&ops, &vers);
339
340         if (!NT_STATUS_IS_OK(ret)) {
341                 DEBUG(0,("Failed to register POSIX backend as '%s'!\n", ops.name));
342         }
343
344         if (NT_STATUS_IS_OK(ret)) {
345                 ret = ntvfs_common_init();
346         }
347
348         return ret;
349 }