Merge branch 'master' of ssh://jra@git.samba.org/data/git/samba
[amitay/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 /* NOTE: This is an experimental module, not yet finished. JRA. */
22
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"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_VFS
30
31 #include "modules/vfs_acl_common.c"
32
33 static unsigned int ref_count;
34 static struct db_context *acl_db;
35
36 /*******************************************************************
37  Open acl_db if not already open, increment ref count.
38 *******************************************************************/
39
40 static bool acl_tdb_init(struct db_context **pp_db)
41 {
42         char *dbname;
43
44         if (acl_db) {
45                 *pp_db = acl_db;
46                 ref_count++;
47                 return true;
48         }
49
50         dbname = state_path("file_ntacls.tdb");
51
52         if (dbname == NULL) {
53                 errno = ENOSYS;
54                 return false;
55         }
56
57         become_root();
58         *pp_db = db_open(NULL, dbname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
59         unbecome_root();
60
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;
69         }
70
71         ref_count++;
72         TALLOC_FREE(dbname);
73         return true;
74 }
75
76 /*******************************************************************
77  Lower ref count and close acl_db if zero.
78 *******************************************************************/
79
80 static void free_acl_tdb_data(void **pptr)
81 {
82         struct db_context **pp_db = (struct db_context **)pptr;
83
84         ref_count--;
85         if (ref_count == 0) {
86                 TALLOC_FREE(*pp_db);
87                 acl_db = NULL;
88         }
89 }
90
91 /*******************************************************************
92  Fetch_lock the tdb acl record for a file
93 *******************************************************************/
94
95 static struct db_record *acl_tdb_lock(TALLOC_CTX *mem_ctx,
96                                         struct db_context *db,
97                                         const struct file_id *id)
98 {
99         uint8 id_buf[16];
100
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)));
107 }
108
109 /*******************************************************************
110  Delete the tdb acl record for a file
111 *******************************************************************/
112
113 static NTSTATUS acl_tdb_delete(vfs_handle_struct *handle,
114                                 struct db_context *db,
115                                 SMB_STRUCT_STAT *psbuf)
116 {
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);
120
121         /*
122          * If rec == NULL there's not much we can do about it
123          */
124
125         if (rec == NULL) {
126                 DEBUG(10,("acl_tdb_delete: rec == NULL\n"));
127                 TALLOC_FREE(rec);
128                 return NT_STATUS_OK;
129         }
130
131         status = rec->delete_rec(rec);
132         TALLOC_FREE(rec);
133         return status;
134 }
135
136 /*******************************************************************
137  Pull a security descriptor into a DATA_BLOB from a tdb store.
138 *******************************************************************/
139
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)
145 {
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;
152
153         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
154                 return NT_STATUS_INTERNAL_DB_CORRUPTION);
155
156         ZERO_STRUCT(sbuf);
157
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);
165                 }
166         }
167
168         if (!NT_STATUS_IS_OK(status)) {
169                 return status;
170         }
171
172         id = vfs_file_id_from_sbuf(handle->conn, &sbuf);
173
174         /* For backwards compatibility only store the dev/inode. */
175         push_file_id_16((char *)id_buf, &id);
176
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;
182         }
183
184         pblob->data = data.dptr;
185         pblob->length = data.dsize;
186
187         DEBUG(10,("get_acl_blob: returned %u bytes from file %s\n",
188                 (unsigned int)data.dsize, name ));
189
190         if (pblob->length == 0 || pblob->data == NULL) {
191                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
192         }
193         return NT_STATUS_OK;
194 }
195
196 /*******************************************************************
197  Store a DATA_BLOB into a tdb record given an fsp pointer.
198 *******************************************************************/
199
200 static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
201                                 files_struct *fsp,
202                                 DATA_BLOB *pblob)
203 {
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;
210
211         DEBUG(10,("store_acl_blob_fsp: storing blob length %u on file %s\n",
212                   (unsigned int)pblob->length, fsp_str_dbg(fsp)));
213
214         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
215                 return NT_STATUS_INTERNAL_DB_CORRUPTION);
216
217         status = vfs_stat_fsp(fsp);
218         if (!NT_STATUS_IS_OK(status)) {
219                 return status;
220         }
221
222         id = vfs_file_id_from_sbuf(handle->conn, &fsp->fsp_name->st);
223
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;
232         }
233         data.dptr = pblob->data;
234         data.dsize = pblob->length;
235         return rec->store(rec, data, 0);
236 }
237
238 /*******************************************************************
239  Store a DATA_BLOB into a tdb record given a pathname.
240 *******************************************************************/
241
242 static NTSTATUS store_acl_blob_pathname(vfs_handle_struct *handle,
243                                         const char *fname,
244                                         DATA_BLOB *pblob)
245 {
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;
253
254         DEBUG(10,("store_acl_blob_pathname: storing blob "
255                         "length %u on file %s\n",
256                         (unsigned int)pblob->length, fname));
257
258         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
259                 return NT_STATUS_INTERNAL_DB_CORRUPTION);
260
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);
265         }
266
267         if (ret == -1) {
268                 return map_nt_error_from_unix(errno);
269         }
270
271         id = vfs_file_id_from_sbuf(handle->conn, &sbuf);
272
273         /* For backwards compatibility only store the dev/inode. */
274         push_file_id_16((char *)id_buf, &id);
275
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;
282         }
283         data.dptr = pblob->data;
284         data.dsize = pblob->length;
285         return rec->store(rec, data, 0);
286 }
287
288 /*********************************************************************
289  On unlink we need to delete the tdb record (if using tdb).
290 *********************************************************************/
291
292 static int unlink_acl_tdb(vfs_handle_struct *handle,
293                           const struct smb_filename *smb_fname)
294 {
295         struct smb_filename *smb_fname_tmp = NULL;
296         struct db_context *db;
297         NTSTATUS status;
298         int ret = -1;
299
300         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
301
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;
306         }
307
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);
312         }
313
314         if (ret == -1) {
315                 goto out;
316         }
317
318         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
319
320         if (ret == -1) {
321                 goto out;
322         }
323
324         acl_tdb_delete(handle, db, &smb_fname_tmp->st);
325  out:
326         return ret;
327 }
328
329 /*********************************************************************
330  On rmdir we need to delete the tdb record (if using tdb).
331 *********************************************************************/
332
333 static int rmdir_acl_tdb(vfs_handle_struct *handle, const char *path)
334 {
335
336         SMB_STRUCT_STAT sbuf;
337         struct db_context *db;
338         int ret = -1;
339
340         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
341
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);
346         }
347
348         if (ret == -1) {
349                 return -1;
350         }
351
352         ret = SMB_VFS_NEXT_RMDIR(handle, path);
353         if (ret == -1) {
354                 return -1;
355         }
356
357         acl_tdb_delete(handle, db, &sbuf);
358         return 0;
359 }
360
361 /*******************************************************************
362  Handle opening the storage tdb if so configured.
363 *******************************************************************/
364
365 static int connect_acl_tdb(struct vfs_handle_struct *handle,
366                                 const char *service,
367                                 const char *user)
368 {
369         struct db_context *db;
370         int res;
371
372         res = SMB_VFS_NEXT_CONNECT(handle, service, user);
373         if (res < 0) {
374                 return res;
375         }
376
377         if (!acl_tdb_init(&db)) {
378                 SMB_VFS_NEXT_DISCONNECT(handle);
379                 return -1;
380         }
381
382         SMB_VFS_HANDLE_SET_DATA(handle, db, free_acl_tdb_data,
383                                 struct db_context, return -1);
384
385         return 0;
386 }
387
388 /*********************************************************************
389  Remove a Windows ACL - we're setting the underlying POSIX ACL.
390 *********************************************************************/
391
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)
396 {
397         SMB_STRUCT_STAT sbuf;
398         struct db_context *db;
399         int ret = -1;
400
401         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
402
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);
407         }
408
409         if (ret == -1) {
410                 return -1;
411         }
412
413         ret = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle,
414                                                 path,
415                                                 type,
416                                                 theacl);
417         if (ret == -1) {
418                 return -1;
419         }
420
421         acl_tdb_delete(handle, db, &sbuf);
422         return 0;
423 }
424
425 /*********************************************************************
426  Remove a Windows ACL - we're setting the underlying POSIX ACL.
427 *********************************************************************/
428
429 static int sys_acl_set_fd_tdb(vfs_handle_struct *handle,
430                             files_struct *fsp,
431                             SMB_ACL_T theacl)
432 {
433         struct db_context *db;
434         NTSTATUS status;
435         int ret;
436
437         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
438
439         status = vfs_stat_fsp(fsp);
440         if (!NT_STATUS_IS_OK(status)) {
441                 return -1;
442         }
443
444         ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
445                                                 fsp,
446                                                 theacl);
447         if (ret == -1) {
448                 return -1;
449         }
450
451         acl_tdb_delete(handle, db, &fsp->fsp_name->st);
452         return 0;
453 }
454
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
466 };
467
468 NTSTATUS vfs_acl_tdb_init(void)
469 {
470         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "acl_tdb",
471                                 &vfs_acl_tdb_fns);
472 }