s3: VFS: vfs_common and callers. Change get_nt_acl_common() -> get_nt_acl_common_at().
[samba.git] / source3 / modules / vfs_acl_tdb.c
1 /*
2  * Store Windows ACLs in a tdb.
3  *
4  * Copyright (C) Volker Lendecke, 2008
5  * Copyright (C) Jeremy Allison, 2008
6  *
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 3 of the License, or
10  * (at your option) any later version.
11  *
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.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "system/filesys.h"
24 #include "librpc/gen_ndr/xattr.h"
25 #include "dbwrap/dbwrap.h"
26 #include "dbwrap/dbwrap_open.h"
27 #include "auth.h"
28 #include "util_tdb.h"
29 #include "vfs_acl_common.h"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_VFS
33
34 #define ACL_MODULE_NAME "acl_tdb"
35
36 static unsigned int ref_count;
37 static struct db_context *acl_db;
38
39 /*******************************************************************
40  Open acl_db if not already open, increment ref count.
41 *******************************************************************/
42
43 static bool acl_tdb_init(void)
44 {
45         char *dbname;
46
47         if (acl_db) {
48                 ref_count++;
49                 return true;
50         }
51
52         dbname = state_path(talloc_tos(), "file_ntacls.tdb");
53
54         if (dbname == NULL) {
55                 errno = ENOSYS;
56                 return false;
57         }
58
59         become_root();
60         acl_db = db_open(NULL, dbname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600,
61                          DBWRAP_LOCK_ORDER_1, DBWRAP_FLAG_NONE);
62         unbecome_root();
63
64         if (acl_db == NULL) {
65 #if defined(ENOTSUP)
66                 errno = ENOTSUP;
67 #else
68                 errno = ENOSYS;
69 #endif
70                 TALLOC_FREE(dbname);
71                 return false;
72         }
73
74         ref_count++;
75         TALLOC_FREE(dbname);
76         return true;
77 }
78
79 /*******************************************************************
80  Lower ref count and close acl_db if zero.
81 *******************************************************************/
82
83 static void disconnect_acl_tdb(struct vfs_handle_struct *handle)
84 {
85         SMB_VFS_NEXT_DISCONNECT(handle);
86         ref_count--;
87         if (ref_count == 0) {
88                 TALLOC_FREE(acl_db);
89         }
90 }
91
92 /*******************************************************************
93  Delete the tdb acl record for a file
94 *******************************************************************/
95
96 static NTSTATUS acl_tdb_delete(vfs_handle_struct *handle,
97                                 struct db_context *db,
98                                 SMB_STRUCT_STAT *psbuf)
99 {
100         NTSTATUS status;
101         struct file_id id = vfs_file_id_from_sbuf(handle->conn, psbuf);
102         uint8_t id_buf[16];
103
104         /* For backwards compatibility only store the dev/inode. */
105         push_file_id_16((char *)id_buf, &id);
106
107         status = dbwrap_delete(db, make_tdb_data(id_buf, sizeof(id_buf)));
108         return status;
109 }
110
111 /*******************************************************************
112  Pull a security descriptor from an fsp into a DATA_BLOB from a tdb store.
113 *******************************************************************/
114
115 static NTSTATUS fget_acl_blob(TALLOC_CTX *ctx,
116                         vfs_handle_struct *handle,
117                         files_struct *fsp,
118                         DATA_BLOB *pblob)
119 {
120         uint8_t id_buf[16];
121         TDB_DATA data;
122         struct file_id id;
123         struct db_context *db = acl_db;
124         NTSTATUS status = NT_STATUS_OK;
125
126         status = vfs_stat_fsp(fsp);
127         if (!NT_STATUS_IS_OK(status)) {
128                 return status;
129         }
130
131         id = vfs_file_id_from_sbuf(handle->conn, &fsp->fsp_name->st);
132
133         /* For backwards compatibility only store the dev/inode. */
134         push_file_id_16((char *)id_buf, &id);
135
136         status = dbwrap_fetch(db,
137                               ctx,
138                               make_tdb_data(id_buf, sizeof(id_buf)),
139                               &data);
140         if (!NT_STATUS_IS_OK(status)) {
141                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
142         }
143
144         pblob->data = data.dptr;
145         pblob->length = data.dsize;
146
147         DBG_DEBUG("returned %u bytes from file %s\n",
148                 (unsigned int)data.dsize,
149                 fsp_str_dbg(fsp));
150
151         if (pblob->length == 0 || pblob->data == NULL) {
152                 return NT_STATUS_NOT_FOUND;
153         }
154         return NT_STATUS_OK;
155 }
156
157 /*******************************************************************
158  Pull a security descriptor into a DATA_BLOB from a tdb store.
159 *******************************************************************/
160
161 static NTSTATUS get_acl_blob_at(TALLOC_CTX *ctx,
162                         vfs_handle_struct *handle,
163                         struct files_struct *dirfsp,
164                         const struct smb_filename *smb_fname,
165                         DATA_BLOB *pblob)
166 {
167         uint8_t id_buf[16];
168         TDB_DATA data;
169         struct file_id id;
170         struct db_context *db = acl_db;
171         NTSTATUS status = NT_STATUS_OK;
172         SMB_STRUCT_STAT sbuf;
173         int ret;
174
175         ZERO_STRUCT(sbuf);
176
177         ret = vfs_stat_smb_basename(handle->conn,
178                                 smb_fname,
179                                 &sbuf);
180         if (ret == -1) {
181                 status = map_nt_error_from_unix(errno);
182         }
183
184         if (!NT_STATUS_IS_OK(status)) {
185                 return status;
186         }
187
188         id = vfs_file_id_from_sbuf(handle->conn, &sbuf);
189
190         /* For backwards compatibility only store the dev/inode. */
191         push_file_id_16((char *)id_buf, &id);
192
193         status = dbwrap_fetch(db,
194                               ctx,
195                               make_tdb_data(id_buf, sizeof(id_buf)),
196                               &data);
197         if (!NT_STATUS_IS_OK(status)) {
198                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
199         }
200
201         pblob->data = data.dptr;
202         pblob->length = data.dsize;
203
204         DBG_DEBUG("returned %u bytes from file %s\n",
205                 (unsigned int)data.dsize, smb_fname->base_name );
206
207         if (pblob->length == 0 || pblob->data == NULL) {
208                 return NT_STATUS_NOT_FOUND;
209         }
210         return NT_STATUS_OK;
211 }
212
213 /*******************************************************************
214  Store a DATA_BLOB into a tdb record given an fsp pointer.
215 *******************************************************************/
216
217 static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
218                                 files_struct *fsp,
219                                 DATA_BLOB *pblob)
220 {
221         uint8_t id_buf[16];
222         struct file_id id;
223         TDB_DATA data = { .dptr = pblob->data, .dsize = pblob->length };
224         struct db_context *db = acl_db;
225         NTSTATUS status;
226
227         DEBUG(10,("store_acl_blob_fsp: storing blob length %u on file %s\n",
228                   (unsigned int)pblob->length, fsp_str_dbg(fsp)));
229
230         status = vfs_stat_fsp(fsp);
231         if (!NT_STATUS_IS_OK(status)) {
232                 return status;
233         }
234
235         id = vfs_file_id_from_sbuf(handle->conn, &fsp->fsp_name->st);
236
237         /* For backwards compatibility only store the dev/inode. */
238         push_file_id_16((char *)id_buf, &id);
239
240         status = dbwrap_store(
241                 db, make_tdb_data(id_buf, sizeof(id_buf)), data, 0);
242         return status;
243 }
244
245 /*********************************************************************
246  On unlinkat we need to delete the tdb record (if using tdb).
247 *********************************************************************/
248
249 static int unlinkat_acl_tdb(vfs_handle_struct *handle,
250                         struct files_struct *dirfsp,
251                         const struct smb_filename *smb_fname,
252                         int flags)
253 {
254         struct smb_filename *smb_fname_tmp = NULL;
255         struct db_context *db = acl_db;
256         int ret = -1;
257
258         smb_fname_tmp = cp_smb_filename_nostream(talloc_tos(), smb_fname);
259         if (smb_fname_tmp == NULL) {
260                 errno = ENOMEM;
261                 goto out;
262         }
263
264         if (smb_fname_tmp->flags & SMB_FILENAME_POSIX_PATH) {
265                 ret = SMB_VFS_LSTAT(handle->conn, smb_fname_tmp);
266         } else {
267                 ret = SMB_VFS_STAT(handle->conn, smb_fname_tmp);
268         }
269
270         if (ret == -1) {
271                 goto out;
272         }
273
274         if (flags & AT_REMOVEDIR) {
275                 ret = rmdir_acl_common(handle,
276                                 dirfsp,
277                                 smb_fname_tmp);
278         } else {
279                 ret = unlink_acl_common(handle,
280                                 dirfsp,
281                                 smb_fname_tmp,
282                                 flags);
283         }
284
285         if (ret == -1) {
286                 goto out;
287         }
288
289         acl_tdb_delete(handle, db, &smb_fname_tmp->st);
290  out:
291         return ret;
292 }
293
294 /*******************************************************************
295  Handle opening the storage tdb if so configured.
296 *******************************************************************/
297
298 static int connect_acl_tdb(struct vfs_handle_struct *handle,
299                                 const char *service,
300                                 const char *user)
301 {
302         int ret = SMB_VFS_NEXT_CONNECT(handle, service, user);
303         bool ok;
304         struct acl_common_config *config = NULL;
305
306         if (ret < 0) {
307                 return ret;
308         }
309
310         if (!acl_tdb_init()) {
311                 SMB_VFS_NEXT_DISCONNECT(handle);
312                 return -1;
313         }
314
315         ok = init_acl_common_config(handle, ACL_MODULE_NAME);
316         if (!ok) {
317                 DBG_ERR("init_acl_common_config failed\n");
318                 return -1;
319         }
320
321         /* Ensure we have the parameters correct if we're
322          * using this module. */
323         DEBUG(2,("connect_acl_tdb: setting 'inherit acls = true' "
324                 "'dos filemode = true' and "
325                 "'force unknown acl user = true' for service %s\n",
326                 service ));
327
328         lp_do_parameter(SNUM(handle->conn), "inherit acls", "true");
329         lp_do_parameter(SNUM(handle->conn), "dos filemode", "true");
330         lp_do_parameter(SNUM(handle->conn), "force unknown acl user", "true");
331
332         SMB_VFS_HANDLE_GET_DATA(handle, config,
333                                 struct acl_common_config,
334                                 return -1);
335
336         if (config->ignore_system_acls) {
337                 mode_t create_mask = lp_create_mask(SNUM(handle->conn));
338                 char *create_mask_str = NULL;
339
340                 if ((create_mask & 0666) != 0666) {
341                         create_mask |= 0666;
342                         create_mask_str = talloc_asprintf(handle, "0%o",
343                                                           create_mask);
344                         if (create_mask_str == NULL) {
345                                 DBG_ERR("talloc_asprintf failed\n");
346                                 return -1;
347                         }
348
349                         DBG_NOTICE("setting 'create mask = %s'\n", create_mask_str);
350
351                         lp_do_parameter (SNUM(handle->conn),
352                                         "create mask", create_mask_str);
353
354                         TALLOC_FREE(create_mask_str);
355                 }
356
357                 DBG_NOTICE("setting 'directory mask = 0777', "
358                            "'store dos attributes = yes' and all "
359                            "'map ...' options to 'no'\n");
360
361                 lp_do_parameter(SNUM(handle->conn), "directory mask", "0777");
362                 lp_do_parameter(SNUM(handle->conn), "map archive", "no");
363                 lp_do_parameter(SNUM(handle->conn), "map hidden", "no");
364                 lp_do_parameter(SNUM(handle->conn), "map readonly", "no");
365                 lp_do_parameter(SNUM(handle->conn), "map system", "no");
366                 lp_do_parameter(SNUM(handle->conn), "store dos attributes",
367                                 "yes");
368         }
369
370         return 0;
371 }
372
373 /*********************************************************************
374  Remove a Windows ACL - we're setting the underlying POSIX ACL.
375 *********************************************************************/
376
377 static int sys_acl_set_file_tdb(vfs_handle_struct *handle,
378                         const struct smb_filename *smb_fname_in,
379                         SMB_ACL_TYPE_T type,
380                         SMB_ACL_T theacl)
381 {
382         struct db_context *db = acl_db;
383         int ret = -1;
384         int saved_errno = 0;
385         struct smb_filename *smb_fname = NULL;
386
387         smb_fname = cp_smb_filename_nostream(talloc_tos(), smb_fname_in);
388         if (smb_fname == NULL) {
389                 return -1;
390         };
391
392         ret = SMB_VFS_STAT(handle->conn, smb_fname);
393         if (ret == -1) {
394                 saved_errno = errno;
395                 goto fail;
396         }
397
398         ret = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle,
399                                                 smb_fname,
400                                                 type,
401                                                 theacl);
402         if (ret == -1) {
403                 saved_errno = errno;
404                 goto fail;
405         }
406
407         acl_tdb_delete(handle, db, &smb_fname->st);
408
409 fail:
410         TALLOC_FREE(smb_fname);
411
412         if (saved_errno != 0) {
413                 errno = saved_errno;
414         }
415         return ret;
416 }
417
418 /*********************************************************************
419  Remove a Windows ACL - we're setting the underlying POSIX ACL.
420 *********************************************************************/
421
422 static int sys_acl_set_fd_tdb(vfs_handle_struct *handle,
423                             files_struct *fsp,
424                             SMB_ACL_T theacl)
425 {
426         struct db_context *db = acl_db;
427         NTSTATUS status;
428         int ret;
429
430         status = vfs_stat_fsp(fsp);
431         if (!NT_STATUS_IS_OK(status)) {
432                 return -1;
433         }
434
435         ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
436                                                 fsp,
437                                                 theacl);
438         if (ret == -1) {
439                 return -1;
440         }
441
442         acl_tdb_delete(handle, db, &fsp->fsp_name->st);
443         return 0;
444 }
445
446 static NTSTATUS acl_tdb_fget_nt_acl(vfs_handle_struct *handle,
447                                     files_struct *fsp,
448                                     uint32_t security_info,
449                                     TALLOC_CTX *mem_ctx,
450                                     struct security_descriptor **ppdesc)
451 {
452         NTSTATUS status;
453         status = fget_nt_acl_common(fget_acl_blob, handle, fsp,
454                                    security_info, mem_ctx, ppdesc);
455         return status;
456 }
457
458 static NTSTATUS acl_tdb_get_nt_acl(vfs_handle_struct *handle,
459                                    const struct smb_filename *smb_fname,
460                                    uint32_t security_info,
461                                    TALLOC_CTX *mem_ctx,
462                                    struct security_descriptor **ppdesc)
463 {
464         NTSTATUS status;
465         status = get_nt_acl_common_at(get_acl_blob_at,
466                                 handle,
467                                 handle->conn->cwd_fsp,
468                                 smb_fname,
469                                 security_info,
470                                 mem_ctx,
471                                 ppdesc);
472         return status;
473 }
474
475 static NTSTATUS acl_tdb_fset_nt_acl(vfs_handle_struct *handle,
476                                     files_struct *fsp,
477                                     uint32_t security_info_sent,
478                                     const struct security_descriptor *psd)
479 {
480         NTSTATUS status;
481         status = fset_nt_acl_common(fget_acl_blob, store_acl_blob_fsp,
482                                     ACL_MODULE_NAME,
483                                     handle, fsp, security_info_sent, psd);
484         return status;
485 }
486
487 static struct vfs_fn_pointers vfs_acl_tdb_fns = {
488         .connect_fn = connect_acl_tdb,
489         .disconnect_fn = disconnect_acl_tdb,
490         .unlinkat_fn = unlinkat_acl_tdb,
491         .chmod_fn = chmod_acl_module_common,
492         .fchmod_fn = fchmod_acl_module_common,
493         .fget_nt_acl_fn = acl_tdb_fget_nt_acl,
494         .get_nt_acl_fn = acl_tdb_get_nt_acl,
495         .fset_nt_acl_fn = acl_tdb_fset_nt_acl,
496         .sys_acl_set_file_fn = sys_acl_set_file_tdb,
497         .sys_acl_set_fd_fn = sys_acl_set_fd_tdb
498 };
499
500 static_decl_vfs;
501 NTSTATUS vfs_acl_tdb_init(TALLOC_CTX *ctx)
502 {
503         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "acl_tdb",
504                                 &vfs_acl_tdb_fns);
505 }