s3: VFS: Change SMB_VFS_GETXATTR to use const struct smb_filename * instead of const...
[Samba.git] / source3 / modules / vfs_cap.c
blobc124592af934cadb662239fa0cc215c1bf2d8b65
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 uint64_t *bsize, 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, bsize, dfree, dsize);
44 static int cap_get_quota(vfs_handle_struct *handle, const char *path,
45 enum SMB_QUOTA_TYPE qtype, unid_t id,
46 SMB_DISK_QUOTA *dq)
48 char *cappath = capencode(talloc_tos(), path);
50 if (!cappath) {
51 errno = ENOMEM;
52 return -1;
54 return SMB_VFS_NEXT_GET_QUOTA(handle, cappath, qtype, id, dq);
57 static DIR *cap_opendir(vfs_handle_struct *handle,
58 const struct smb_filename *smb_fname,
59 const char *mask,
60 uint32_t attr)
62 char *capname = capencode(talloc_tos(), smb_fname->base_name);
63 struct smb_filename *cap_smb_fname = NULL;
65 if (!capname) {
66 errno = ENOMEM;
67 return NULL;
69 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
70 capname,
71 NULL,
72 NULL,
73 smb_fname->flags);
74 if (cap_smb_fname == NULL) {
75 TALLOC_FREE(capname);
76 errno = ENOMEM;
77 return NULL;
79 return SMB_VFS_NEXT_OPENDIR(handle, cap_smb_fname, mask, attr);
82 static struct dirent *cap_readdir(vfs_handle_struct *handle,
83 DIR *dirp,
84 SMB_STRUCT_STAT *sbuf)
86 struct dirent *result;
87 struct dirent *newdirent;
88 char *newname;
89 size_t newnamelen;
90 DEBUG(3,("cap: cap_readdir\n"));
92 result = SMB_VFS_NEXT_READDIR(handle, dirp, NULL);
93 if (!result) {
94 return NULL;
97 newname = capdecode(talloc_tos(), result->d_name);
98 if (!newname) {
99 return NULL;
101 DEBUG(3,("cap: cap_readdir: %s\n", newname));
102 newnamelen = strlen(newname)+1;
103 newdirent = talloc_size(
104 talloc_tos(), sizeof(struct dirent) + newnamelen);
105 if (!newdirent) {
106 return NULL;
108 talloc_set_name_const(newdirent, "struct dirent");
109 memcpy(newdirent, result, sizeof(struct dirent));
110 memcpy(&newdirent->d_name, newname, newnamelen);
111 return newdirent;
114 static int cap_mkdir(vfs_handle_struct *handle,
115 const struct smb_filename *smb_fname,
116 mode_t mode)
118 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
119 struct smb_filename *cap_smb_fname = NULL;
121 if (!cappath) {
122 errno = ENOMEM;
123 return -1;
126 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
127 cappath,
128 NULL,
129 NULL,
130 smb_fname->flags);
131 if (cap_smb_fname == NULL) {
132 TALLOC_FREE(cappath);
133 errno = ENOMEM;
134 return -1;
137 return SMB_VFS_NEXT_MKDIR(handle, cap_smb_fname, mode);
140 static int cap_rmdir(vfs_handle_struct *handle,
141 const struct smb_filename *smb_fname)
143 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
144 struct smb_filename *cap_smb_fname = NULL;
146 if (!cappath) {
147 errno = ENOMEM;
148 return -1;
151 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
152 cappath,
153 NULL,
154 NULL,
155 smb_fname->flags);
156 if (cap_smb_fname == NULL) {
157 TALLOC_FREE(cappath);
158 errno = ENOMEM;
159 return -1;
162 return SMB_VFS_NEXT_RMDIR(handle, cap_smb_fname);
165 static int cap_open(vfs_handle_struct *handle, struct smb_filename *smb_fname,
166 files_struct *fsp, int flags, mode_t mode)
168 char *cappath;
169 char *tmp_base_name = NULL;
170 int ret;
172 cappath = capencode(talloc_tos(), smb_fname->base_name);
174 if (!cappath) {
175 errno = ENOMEM;
176 return -1;
179 tmp_base_name = smb_fname->base_name;
180 smb_fname->base_name = cappath;
182 DEBUG(3,("cap: cap_open for %s\n", smb_fname_str_dbg(smb_fname)));
183 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
185 smb_fname->base_name = tmp_base_name;
186 TALLOC_FREE(cappath);
188 return ret;
191 static int cap_rename(vfs_handle_struct *handle,
192 const struct smb_filename *smb_fname_src,
193 const struct smb_filename *smb_fname_dst)
195 char *capold = NULL;
196 char *capnew = NULL;
197 struct smb_filename *smb_fname_src_tmp = NULL;
198 struct smb_filename *smb_fname_dst_tmp = NULL;
199 int ret = -1;
201 capold = capencode(talloc_tos(), smb_fname_src->base_name);
202 capnew = capencode(talloc_tos(), smb_fname_dst->base_name);
203 if (!capold || !capnew) {
204 errno = ENOMEM;
205 goto out;
208 /* Setup temporary smb_filename structs. */
209 smb_fname_src_tmp = cp_smb_filename(talloc_tos(), smb_fname_src);
210 if (smb_fname_src_tmp == NULL) {
211 errno = ENOMEM;
212 goto out;
214 smb_fname_dst_tmp = cp_smb_filename(talloc_tos(), smb_fname_dst);
215 if (smb_fname_dst_tmp == NULL) {
216 errno = ENOMEM;
217 goto out;
220 smb_fname_src_tmp->base_name = capold;
221 smb_fname_dst_tmp->base_name = capnew;
223 ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp,
224 smb_fname_dst_tmp);
225 out:
226 TALLOC_FREE(capold);
227 TALLOC_FREE(capnew);
228 TALLOC_FREE(smb_fname_src_tmp);
229 TALLOC_FREE(smb_fname_dst_tmp);
231 return ret;
234 static int cap_stat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
236 char *cappath;
237 char *tmp_base_name = NULL;
238 int ret;
240 cappath = capencode(talloc_tos(), smb_fname->base_name);
242 if (!cappath) {
243 errno = ENOMEM;
244 return -1;
247 tmp_base_name = smb_fname->base_name;
248 smb_fname->base_name = cappath;
250 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
252 smb_fname->base_name = tmp_base_name;
253 TALLOC_FREE(cappath);
255 return ret;
258 static int cap_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname)
260 char *cappath;
261 char *tmp_base_name = NULL;
262 int ret;
264 cappath = capencode(talloc_tos(), smb_fname->base_name);
266 if (!cappath) {
267 errno = ENOMEM;
268 return -1;
271 tmp_base_name = smb_fname->base_name;
272 smb_fname->base_name = cappath;
274 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
276 smb_fname->base_name = tmp_base_name;
277 TALLOC_FREE(cappath);
279 return ret;
282 static int cap_unlink(vfs_handle_struct *handle,
283 const struct smb_filename *smb_fname)
285 struct smb_filename *smb_fname_tmp = NULL;
286 char *cappath = NULL;
287 int ret;
289 cappath = capencode(talloc_tos(), smb_fname->base_name);
290 if (!cappath) {
291 errno = ENOMEM;
292 return -1;
295 /* Setup temporary smb_filename structs. */
296 smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
297 if (smb_fname_tmp == NULL) {
298 errno = ENOMEM;
299 return -1;
302 smb_fname_tmp->base_name = cappath;
304 ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname_tmp);
306 TALLOC_FREE(smb_fname_tmp);
307 return ret;
310 static int cap_chmod(vfs_handle_struct *handle,
311 const struct smb_filename *smb_fname,
312 mode_t mode)
314 struct smb_filename *cap_smb_fname = NULL;
315 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
316 int ret;
317 int saved_errno;
319 if (!cappath) {
320 errno = ENOMEM;
321 return -1;
324 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
325 cappath,
326 NULL,
327 NULL,
328 smb_fname->flags);
329 if (cap_smb_fname == NULL) {
330 TALLOC_FREE(cappath);
331 errno = ENOMEM;
332 return -1;
335 ret = SMB_VFS_NEXT_CHMOD(handle, cap_smb_fname, mode);
336 saved_errno = errno;
337 TALLOC_FREE(cappath);
338 TALLOC_FREE(cap_smb_fname);
339 errno = saved_errno;
340 return ret;
343 static int cap_chown(vfs_handle_struct *handle,
344 const struct smb_filename *smb_fname,
345 uid_t uid,
346 gid_t gid)
348 struct smb_filename *cap_smb_fname = NULL;
349 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
350 int ret;
351 int saved_errno;
353 if (!cappath) {
354 errno = ENOMEM;
355 return -1;
358 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
359 cappath,
360 NULL,
361 NULL,
362 smb_fname->flags);
363 if (cap_smb_fname == NULL) {
364 TALLOC_FREE(cappath);
365 errno = ENOMEM;
366 return -1;
369 ret = SMB_VFS_NEXT_CHOWN(handle, cap_smb_fname, uid, gid);
370 saved_errno = errno;
371 TALLOC_FREE(cappath);
372 TALLOC_FREE(cap_smb_fname);
373 errno = saved_errno;
374 return ret;
377 static int cap_lchown(vfs_handle_struct *handle,
378 const struct smb_filename *smb_fname,
379 uid_t uid,
380 gid_t gid)
382 struct smb_filename *cap_smb_fname = NULL;
383 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
384 int ret;
385 int saved_errno;
387 if (!cappath) {
388 errno = ENOMEM;
389 return -1;
392 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
393 cappath,
394 NULL,
395 NULL,
396 smb_fname->flags);
397 if (cap_smb_fname == NULL) {
398 TALLOC_FREE(cappath);
399 errno = ENOMEM;
400 return -1;
403 ret = SMB_VFS_NEXT_LCHOWN(handle, cap_smb_fname, uid, gid);
404 saved_errno = errno;
405 TALLOC_FREE(cappath);
406 TALLOC_FREE(cap_smb_fname);
407 errno = saved_errno;
408 return ret;
411 static int cap_chdir(vfs_handle_struct *handle, const char *path)
413 char *cappath = capencode(talloc_tos(), path);
415 if (!cappath) {
416 errno = ENOMEM;
417 return -1;
419 DEBUG(3,("cap: cap_chdir for %s\n", path));
420 return SMB_VFS_NEXT_CHDIR(handle, cappath);
423 static int cap_ntimes(vfs_handle_struct *handle,
424 const struct smb_filename *smb_fname,
425 struct smb_file_time *ft)
427 struct smb_filename *smb_fname_tmp = NULL;
428 char *cappath = NULL;
429 int ret;
431 cappath = capencode(talloc_tos(), smb_fname->base_name);
433 if (!cappath) {
434 errno = ENOMEM;
435 return -1;
438 /* Setup temporary smb_filename structs. */
439 smb_fname_tmp = cp_smb_filename(talloc_tos(), smb_fname);
440 if (smb_fname_tmp == NULL) {
441 errno = ENOMEM;
442 return -1;
445 smb_fname_tmp->base_name = cappath;
447 ret = SMB_VFS_NEXT_NTIMES(handle, smb_fname_tmp, ft);
449 TALLOC_FREE(smb_fname_tmp);
450 return ret;
454 static int cap_symlink(vfs_handle_struct *handle, const char *oldpath,
455 const char *newpath)
457 char *capold = capencode(talloc_tos(), oldpath);
458 char *capnew = capencode(talloc_tos(), newpath);
460 if (!capold || !capnew) {
461 errno = ENOMEM;
462 return -1;
464 return SMB_VFS_NEXT_SYMLINK(handle, capold, capnew);
467 static int cap_readlink(vfs_handle_struct *handle, const char *path,
468 char *buf, size_t bufsiz)
470 char *cappath = capencode(talloc_tos(), path);
472 if (!cappath) {
473 errno = ENOMEM;
474 return -1;
476 return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
479 static int cap_link(vfs_handle_struct *handle, const char *oldpath, const char *newpath)
481 char *capold = capencode(talloc_tos(), oldpath);
482 char *capnew = capencode(talloc_tos(), newpath);
484 if (!capold || !capnew) {
485 errno = ENOMEM;
486 return -1;
488 return SMB_VFS_NEXT_LINK(handle, capold, capnew);
491 static int cap_mknod(vfs_handle_struct *handle, const char *path, mode_t mode, SMB_DEV_T dev)
493 char *cappath = capencode(talloc_tos(), path);
495 if (!cappath) {
496 errno = ENOMEM;
497 return -1;
499 return SMB_VFS_NEXT_MKNOD(handle, cappath, mode, dev);
502 static char *cap_realpath(vfs_handle_struct *handle, const char *path)
504 /* monyo need capencode'ed and capdecode'ed? */
505 char *cappath = capencode(talloc_tos(), path);
507 if (!cappath) {
508 errno = ENOMEM;
509 return NULL;
511 return SMB_VFS_NEXT_REALPATH(handle, cappath);
514 static int cap_chmod_acl(vfs_handle_struct *handle,
515 const struct smb_filename *smb_fname,
516 mode_t mode)
518 struct smb_filename *cap_smb_fname = NULL;
519 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
520 int ret;
521 int saved_errno;
523 /* If the underlying VFS doesn't have ACL support... */
524 if (!cappath) {
525 errno = ENOMEM;
526 return -1;
528 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
529 cappath,
530 NULL,
531 NULL,
532 smb_fname->flags);
533 if (cap_smb_fname == NULL) {
534 TALLOC_FREE(cappath);
535 errno = ENOMEM;
536 return -1;
539 ret = SMB_VFS_NEXT_CHMOD_ACL(handle, cap_smb_fname, mode);
540 saved_errno = errno;
541 TALLOC_FREE(cappath);
542 TALLOC_FREE(cap_smb_fname);
543 errno = saved_errno;
544 return ret;
547 static SMB_ACL_T cap_sys_acl_get_file(vfs_handle_struct *handle,
548 const struct smb_filename *smb_fname,
549 SMB_ACL_TYPE_T type,
550 TALLOC_CTX *mem_ctx)
552 struct smb_filename *cap_smb_fname = NULL;
553 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
554 SMB_ACL_T ret;
555 int saved_errno = 0;
557 if (!cappath) {
558 errno = ENOMEM;
559 return (SMB_ACL_T)NULL;
561 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
562 cappath,
563 NULL,
564 NULL,
565 smb_fname->flags);
566 if (cap_smb_fname == NULL) {
567 TALLOC_FREE(cappath);
568 errno = ENOMEM;
569 return (SMB_ACL_T)NULL;
571 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cap_smb_fname,
572 type, mem_ctx);
573 if (ret == NULL) {
574 saved_errno = errno;
576 TALLOC_FREE(cappath);
577 TALLOC_FREE(cap_smb_fname);
578 if (saved_errno != 0) {
579 errno = saved_errno;
581 return ret;
584 static int cap_sys_acl_set_file(vfs_handle_struct *handle,
585 const struct smb_filename *smb_fname,
586 SMB_ACL_TYPE_T acltype,
587 SMB_ACL_T theacl)
589 struct smb_filename *cap_smb_fname = NULL;
590 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
591 int ret;
592 int saved_errno = 0;
594 if (!cappath) {
595 errno = ENOMEM;
596 return -1;
598 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
599 cappath,
600 NULL,
601 NULL,
602 smb_fname->flags);
603 if (cap_smb_fname == NULL) {
604 TALLOC_FREE(cappath);
605 errno = ENOMEM;
606 return -1;
608 ret = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cap_smb_fname,
609 acltype, theacl);
610 if (ret == -1) {
611 saved_errno = errno;
613 TALLOC_FREE(cappath);
614 TALLOC_FREE(cap_smb_fname);
615 if (saved_errno != 0) {
616 errno = saved_errno;
618 return ret;
621 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle,
622 const struct smb_filename *smb_fname)
624 struct smb_filename *cap_smb_fname = NULL;
625 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
626 int ret;
627 int saved_errno = 0;
629 if (!cappath) {
630 errno = ENOMEM;
631 return -1;
633 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
634 cappath,
635 NULL,
636 NULL,
637 smb_fname->flags);
638 if (cap_smb_fname == NULL) {
639 TALLOC_FREE(cappath);
640 errno = ENOMEM;
641 return -1;
643 ret = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cap_smb_fname);
644 if (ret == -1) {
645 saved_errno = errno;
647 TALLOC_FREE(cappath);
648 TALLOC_FREE(cap_smb_fname);
649 if (saved_errno) {
650 errno = saved_errno;
652 return ret;
655 static ssize_t cap_getxattr(vfs_handle_struct *handle,
656 const struct smb_filename *smb_fname,
657 const char *name,
658 void *value,
659 size_t size)
661 struct smb_filename *cap_smb_fname = NULL;
662 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
663 char *capname = capencode(talloc_tos(), name);
664 ssize_t ret;
665 int saved_errno = 0;
667 if (!cappath || !capname) {
668 errno = ENOMEM;
669 return -1;
671 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
672 cappath,
673 NULL,
674 NULL,
675 smb_fname->flags);
676 if (cap_smb_fname == NULL) {
677 TALLOC_FREE(cappath);
678 TALLOC_FREE(capname);
679 errno = ENOMEM;
680 return -1;
682 ret = SMB_VFS_NEXT_GETXATTR(handle, cap_smb_fname,
683 capname, value, size);
684 if (ret == -1) {
685 saved_errno = errno;
687 TALLOC_FREE(cappath);
688 TALLOC_FREE(capname);
689 TALLOC_FREE(cap_smb_fname);
690 if (saved_errno) {
691 errno = saved_errno;
693 return ret;
696 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
698 char *cappath = capencode(talloc_tos(), path);
700 if (!cappath) {
701 errno = ENOMEM;
702 return -1;
704 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
707 static ssize_t cap_listxattr(vfs_handle_struct *handle,
708 const struct smb_filename *smb_fname,
709 char *list,
710 size_t size)
712 struct smb_filename *cap_smb_fname = NULL;
713 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
714 ssize_t ret;
715 int saved_errno = 0;
717 if (!cappath) {
718 errno = ENOMEM;
719 return -1;
721 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
722 cappath,
723 NULL,
724 NULL,
725 smb_fname->flags);
726 if (cap_smb_fname == NULL) {
727 TALLOC_FREE(cappath);
728 errno = ENOMEM;
729 return -1;
731 ret = SMB_VFS_NEXT_LISTXATTR(handle, cap_smb_fname, list, size);
732 if (ret == -1) {
733 saved_errno = errno;
735 TALLOC_FREE(cappath);
736 TALLOC_FREE(cap_smb_fname);
737 if (saved_errno) {
738 errno = saved_errno;
740 return ret;
743 static int cap_removexattr(vfs_handle_struct *handle,
744 const struct smb_filename *smb_fname,
745 const char *name)
747 struct smb_filename *cap_smb_fname = NULL;
748 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
749 char *capname = capencode(talloc_tos(), name);
750 int ret;
751 int saved_errno = 0;
753 if (!cappath || !capname) {
754 errno = ENOMEM;
755 return -1;
757 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
758 cappath,
759 NULL,
760 NULL,
761 smb_fname->flags);
762 if (cap_smb_fname == NULL) {
763 TALLOC_FREE(cappath);
764 TALLOC_FREE(capname);
765 errno = ENOMEM;
766 return -1;
768 ret = SMB_VFS_NEXT_REMOVEXATTR(handle, cap_smb_fname, capname);
769 if (ret == -1) {
770 saved_errno = errno;
772 TALLOC_FREE(cappath);
773 TALLOC_FREE(capname);
774 TALLOC_FREE(cap_smb_fname);
775 if (saved_errno) {
776 errno = saved_errno;
778 return ret;
781 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
783 char *cappath = capencode(talloc_tos(), path);
785 if (!cappath) {
786 errno = ENOMEM;
787 return -1;
789 return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
792 static int cap_setxattr(vfs_handle_struct *handle,
793 const struct smb_filename *smb_fname,
794 const char *name,
795 const void *value,
796 size_t size,
797 int flags)
799 struct smb_filename *cap_smb_fname = NULL;
800 char *cappath = capencode(talloc_tos(), smb_fname->base_name);
801 char *capname = capencode(talloc_tos(), name);
802 int ret;
803 int saved_errno = 0;
805 if (!cappath || !capname) {
806 errno = ENOMEM;
807 return -1;
809 cap_smb_fname = synthetic_smb_fname(talloc_tos(),
810 cappath,
811 NULL,
812 NULL,
813 smb_fname->flags);
814 if (cap_smb_fname == NULL) {
815 TALLOC_FREE(cappath);
816 TALLOC_FREE(capname);
817 errno = ENOMEM;
818 return -1;
820 ret = SMB_VFS_NEXT_SETXATTR(handle, cap_smb_fname,
821 capname, value, size, flags);
822 if (ret == -1) {
823 saved_errno = errno;
825 TALLOC_FREE(cappath);
826 TALLOC_FREE(capname);
827 TALLOC_FREE(cap_smb_fname);
828 if (saved_errno) {
829 errno = saved_errno;
831 return ret;
834 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
836 char *cappath = capencode(talloc_tos(), path);
838 if (!cappath) {
839 errno = ENOMEM;
840 return -1;
842 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
845 static struct vfs_fn_pointers vfs_cap_fns = {
846 .disk_free_fn = cap_disk_free,
847 .get_quota_fn = cap_get_quota,
848 .opendir_fn = cap_opendir,
849 .readdir_fn = cap_readdir,
850 .mkdir_fn = cap_mkdir,
851 .rmdir_fn = cap_rmdir,
852 .open_fn = cap_open,
853 .rename_fn = cap_rename,
854 .stat_fn = cap_stat,
855 .lstat_fn = cap_lstat,
856 .unlink_fn = cap_unlink,
857 .chmod_fn = cap_chmod,
858 .chown_fn = cap_chown,
859 .lchown_fn = cap_lchown,
860 .chdir_fn = cap_chdir,
861 .ntimes_fn = cap_ntimes,
862 .symlink_fn = cap_symlink,
863 .readlink_fn = cap_readlink,
864 .link_fn = cap_link,
865 .mknod_fn = cap_mknod,
866 .realpath_fn = cap_realpath,
867 .chmod_acl_fn = cap_chmod_acl,
868 .sys_acl_get_file_fn = cap_sys_acl_get_file,
869 .sys_acl_set_file_fn = cap_sys_acl_set_file,
870 .sys_acl_delete_def_file_fn = cap_sys_acl_delete_def_file,
871 .getxattr_fn = cap_getxattr,
872 .fgetxattr_fn = cap_fgetxattr,
873 .listxattr_fn = cap_listxattr,
874 .removexattr_fn = cap_removexattr,
875 .fremovexattr_fn = cap_fremovexattr,
876 .setxattr_fn = cap_setxattr,
877 .fsetxattr_fn = cap_fsetxattr
880 NTSTATUS vfs_cap_init(TALLOC_CTX *);
881 NTSTATUS vfs_cap_init(TALLOC_CTX *ctx)
883 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
884 &vfs_cap_fns);
887 /* For CAP functions */
888 #define hex_tag ':'
889 #define hex2bin(c) hex2bin_table[(unsigned char)(c)]
890 #define bin2hex(c) bin2hex_table[(unsigned char)(c)]
891 #define is_hex(s) ((s)[0] == hex_tag)
893 static unsigned char hex2bin_table[256] = {
894 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
895 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
896 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
897 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
898 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
899 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
900 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
901 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
902 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
903 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
904 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
905 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
906 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
907 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
908 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
909 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
910 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
911 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xf0 */
913 static unsigned char bin2hex_table[256] = "0123456789abcdef";
915 /*******************************************************************
916 original code -> ":xx" - CAP format
917 ********************************************************************/
919 static char *capencode(TALLOC_CTX *ctx, const char *from)
921 char *out = NULL;
922 const char *p1;
923 char *to = NULL;
924 size_t len = 0;
926 for (p1 = from; *p1; p1++) {
927 if ((unsigned char)*p1 >= 0x80) {
928 len += 3;
929 } else {
930 len++;
933 len++;
935 to = talloc_array(ctx, char, len);
936 if (!to) {
937 return NULL;
940 for (out = to; *from;) {
941 /* buffer husoku error */
942 if ((unsigned char)*from >= 0x80) {
943 *out++ = hex_tag;
944 *out++ = bin2hex (((*from)>>4)&0x0f);
945 *out++ = bin2hex ((*from)&0x0f);
946 from++;
947 } else {
948 *out++ = *from++;
951 *out = '\0';
952 return to;
955 /*******************************************************************
956 CAP -> original code
957 ********************************************************************/
958 /* ":xx" -> a byte */
960 static char *capdecode(TALLOC_CTX *ctx, const char *from)
962 const char *p1;
963 char *out = NULL;
964 char *to = NULL;
965 size_t len = 0;
967 for (p1 = from; *p1; len++) {
968 if (is_hex(p1)) {
969 p1 += 3;
970 } else {
971 p1++;
974 len++;
976 to = talloc_array(ctx, char, len);
977 if (!to) {
978 return NULL;
981 for (out = to; *from;) {
982 if (is_hex(from)) {
983 *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
984 from += 3;
985 } else {
986 *out++ = *from++;
989 *out = '\0';
990 return to;