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