s3: Rename new parameter "ldap ref follow" to "ldap follow referral".
[Samba/gebeck_regimport.git] / source3 / modules / vfs_acl_tdb.c
blob424ecbf65b80c4af7489b0d18c58593c6e8b2731
1 /*
2 * Store Windows ACLs in a tdb.
4 * Copyright (C) Volker Lendecke, 2008
5 * Copyright (C) Jeremy Allison, 2008
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.
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, see <http://www.gnu.org/licenses/>.
21 /* NOTE: This is an experimental module, not yet finished. JRA. */
23 #include "includes.h"
24 #include "librpc/gen_ndr/xattr.h"
25 #include "librpc/gen_ndr/ndr_xattr.h"
26 #include "../lib/crypto/crypto.h"
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_VFS
31 #include "modules/vfs_acl_common.c"
33 static unsigned int ref_count;
34 static struct db_context *acl_db;
36 /*******************************************************************
37 Open acl_db if not already open, increment ref count.
38 *******************************************************************/
40 static bool acl_tdb_init(struct db_context **pp_db)
42 char *dbname;
44 if (acl_db) {
45 *pp_db = acl_db;
46 ref_count++;
47 return true;
50 dbname = state_path("file_ntacls.tdb");
52 if (dbname == NULL) {
53 errno = ENOSYS;
54 return false;
57 become_root();
58 *pp_db = db_open(NULL, dbname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
59 unbecome_root();
61 if (*pp_db == NULL) {
62 #if defined(ENOTSUP)
63 errno = ENOTSUP;
64 #else
65 errno = ENOSYS;
66 #endif
67 TALLOC_FREE(dbname);
68 return false;
71 ref_count++;
72 TALLOC_FREE(dbname);
73 return true;
76 /*******************************************************************
77 Lower ref count and close acl_db if zero.
78 *******************************************************************/
80 static void free_acl_tdb_data(void **pptr)
82 struct db_context **pp_db = (struct db_context **)pptr;
84 ref_count--;
85 if (ref_count == 0) {
86 TALLOC_FREE(*pp_db);
87 acl_db = NULL;
91 /*******************************************************************
92 Fetch_lock the tdb acl record for a file
93 *******************************************************************/
95 static struct db_record *acl_tdb_lock(TALLOC_CTX *mem_ctx,
96 struct db_context *db,
97 const struct file_id *id)
99 uint8 id_buf[16];
101 /* For backwards compatibility only store the dev/inode. */
102 push_file_id_16((char *)id_buf, id);
103 return db->fetch_locked(db,
104 mem_ctx,
105 make_tdb_data(id_buf,
106 sizeof(id_buf)));
109 /*******************************************************************
110 Delete the tdb acl record for a file
111 *******************************************************************/
113 static NTSTATUS acl_tdb_delete(vfs_handle_struct *handle,
114 struct db_context *db,
115 SMB_STRUCT_STAT *psbuf)
117 NTSTATUS status;
118 struct file_id id = vfs_file_id_from_sbuf(handle->conn, psbuf);
119 struct db_record *rec = acl_tdb_lock(talloc_tos(), db, &id);
122 * If rec == NULL there's not much we can do about it
125 if (rec == NULL) {
126 DEBUG(10,("acl_tdb_delete: rec == NULL\n"));
127 TALLOC_FREE(rec);
128 return NT_STATUS_OK;
131 status = rec->delete_rec(rec);
132 TALLOC_FREE(rec);
133 return status;
136 /*******************************************************************
137 Pull a security descriptor into a DATA_BLOB from a tdb store.
138 *******************************************************************/
140 static NTSTATUS get_acl_blob(TALLOC_CTX *ctx,
141 vfs_handle_struct *handle,
142 files_struct *fsp,
143 const char *name,
144 DATA_BLOB *pblob)
146 uint8 id_buf[16];
147 TDB_DATA data;
148 struct file_id id;
149 struct db_context *db;
150 NTSTATUS status;
151 SMB_STRUCT_STAT sbuf;
153 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
154 return NT_STATUS_INTERNAL_DB_CORRUPTION);
156 ZERO_STRUCT(sbuf);
158 if (fsp) {
159 status = vfs_stat_fsp(fsp);
160 sbuf = fsp->fsp_name->st;
161 } else {
162 int ret = vfs_stat_smb_fname(handle->conn, name, &sbuf);
163 if (ret == -1) {
164 status = map_nt_error_from_unix(errno);
168 if (!NT_STATUS_IS_OK(status)) {
169 return status;
172 id = vfs_file_id_from_sbuf(handle->conn, &sbuf);
174 /* For backwards compatibility only store the dev/inode. */
175 push_file_id_16((char *)id_buf, &id);
177 if (db->fetch(db,
178 ctx,
179 make_tdb_data(id_buf, sizeof(id_buf)),
180 &data) == -1) {
181 return NT_STATUS_INTERNAL_DB_CORRUPTION;
184 pblob->data = data.dptr;
185 pblob->length = data.dsize;
187 DEBUG(10,("get_acl_blob: returned %u bytes from file %s\n",
188 (unsigned int)data.dsize, name ));
190 if (pblob->length == 0 || pblob->data == NULL) {
191 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
193 return NT_STATUS_OK;
196 /*******************************************************************
197 Store a DATA_BLOB into a tdb record given an fsp pointer.
198 *******************************************************************/
200 static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
201 files_struct *fsp,
202 DATA_BLOB *pblob)
204 uint8 id_buf[16];
205 struct file_id id;
206 TDB_DATA data;
207 struct db_context *db;
208 struct db_record *rec;
209 NTSTATUS status;
211 DEBUG(10,("store_acl_blob_fsp: storing blob length %u on file %s\n",
212 (unsigned int)pblob->length, fsp_str_dbg(fsp)));
214 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
215 return NT_STATUS_INTERNAL_DB_CORRUPTION);
217 status = vfs_stat_fsp(fsp);
218 if (!NT_STATUS_IS_OK(status)) {
219 return status;
222 id = vfs_file_id_from_sbuf(handle->conn, &fsp->fsp_name->st);
224 /* For backwards compatibility only store the dev/inode. */
225 push_file_id_16((char *)id_buf, &id);
226 rec = db->fetch_locked(db, talloc_tos(),
227 make_tdb_data(id_buf,
228 sizeof(id_buf)));
229 if (rec == NULL) {
230 DEBUG(0, ("store_acl_blob_fsp_tdb: fetch_lock failed\n"));
231 return NT_STATUS_INTERNAL_DB_CORRUPTION;
233 data.dptr = pblob->data;
234 data.dsize = pblob->length;
235 return rec->store(rec, data, 0);
238 /*******************************************************************
239 Store a DATA_BLOB into a tdb record given a pathname.
240 *******************************************************************/
242 static NTSTATUS store_acl_blob_pathname(vfs_handle_struct *handle,
243 const char *fname,
244 DATA_BLOB *pblob)
246 uint8 id_buf[16];
247 struct file_id id;
248 TDB_DATA data;
249 SMB_STRUCT_STAT sbuf;
250 struct db_context *db;
251 struct db_record *rec;
252 int ret = -1;
254 DEBUG(10,("store_acl_blob_pathname: storing blob "
255 "length %u on file %s\n",
256 (unsigned int)pblob->length, fname));
258 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
259 return NT_STATUS_INTERNAL_DB_CORRUPTION);
261 if (lp_posix_pathnames()) {
262 ret = vfs_lstat_smb_fname(handle->conn, fname, &sbuf);
263 } else {
264 ret = vfs_stat_smb_fname(handle->conn, fname, &sbuf);
267 if (ret == -1) {
268 return map_nt_error_from_unix(errno);
271 id = vfs_file_id_from_sbuf(handle->conn, &sbuf);
273 /* For backwards compatibility only store the dev/inode. */
274 push_file_id_16((char *)id_buf, &id);
276 rec = db->fetch_locked(db, talloc_tos(),
277 make_tdb_data(id_buf,
278 sizeof(id_buf)));
279 if (rec == NULL) {
280 DEBUG(0, ("store_acl_blob_pathname_tdb: fetch_lock failed\n"));
281 return NT_STATUS_INTERNAL_DB_CORRUPTION;
283 data.dptr = pblob->data;
284 data.dsize = pblob->length;
285 return rec->store(rec, data, 0);
288 /*********************************************************************
289 On unlink we need to delete the tdb record (if using tdb).
290 *********************************************************************/
292 static int unlink_acl_tdb(vfs_handle_struct *handle,
293 const struct smb_filename *smb_fname)
295 struct smb_filename *smb_fname_tmp = NULL;
296 struct db_context *db;
297 NTSTATUS status;
298 int ret = -1;
300 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
302 status = copy_smb_filename(talloc_tos(), smb_fname, &smb_fname_tmp);
303 if (!NT_STATUS_IS_OK(status)) {
304 errno = map_errno_from_nt_status(status);
305 goto out;
308 if (lp_posix_pathnames()) {
309 ret = SMB_VFS_LSTAT(handle->conn, smb_fname_tmp);
310 } else {
311 ret = SMB_VFS_STAT(handle->conn, smb_fname_tmp);
314 if (ret == -1) {
315 goto out;
318 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
320 if (ret == -1) {
321 goto out;
324 acl_tdb_delete(handle, db, &smb_fname_tmp->st);
325 out:
326 return ret;
329 /*********************************************************************
330 On rmdir we need to delete the tdb record (if using tdb).
331 *********************************************************************/
333 static int rmdir_acl_tdb(vfs_handle_struct *handle, const char *path)
336 SMB_STRUCT_STAT sbuf;
337 struct db_context *db;
338 int ret = -1;
340 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
342 if (lp_posix_pathnames()) {
343 ret = vfs_lstat_smb_fname(handle->conn, path, &sbuf);
344 } else {
345 ret = vfs_stat_smb_fname(handle->conn, path, &sbuf);
348 if (ret == -1) {
349 return -1;
352 ret = SMB_VFS_NEXT_RMDIR(handle, path);
353 if (ret == -1) {
354 return -1;
357 acl_tdb_delete(handle, db, &sbuf);
358 return 0;
361 /*******************************************************************
362 Handle opening the storage tdb if so configured.
363 *******************************************************************/
365 static int connect_acl_tdb(struct vfs_handle_struct *handle,
366 const char *service,
367 const char *user)
369 struct db_context *db;
370 int res;
372 res = SMB_VFS_NEXT_CONNECT(handle, service, user);
373 if (res < 0) {
374 return res;
377 if (!acl_tdb_init(&db)) {
378 SMB_VFS_NEXT_DISCONNECT(handle);
379 return -1;
382 SMB_VFS_HANDLE_SET_DATA(handle, db, free_acl_tdb_data,
383 struct db_context, return -1);
385 return 0;
388 /*********************************************************************
389 Remove a Windows ACL - we're setting the underlying POSIX ACL.
390 *********************************************************************/
392 static int sys_acl_set_file_tdb(vfs_handle_struct *handle,
393 const char *path,
394 SMB_ACL_TYPE_T type,
395 SMB_ACL_T theacl)
397 SMB_STRUCT_STAT sbuf;
398 struct db_context *db;
399 int ret = -1;
401 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
403 if (lp_posix_pathnames()) {
404 ret = vfs_lstat_smb_fname(handle->conn, path, &sbuf);
405 } else {
406 ret = vfs_stat_smb_fname(handle->conn, path, &sbuf);
409 if (ret == -1) {
410 return -1;
413 ret = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle,
414 path,
415 type,
416 theacl);
417 if (ret == -1) {
418 return -1;
421 acl_tdb_delete(handle, db, &sbuf);
422 return 0;
425 /*********************************************************************
426 Remove a Windows ACL - we're setting the underlying POSIX ACL.
427 *********************************************************************/
429 static int sys_acl_set_fd_tdb(vfs_handle_struct *handle,
430 files_struct *fsp,
431 SMB_ACL_T theacl)
433 struct db_context *db;
434 NTSTATUS status;
435 int ret;
437 SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
439 status = vfs_stat_fsp(fsp);
440 if (!NT_STATUS_IS_OK(status)) {
441 return -1;
444 ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
445 fsp,
446 theacl);
447 if (ret == -1) {
448 return -1;
451 acl_tdb_delete(handle, db, &fsp->fsp_name->st);
452 return 0;
455 static struct vfs_fn_pointers vfs_acl_tdb_fns = {
456 .connect_fn = connect_acl_tdb,
457 .mkdir = mkdir_acl_common,
458 .open = open_acl_common,
459 .unlink = unlink_acl_tdb,
460 .rmdir = rmdir_acl_tdb,
461 .fget_nt_acl = fget_nt_acl_common,
462 .get_nt_acl = get_nt_acl_common,
463 .fset_nt_acl = fset_nt_acl_common,
464 .sys_acl_set_file = sys_acl_set_file_tdb,
465 .sys_acl_set_fd = sys_acl_set_fd_tdb
468 NTSTATUS vfs_acl_tdb_init(void)
470 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "acl_tdb",
471 &vfs_acl_tdb_fns);