s3: Fix bug #9085.
[Samba.git] / source3 / modules / vfs_cap.c
blob35fa740dd09aa078cfe78e83196c1623683f041f
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"
27 /* cap functions */
28 static char *capencode(TALLOC_CTX *ctx, const char *from);
29 static char *capdecode(TALLOC_CTX *ctx, const char *from);
31 static uint64_t cap_disk_free(vfs_handle_struct *handle, const char *path,
32 bool small_query, uint64_t *bsize,
33 uint64_t *dfree, uint64_t *dsize)
35 char *cappath = capencode(talloc_tos(), path);
37 if (!cappath) {
38 errno = ENOMEM;
39 return (uint64_t)-1;
41 return SMB_VFS_NEXT_DISK_FREE(handle, cappath, small_query, bsize,
42 dfree, dsize);
45 static SMB_STRUCT_DIR *cap_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
47 char *capname = capencode(talloc_tos(), fname);
49 if (!capname) {
50 errno = ENOMEM;
51 return NULL;
53 return SMB_VFS_NEXT_OPENDIR(handle, capname, mask, attr);
56 static SMB_STRUCT_DIRENT *cap_readdir(vfs_handle_struct *handle,
57 SMB_STRUCT_DIR *dirp,
58 SMB_STRUCT_STAT *sbuf)
60 SMB_STRUCT_DIRENT *result;
61 SMB_STRUCT_DIRENT *newdirent;
62 char *newname;
63 size_t newnamelen;
64 DEBUG(3,("cap: cap_readdir\n"));
66 result = SMB_VFS_NEXT_READDIR(handle, dirp, NULL);
67 if (!result) {
68 return NULL;
71 newname = capdecode(talloc_tos(), result->d_name);
72 if (!newname) {
73 return NULL;
75 DEBUG(3,("cap: cap_readdir: %s\n", newname));
76 newnamelen = strlen(newname)+1;
77 newdirent = (SMB_STRUCT_DIRENT *)TALLOC_ARRAY(talloc_tos(),
78 char,
79 sizeof(SMB_STRUCT_DIRENT)+
80 newnamelen);
81 if (!newdirent) {
82 return NULL;
84 memcpy(newdirent, result, sizeof(SMB_STRUCT_DIRENT));
85 memcpy(&newdirent->d_name, newname, newnamelen);
86 return newdirent;
89 static int cap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
91 char *cappath = capencode(talloc_tos(), path);
93 if (!cappath) {
94 errno = ENOMEM;
95 return -1;
97 return SMB_VFS_NEXT_MKDIR(handle, cappath, mode);
100 static int cap_rmdir(vfs_handle_struct *handle, const char *path)
102 char *cappath = capencode(talloc_tos(), path);
104 if (!cappath) {
105 errno = ENOMEM;
106 return -1;
108 return SMB_VFS_NEXT_RMDIR(handle, cappath);
111 static int cap_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
112 files_struct *fsp, int flags, mode_t mode)
114 char *cappath;
115 char *tmp_base_name = NULL;
116 int ret;
118 cappath = capencode(talloc_tos(), smb_fname->base_name);
120 if (!cappath) {
121 errno = ENOMEM;
122 return -1;
125 tmp_base_name = smb_fname->base_name;
126 smb_fname->base_name = cappath;
128 DEBUG(3,("cap: cap_open for %s\n", smb_fname_str_dbg(smb_fname)));
129 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
131 smb_fname->base_name = tmp_base_name;
132 TALLOC_FREE(cappath);
134 return ret;
137 static int cap_rename(vfs_handle_struct *handle,
138 const struct smb_filename *smb_fname_src,
139 const struct smb_filename *smb_fname_dst)
141 char *capold = NULL;
142 char *capnew = NULL;
143 struct smb_filename *smb_fname_src_tmp = NULL;
144 struct smb_filename *smb_fname_dst_tmp = NULL;
145 NTSTATUS status;
146 int ret = -1;
148 capold = capencode(talloc_tos(), smb_fname_src->base_name);
149 capnew = capencode(talloc_tos(), smb_fname_dst->base_name);
150 if (!capold || !capnew) {
151 errno = ENOMEM;
152 goto out;
155 /* Setup temporary smb_filename structs. */
156 status = copy_smb_filename(talloc_tos(), smb_fname_src,
157 &smb_fname_src_tmp);
158 if (!NT_STATUS_IS_OK(status)) {
159 errno = map_errno_from_nt_status(status);
160 goto out;
162 status = copy_smb_filename(talloc_tos(), smb_fname_dst,
163 &smb_fname_dst_tmp);
164 if (!NT_STATUS_IS_OK(status)) {
165 errno = map_errno_from_nt_status(status);
166 goto out;
169 smb_fname_src_tmp->base_name = capold;
170 smb_fname_dst_tmp->base_name = capnew;
172 ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
173 smb_fname_dst_tmp);
174 out:
175 TALLOC_FREE(capold);
176 TALLOC_FREE(capnew);
177 TALLOC_FREE(smb_fname_src_tmp);
178 TALLOC_FREE(smb_fname_dst_tmp);
180 return ret;
183 static int cap_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
185 char *cappath;
186 char *tmp_base_name = NULL;
187 int ret;
189 cappath = capencode(talloc_tos(), smb_fname->base_name);
191 if (!cappath) {
192 errno = ENOMEM;
193 return -1;
196 tmp_base_name = smb_fname->base_name;
197 smb_fname->base_name = cappath;
199 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
201 smb_fname->base_name = tmp_base_name;
202 TALLOC_FREE(cappath);
204 return ret;
207 static int cap_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
209 char *cappath;
210 char *tmp_base_name = NULL;
211 int ret;
213 cappath = capencode(talloc_tos(), smb_fname->base_name);
215 if (!cappath) {
216 errno = ENOMEM;
217 return -1;
220 tmp_base_name = smb_fname->base_name;
221 smb_fname->base_name = cappath;
223 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
225 smb_fname->base_name = tmp_base_name;
226 TALLOC_FREE(cappath);
228 return ret;
231 static int cap_unlink(vfs_handle_struct *handle,
232 const struct smb_filename *smb_fname)
234 struct smb_filename *smb_fname_tmp = NULL;
235 char *cappath = NULL;
236 NTSTATUS status;
237 int ret;
239 cappath = capencode(talloc_tos(), smb_fname->base_name);
240 if (!cappath) {
241 errno = ENOMEM;
242 return -1;
245 /* Setup temporary smb_filename structs. */
246 status = copy_smb_filename(talloc_tos(), smb_fname,
247 &smb_fname_tmp);
248 if (!NT_STATUS_IS_OK(status)) {
249 errno = map_errno_from_nt_status(status);
250 return -1;
253 smb_fname_tmp->base_name = cappath;
255 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
257 TALLOC_FREE(smb_fname_tmp);
258 return ret;
261 static int cap_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
263 char *cappath = capencode(talloc_tos(), path);
265 if (!cappath) {
266 errno = ENOMEM;
267 return -1;
269 return SMB_VFS_NEXT_CHMOD(handle, cappath, mode);
272 static int cap_chown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
274 char *cappath = capencode(talloc_tos(), path);
276 if (!cappath) {
277 errno = ENOMEM;
278 return -1;
280 return SMB_VFS_NEXT_CHOWN(handle, cappath, uid, gid);
283 static int cap_lchown(vfs_handle_struct *handle, const char *path, uid_t uid, gid_t gid)
285 char *cappath = capencode(talloc_tos(), path);
287 if (!cappath) {
288 errno = ENOMEM;
289 return -1;
291 return SMB_VFS_NEXT_LCHOWN(handle, cappath, uid, gid);
294 static int cap_chdir(vfs_handle_struct *handle, const char *path)
296 char *cappath = capencode(talloc_tos(), path);
298 if (!cappath) {
299 errno = ENOMEM;
300 return -1;
302 DEBUG(3,("cap: cap_chdir for %s\n", path));
303 return SMB_VFS_NEXT_CHDIR(handle, cappath);
306 static int cap_ntimes(vfs_handle_struct *handle,
307 const struct smb_filename *smb_fname,
308 struct smb_file_time *ft)
310 struct smb_filename *smb_fname_tmp = NULL;
311 char *cappath = NULL;
312 NTSTATUS status;
313 int ret;
315 cappath = capencode(talloc_tos(), smb_fname->base_name);
317 if (!cappath) {
318 errno = ENOMEM;
319 return -1;
322 /* Setup temporary smb_filename structs. */
323 status = copy_smb_filename(talloc_tos(), smb_fname,
324 &smb_fname_tmp);
325 if (!NT_STATUS_IS_OK(status)) {
326 errno = map_errno_from_nt_status(status);
327 return -1;
330 smb_fname_tmp->base_name = cappath;
332 ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
334 TALLOC_FREE(smb_fname_tmp);
335 return ret;
339 static int cap_symlink(vfs_handle_struct *handle, const char *oldpath,
340 const char *newpath)
342 char *capold = capencode(talloc_tos(), oldpath);
343 char *capnew = capencode(talloc_tos(), newpath);
345 if (!capold || !capnew) {
346 errno = ENOMEM;
347 return -1;
349 return SMB_VFS_NEXT_SYMLINK(handle, capold, capnew);
352 static int cap_readlink(vfs_handle_struct *handle, const char *path,
353 char *buf, size_t bufsiz)
355 char *cappath = capencode(talloc_tos(), path);
357 if (!cappath) {
358 errno = ENOMEM;
359 return -1;
361 return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
364 static int cap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
366 char *capold = capencode(talloc_tos(), oldpath);
367 char *capnew = capencode(talloc_tos(), newpath);
369 if (!capold || !capnew) {
370 errno = ENOMEM;
371 return -1;
373 return SMB_VFS_NEXT_LINK(handle, capold, capnew);
376 static int cap_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
378 char *cappath = capencode(talloc_tos(), path);
380 if (!cappath) {
381 errno = ENOMEM;
382 return -1;
384 return SMB_VFS_NEXT_MKNOD(handle, cappath, mode, dev);
387 static char *cap_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path)
389 /* monyo need capencode'ed and capdecode'ed? */
390 char *cappath = capencode(talloc_tos(), path);
392 if (!cappath) {
393 errno = ENOMEM;
394 return NULL;
396 return SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
399 static int cap_chmod_acl(vfs_handle_struct *handle, const char *path, mode_t mode)
401 char *cappath = capencode(talloc_tos(), path);
403 /* If the underlying VFS doesn't have ACL support... */
404 if (!cappath) {
405 errno = ENOMEM;
406 return -1;
408 return SMB_VFS_NEXT_CHMOD_ACL(handle, cappath, mode);
411 static SMB_ACL_T cap_sys_acl_get_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T type)
413 char *cappath = capencode(talloc_tos(), path);
415 if (!cappath) {
416 errno = ENOMEM;
417 return (SMB_ACL_T)NULL;
419 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cappath, type);
422 static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
424 char *cappath = capencode(talloc_tos(), path);
426 if (!cappath) {
427 errno = ENOMEM;
428 return -1;
430 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
433 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
435 char *cappath = capencode(talloc_tos(), path);
437 if (!cappath) {
438 errno = ENOMEM;
439 return -1;
441 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cappath);
444 static ssize_t cap_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
446 char *cappath = capencode(talloc_tos(), path);
447 char *capname = capencode(talloc_tos(), name);
449 if (!cappath || !capname) {
450 errno = ENOMEM;
451 return -1;
453 return SMB_VFS_NEXT_GETXATTR(handle, cappath, capname, value, size);
456 static ssize_t cap_lgetxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t
457 size)
459 char *cappath = capencode(talloc_tos(), path);
460 char *capname = capencode(talloc_tos(), name);
462 if (!cappath || !capname) {
463 errno = ENOMEM;
464 return -1;
466 return SMB_VFS_NEXT_LGETXATTR(handle, cappath, capname, value, size);
469 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
471 char *cappath = capencode(talloc_tos(), path);
473 if (!cappath) {
474 errno = ENOMEM;
475 return -1;
477 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
480 static ssize_t cap_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
482 char *cappath = capencode(talloc_tos(), path);
484 if (!cappath) {
485 errno = ENOMEM;
486 return -1;
488 return SMB_VFS_NEXT_LISTXATTR(handle, cappath, list, size);
491 static ssize_t cap_llistxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
493 char *cappath = capencode(talloc_tos(), path);
495 if (!cappath) {
496 errno = ENOMEM;
497 return -1;
499 return SMB_VFS_NEXT_LLISTXATTR(handle, cappath, list, size);
502 static int cap_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
504 char *cappath = capencode(talloc_tos(), path);
505 char *capname = capencode(talloc_tos(), name);
507 if (!cappath || !capname) {
508 errno = ENOMEM;
509 return -1;
511 return SMB_VFS_NEXT_REMOVEXATTR(handle, cappath, capname);
514 static int cap_lremovexattr(vfs_handle_struct *handle, const char *path, const char *name)
516 char *cappath = capencode(talloc_tos(), path);
517 char *capname = capencode(talloc_tos(), name);
519 if (!cappath || !capname) {
520 errno = ENOMEM;
521 return -1;
523 return SMB_VFS_NEXT_LREMOVEXATTR(handle, cappath, capname);
526 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
528 char *cappath = capencode(talloc_tos(), path);
530 if (!cappath) {
531 errno = ENOMEM;
532 return -1;
534 return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
537 static int cap_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
539 char *cappath = capencode(talloc_tos(), path);
540 char *capname = capencode(talloc_tos(), name);
542 if (!cappath || !capname) {
543 errno = ENOMEM;
544 return -1;
546 return SMB_VFS_NEXT_SETXATTR(handle, cappath, capname, value, size, flags);
549 static int cap_lsetxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
551 char *cappath = capencode(talloc_tos(), path);
552 char *capname = capencode(talloc_tos(), name);
554 if (!cappath || !capname) {
555 errno = ENOMEM;
556 return -1;
558 return SMB_VFS_NEXT_LSETXATTR(handle, cappath, capname, value, size, flags);
561 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
563 char *cappath = capencode(talloc_tos(), path);
565 if (!cappath) {
566 errno = ENOMEM;
567 return -1;
569 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
572 static struct vfs_fn_pointers vfs_cap_fns = {
573 .disk_free = cap_disk_free,
574 .opendir = cap_opendir,
575 .readdir = cap_readdir,
576 .mkdir = cap_mkdir,
577 .rmdir = cap_rmdir,
578 .open = cap_open,
579 .rename = cap_rename,
580 .stat = cap_stat,
581 .lstat = cap_lstat,
582 .unlink = cap_unlink,
583 .chmod = cap_chmod,
584 .chown = cap_chown,
585 .lchown = cap_lchown,
586 .chdir = cap_chdir,
587 .ntimes = cap_ntimes,
588 .symlink = cap_symlink,
589 .vfs_readlink = cap_readlink,
590 .link = cap_link,
591 .mknod = cap_mknod,
592 .realpath = cap_realpath,
593 .chmod_acl = cap_chmod_acl,
594 .sys_acl_get_file = cap_sys_acl_get_file,
595 .sys_acl_set_file = cap_sys_acl_set_file,
596 .sys_acl_delete_def_file = cap_sys_acl_delete_def_file,
597 .getxattr = cap_getxattr,
598 .lgetxattr = cap_lgetxattr,
599 .fgetxattr = cap_fgetxattr,
600 .listxattr = cap_listxattr,
601 .llistxattr = cap_llistxattr,
602 .removexattr = cap_removexattr,
603 .lremovexattr = cap_lremovexattr,
604 .fremovexattr = cap_fremovexattr,
605 .setxattr = cap_setxattr,
606 .lsetxattr = cap_lsetxattr,
607 .fsetxattr = cap_fsetxattr
610 NTSTATUS vfs_cap_init(void);
611 NTSTATUS vfs_cap_init(void)
613 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
614 &vfs_cap_fns);
617 /* For CAP functions */
618 #define hex_tag ':'
619 #define hex2bin(c) hex2bin_table[(unsigned char)(c)]
620 #define bin2hex(c) bin2hex_table[(unsigned char)(c)]
621 #define is_hex(s) ((s)[0] == hex_tag)
623 static unsigned char hex2bin_table[256] = {
624 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
625 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
626 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
627 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
628 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
629 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
630 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
631 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
632 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
633 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
634 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
635 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
636 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
637 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
638 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
639 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
640 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
641 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xf0 */
643 static unsigned char bin2hex_table[256] = "0123456789abcdef";
645 /*******************************************************************
646 original code -> ":xx" - CAP format
647 ********************************************************************/
649 static char *capencode(TALLOC_CTX *ctx, const char *from)
651 char *out = NULL;
652 const char *p1;
653 char *to = NULL;
654 size_t len = 0;
656 for (p1 = from; *p1; p1++) {
657 if ((unsigned char)*p1 >= 0x80) {
658 len += 3;
659 } else {
660 len++;
663 len++;
665 to = TALLOC_ARRAY(ctx, char, len);
666 if (!to) {
667 return NULL;
670 for (out = to; *from;) {
671 /* buffer husoku error */
672 if ((unsigned char)*from >= 0x80) {
673 *out++ = hex_tag;
674 *out++ = bin2hex (((*from)>>4)&0x0f);
675 *out++ = bin2hex ((*from)&0x0f);
676 from++;
677 } else {
678 *out++ = *from++;
681 *out = '\0';
682 return to;
685 /*******************************************************************
686 CAP -> original code
687 ********************************************************************/
688 /* ":xx" -> a byte */
690 static char *capdecode(TALLOC_CTX *ctx, const char *from)
692 const char *p1;
693 char *out = NULL;
694 char *to = NULL;
695 size_t len = 0;
697 for (p1 = from; *p1; len++) {
698 if (is_hex(p1)) {
699 p1 += 3;
700 } else {
701 p1++;
704 len++;
706 to = TALLOC_ARRAY(ctx, char, len);
707 if (!to) {
708 return NULL;
711 for (out = to; *from;) {
712 if (is_hex(from)) {
713 *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
714 from += 3;
715 } else {
716 *out++ = *from++;
719 *out = '\0';
720 return to;