vfs: Use posix_sys_acl_blob_get_file in vfs_posixacl for posix ACLs
[kai/samba.git] / source3 / modules / vfs_xattr_tdb.c
1 /*
2  * Store posix-level xattrs in a tdb
3  *
4  * Copyright (C) Volker Lendecke, 2007
5  * Copyright (C) Andrew Bartlett, 2012
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 "system/filesys.h"
23 #include "smbd/smbd.h"
24 #include "dbwrap/dbwrap.h"
25 #include "dbwrap/dbwrap_open.h"
26 #include "source3/lib/xattr_tdb.h"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_VFS
30
31 static bool xattr_tdb_init(int snum, TALLOC_CTX *mem_ctx, struct db_context **p_db);
32
33 static int xattr_tdb_get_file_id(struct vfs_handle_struct *handle,
34                                 const char *path, struct file_id *id)
35 {
36         int ret;
37         TALLOC_CTX *frame = talloc_stackframe();
38         struct smb_filename *smb_fname = NULL;
39         NTSTATUS status = create_synthetic_smb_fname_split(frame, path, NULL,
40                                                   &smb_fname);
41         if (!NT_STATUS_IS_OK(status)) {
42                 errno = map_errno_from_nt_status(status);
43                 TALLOC_FREE(frame); 
44                 return -1;
45         }
46
47         ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
48
49         if (ret == -1) {
50                 TALLOC_FREE(frame); 
51                 return -1;
52         }
53
54         *id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &smb_fname->st);
55         TALLOC_FREE(frame);
56         return 0;
57 }
58
59 static ssize_t xattr_tdb_getxattr(struct vfs_handle_struct *handle,
60                                   const char *path, const char *name,
61                                   void *value, size_t size)
62 {
63         struct file_id id;
64         struct db_context *db;
65         ssize_t xattr_size;
66         int ret;
67         DATA_BLOB blob;
68         TALLOC_CTX *frame = talloc_stackframe();
69
70         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
71                                 if (!xattr_tdb_init(-1, frame, &db))
72                                 {
73                                         TALLOC_FREE(frame); return -1;
74                                 });
75
76         ret = xattr_tdb_get_file_id(handle, path, &id);
77         if (ret == -1) {
78                 TALLOC_FREE(frame);
79                 return -1;
80         }
81
82         xattr_size = xattr_tdb_getattr(db, frame, &id, name, &blob);
83         if (xattr_size < 0) {
84                 errno = ENOATTR;
85                 TALLOC_FREE(frame);
86                 return -1;
87         }
88         if (blob.length > size) {
89                 TALLOC_FREE(frame);
90                 errno = ERANGE;
91                 return -1;
92         }
93         memcpy(value, blob.data, xattr_size);
94         TALLOC_FREE(frame);
95         return xattr_size;
96 }
97
98 static ssize_t xattr_tdb_fgetxattr(struct vfs_handle_struct *handle,
99                                    struct files_struct *fsp,
100                                    const char *name, void *value, size_t size)
101 {
102         SMB_STRUCT_STAT sbuf;
103         struct file_id id;
104         struct db_context *db;
105         ssize_t xattr_size;
106         DATA_BLOB blob;
107         TALLOC_CTX *frame = talloc_stackframe();
108
109         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
110                                 if (!xattr_tdb_init(-1, frame, &db))
111                                 {
112                                         TALLOC_FREE(frame); return -1;
113                                 });
114
115         if (SMB_VFS_NEXT_FSTAT(handle, fsp, &sbuf) == -1) {
116                 TALLOC_FREE(frame);
117                 return -1;
118         }
119
120         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &sbuf);
121
122         xattr_size = xattr_tdb_getattr(db, frame, &id, name, &blob);
123         if (xattr_size < 0) {
124                 errno = ENOATTR;
125                 TALLOC_FREE(frame);
126                 return -1;
127         }
128         if (blob.length > size) {
129                 TALLOC_FREE(frame);
130                 errno = ERANGE;
131                 return -1;
132         }
133         memcpy(value, blob.data, xattr_size);
134         TALLOC_FREE(frame);
135         return xattr_size;
136 }
137
138 static int xattr_tdb_setxattr(struct vfs_handle_struct *handle,
139                               const char *path, const char *name,
140                               const void *value, size_t size, int flags)
141 {
142         struct file_id id;
143         struct db_context *db;
144         int ret;
145         TALLOC_CTX *frame = talloc_stackframe();
146
147         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
148                                 if (!xattr_tdb_init(-1, frame, &db))
149                                 {
150                                         TALLOC_FREE(frame); return -1;
151                                 });
152
153         ret = xattr_tdb_get_file_id(handle, path, &id);
154         if (ret == -1) {
155                 TALLOC_FREE(frame);
156                 return -1;
157         }
158
159         ret = xattr_tdb_setattr(db, &id, name, value, size, flags);
160         TALLOC_FREE(frame);
161         return ret;
162 }
163
164 static int xattr_tdb_fsetxattr(struct vfs_handle_struct *handle,
165                                struct files_struct *fsp,
166                                const char *name, const void *value,
167                                size_t size, int flags)
168 {
169         SMB_STRUCT_STAT sbuf;
170         struct file_id id;
171         struct db_context *db;
172         int ret;
173         TALLOC_CTX *frame = talloc_stackframe();
174
175         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
176                                 if (!xattr_tdb_init(-1, frame, &db))
177                                 {
178                                         TALLOC_FREE(frame); return -1;
179                                 });
180
181         if (SMB_VFS_NEXT_FSTAT(handle, fsp, &sbuf) == -1) {
182                 TALLOC_FREE(frame);
183                 return -1;
184         }
185
186         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &sbuf);
187
188         ret = xattr_tdb_setattr(db, &id, name, value, size, flags);
189         TALLOC_FREE(frame);
190         return ret;
191
192 }
193
194 static ssize_t xattr_tdb_listxattr(struct vfs_handle_struct *handle,
195                                    const char *path, char *list, size_t size)
196 {
197         struct file_id id;
198         struct db_context *db;
199         int ret;
200         TALLOC_CTX *frame = talloc_stackframe();
201
202         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
203                                 if (!xattr_tdb_init(-1, frame, &db))
204                                 {
205                                         TALLOC_FREE(frame); return -1;
206                                 });
207
208         ret = xattr_tdb_get_file_id(handle, path, &id);
209         if (ret == -1) {
210                 TALLOC_FREE(frame);
211                 return -1;
212         }
213
214         ret = xattr_tdb_listattr(db, &id, list, size);
215         TALLOC_FREE(frame);
216         return ret;
217
218 }
219
220 static ssize_t xattr_tdb_flistxattr(struct vfs_handle_struct *handle,
221                                     struct files_struct *fsp, char *list,
222                                     size_t size)
223 {
224         SMB_STRUCT_STAT sbuf;
225         struct file_id id;
226         struct db_context *db;
227         int ret;
228         TALLOC_CTX *frame = talloc_stackframe();
229
230         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
231                                 if (!xattr_tdb_init(-1, frame, &db))
232                                 {
233                                         TALLOC_FREE(frame); return -1;
234                                 });
235
236         if (SMB_VFS_NEXT_FSTAT(handle, fsp, &sbuf) == -1) {
237                 TALLOC_FREE(frame);
238                 return -1;
239         }
240
241         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &sbuf);
242
243         ret = xattr_tdb_listattr(db, &id, list, size);
244         TALLOC_FREE(frame);
245         return ret;
246 }
247
248 static int xattr_tdb_removexattr(struct vfs_handle_struct *handle,
249                                  const char *path, const char *name)
250 {
251         struct file_id id;
252         struct db_context *db;
253         int ret;
254         TALLOC_CTX *frame = talloc_stackframe();
255
256         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
257                                 if (!xattr_tdb_init(-1, frame, &db))
258                                 {
259                                         TALLOC_FREE(frame); return -1;
260                                 });
261
262         ret = xattr_tdb_get_file_id(handle, path, &id);
263         if (ret == -1) {
264                 TALLOC_FREE(frame);
265                 return ret;
266         }
267
268         
269         ret = xattr_tdb_removeattr(db, &id, name);
270         TALLOC_FREE(frame);
271         return ret;
272 }
273
274 static int xattr_tdb_fremovexattr(struct vfs_handle_struct *handle,
275                                   struct files_struct *fsp, const char *name)
276 {
277         SMB_STRUCT_STAT sbuf;
278         struct file_id id;
279         struct db_context *db;
280         int ret;
281         TALLOC_CTX *frame = talloc_stackframe();
282
283         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
284                                 if (!xattr_tdb_init(-1, frame, &db))
285                                 {
286                                         TALLOC_FREE(frame); return -1;
287                                 });
288
289         if (SMB_VFS_NEXT_FSTAT(handle, fsp, &sbuf) == -1) {
290                 TALLOC_FREE(frame);
291                 return -1;
292         }
293
294         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &sbuf);
295
296         ret = xattr_tdb_removeattr(db, &id, name);
297         TALLOC_FREE(frame);
298         return ret;
299 }
300
301 /*
302  * Open the tdb file upon VFS_CONNECT
303  */
304
305 static bool xattr_tdb_init(int snum, TALLOC_CTX *mem_ctx, struct db_context **p_db)
306 {
307         struct db_context *db;
308         const char *dbname;
309         char *def_dbname;
310
311         def_dbname = state_path("xattr.tdb");
312         if (def_dbname == NULL) {
313                 errno = ENOSYS;
314                 return false;
315         }
316
317         dbname = lp_parm_const_string(snum, "xattr_tdb", "file", def_dbname);
318
319         /* now we know dbname is not NULL */
320
321         become_root();
322         db = db_open(NULL, dbname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600,
323                      DBWRAP_LOCK_ORDER_2);
324         unbecome_root();
325
326         if (db == NULL) {
327 #if defined(ENOTSUP)
328                 errno = ENOTSUP;
329 #else
330                 errno = ENOSYS;
331 #endif
332                 TALLOC_FREE(def_dbname);
333                 return false;
334         }
335
336         *p_db = db;
337         TALLOC_FREE(def_dbname);
338         return true;
339 }
340
341 /*
342  * On unlink we need to delete the tdb record
343  */
344 static int xattr_tdb_unlink(vfs_handle_struct *handle,
345                             const struct smb_filename *smb_fname)
346 {
347         struct smb_filename *smb_fname_tmp = NULL;
348         struct file_id id;
349         struct db_context *db;
350         NTSTATUS status;
351         int ret = -1;
352         bool remove_record = false;
353         TALLOC_CTX *frame = talloc_stackframe();
354
355         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
356                                 if (!xattr_tdb_init(-1, frame, &db))
357                                 {
358                                         TALLOC_FREE(frame); return -1;
359                                 });
360
361         status = copy_smb_filename(frame, smb_fname, &smb_fname_tmp);
362         if (!NT_STATUS_IS_OK(status)) {
363                 TALLOC_FREE(frame);
364                 errno = map_errno_from_nt_status(status);
365                 return -1;
366         }
367
368         if (lp_posix_pathnames()) {
369                 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname_tmp);
370         } else {
371                 ret = SMB_VFS_NEXT_STAT(handle, smb_fname_tmp);
372         }
373         if (ret == -1) {
374                 goto out;
375         }
376
377         if (smb_fname_tmp->st.st_ex_nlink == 1) {
378                 /* Only remove record on last link to file. */
379                 remove_record = true;
380         }
381
382         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
383
384         if (ret == -1) {
385                 goto out;
386         }
387
388         if (!remove_record) {
389                 goto out;
390         }
391
392         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &smb_fname_tmp->st);
393
394         xattr_tdb_remove_all_attrs(db, &id);
395
396  out:
397         TALLOC_FREE(frame);
398         return ret;
399 }
400
401 /*
402  * On rmdir we need to delete the tdb record
403  */
404 static int xattr_tdb_rmdir(vfs_handle_struct *handle, const char *path)
405 {
406         SMB_STRUCT_STAT sbuf;
407         struct file_id id;
408         struct db_context *db;
409         int ret;
410         TALLOC_CTX *frame = talloc_stackframe();
411
412         SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context,
413                                 if (!xattr_tdb_init(-1, frame, &db))
414                                 {
415                                         TALLOC_FREE(frame); return -1;
416                                 });
417
418         if (vfs_stat_smb_fname(handle->conn, path, &sbuf) == -1) {
419                 TALLOC_FREE(frame);
420                 return -1;
421         }
422
423         ret = SMB_VFS_NEXT_RMDIR(handle, path);
424
425         if (ret == -1) {
426                 TALLOC_FREE(frame);
427                 return -1;
428         }
429
430         id = SMB_VFS_NEXT_FILE_ID_CREATE(handle, &sbuf);
431
432         xattr_tdb_remove_all_attrs(db, &id);
433
434         TALLOC_FREE(frame);
435         return 0;
436 }
437
438 /*
439  * Destructor for the VFS private data
440  */
441
442 static void close_xattr_db(void **data)
443 {
444         struct db_context **p_db = (struct db_context **)data;
445         TALLOC_FREE(*p_db);
446 }
447
448 static int xattr_tdb_connect(vfs_handle_struct *handle, const char *service,
449                           const char *user)
450 {
451         char *sname = NULL;
452         int res, snum;
453         struct db_context *db;
454
455         res = SMB_VFS_NEXT_CONNECT(handle, service, user);
456         if (res < 0) {
457                 return res;
458         }
459
460         snum = find_service(talloc_tos(), service, &sname);
461         if (snum == -1 || sname == NULL) {
462                 /*
463                  * Should not happen, but we should not fail just *here*.
464                  */
465                 return 0;
466         }
467
468         if (!xattr_tdb_init(snum, NULL, &db)) {
469                 DEBUG(5, ("Could not init xattr tdb\n"));
470                 lp_do_parameter(snum, "ea support", "False");
471                 return 0;
472         }
473
474         lp_do_parameter(snum, "ea support", "True");
475
476         SMB_VFS_HANDLE_SET_DATA(handle, db, close_xattr_db,
477                                 struct db_context, return -1);
478
479         return 0;
480 }
481
482 static struct vfs_fn_pointers vfs_xattr_tdb_fns = {
483         .getxattr_fn = xattr_tdb_getxattr,
484         .fgetxattr_fn = xattr_tdb_fgetxattr,
485         .setxattr_fn = xattr_tdb_setxattr,
486         .fsetxattr_fn = xattr_tdb_fsetxattr,
487         .listxattr_fn = xattr_tdb_listxattr,
488         .flistxattr_fn = xattr_tdb_flistxattr,
489         .removexattr_fn = xattr_tdb_removexattr,
490         .fremovexattr_fn = xattr_tdb_fremovexattr,
491         .unlink_fn = xattr_tdb_unlink,
492         .rmdir_fn = xattr_tdb_rmdir,
493         .connect_fn = xattr_tdb_connect,
494 };
495
496 NTSTATUS vfs_xattr_tdb_init(void);
497 NTSTATUS vfs_xattr_tdb_init(void)
498 {
499         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "xattr_tdb",
500                                 &vfs_xattr_tdb_fns);
501 }