⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vfs_cap.c

📁 samba-3.0.22.tar.gz 编译smb服务器的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
        return SMB_VFS_NEXT_GETXATTR(handle, conn, cappath, capname, value, size);}static ssize_t cap_lgetxattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, const char *name, void *value, size_tsize){        pstring cappath, capname;	capencode(cappath, path);	capencode(capname, name);        return SMB_VFS_NEXT_LGETXATTR(handle, conn, cappath, capname, value, size);}static ssize_t cap_fgetxattr(vfs_handle_struct *handle, struct files_struct *fsp,int fd, const char *name, void *value, size_t size){        pstring capname;	capencode(capname, name);        return SMB_VFS_NEXT_FGETXATTR(handle, fsp, fd, capname, value, size);}static ssize_t cap_listxattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, char *list, size_t size){        pstring cappath;	capencode(cappath, path);        return SMB_VFS_NEXT_LISTXATTR(handle, conn, cappath, list, size);}static ssize_t cap_llistxattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, char *list, size_t size){        pstring cappath;	capencode(cappath, path);        return SMB_VFS_NEXT_LLISTXATTR(handle, conn, cappath, list, size);}static int cap_removexattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, const char *name){        pstring cappath, capname;	capencode(cappath, path);	capencode(capname, name);        return SMB_VFS_NEXT_REMOVEXATTR(handle, conn, cappath, capname);}static int cap_lremovexattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, const char *name){        pstring cappath, capname;	capencode(cappath, path);	capencode(capname, name);        return SMB_VFS_NEXT_LREMOVEXATTR(handle, conn, cappath, capname);}static int cap_fremovexattr(vfs_handle_struct *handle, struct files_struct *fsp,int fd, const char *name){        pstring capname;	capencode(capname, name);        return SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, fd, capname);}static int cap_setxattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, const char *name, const void *value, size_t size, int flags){        pstring cappath, capname;	capencode(cappath, path);	capencode(capname, name);        return SMB_VFS_NEXT_SETXATTR(handle, conn, cappath, capname, value, size, flags);}static int cap_lsetxattr(vfs_handle_struct *handle, struct connection_struct *conn,const char *path, const char *name, const void *value, size_t size, int flags){        pstring cappath, capname;	capencode(cappath, path);	capencode(capname, name);        return SMB_VFS_NEXT_LSETXATTR(handle, conn, cappath, capname, value, size, flags);}static int cap_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp,int fd, const char *name, const void *value, size_t size, int flags){        pstring capname;	capencode(capname, name);        return SMB_VFS_NEXT_FSETXATTR(handle, fsp, fd, capname, value, size, flags);}/* VFS operations structure */static vfs_op_tuple cap_op_tuples[] = {	/* Disk operations */	{SMB_VFS_OP(cap_disk_free),			SMB_VFS_OP_DISK_FREE,		SMB_VFS_LAYER_TRANSPARENT},		/* Directory operations */	{SMB_VFS_OP(cap_opendir),			SMB_VFS_OP_OPENDIR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_readdir),			SMB_VFS_OP_READDIR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_mkdir),			SMB_VFS_OP_MKDIR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_rmdir),			SMB_VFS_OP_RMDIR,		SMB_VFS_LAYER_TRANSPARENT},	/* File operations */	{SMB_VFS_OP(cap_open),				SMB_VFS_OP_OPEN,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_rename),			SMB_VFS_OP_RENAME,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_stat),				SMB_VFS_OP_STAT,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_lstat),			SMB_VFS_OP_LSTAT,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_unlink),			SMB_VFS_OP_UNLINK,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_chmod),			SMB_VFS_OP_CHMOD,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_chown),			SMB_VFS_OP_CHOWN,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_chdir),			SMB_VFS_OP_CHDIR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_utime),			SMB_VFS_OP_UTIME,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_symlink),			SMB_VFS_OP_SYMLINK,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_readlink),			SMB_VFS_OP_READLINK,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_link),				SMB_VFS_OP_LINK,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_mknod),			SMB_VFS_OP_MKNOD,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_realpath),			SMB_VFS_OP_REALPATH,		SMB_VFS_LAYER_TRANSPARENT},	/* NT File ACL operations */	{SMB_VFS_OP(cap_set_nt_acl),			SMB_VFS_OP_SET_NT_ACL,		SMB_VFS_LAYER_TRANSPARENT},	/* POSIX ACL operations */	{SMB_VFS_OP(cap_chmod_acl),			SMB_VFS_OP_CHMOD_ACL,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_sys_acl_get_file),		SMB_VFS_OP_SYS_ACL_GET_FILE,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_sys_acl_set_file),		SMB_VFS_OP_SYS_ACL_SET_FILE,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_sys_acl_delete_def_file),	SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,	SMB_VFS_LAYER_TRANSPARENT},		/* EA operations. */	{SMB_VFS_OP(cap_getxattr),			SMB_VFS_OP_GETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_lgetxattr),			SMB_VFS_OP_LGETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_fgetxattr),			SMB_VFS_OP_FGETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_listxattr),			SMB_VFS_OP_LISTXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_llistxattr),			SMB_VFS_OP_LLISTXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_removexattr),			SMB_VFS_OP_REMOVEXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_lremovexattr),			SMB_VFS_OP_LREMOVEXATTR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_fremovexattr),			SMB_VFS_OP_FREMOVEXATTR,		SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_setxattr),			SMB_VFS_OP_SETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_lsetxattr),			SMB_VFS_OP_LSETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{SMB_VFS_OP(cap_fsetxattr),			SMB_VFS_OP_FSETXATTR,			SMB_VFS_LAYER_TRANSPARENT},	{NULL,						SMB_VFS_OP_NOOP,			SMB_VFS_LAYER_NOOP}};NTSTATUS vfs_cap_init(void){	return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "cap", cap_op_tuples);}/* For CAP functions */#define hex_tag ':'#define hex2bin(c)		hex2bin_table[(unsigned char)(c)]#define bin2hex(c)		bin2hex_table[(unsigned char)(c)]#define is_hex(s)		((s)[0] == hex_tag)static unsigned char hex2bin_table[256] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 0x30 */0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x40 */0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */0000, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0000, /* 0x60 */0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  /* 0xf0 */};static unsigned char bin2hex_table[256] = "0123456789abcdef";/*******************************************************************  original code -> ":xx"  - CAP format********************************************************************/static char *capencode(char *to, const char *from){  pstring cvtbuf;  char *out;  if (to == from) {    from = pstrcpy ((char *) cvtbuf, from);  }  for (out = to; *from && (out - to < sizeof(pstring)-7);) {    /* buffer husoku error */    if ((unsigned char)*from >= 0x80) {      *out++ = hex_tag;      *out++ = bin2hex (((*from)>>4)&0x0f);      *out++ = bin2hex ((*from)&0x0f);      from++;    }     else {      *out++ = *from++;    }  }  *out = '\0';  return to;}/*******************************************************************  CAP -> original code********************************************************************//* ":xx" -> a byte */static char *capdecode(char *to, const char *from){  pstring cvtbuf;  char *out;  if (to == from) {    from = pstrcpy ((char *) cvtbuf, from);  }  for (out = to; *from && (out - to < sizeof(pstring)-3);) {    if (is_hex(from)) {      *out++ = (hex2bin (from[1])<<4) | (hex2bin (from[2]));      from += 3;    } else {      *out++ = *from++;    }  }  *out = '\0';  return to;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -