s3:libsmb: add cli_{query,set}_security_descriptor() which take sec_info flags
[Samba/gebeck_regimport.git] / source3 / modules / vfs_cap.c
blobf2f8d7174f1349881a8c2356ec72b4387d6c7df9
1 /*
2 * CAP VFS module for Samba 3.x Version 0.3
4 * Copyright (C) Tim Potter, 1999-2000
5 * Copyright (C) Alexander Bokovoy, 2002-2003
6 * Copyright (C) Stefan (metze) Metzmacher, 2003
7 * Copyright (C) TAKAHASHI Motonobu (monyo), 2003
8 * Copyright (C) Jeremy Allison, 2007
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "smbd/smbd.h"
28 /* cap functions */
29 static char *capencode(TALLOC_CTX *ctx, const char *from);
30 static char *capdecode(TALLOC_CTX *ctx, const char *from);
32 static uint64_t cap_disk_free(vfs_handle_struct *handle, const char *path,
33 bool small_query, uint64_t *bsize,
34 uint64_t *dfree, uint64_t *dsize)
36 char *cappath = capencode(talloc_tos(), path);
38 if (!cappath) {
39 errno = ENOMEM;
40 return (uint64_t)-1;
42 return SMB_VFS_NEXT_DISK_FREE(handle, cappath, small_query, bsize,
43 dfree, dsize);
46 static DIR *cap_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
48 char *capname = capencode(talloc_tos(), fname);
50 if (!capname) {
51 errno = ENOMEM;
52 return NULL;
54 return SMB_VFS_NEXT_OPENDIR(handle, capname, mask, attr);
57 static struct dirent *cap_readdir(vfs_handle_struct *handle,
58 DIR *dirp,
59 SMB_STRUCT_STAT *sbuf)
61 struct dirent *result;
62 struct dirent *newdirent;
63 char *newname;
64 size_t newnamelen;
65 DEBUG(3,("cap: cap_readdir\n"));
67 result = SMB_VFS_NEXT_READDIR(handle, dirp, NULL);
68 if (!result) {
69 return NULL;
72 newname = capdecode(talloc_tos(), result->d_name);
73 if (!newname) {
74 return NULL;
76 DEBUG(3,("cap: cap_readdir: %s\n", newname));
77 newnamelen = strlen(newname)+1;
78 newdirent = (struct dirent *)talloc_array(talloc_tos(),
79 char,
80 sizeof(struct dirent)+
81 newnamelen);
82 if (!newdirent) {
83 return NULL;
85 memcpy(newdirent, result, sizeof(struct dirent));
86 memcpy(&newdirent->d_name, newname, newnamelen);
87 return newdirent;
90 static int cap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
92 char *cappath = capencode(talloc_tos(), path);
94 if (!cappath) {
95 errno = ENOMEM;
96 return -1;
98 return SMB_VFS_NEXT_MKDIR(handle, cappath, mode);
101 static int cap_rmdir(vfs_handle_struct *handle, const char *path)
103 char *cappath = capencode(talloc_tos(), path);
105 if (!cappath) {
106 errno = ENOMEM;
107 return -1;
109 return SMB_VFS_NEXT_RMDIR(handle, cappath);
112 static int cap_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
113 files_struct *fsp, int flags, mode_t mode)
115 char *cappath;
116 char *tmp_base_name = NULL;
117 int ret;
119 cappath = capencode(talloc_tos(), smb_fname->base_name);
121 if (!cappath) {
122 errno = ENOMEM;
123 return -1;
126 tmp_base_name = smb_fname->base_name;
127 smb_fname->base_name = cappath;
129 DEBUG(3,("cap: cap_open for %s\n", smb_fname_str_dbg(smb_fname)));
130 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
132 smb_fname->base_name = tmp_base_name;
133 TALLOC_FREE(cappath);
135 return ret;
138 static int cap_rename(vfs_handle_struct *handle,
139 const struct smb_filename *smb_fname_src,
140 const struct smb_filename *smb_fname_dst)
142 char *capold = NULL;
143 char *capnew = NULL;
144 struct smb_filename *smb_fname_src_tmp = NULL;
145 struct smb_filename *smb_fname_dst_tmp = NULL;
146 NTSTATUS status;
147 int ret = -1;
149 capold = capencode(talloc_tos(), smb_fname_src->base_name);
150 capnew = capencode(talloc_tos(), smb_fname_dst->base_name);
151 if (!capold || !capnew) {
152 errno = ENOMEM;
153 goto out;
156 /* Setup temporary smb_filename structs. */
157 status = copy_smb_filename(talloc_tos(), smb_fname_src,
158 &smb_fname_src_tmp);
159 if (!NT_STATUS_IS_OK(status)) {
160 errno = map_errno_from_nt_status(status);
161 goto out;
163 status = copy_smb_filename(talloc_tos(), smb_fname_dst,
164 &smb_fname_dst_tmp);
165 if (!NT_STATUS_IS_OK(status)) {
166 errno = map_errno_from_nt_status(status);
167 goto out;
170 smb_fname_src_tmp->base_name = capold;
171 smb_fname_dst_tmp->base_name = capnew;
173 ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
174 smb_fname_dst_tmp);
175 out:
176 TALLOC_FREE(capold);
177 TALLOC_FREE(capnew);
178 TALLOC_FREE(smb_fname_src_tmp);
179 TALLOC_FREE(smb_fname_dst_tmp);
181 return ret;
184 static int cap_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
186 char *cappath;
187 char *tmp_base_name = NULL;
188 int ret;
190 cappath = capencode(talloc_tos(), smb_fname->base_name);
192 if (!cappath) {
193 errno = ENOMEM;
194 return -1;
197 tmp_base_name = smb_fname->base_name;
198 smb_fname->base_name = cappath;
200 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
202 smb_fname->base_name = tmp_base_name;
203 TALLOC_FREE(cappath);
205 return ret;
208 static int cap_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
210 char *cappath;
211 char *tmp_base_name = NULL;
212 int ret;
214 cappath = capencode(talloc_tos(), smb_fname->base_name);
216 if (!cappath) {
217 errno = ENOMEM;
218 return -1;
221 tmp_base_name = smb_fname->base_name;
222 smb_fname->base_name = cappath;
224 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
226 smb_fname->base_name = tmp_base_name;
227 TALLOC_FREE(cappath);
229 return ret;
232 static int cap_unlink(vfs_handle_struct *handle,
233 const struct smb_filename *smb_fname)
235 struct smb_filename *smb_fname_tmp = NULL;
236 char *cappath = NULL;
237 NTSTATUS status;
238 int ret;
240 cappath = capencode(talloc_tos(), smb_fname->base_name);
241 if (!cappath) {
242 errno = ENOMEM;
243 return -1;
246 /* Setup temporary smb_filename structs. */
247 status = copy_smb_filename(talloc_tos(), smb_fname,
248 &smb_fname_tmp);
249 if (!NT_STATUS_IS_OK(status)) {
250 errno = map_errno_from_nt_status(status);
251 return -1;
254 smb_fname_tmp->base_name = cappath;
256 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
258 TALLOC_FREE(smb_fname_tmp);
259 return ret;
262 static int cap_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
264 char *cappath = capencode(talloc_tos(), path);
266 if (!cappath) {
267 errno = ENOMEM;
268 return -1;
270 return SMB_VFS_NEXT_CHMOD(handle, cappath, mode);
273 static int cap_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
275 char *cappath = capencode(talloc_tos(), path);
277 if (!cappath) {
278 errno = ENOMEM;
279 return -1;
281 return SMB_VFS_NEXT_CHOWN(handle, cappath, uid, gid);
284 static int cap_lchown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
286 char *cappath = capencode(talloc_tos(), path);
288 if (!cappath) {
289 errno = ENOMEM;
290 return -1;
292 return SMB_VFS_NEXT_LCHOWN(handle, cappath, uid, gid);
295 static int cap_chdir(vfs_handle_struct *handle, const char *path)
297 char *cappath = capencode(talloc_tos(), path);
299 if (!cappath) {
300 errno = ENOMEM;
301 return -1;
303 DEBUG(3,("cap: cap_chdir for %s\n", path));
304 return SMB_VFS_NEXT_CHDIR(handle, cappath);
307 static int cap_ntimes(vfs_handle_struct *handle,
308 const struct smb_filename *smb_fname,
309 struct smb_file_time *ft)
311 struct smb_filename *smb_fname_tmp = NULL;
312 char *cappath = NULL;
313 NTSTATUS status;
314 int ret;
316 cappath = capencode(talloc_tos(), smb_fname->base_name);
318 if (!cappath) {
319 errno = ENOMEM;
320 return -1;
323 /* Setup temporary smb_filename structs. */
324 status = copy_smb_filename(talloc_tos(), smb_fname,
325 &smb_fname_tmp);
326 if (!NT_STATUS_IS_OK(status)) {
327 errno = map_errno_from_nt_status(status);
328 return -1;
331 smb_fname_tmp->base_name = cappath;
333 ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
335 TALLOC_FREE(smb_fname_tmp);
336 return ret;
340 static int cap_symlink(vfs_handle_struct *handle, const char *oldpath,
341 const char *newpath)
343 char *capold = capencode(talloc_tos(), oldpath);
344 char *capnew = capencode(talloc_tos(), newpath);
346 if (!capold || !capnew) {
347 errno = ENOMEM;
348 return -1;
350 return SMB_VFS_NEXT_SYMLINK(handle, capold, capnew);
353 static int cap_readlink(vfs_handle_struct *handle, const char *path,
354 char *buf, size_t bufsiz)
356 char *cappath = capencode(talloc_tos(), path);
358 if (!cappath) {
359 errno = ENOMEM;
360 return -1;
362 return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
365 static int cap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
367 char *capold = capencode(talloc_tos(), oldpath);
368 char *capnew = capencode(talloc_tos(), newpath);
370 if (!capold || !capnew) {
371 errno = ENOMEM;
372 return -1;
374 return SMB_VFS_NEXT_LINK(handle, capold, capnew);
377 static int cap_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
379 char *cappath = capencode(talloc_tos(), path);
381 if (!cappath) {
382 errno = ENOMEM;
383 return -1;
385 return SMB_VFS_NEXT_MKNOD(handle, cappath, mode, dev);
388 static char *cap_realpath(vfs_handle_struct *handle, const char *path)
390 /* monyo need capencode'ed and capdecode'ed? */
391 char *cappath = capencode(talloc_tos(), path);
393 if (!cappath) {
394 errno = ENOMEM;
395 return NULL;
397 return SMB_VFS_NEXT_REALPATH(handle, cappath);
400 static int cap_chmod_acl(vfs_handle_struct *handle, const char *path, mode_t mode)
402 char *cappath = capencode(talloc_tos(), path);
404 /* If the underlying VFS doesn't have ACL support... */
405 if (!cappath) {
406 errno = ENOMEM;
407 return -1;
409 return SMB_VFS_NEXT_CHMOD_ACL(handle, cappath, mode);
412 static SMB_ACL_T cap_sys_acl_get_file(vfs_handle_struct *handle,
413 const char *path, SMB_ACL_TYPE_T type,
414 TALLOC_CTX *mem_ctx)
416 char *cappath = capencode(talloc_tos(), path);
418 if (!cappath) {
419 errno = ENOMEM;
420 return (SMB_ACL_T)NULL;
422 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cappath, type, mem_ctx);
425 static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
427 char *cappath = capencode(talloc_tos(), path);
429 if (!cappath) {
430 errno = ENOMEM;
431 return -1;
433 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
436 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
438 char *cappath = capencode(talloc_tos(), path);
440 if (!cappath) {
441 errno = ENOMEM;
442 return -1;
444 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cappath);
447 static ssize_t cap_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
449 char *cappath = capencode(talloc_tos(), path);
450 char *capname = capencode(talloc_tos(), name);
452 if (!cappath || !capname) {
453 errno = ENOMEM;
454 return -1;
456 return SMB_VFS_NEXT_GETXATTR(handle, cappath, capname, value, size);
459 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
461 char *cappath = capencode(talloc_tos(), path);
463 if (!cappath) {
464 errno = ENOMEM;
465 return -1;
467 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
470 static ssize_t cap_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
472 char *cappath = capencode(talloc_tos(), path);
474 if (!cappath) {
475 errno = ENOMEM;
476 return -1;
478 return SMB_VFS_NEXT_LISTXATTR(handle, cappath, list, size);
481 static int cap_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
483 char *cappath = capencode(talloc_tos(), path);
484 char *capname = capencode(talloc_tos(), name);
486 if (!cappath || !capname) {
487 errno = ENOMEM;
488 return -1;
490 return SMB_VFS_NEXT_REMOVEXATTR(handle, cappath, capname);
493 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
495 char *cappath = capencode(talloc_tos(), path);
497 if (!cappath) {
498 errno = ENOMEM;
499 return -1;
501 return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
504 static int cap_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
506 char *cappath = capencode(talloc_tos(), path);
507 char *capname = capencode(talloc_tos(), name);
509 if (!cappath || !capname) {
510 errno = ENOMEM;
511 return -1;
513 return SMB_VFS_NEXT_SETXATTR(handle, cappath, capname, value, size, flags);
516 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
518 char *cappath = capencode(talloc_tos(), path);
520 if (!cappath) {
521 errno = ENOMEM;
522 return -1;
524 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
527 static struct vfs_fn_pointers vfs_cap_fns = {
528 .disk_free_fn = cap_disk_free,
529 .opendir_fn = cap_opendir,
530 .readdir_fn = cap_readdir,
531 .mkdir_fn = cap_mkdir,
532 .rmdir_fn = cap_rmdir,
533 .open_fn = cap_open,
534 .rename_fn = cap_rename,
535 .stat_fn = cap_stat,
536 .lstat_fn = cap_lstat,
537 .unlink_fn = cap_unlink,
538 .chmod_fn = cap_chmod,
539 .chown_fn = cap_chown,
540 .lchown_fn = cap_lchown,
541 .chdir_fn = cap_chdir,
542 .ntimes_fn = cap_ntimes,
543 .symlink_fn = cap_symlink,
544 .readlink_fn = cap_readlink,
545 .link_fn = cap_link,
546 .mknod_fn = cap_mknod,
547 .realpath_fn = cap_realpath,
548 .chmod_acl_fn = cap_chmod_acl,
549 .sys_acl_get_file_fn = cap_sys_acl_get_file,
550 .sys_acl_set_file_fn = cap_sys_acl_set_file,
551 .sys_acl_delete_def_file_fn = cap_sys_acl_delete_def_file,
552 .getxattr_fn = cap_getxattr,
553 .fgetxattr_fn = cap_fgetxattr,
554 .listxattr_fn = cap_listxattr,
555 .removexattr_fn = cap_removexattr,
556 .fremovexattr_fn = cap_fremovexattr,
557 .setxattr_fn = cap_setxattr,
558 .fsetxattr_fn = cap_fsetxattr
561 NTSTATUS vfs_cap_init(void);
562 NTSTATUS vfs_cap_init(void)
564 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
565 &vfs_cap_fns);
568 /* For CAP functions */
569 #define hex_tag ':'
570 #define hex2bin(c) hex2bin_table[(unsigned char)(c)]
571 #define bin2hex(c) bin2hex_table[(unsigned char)(c)]
572 #define is_hex(s) ((s)[0] == hex_tag)
574 static unsigned char hex2bin_table[256] = {
575 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
576 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
577 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
578 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
579 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
580 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
581 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
582 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
583 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
584 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
585 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
586 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
587 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
588 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
589 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
590 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
591 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
592 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xf0 */
594 static unsigned char bin2hex_table[256] = "0123456789abcdef";
596 /*******************************************************************
597 original code -> ":xx" - CAP format
598 ********************************************************************/
600 static char *capencode(TALLOC_CTX *ctx, const char *from)
602 char *out = NULL;
603 const char *p1;
604 char *to = NULL;
605 size_t len = 0;
607 for (p1 = from; *p1; p1++) {
608 if ((unsigned char)*p1 >= 0x80) {
609 len += 3;
610 } else {
611 len++;
614 len++;
616 to = talloc_array(ctx, char, len);
617 if (!to) {
618 return NULL;
621 for (out = to; *from;) {
622 /* buffer husoku error */
623 if ((unsigned char)*from >= 0x80) {
624 *out++ = hex_tag;
625 *out++ = bin2hex (((*from)>>4)&0x0f);
626 *out++ = bin2hex ((*from)&0x0f);
627 from++;
628 } else {
629 *out++ = *from++;
632 *out = '\0';
633 return to;
636 /*******************************************************************
637 CAP -> original code
638 ********************************************************************/
639 /* ":xx" -> a byte */
641 static char *capdecode(TALLOC_CTX *ctx, const char *from)
643 const char *p1;
644 char *out = NULL;
645 char *to = NULL;
646 size_t len = 0;
648 for (p1 = from; *p1; len++) {
649 if (is_hex(p1)) {
650 p1 += 3;
651 } else {
652 p1++;
655 len++;
657 to = talloc_array(ctx, char, len);
658 if (!to) {
659 return NULL;
662 for (out = to; *from;) {
663 if (is_hex(from)) {
664 *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
665 from += 3;
666 } else {
667 *out++ = *from++;
670 *out = '\0';
671 return to;