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/>.
28 static char *capencode(TALLOC_CTX
*ctx
, const char *from
);
29 static char *capdecode(TALLOC_CTX
*ctx
, const char *from
);
31 static SMB_BIG_UINT
cap_disk_free(vfs_handle_struct
*handle
, const char *path
,
32 bool small_query
, SMB_BIG_UINT
*bsize
,
33 SMB_BIG_UINT
*dfree
, SMB_BIG_UINT
*dsize
)
35 char *cappath
= capencode(talloc_tos(), path
);
39 return (SMB_BIG_UINT
)-1;
41 return SMB_VFS_NEXT_DISK_FREE(handle
, cappath
, small_query
, bsize
,
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
);
53 return SMB_VFS_NEXT_OPENDIR(handle
, capname
, mask
, attr
);
56 static SMB_STRUCT_DIRENT
*cap_readdir(vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
)
58 SMB_STRUCT_DIRENT
*result
;
59 SMB_STRUCT_DIRENT
*newdirent
;
62 DEBUG(3,("cap: cap_readdir\n"));
64 result
= SMB_VFS_NEXT_READDIR(handle
, dirp
);
69 newname
= capdecode(talloc_tos(), result
->d_name
);
73 DEBUG(3,("cap: cap_readdir: %s\n", newname
));
74 newnamelen
= strlen(newname
)+1;
75 newdirent
= (SMB_STRUCT_DIRENT
*)TALLOC_ARRAY(talloc_tos(),
77 sizeof(SMB_STRUCT_DIRENT
)+
82 memcpy(newdirent
, result
, sizeof(SMB_STRUCT_DIRENT
));
83 memcpy(&newdirent
->d_name
, newname
, newnamelen
);
87 static int cap_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
89 char *cappath
= capencode(talloc_tos(), path
);
95 return SMB_VFS_NEXT_MKDIR(handle
, cappath
, mode
);
98 static int cap_rmdir(vfs_handle_struct
*handle
, const char *path
)
100 char *cappath
= capencode(talloc_tos(), path
);
106 return SMB_VFS_NEXT_RMDIR(handle
, cappath
);
109 static int cap_open(vfs_handle_struct
*handle
, const char *fname
, files_struct
*fsp
, int flags
, mode_t mode
)
111 char *cappath
= capencode(talloc_tos(), fname
);
117 DEBUG(3,("cap: cap_open for %s\n", fname
));
118 return SMB_VFS_NEXT_OPEN(handle
, cappath
, fsp
, flags
, mode
);
121 static int cap_rename(vfs_handle_struct
*handle
, const char *oldname
, const char *newname
)
123 char *capold
= capencode(talloc_tos(), oldname
);
124 char *capnew
= capencode(talloc_tos(), newname
);
126 if (!capold
|| !capnew
) {
130 return SMB_VFS_NEXT_RENAME(handle
, capold
, capnew
);
133 static int cap_stat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
)
135 char *cappath
= capencode(talloc_tos(), path
);
141 return SMB_VFS_NEXT_STAT(handle
, cappath
, sbuf
);
144 static int cap_lstat(vfs_handle_struct
*handle
, const char *path
, SMB_STRUCT_STAT
*sbuf
)
146 char *cappath
= capencode(talloc_tos(), path
);
152 return SMB_VFS_NEXT_LSTAT(handle
, cappath
, sbuf
);
155 static int cap_unlink(vfs_handle_struct
*handle
, const char *path
)
157 char *cappath
= capencode(talloc_tos(), path
);
163 return SMB_VFS_NEXT_UNLINK(handle
, cappath
);
166 static int cap_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
168 char *cappath
= capencode(talloc_tos(), path
);
174 return SMB_VFS_NEXT_CHMOD(handle
, cappath
, mode
);
177 static int cap_chown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
179 char *cappath
= capencode(talloc_tos(), path
);
185 return SMB_VFS_NEXT_CHOWN(handle
, cappath
, uid
, gid
);
188 static int cap_lchown(vfs_handle_struct
*handle
, const char *path
, uid_t uid
, gid_t gid
)
190 char *cappath
= capencode(talloc_tos(), path
);
196 return SMB_VFS_NEXT_LCHOWN(handle
, cappath
, uid
, gid
);
199 static int cap_chdir(vfs_handle_struct
*handle
, const char *path
)
201 char *cappath
= capencode(talloc_tos(), path
);
207 DEBUG(3,("cap: cap_chdir for %s\n", path
));
208 return SMB_VFS_NEXT_CHDIR(handle
, cappath
);
211 static int cap_ntimes(vfs_handle_struct
*handle
, const char *path
, const struct timespec ts
[2])
213 char *cappath
= capencode(talloc_tos(), path
);
219 return SMB_VFS_NEXT_NTIMES(handle
, cappath
, ts
);
223 static bool cap_symlink(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
225 char *capold
= capencode(talloc_tos(), oldpath
);
226 char *capnew
= capencode(talloc_tos(), newpath
);
228 if (!capold
|| !capnew
) {
232 return SMB_VFS_NEXT_SYMLINK(handle
, capold
, capnew
);
235 static bool cap_readlink(vfs_handle_struct
*handle
, const char *path
, char *buf
, size_t bufsiz
)
237 char *cappath
= capencode(talloc_tos(), path
);
243 return SMB_VFS_NEXT_READLINK(handle
, cappath
, buf
, bufsiz
);
246 static int cap_link(vfs_handle_struct
*handle
, const char *oldpath
, const char *newpath
)
248 char *capold
= capencode(talloc_tos(), oldpath
);
249 char *capnew
= capencode(talloc_tos(), newpath
);
251 if (!capold
|| !capnew
) {
255 return SMB_VFS_NEXT_LINK(handle
, capold
, capnew
);
258 static int cap_mknod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
, SMB_DEV_T dev
)
260 char *cappath
= capencode(talloc_tos(), path
);
266 return SMB_VFS_NEXT_MKNOD(handle
, cappath
, mode
, dev
);
269 static char *cap_realpath(vfs_handle_struct
*handle
, const char *path
, char *resolved_path
)
271 /* monyo need capencode'ed and capdecode'ed? */
272 char *cappath
= capencode(talloc_tos(), path
);
278 return SMB_VFS_NEXT_REALPATH(handle
, path
, resolved_path
);
281 static NTSTATUS
cap_set_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, const char *path
, uint32 security_info_sent
, struct security_descriptor
*psd
)
283 char *cappath
= capencode(talloc_tos(), path
);
287 return NT_STATUS_NO_MEMORY
;
289 return SMB_VFS_NEXT_SET_NT_ACL(handle
, fsp
, cappath
, security_info_sent
, psd
);
292 static int cap_chmod_acl(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
294 char *cappath
= capencode(talloc_tos(), path
);
296 /* If the underlying VFS doesn't have ACL support... */
297 if (!handle
->vfs_next
.ops
.chmod_acl
) {
305 return SMB_VFS_NEXT_CHMOD_ACL(handle
, cappath
, mode
);
308 static SMB_ACL_T
cap_sys_acl_get_file(vfs_handle_struct
*handle
, const char *path
, SMB_ACL_TYPE_T type
)
310 char *cappath
= capencode(talloc_tos(), path
);
314 return (SMB_ACL_T
)NULL
;
316 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, cappath
, type
);
319 static int cap_sys_acl_set_file(vfs_handle_struct
*handle
, const char *path
, SMB_ACL_TYPE_T acltype
, SMB_ACL_T theacl
)
321 char *cappath
= capencode(talloc_tos(), path
);
327 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, cappath
, acltype
, theacl
);
330 static int cap_sys_acl_delete_def_file(vfs_handle_struct
*handle
, const char *path
)
332 char *cappath
= capencode(talloc_tos(), path
);
338 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, cappath
);
341 static ssize_t
cap_getxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t size
)
343 char *cappath
= capencode(talloc_tos(), path
);
344 char *capname
= capencode(talloc_tos(), name
);
346 if (!cappath
|| !capname
) {
350 return SMB_VFS_NEXT_GETXATTR(handle
, cappath
, capname
, value
, size
);
353 static ssize_t
cap_lgetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, void *value
, size_t
356 char *cappath
= capencode(talloc_tos(), path
);
357 char *capname
= capencode(talloc_tos(), name
);
359 if (!cappath
|| !capname
) {
363 return SMB_VFS_NEXT_LGETXATTR(handle
, cappath
, capname
, value
, size
);
366 static ssize_t
cap_fgetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *path
, void *value
, size_t size
)
368 char *cappath
= capencode(talloc_tos(), path
);
374 return SMB_VFS_NEXT_FGETXATTR(handle
, fsp
, cappath
, value
, size
);
377 static ssize_t
cap_listxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
379 char *cappath
= capencode(talloc_tos(), path
);
385 return SMB_VFS_NEXT_LISTXATTR(handle
, cappath
, list
, size
);
388 static ssize_t
cap_llistxattr(vfs_handle_struct
*handle
, const char *path
, char *list
, size_t size
)
390 char *cappath
= capencode(talloc_tos(), path
);
396 return SMB_VFS_NEXT_LLISTXATTR(handle
, cappath
, list
, size
);
399 static int cap_removexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
401 char *cappath
= capencode(talloc_tos(), path
);
402 char *capname
= capencode(talloc_tos(), name
);
404 if (!cappath
|| !capname
) {
408 return SMB_VFS_NEXT_REMOVEXATTR(handle
, cappath
, capname
);
411 static int cap_lremovexattr(vfs_handle_struct
*handle
, const char *path
, const char *name
)
413 char *cappath
= capencode(talloc_tos(), path
);
414 char *capname
= capencode(talloc_tos(), name
);
416 if (!cappath
|| !capname
) {
420 return SMB_VFS_NEXT_LREMOVEXATTR(handle
, cappath
, capname
);
423 static int cap_fremovexattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *path
)
425 char *cappath
= capencode(talloc_tos(), path
);
431 return SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, cappath
);
434 static int cap_setxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
436 char *cappath
= capencode(talloc_tos(), path
);
437 char *capname
= capencode(talloc_tos(), name
);
439 if (!cappath
|| !capname
) {
443 return SMB_VFS_NEXT_SETXATTR(handle
, cappath
, capname
, value
, size
, flags
);
446 static int cap_lsetxattr(vfs_handle_struct
*handle
, const char *path
, const char *name
, const void *value
, size_t size
, int flags
)
448 char *cappath
= capencode(talloc_tos(), path
);
449 char *capname
= capencode(talloc_tos(), name
);
451 if (!cappath
|| !capname
) {
455 return SMB_VFS_NEXT_LSETXATTR(handle
, cappath
, capname
, value
, size
, flags
);
458 static int cap_fsetxattr(vfs_handle_struct
*handle
, struct files_struct
*fsp
, const char *path
, const void *value
, size_t size
, int flags
)
460 char *cappath
= capencode(talloc_tos(), path
);
466 return SMB_VFS_NEXT_FSETXATTR(handle
, fsp
, cappath
, value
, size
, flags
);
469 /* VFS operations structure */
471 static vfs_op_tuple cap_op_tuples
[] = {
473 /* Disk operations */
475 {SMB_VFS_OP(cap_disk_free
), SMB_VFS_OP_DISK_FREE
, SMB_VFS_LAYER_TRANSPARENT
},
477 /* Directory operations */
479 {SMB_VFS_OP(cap_opendir
), SMB_VFS_OP_OPENDIR
, SMB_VFS_LAYER_TRANSPARENT
},
480 {SMB_VFS_OP(cap_readdir
), SMB_VFS_OP_READDIR
, SMB_VFS_LAYER_TRANSPARENT
},
481 {SMB_VFS_OP(cap_mkdir
), SMB_VFS_OP_MKDIR
, SMB_VFS_LAYER_TRANSPARENT
},
482 {SMB_VFS_OP(cap_rmdir
), SMB_VFS_OP_RMDIR
, SMB_VFS_LAYER_TRANSPARENT
},
484 /* File operations */
486 {SMB_VFS_OP(cap_open
), SMB_VFS_OP_OPEN
, SMB_VFS_LAYER_TRANSPARENT
},
487 {SMB_VFS_OP(cap_rename
), SMB_VFS_OP_RENAME
, SMB_VFS_LAYER_TRANSPARENT
},
488 {SMB_VFS_OP(cap_stat
), SMB_VFS_OP_STAT
, SMB_VFS_LAYER_TRANSPARENT
},
489 {SMB_VFS_OP(cap_lstat
), SMB_VFS_OP_LSTAT
, SMB_VFS_LAYER_TRANSPARENT
},
490 {SMB_VFS_OP(cap_unlink
), SMB_VFS_OP_UNLINK
, SMB_VFS_LAYER_TRANSPARENT
},
491 {SMB_VFS_OP(cap_chmod
), SMB_VFS_OP_CHMOD
, SMB_VFS_LAYER_TRANSPARENT
},
492 {SMB_VFS_OP(cap_chown
), SMB_VFS_OP_CHOWN
, SMB_VFS_LAYER_TRANSPARENT
},
493 {SMB_VFS_OP(cap_lchown
), SMB_VFS_OP_LCHOWN
, SMB_VFS_LAYER_TRANSPARENT
},
494 {SMB_VFS_OP(cap_chdir
), SMB_VFS_OP_CHDIR
, SMB_VFS_LAYER_TRANSPARENT
},
495 {SMB_VFS_OP(cap_ntimes
), SMB_VFS_OP_NTIMES
, SMB_VFS_LAYER_TRANSPARENT
},
496 {SMB_VFS_OP(cap_symlink
), SMB_VFS_OP_SYMLINK
, SMB_VFS_LAYER_TRANSPARENT
},
497 {SMB_VFS_OP(cap_readlink
), SMB_VFS_OP_READLINK
, SMB_VFS_LAYER_TRANSPARENT
},
498 {SMB_VFS_OP(cap_link
), SMB_VFS_OP_LINK
, SMB_VFS_LAYER_TRANSPARENT
},
499 {SMB_VFS_OP(cap_mknod
), SMB_VFS_OP_MKNOD
, SMB_VFS_LAYER_TRANSPARENT
},
500 {SMB_VFS_OP(cap_realpath
), SMB_VFS_OP_REALPATH
, SMB_VFS_LAYER_TRANSPARENT
},
502 /* NT File ACL operations */
504 {SMB_VFS_OP(cap_set_nt_acl
), SMB_VFS_OP_SET_NT_ACL
, SMB_VFS_LAYER_TRANSPARENT
},
506 /* POSIX ACL operations */
508 {SMB_VFS_OP(cap_chmod_acl
), SMB_VFS_OP_CHMOD_ACL
, SMB_VFS_LAYER_TRANSPARENT
},
510 {SMB_VFS_OP(cap_sys_acl_get_file
), SMB_VFS_OP_SYS_ACL_GET_FILE
, SMB_VFS_LAYER_TRANSPARENT
},
511 {SMB_VFS_OP(cap_sys_acl_set_file
), SMB_VFS_OP_SYS_ACL_SET_FILE
, SMB_VFS_LAYER_TRANSPARENT
},
512 {SMB_VFS_OP(cap_sys_acl_delete_def_file
), SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, SMB_VFS_LAYER_TRANSPARENT
},
515 {SMB_VFS_OP(cap_getxattr
), SMB_VFS_OP_GETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
516 {SMB_VFS_OP(cap_lgetxattr
), SMB_VFS_OP_LGETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
517 {SMB_VFS_OP(cap_fgetxattr
), SMB_VFS_OP_FGETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
518 {SMB_VFS_OP(cap_listxattr
), SMB_VFS_OP_LISTXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
519 {SMB_VFS_OP(cap_llistxattr
), SMB_VFS_OP_LLISTXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
520 {SMB_VFS_OP(cap_removexattr
), SMB_VFS_OP_REMOVEXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
521 {SMB_VFS_OP(cap_lremovexattr
), SMB_VFS_OP_LREMOVEXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
522 {SMB_VFS_OP(cap_fremovexattr
), SMB_VFS_OP_FREMOVEXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
523 {SMB_VFS_OP(cap_setxattr
), SMB_VFS_OP_SETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
524 {SMB_VFS_OP(cap_lsetxattr
), SMB_VFS_OP_LSETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
525 {SMB_VFS_OP(cap_fsetxattr
), SMB_VFS_OP_FSETXATTR
, SMB_VFS_LAYER_TRANSPARENT
},
527 {NULL
, SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
530 NTSTATUS
vfs_cap_init(void);
531 NTSTATUS
vfs_cap_init(void)
533 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "cap", cap_op_tuples
);
536 /* For CAP functions */
538 #define hex2bin(c) hex2bin_table[(unsigned char)(c)]
539 #define bin2hex(c) bin2hex_table[(unsigned char)(c)]
540 #define is_hex(s) ((s)[0] == hex_tag)
542 static unsigned char hex2bin_table
[256] = {
543 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */
544 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */
545 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */
546 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */
547 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */
548 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
549 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */
550 0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */
551 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
552 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */
553 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */
554 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */
555 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */
556 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */
557 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */
558 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */
559 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */
560 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xf0 */
562 static unsigned char bin2hex_table
[256] = "0123456789abcdef";
564 /*******************************************************************
565 original code -> ":xx" - CAP format
566 ********************************************************************/
568 static char *capencode(TALLOC_CTX
*ctx
, const char *from
)
575 for (p1
= from
; *p1
; p1
++) {
576 if ((unsigned char)*p1
>= 0x80) {
584 to
= TALLOC_ARRAY(ctx
, char, len
);
589 for (out
= to
; *from
;) {
590 /* buffer husoku error */
591 if ((unsigned char)*from
>= 0x80) {
593 *out
++ = bin2hex (((*from
)>>4)&0x0f);
594 *out
++ = bin2hex ((*from
)&0x0f);
604 /*******************************************************************
606 ********************************************************************/
607 /* ":xx" -> a byte */
609 static char *capdecode(TALLOC_CTX
*ctx
, const char *from
)
616 for (p1
= from
; *p1
; len
++) {
624 to
= TALLOC_ARRAY(ctx
, char, len
);
629 for (out
= to
; *from
;) {
631 *out
++ = (hex2bin(from
[1])<<4) | (hex2bin(from
[2]));