Split smb_get_nt_acl_nfs4 into two (f- and non-f-variant).
[ira/wip.git] / source3 / modules / vfs_zfsacl.c
1 /*
2  * Convert ZFS/NFSv4 acls to NT acls and vice versa.
3  *
4  * Copyright (C) Jiri Sasek, 2007
5  * based on the foobar.c module which is copyrighted by Volker Lendecke
6  *
7  * Many thanks to Axel Apitz for help to fix the special ace's handling
8  * issues.
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  */
24
25 #include "includes.h"
26 #include "nfs4_acls.h"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_VFS
30
31 #define ZFSACL_MODULE_NAME "zfsacl"
32
33 /* zfs_get_nt_acl()
34  * read the local file's acls and return it in NT form
35  * using the NFSv4 format conversion
36  */
37 static NTSTATUS zfs_get_nt_acl(struct files_struct *fsp, uint32 security_info,
38                              struct security_descriptor **ppdesc)
39 {
40         int naces, i;
41         ace_t *acebuf;
42         SMB4ACL_T *pacl;
43         TALLOC_CTX      *mem_ctx;
44
45         /* read the number of file aces */
46         if((naces = acl(fsp->fsp_name, ACE_GETACLCNT, 0, NULL)) == -1) {
47                 if(errno == ENOSYS) {
48                         DEBUG(9, ("acl(ACE_GETACLCNT, %s): Operation is not supported on the filesystem where the file reside"));
49                 } else {
50                         DEBUG(9, ("acl(ACE_GETACLCNT, %s): %s ", fsp->fsp_name,
51                                         strerror(errno)));
52                 }
53                 return map_nt_error_from_unix(errno);
54         }
55         /* allocate the field of ZFS aces */
56         mem_ctx = talloc_tos();
57         acebuf = (ace_t *) talloc_size(mem_ctx, sizeof(ace_t)*naces);
58         if(acebuf == NULL) {
59                 return NT_STATUS_NO_MEMORY;
60         }
61         /* read the aces into the field */
62         if(acl(fsp->fsp_name, ACE_GETACL, naces, acebuf) < 0) {
63                 DEBUG(9, ("acl(ACE_GETACL, %s): %s ", fsp->fsp_name,
64                                 strerror(errno)));
65                 return map_nt_error_from_unix(errno);
66         }
67         /* create SMB4ACL data */
68         if((pacl = smb_create_smb4acl()) == NULL) {
69                 return NT_STATUS_NO_MEMORY;
70         }
71         for(i=0; i<naces; i++) {
72                 SMB_ACE4PROP_T aceprop;
73
74                 aceprop.aceType  = (uint32) acebuf[i].a_type;
75                 aceprop.aceFlags = (uint32) acebuf[i].a_flags;
76                 aceprop.aceMask  = (uint32) acebuf[i].a_access_mask;
77                 aceprop.who.id   = (uint32) acebuf[i].a_who;
78
79                 if(aceprop.aceFlags & ACE_OWNER) {
80                         aceprop.flags = SMB_ACE4_ID_SPECIAL;
81                         aceprop.who.special_id = SMB_ACE4_WHO_OWNER;
82                 } else if(aceprop.aceFlags & ACE_GROUP) {
83                         aceprop.flags = SMB_ACE4_ID_SPECIAL;
84                         aceprop.who.special_id = SMB_ACE4_WHO_GROUP;
85                 } else if(aceprop.aceFlags & ACE_EVERYONE) {
86                         aceprop.flags = SMB_ACE4_ID_SPECIAL;
87                         aceprop.who.special_id = SMB_ACE4_WHO_EVERYONE;
88                 } else {
89                         aceprop.flags   = 0;
90                 }
91                 if(smb_add_ace4(pacl, &aceprop) == NULL)
92                         return NT_STATUS_NO_MEMORY;
93         }
94
95         return smb_fget_nt_acl_nfs4(fsp, security_info, ppdesc, pacl);
96 }
97
98 /* call-back function processing the NT acl -> ZFS acl using NFSv4 conv. */
99 static bool zfs_process_smbacl(files_struct *fsp, SMB4ACL_T *smbacl)
100 {
101         int naces = smb_get_naces(smbacl), i;
102         ace_t *acebuf;
103         SMB4ACE_T *smbace;
104         TALLOC_CTX      *mem_ctx;
105
106         /* allocate the field of ZFS aces */
107         mem_ctx = talloc_tos();
108         acebuf = (ace_t *) talloc_size(mem_ctx, sizeof(ace_t)*naces);
109         if(acebuf == NULL) {
110                 errno = ENOMEM;
111                 return False;
112         }
113         /* handle all aces */
114         for(smbace = smb_first_ace4(smbacl), i = 0;
115                         smbace!=NULL;
116                         smbace = smb_next_ace4(smbace), i++) {
117                 SMB_ACE4PROP_T *aceprop = smb_get_ace4(smbace);
118
119                 acebuf[i].a_type        = aceprop->aceType;
120                 acebuf[i].a_flags       = aceprop->aceFlags;
121                 acebuf[i].a_access_mask = aceprop->aceMask;
122                 acebuf[i].a_who         = aceprop->who.id;
123                 if(aceprop->flags & SMB_ACE4_ID_SPECIAL) {
124                         switch(aceprop->who.special_id) {
125                         case SMB_ACE4_WHO_EVERYONE:
126                                 acebuf[i].a_flags |= ACE_EVERYONE;
127                                 break;
128                         case SMB_ACE4_WHO_OWNER:
129                                 acebuf[i].a_flags |= ACE_OWNER;
130                                 break;
131                         case SMB_ACE4_WHO_GROUP:
132                                 acebuf[i].a_flags |= ACE_GROUP;
133                                 break;
134                         default:
135                                 DEBUG(8, ("unsupported special_id %d\n", \
136                                         aceprop->who.special_id));
137                                 continue; /* don't add it !!! */
138                         }
139                 }
140         }
141         SMB_ASSERT(i == naces);
142
143         /* store acl */
144         if(acl(fsp->fsp_name, ACE_SETACL, naces, acebuf)) {
145                 if(errno == ENOSYS) {
146                         DEBUG(9, ("acl(ACE_SETACL, %s): Operation is not supported on the filesystem where the file reside"));
147                 } else {
148                         DEBUG(9, ("acl(ACE_SETACL, %s): %s ", fsp->fsp_name,
149                                         strerror(errno)));
150                 }
151                 return 0;
152         }
153
154         return True;
155 }
156
157 /* zfs_set_nt_acl()
158  * set the local file's acls obtaining it in NT form
159  * using the NFSv4 format conversion
160  */
161 static NTSTATUS zfs_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
162                            uint32 security_info_sent,
163                            struct security_descriptor *psd)
164 {
165         return smb_set_nt_acl_nfs4(fsp, security_info_sent, psd,
166                         zfs_process_smbacl);
167 }
168
169 static NTSTATUS zfsacl_fget_nt_acl(struct vfs_handle_struct *handle,
170                                  struct files_struct *fsp,
171                                  int fd,  uint32 security_info,
172                                  struct security_descriptor **ppdesc)
173 {
174         return zfs_get_nt_acl(fsp, security_info, ppdesc);
175 }
176
177 static NTSTATUS zfsacl_get_nt_acl(struct vfs_handle_struct *handle,
178                                 struct files_struct *fsp,
179                                 const char *name,  uint32 security_info,
180                                 struct security_descriptor **ppdesc)
181 {
182         return zfs_get_nt_acl(fsp, security_info, ppdesc);
183 }
184
185 static NTSTATUS zfsacl_fset_nt_acl(vfs_handle_struct *handle,
186                          files_struct *fsp,
187                          int fd, uint32 security_info_sent,
188                          SEC_DESC *psd)
189 {
190         return zfs_set_nt_acl(handle, fsp, security_info_sent, psd);
191 }
192
193 static NTSTATUS zfsacl_set_nt_acl(vfs_handle_struct *handle,
194                        files_struct *fsp,
195                        const char *name, uint32 security_info_sent,
196                        SEC_DESC *psd)
197 {
198         return zfs_set_nt_acl(handle, fsp, security_info_sent, psd);
199 }
200
201 /* VFS operations structure */
202
203 static vfs_op_tuple zfsacl_ops[] = {    
204         {SMB_VFS_OP(zfsacl_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
205          SMB_VFS_LAYER_OPAQUE},
206         {SMB_VFS_OP(zfsacl_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,
207          SMB_VFS_LAYER_OPAQUE},
208         {SMB_VFS_OP(zfsacl_fset_nt_acl), SMB_VFS_OP_FSET_NT_ACL,
209          SMB_VFS_LAYER_OPAQUE},
210         {SMB_VFS_OP(zfsacl_set_nt_acl), SMB_VFS_OP_SET_NT_ACL,
211          SMB_VFS_LAYER_OPAQUE},
212         {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP}
213 };
214
215 /* != 0 if this module will be compiled as static */
216
217 #define STATIC 0
218
219 #if STATIC
220 NTSTATUS vfs_zfsacl_init(void);
221 #else
222 NTSTATUS init_module(void);
223 #endif
224
225 NTSTATUS
226 #if STATIC
227         vfs_zfsacl_init
228 #else
229         init_module
230 #endif
231                 (void)
232 {
233         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "zfsacl",
234                                 zfsacl_ops);
235 }