s3/modules: VFS: acl_xattr: Remove call to chmod_acl_module_common()
[samba.git] / source3 / modules / vfs_acl_xattr.c
1 /*
2  * Store Windows ACLs in xattrs.
3  *
4  * Copyright (C) Volker Lendecke, 2008
5  * Copyright (C) Jeremy Allison, 2008
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "system/filesys.h"
24 #include "librpc/gen_ndr/xattr.h"
25 #include "auth.h"
26 #include "vfs_acl_common.h"
27
28 /* Pull in the common functions. */
29 #define ACL_MODULE_NAME "acl_xattr"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_VFS
33
34 /*******************************************************************
35  Pull a security descriptor into a DATA_BLOB from a xattr.
36 *******************************************************************/
37
38 static ssize_t getxattr_do(vfs_handle_struct *handle,
39                            files_struct *fsp,
40                            const struct smb_filename *smb_fname,
41                            const char *xattr_name,
42                            uint8_t *val,
43                            size_t size)
44 {
45         ssize_t sizeret;
46         int saved_errno = 0;
47
48         become_root();
49         if (fsp && fsp_get_pathref_fd(fsp) != -1) {
50                 sizeret = SMB_VFS_FGETXATTR(fsp, xattr_name, val, size);
51         } else {
52                 sizeret = SMB_VFS_GETXATTR(handle->conn, smb_fname,
53                                            XATTR_NTACL_NAME, val, size);
54         }
55         if (sizeret == -1) {
56                 saved_errno = errno;
57         }
58         unbecome_root();
59
60         if (saved_errno != 0) {
61                 errno = saved_errno;
62         }
63
64         return sizeret;
65 }
66
67 static NTSTATUS fget_acl_blob(TALLOC_CTX *ctx,
68                         vfs_handle_struct *handle,
69                         files_struct *fsp,
70                         DATA_BLOB *pblob)
71 {
72         size_t size = 4096;
73         uint8_t *val = NULL;
74         uint8_t *tmp;
75         ssize_t sizeret;
76
77         ZERO_STRUCTP(pblob);
78
79   again:
80
81         tmp = talloc_realloc(ctx, val, uint8_t, size);
82         if (tmp == NULL) {
83                 TALLOC_FREE(val);
84                 return NT_STATUS_NO_MEMORY;
85         }
86         val = tmp;
87
88         sizeret =
89             getxattr_do(handle, fsp, NULL, XATTR_NTACL_NAME, val, size);
90
91         if (sizeret >= 0) {
92                 pblob->data = val;
93                 pblob->length = sizeret;
94                 return NT_STATUS_OK;
95         }
96
97         if (errno != ERANGE) {
98                 goto err;
99         }
100
101         /* Too small, try again. */
102         sizeret =
103             getxattr_do(handle, fsp, NULL, XATTR_NTACL_NAME, NULL, 0);
104         if (sizeret < 0) {
105                 goto err;
106         }
107
108         if (size < sizeret) {
109                 size = sizeret;
110         }
111
112         if (size > 65536) {
113                 /* Max ACL size is 65536 bytes. */
114                 errno = ERANGE;
115                 goto err;
116         }
117
118         goto again;
119   err:
120         /* Real error - exit here. */
121         TALLOC_FREE(val);
122         return map_nt_error_from_unix(errno);
123 }
124
125 static NTSTATUS get_acl_blob_at(TALLOC_CTX *ctx,
126                         vfs_handle_struct *handle,
127                         struct files_struct *dirfsp,
128                         const struct smb_filename *smb_fname,
129                         DATA_BLOB *pblob)
130 {
131         size_t size = 4096;
132         uint8_t *val = NULL;
133         uint8_t *tmp;
134         ssize_t sizeret;
135
136         ZERO_STRUCTP(pblob);
137
138   again:
139
140         tmp = talloc_realloc(ctx, val, uint8_t, size);
141         if (tmp == NULL) {
142                 TALLOC_FREE(val);
143                 return NT_STATUS_NO_MEMORY;
144         }
145         val = tmp;
146
147         sizeret =
148             getxattr_do(handle, NULL, smb_fname, XATTR_NTACL_NAME, val, size);
149
150         if (sizeret >= 0) {
151                 pblob->data = val;
152                 pblob->length = sizeret;
153                 return NT_STATUS_OK;
154         }
155
156         if (errno != ERANGE) {
157                 goto err;
158         }
159
160         /* Too small, try again. */
161         sizeret =
162             getxattr_do(handle, NULL, smb_fname, XATTR_NTACL_NAME, NULL, 0);
163         if (sizeret < 0) {
164                 goto err;
165         }
166
167         if (size < sizeret) {
168                 size = sizeret;
169         }
170
171         if (size > 65536) {
172                 /* Max ACL size is 65536 bytes. */
173                 errno = ERANGE;
174                 goto err;
175         }
176
177         goto again;
178   err:
179         /* Real error - exit here. */
180         TALLOC_FREE(val);
181         return map_nt_error_from_unix(errno);
182 }
183
184 /*******************************************************************
185  Store a DATA_BLOB into an xattr given an fsp pointer.
186 *******************************************************************/
187
188 static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
189                                 files_struct *fsp,
190                                 DATA_BLOB *pblob)
191 {
192         int ret;
193         int saved_errno = 0;
194
195         DEBUG(10,("store_acl_blob_fsp: storing blob length %u on file %s\n",
196                   (unsigned int)pblob->length, fsp_str_dbg(fsp)));
197
198         become_root();
199         ret = SMB_VFS_FSETXATTR(fsp, XATTR_NTACL_NAME,
200                         pblob->data, pblob->length, 0);
201         if (ret) {
202                 saved_errno = errno;
203         }
204         unbecome_root();
205         if (ret) {
206                 DEBUG(5, ("store_acl_blob_fsp: setting attr failed for file %s"
207                         "with error %s\n",
208                         fsp_str_dbg(fsp),
209                         strerror(saved_errno) ));
210                 errno = saved_errno;
211                 return map_nt_error_from_unix(saved_errno);
212         }
213         return NT_STATUS_OK;
214 }
215
216 /*********************************************************************
217  Remove a Windows ACL - we're setting the underlying POSIX ACL.
218 *********************************************************************/
219
220 static int sys_acl_set_fd_xattr(vfs_handle_struct *handle,
221                                 files_struct *fsp,
222                                 SMB_ACL_TYPE_T type,
223                                 SMB_ACL_T theacl)
224 {
225         struct acl_common_fsp_ext *ext = (struct acl_common_fsp_ext *)
226                 VFS_FETCH_FSP_EXTENSION(handle, fsp);
227         int ret;
228
229         ret = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle,
230                                           fsp,
231                                           type,
232                                           theacl);
233         if (ret == -1) {
234                 return -1;
235         }
236
237         if (ext != NULL && ext->setting_nt_acl) {
238                 return 0;
239         }
240
241         become_root();
242         SMB_VFS_FREMOVEXATTR(fsp, XATTR_NTACL_NAME);
243         unbecome_root();
244
245         return 0;
246 }
247
248 static int connect_acl_xattr(struct vfs_handle_struct *handle,
249                                 const char *service,
250                                 const char *user)
251 {
252         int ret = SMB_VFS_NEXT_CONNECT(handle, service, user);
253         bool ok;
254         struct acl_common_config *config = NULL;
255
256         if (ret < 0) {
257                 return ret;
258         }
259
260         ok = init_acl_common_config(handle, ACL_MODULE_NAME);
261         if (!ok) {
262                 DBG_ERR("init_acl_common_config failed\n");
263                 return -1;
264         }
265
266         /* Ensure we have the parameters correct if we're
267          * using this module. */
268         DEBUG(2,("connect_acl_xattr: setting 'inherit acls = true' "
269                 "'dos filemode = true' and "
270                 "'force unknown acl user = true' for service %s\n",
271                 service ));
272
273         lp_do_parameter(SNUM(handle->conn), "inherit acls", "true");
274         lp_do_parameter(SNUM(handle->conn), "dos filemode", "true");
275         lp_do_parameter(SNUM(handle->conn), "force unknown acl user", "true");
276
277         SMB_VFS_HANDLE_GET_DATA(handle, config,
278                                 struct acl_common_config,
279                                 return -1);
280
281         if (config->ignore_system_acls) {
282                 mode_t create_mask = lp_create_mask(SNUM(handle->conn));
283                 char *create_mask_str = NULL;
284
285                 if ((create_mask & 0666) != 0666) {
286                         create_mask |= 0666;
287                         create_mask_str = talloc_asprintf(handle, "0%o",
288                                                           create_mask);
289                         if (create_mask_str == NULL) {
290                                 DBG_ERR("talloc_asprintf failed\n");
291                                 return -1;
292                         }
293
294                         DBG_NOTICE("setting 'create mask = %s'\n", create_mask_str);
295
296                         lp_do_parameter (SNUM(handle->conn),
297                                         "create mask", create_mask_str);
298
299                         TALLOC_FREE(create_mask_str);
300                 }
301
302                 DBG_NOTICE("setting 'directory mask = 0777', "
303                            "'store dos attributes = yes' and all "
304                            "'map ...' options to 'no'\n");
305
306                 lp_do_parameter(SNUM(handle->conn), "directory mask", "0777");
307                 lp_do_parameter(SNUM(handle->conn), "map archive", "no");
308                 lp_do_parameter(SNUM(handle->conn), "map hidden", "no");
309                 lp_do_parameter(SNUM(handle->conn), "map readonly", "no");
310                 lp_do_parameter(SNUM(handle->conn), "map system", "no");
311                 lp_do_parameter(SNUM(handle->conn), "store dos attributes",
312                                 "yes");
313         }
314
315         return 0;
316 }
317
318 static int acl_xattr_unlinkat(vfs_handle_struct *handle,
319                         struct files_struct *dirfsp,
320                         const struct smb_filename *smb_fname,
321                         int flags)
322 {
323         int ret;
324
325         if (flags & AT_REMOVEDIR) {
326                 ret = rmdir_acl_common(handle,
327                                 dirfsp,
328                                 smb_fname);
329         } else {
330                 ret = unlink_acl_common(handle,
331                                 dirfsp,
332                                 smb_fname,
333                                 flags);
334         }
335         return ret;
336 }
337
338 static NTSTATUS acl_xattr_fget_nt_acl(vfs_handle_struct *handle,
339                                       files_struct *fsp,
340                                       uint32_t security_info,
341                                       TALLOC_CTX *mem_ctx,
342                                       struct security_descriptor **ppdesc)
343 {
344         NTSTATUS status;
345         status = fget_nt_acl_common(fget_acl_blob, handle, fsp,
346                                    security_info, mem_ctx, ppdesc);
347         return status;
348 }
349
350 static NTSTATUS acl_xattr_get_nt_acl_at(vfs_handle_struct *handle,
351                                 struct files_struct *dirfsp,
352                                 const struct smb_filename *smb_fname,
353                                 uint32_t security_info,
354                                 TALLOC_CTX *mem_ctx,
355                                 struct security_descriptor **ppdesc)
356 {
357         NTSTATUS status;
358         status = get_nt_acl_common_at(get_acl_blob_at,
359                                 handle,
360                                 dirfsp,
361                                 smb_fname,
362                                 security_info,
363                                 mem_ctx,
364                                 ppdesc);
365         return status;
366 }
367
368 static NTSTATUS acl_xattr_fset_nt_acl(vfs_handle_struct *handle,
369                                       files_struct *fsp,
370                                       uint32_t security_info_sent,
371                                       const struct security_descriptor *psd)
372 {
373         NTSTATUS status;
374         status = fset_nt_acl_common(fget_acl_blob, store_acl_blob_fsp,
375                                     ACL_MODULE_NAME,
376                                     handle, fsp, security_info_sent, psd);
377         return status;
378 }
379
380 static struct vfs_fn_pointers vfs_acl_xattr_fns = {
381         .connect_fn = connect_acl_xattr,
382         .unlinkat_fn = acl_xattr_unlinkat,
383         .fchmod_fn = fchmod_acl_module_common,
384         .fget_nt_acl_fn = acl_xattr_fget_nt_acl,
385         .get_nt_acl_at_fn = acl_xattr_get_nt_acl_at,
386         .fset_nt_acl_fn = acl_xattr_fset_nt_acl,
387         .sys_acl_set_fd_fn = sys_acl_set_fd_xattr
388 };
389
390 static_decl_vfs;
391 NTSTATUS vfs_acl_xattr_init(TALLOC_CTX *ctx)
392 {
393         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "acl_xattr",
394                                 &vfs_acl_xattr_fns);
395 }