[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / modules / vfs_irixacl.c
blobd80b34b24b10507c399b4f070b0e74077cde2cd9
1 /*
2 Unix SMB/Netbios implementation.
3 VFS module to get and set irix acls
4 Copyright (C) Michael Adam 2006
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 /* prototypes for private functions first - for clarity */
25 /* public functions - the api */
27 SMB_ACL_T irixacl_sys_acl_get_file(vfs_handle_struct *handle,
28 const char *path_p,
29 SMB_ACL_TYPE_T type)
31 errno = ENOTSUP;
32 return NULL;
35 SMB_ACL_T irixacl_sys_acl_get_fd(vfs_handle_struct *handle,
36 files_struct *fsp,
37 int fd)
39 errno = ENOTSUP;
40 return NULL;
43 int irixacl_sys_acl_set_file(vfs_handle_struct *handle,
44 const char *name,
45 SMB_ACL_TYPE_T type,
46 SMB_ACL_T theacl)
48 errno = ENOTSUP;
49 return -1;
52 int irixacl_sys_acl_set_fd(vfs_handle_struct *handle,
53 files_struct *fsp,
54 int fd, SMB_ACL_T theacl)
56 errno = ENOTSUP;
57 return -1;
60 int irixacl_sys_acl_delete_def_file(vfs_handle_struct *handle,
61 const char *path)
63 errno = ENOTSUP;
64 return -1;
67 /* private functions */
69 /* VFS operations structure */
71 static vfs_op_tuple irixacl_op_tuples[] = {
72 /* Disk operations */
73 {SMB_VFS_OP(irixacl_sys_acl_get_file),
74 SMB_VFS_OP_SYS_ACL_GET_FILE,
75 SMB_VFS_LAYER_TRANSPARENT},
77 {SMB_VFS_OP(irixacl_sys_acl_get_fd),
78 SMB_VFS_OP_SYS_ACL_GET_FD,
79 SMB_VFS_LAYER_TRANSPARENT},
81 {SMB_VFS_OP(irixacl_sys_acl_set_file),
82 SMB_VFS_OP_SYS_ACL_SET_FILE,
83 SMB_VFS_LAYER_TRANSPARENT},
85 {SMB_VFS_OP(irixacl_sys_acl_set_fd),
86 SMB_VFS_OP_SYS_ACL_SET_FD,
87 SMB_VFS_LAYER_TRANSPARENT},
89 {SMB_VFS_OP(irixacl_sys_acl_delete_def_file),
90 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
91 SMB_VFS_LAYER_TRANSPARENT},
93 {SMB_VFS_OP(NULL),
94 SMB_VFS_OP_NOOP,
95 SMB_VFS_LAYER_NOOP}
98 NTSTATUS vfs_irixacl_init(void);
99 NTSTATUS vfs_irixacl_init(void)
101 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "irixacl",
102 irixacl_op_tuples);
105 /* ENTE */