s3-utils/net_rpc_printer.c: print more info on write error
[Samba/gebeck_regimport.git] / source3 / modules / vfs_cap.c
blob15bebf6fea020f147fc49ff2494a828be235b4d0
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 SMB_STRUCT_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 SMB_STRUCT_DIRENT *cap_readdir(vfs_handle_struct *handle,
58 SMB_STRUCT_DIR *dirp,
59 SMB_STRUCT_STAT *sbuf)
61 SMB_STRUCT_DIRENT *result;
62 SMB_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 = (SMB_STRUCT_DIRENT *)talloc_array(talloc_tos(),
79 char,
80 sizeof(SMB_STRUCT_DIRENT)+
81 newnamelen);
82 if (!newdirent) {
83 return NULL;
85 memcpy(newdirent, result, sizeof(SMB_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, const char *path, SMB_ACL_TYPE_T type)
414 char *cappath = capencode(talloc_tos(), path);
416 if (!cappath) {
417 errno = ENOMEM;
418 return (SMB_ACL_T)NULL;
420 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, cappath, type);
423 static int cap_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
425 char *cappath = capencode(talloc_tos(), path);
427 if (!cappath) {
428 errno = ENOMEM;
429 return -1;
431 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, cappath, acltype, theacl);
434 static int cap_sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path)
436 char *cappath = capencode(talloc_tos(), path);
438 if (!cappath) {
439 errno = ENOMEM;
440 return -1;
442 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, cappath);
445 static ssize_t cap_getxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t size)
447 char *cappath = capencode(talloc_tos(), path);
448 char *capname = capencode(talloc_tos(), name);
450 if (!cappath || !capname) {
451 errno = ENOMEM;
452 return -1;
454 return SMB_VFS_NEXT_GETXATTR(handle, cappath, capname, value, size);
457 static ssize_t cap_lgetxattr(vfs_handle_struct *handle, const char *path, const char *name, void *value, size_t
458 size)
460 char *cappath = capencode(talloc_tos(), path);
461 char *capname = capencode(talloc_tos(), name);
463 if (!cappath || !capname) {
464 errno = ENOMEM;
465 return -1;
467 return SMB_VFS_NEXT_LGETXATTR(handle, cappath, capname, value, size);
470 static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, void *value, size_t size)
472 char *cappath = capencode(talloc_tos(), path);
474 if (!cappath) {
475 errno = ENOMEM;
476 return -1;
478 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, cappath, value, size);
481 static ssize_t cap_listxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
483 char *cappath = capencode(talloc_tos(), path);
485 if (!cappath) {
486 errno = ENOMEM;
487 return -1;
489 return SMB_VFS_NEXT_LISTXATTR(handle, cappath, list, size);
492 static ssize_t cap_llistxattr(vfs_handle_struct *handle, const char *path, char *list, size_t size)
494 char *cappath = capencode(talloc_tos(), path);
496 if (!cappath) {
497 errno = ENOMEM;
498 return -1;
500 return SMB_VFS_NEXT_LLISTXATTR(handle, cappath, list, size);
503 static int cap_removexattr(vfs_handle_struct *handle, const char *path, const char *name)
505 char *cappath = capencode(talloc_tos(), path);
506 char *capname = capencode(talloc_tos(), name);
508 if (!cappath || !capname) {
509 errno = ENOMEM;
510 return -1;
512 return SMB_VFS_NEXT_REMOVEXATTR(handle, cappath, capname);
515 static int cap_lremovexattr(vfs_handle_struct *handle, const char *path, const char *name)
517 char *cappath = capencode(talloc_tos(), path);
518 char *capname = capencode(talloc_tos(), name);
520 if (!cappath || !capname) {
521 errno = ENOMEM;
522 return -1;
524 return SMB_VFS_NEXT_LREMOVEXATTR(handle, cappath, capname);
527 static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path)
529 char *cappath = capencode(talloc_tos(), path);
531 if (!cappath) {
532 errno = ENOMEM;
533 return -1;
535 return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, cappath);
538 static int cap_setxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
540 char *cappath = capencode(talloc_tos(), path);
541 char *capname = capencode(talloc_tos(), name);
543 if (!cappath || !capname) {
544 errno = ENOMEM;
545 return -1;
547 return SMB_VFS_NEXT_SETXATTR(handle, cappath, capname, value, size, flags);
550 static int cap_lsetxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags)
552 char *cappath = capencode(talloc_tos(), path);
553 char *capname = capencode(talloc_tos(), name);
555 if (!cappath || !capname) {
556 errno = ENOMEM;
557 return -1;
559 return SMB_VFS_NEXT_LSETXATTR(handle, cappath, capname, value, size, flags);
562 static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *path, const void *value, size_t size, int flags)
564 char *cappath = capencode(talloc_tos(), path);
566 if (!cappath) {
567 errno = ENOMEM;
568 return -1;
570 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, cappath, value, size, flags);
573 static struct vfs_fn_pointers vfs_cap_fns = {
574 .disk_free = cap_disk_free,
575 .opendir = cap_opendir,
576 .readdir = cap_readdir,
577 .mkdir = cap_mkdir,
578 .rmdir = cap_rmdir,
579 .open_fn = cap_open,
580 .rename = cap_rename,
581 .stat = cap_stat,
582 .lstat = cap_lstat,
583 .unlink = cap_unlink,
584 .chmod = cap_chmod,
585 .chown = cap_chown,
586 .lchown = cap_lchown,
587 .chdir = cap_chdir,
588 .ntimes = cap_ntimes,
589 .symlink = cap_symlink,
590 .vfs_readlink = cap_readlink,
591 .link = cap_link,
592 .mknod = cap_mknod,
593 .realpath = cap_realpath,
594 .chmod_acl = cap_chmod_acl,
595 .sys_acl_get_file = cap_sys_acl_get_file,
596 .sys_acl_set_file = cap_sys_acl_set_file,
597 .sys_acl_delete_def_file = cap_sys_acl_delete_def_file,
598 .getxattr = cap_getxattr,
599 .lgetxattr = cap_lgetxattr,
600 .fgetxattr = cap_fgetxattr,
601 .listxattr = cap_listxattr,
602 .llistxattr = cap_llistxattr,
603 .removexattr = cap_removexattr,
604 .lremovexattr = cap_lremovexattr,
605 .fremovexattr = cap_fremovexattr,
606 .setxattr = cap_setxattr,
607 .lsetxattr = cap_lsetxattr,
608 .fsetxattr = cap_fsetxattr
611 NTSTATUS vfs_cap_init(void);
612 NTSTATUS vfs_cap_init(void)
614 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap",
615 &vfs_cap_fns);
618 /* For CAP functions */
619 #define hex_tag ':'
620 #define hex2bin(c) hex2bin_table[(unsigned char)(c)]
621 #define bin2hex(c) bin2hex_table[(unsigned char)(c)]
622 #define is_hex(s) ((s)[0] == hex_tag)
624 static unsigned char hex2bin_table[256] = {
625 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
626 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
627 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
628 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
629 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
630 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
631 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
632 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
633 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
634 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
635 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
636 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
637 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
638 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
639 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
640 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
641 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
642 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xf0 */
644 static unsigned char bin2hex_table[256] = "0123456789abcdef";
646 /*******************************************************************
647 original code -> ":xx" - CAP format
648 ********************************************************************/
650 static char *capencode(TALLOC_CTX *ctx, const char *from)
652 char *out = NULL;
653 const char *p1;
654 char *to = NULL;
655 size_t len = 0;
657 for (p1 = from; *p1; p1++) {
658 if ((unsigned char)*p1 >= 0x80) {
659 len += 3;
660 } else {
661 len++;
664 len++;
666 to = talloc_array(ctx, char, len);
667 if (!to) {
668 return NULL;
671 for (out = to; *from;) {
672 /* buffer husoku error */
673 if ((unsigned char)*from >= 0x80) {
674 *out++ = hex_tag;
675 *out++ = bin2hex (((*from)>>4)&0x0f);
676 *out++ = bin2hex ((*from)&0x0f);
677 from++;
678 } else {
679 *out++ = *from++;
682 *out = '\0';
683 return to;
686 /*******************************************************************
687 CAP -> original code
688 ********************************************************************/
689 /* ":xx" -> a byte */
691 static char *capdecode(TALLOC_CTX *ctx, const char *from)
693 const char *p1;
694 char *out = NULL;
695 char *to = NULL;
696 size_t len = 0;
698 for (p1 = from; *p1; len++) {
699 if (is_hex(p1)) {
700 p1 += 3;
701 } else {
702 p1++;
705 len++;
707 to = talloc_array(ctx, char, len);
708 if (!to) {
709 return NULL;
712 for (out = to; *from;) {
713 if (is_hex(from)) {
714 *out++ = (hex2bin(from[1])<<4) | (hex2bin(from[2]));
715 from += 3;
716 } else {
717 *out++ = *from++;
720 *out = '\0';
721 return to;