2 * Store Windows ACLs in xattrs.
4 * Copyright (C) Volker Lendecke, 2008
5 * Copyright (C) Jeremy Allison, 2008
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.
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.
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/>.
22 #include "smbd/smbd.h"
23 #include "librpc/gen_ndr/xattr.h"
25 #include "vfs_acl_common.h"
27 /* Pull in the common functions. */
28 #define ACL_MODULE_NAME "acl_xattr"
31 #define DBGC_CLASS DBGC_VFS
33 /*******************************************************************
34 Pull a security descriptor into a DATA_BLOB from a xattr.
35 *******************************************************************/
37 static ssize_t
getxattr_do(vfs_handle_struct
*handle
,
39 const struct smb_filename
*smb_fname
,
40 const char *xattr_name
,
48 if (fsp
&& fsp
->fh
->fd
!= -1) {
49 sizeret
= SMB_VFS_FGETXATTR(fsp
, xattr_name
, val
, size
);
51 sizeret
= SMB_VFS_GETXATTR(handle
->conn
, smb_fname
,
52 XATTR_NTACL_NAME
, val
, size
);
59 if (saved_errno
!= 0) {
66 static NTSTATUS
get_acl_blob(TALLOC_CTX
*ctx
,
67 vfs_handle_struct
*handle
,
69 const struct smb_filename
*smb_fname
,
81 tmp
= talloc_realloc(ctx
, val
, uint8_t, size
);
84 return NT_STATUS_NO_MEMORY
;
89 getxattr_do(handle
, fsp
, smb_fname
, XATTR_NTACL_NAME
, val
, size
);
93 pblob
->length
= sizeret
;
97 if (errno
!= ERANGE
) {
101 /* Too small, try again. */
103 getxattr_do(handle
, fsp
, smb_fname
, XATTR_NTACL_NAME
, NULL
, 0);
108 if (size
< sizeret
) {
113 /* Max ACL size is 65536 bytes. */
120 /* Real error - exit here. */
122 return map_nt_error_from_unix(errno
);
125 /*******************************************************************
126 Store a DATA_BLOB into an xattr given an fsp pointer.
127 *******************************************************************/
129 static NTSTATUS
store_acl_blob_fsp(vfs_handle_struct
*handle
,
136 DEBUG(10,("store_acl_blob_fsp: storing blob length %u on file %s\n",
137 (unsigned int)pblob
->length
, fsp_str_dbg(fsp
)));
140 if (fsp
->fh
->fd
!= -1) {
141 ret
= SMB_VFS_FSETXATTR(fsp
, XATTR_NTACL_NAME
,
142 pblob
->data
, pblob
->length
, 0);
144 ret
= SMB_VFS_SETXATTR(fsp
->conn
, fsp
->fsp_name
,
146 pblob
->data
, pblob
->length
, 0);
153 DEBUG(5, ("store_acl_blob_fsp: setting attr failed for file %s"
156 strerror(saved_errno
) ));
158 return map_nt_error_from_unix(saved_errno
);
163 /*********************************************************************
164 Remove a Windows ACL - we're setting the underlying POSIX ACL.
165 *********************************************************************/
167 static int sys_acl_set_file_xattr(vfs_handle_struct
*handle
,
168 const struct smb_filename
*smb_fname
,
172 int ret
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
,
181 SMB_VFS_REMOVEXATTR(handle
->conn
, smb_fname
,
188 /*********************************************************************
189 Remove a Windows ACL - we're setting the underlying POSIX ACL.
190 *********************************************************************/
192 static int sys_acl_set_fd_xattr(vfs_handle_struct
*handle
,
196 int ret
= SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
,
204 SMB_VFS_FREMOVEXATTR(fsp
, XATTR_NTACL_NAME
);
210 static int connect_acl_xattr(struct vfs_handle_struct
*handle
,
214 int ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
216 struct acl_common_config
*config
= NULL
;
222 ok
= init_acl_common_config(handle
, ACL_MODULE_NAME
);
224 DBG_ERR("init_acl_common_config failed\n");
228 /* Ensure we have the parameters correct if we're
229 * using this module. */
230 DEBUG(2,("connect_acl_xattr: setting 'inherit acls = true' "
231 "'dos filemode = true' and "
232 "'force unknown acl user = true' for service %s\n",
235 lp_do_parameter(SNUM(handle
->conn
), "inherit acls", "true");
236 lp_do_parameter(SNUM(handle
->conn
), "dos filemode", "true");
237 lp_do_parameter(SNUM(handle
->conn
), "force unknown acl user", "true");
239 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
240 struct acl_common_config
,
243 if (config
->ignore_system_acls
) {
244 mode_t create_mask
= lp_create_mask(SNUM(handle
->conn
));
245 char *create_mask_str
= NULL
;
247 if ((create_mask
& 0666) != 0666) {
249 create_mask_str
= talloc_asprintf(handle
, "0%o",
251 if (create_mask_str
== NULL
) {
252 DBG_ERR("talloc_asprintf failed\n");
256 DBG_NOTICE("setting 'create mask = %s'\n", create_mask_str
);
258 lp_do_parameter (SNUM(handle
->conn
),
259 "create mask", create_mask_str
);
261 TALLOC_FREE(create_mask_str
);
264 DBG_NOTICE("setting 'directory mask = 0777', "
265 "'store dos attributes = yes' and all "
266 "'map ...' options to 'no'\n");
268 lp_do_parameter(SNUM(handle
->conn
), "directory mask", "0777");
269 lp_do_parameter(SNUM(handle
->conn
), "map archive", "no");
270 lp_do_parameter(SNUM(handle
->conn
), "map hidden", "no");
271 lp_do_parameter(SNUM(handle
->conn
), "map readonly", "no");
272 lp_do_parameter(SNUM(handle
->conn
), "map system", "no");
273 lp_do_parameter(SNUM(handle
->conn
), "store dos attributes",
280 static NTSTATUS
acl_xattr_fget_nt_acl(vfs_handle_struct
*handle
,
282 uint32_t security_info
,
284 struct security_descriptor
**ppdesc
)
287 status
= get_nt_acl_common(get_acl_blob
, handle
, fsp
, NULL
,
288 security_info
, mem_ctx
, ppdesc
);
292 static NTSTATUS
acl_xattr_get_nt_acl(vfs_handle_struct
*handle
,
293 const struct smb_filename
*smb_fname
,
294 uint32_t security_info
,
296 struct security_descriptor
**ppdesc
)
299 status
= get_nt_acl_common(get_acl_blob
, handle
, NULL
, smb_fname
,
300 security_info
, mem_ctx
, ppdesc
);
304 static NTSTATUS
acl_xattr_fset_nt_acl(vfs_handle_struct
*handle
,
306 uint32_t security_info_sent
,
307 const struct security_descriptor
*psd
)
310 status
= fset_nt_acl_common(get_acl_blob
, store_acl_blob_fsp
,
312 handle
, fsp
, security_info_sent
, psd
);
316 static struct vfs_fn_pointers vfs_acl_xattr_fns
= {
317 .connect_fn
= connect_acl_xattr
,
318 .rmdir_fn
= rmdir_acl_common
,
319 .unlink_fn
= unlink_acl_common
,
320 .chmod_fn
= chmod_acl_module_common
,
321 .fchmod_fn
= fchmod_acl_module_common
,
322 .fget_nt_acl_fn
= acl_xattr_fget_nt_acl
,
323 .get_nt_acl_fn
= acl_xattr_get_nt_acl
,
324 .fset_nt_acl_fn
= acl_xattr_fset_nt_acl
,
325 .sys_acl_set_file_fn
= sys_acl_set_file_xattr
,
326 .sys_acl_set_fd_fn
= sys_acl_set_fd_xattr
330 NTSTATUS
vfs_acl_xattr_init(TALLOC_CTX
*ctx
)
332 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "acl_xattr",