/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Copyright 2013 Nexenta Systems, Inc. All rights reserved.
*/
/*
* This module provides Security Descriptor handling functions.
*/
#include <smbsrv/smb_kproto.h>
#include <smbsrv/smb_fsops.h>
#include <smbsrv/smb_idmap.h>
void
{
}
/*
* smb_sd_term
*
* Free non-NULL members of 'sd' which has to be in
* absolute (pointer) form.
*/
void
{
}
{
if (secinfo & SMB_OWNER_SECINFO)
if (secinfo & SMB_GROUP_SECINFO)
if (secinfo & SMB_DACL_SECINFO)
if (secinfo & SMB_SACL_SECINFO)
return (length);
}
/*
* smb_sd_get_secinfo
*
* Return the security information mask for the specified security
* descriptor.
*/
{
return (0);
return (sec_info);
}
/*
* smb_sd_read
*
* Read uid, gid and ACL from filesystem. The returned ACL from read
* routine is always in ZFS format. Convert the ZFS acl to a Win acl
* and return the Win SD in absolute form.
*
* NOTE: upon successful return caller MUST free the memory allocated
* for the returned SD by calling smb_sd_term().
*/
{
int error;
if (error)
return (smb_errno2status(error));
return (status);
}
/*
* smb_sd_write
*
* Takes a Win SD in absolute form, converts it to
* ZFS format and write it to filesystem. The write routine
* converts ZFS acl to Posix acl if required.
*/
{
int error;
if (status != NT_STATUS_SUCCESS) {
return (status);
}
if (error) {
return (NT_STATUS_INVALID_OWNER);
return (smb_errno2status(error));
}
return (NT_STATUS_SUCCESS);
}
/*
* smb_sd_tofs
*
* Creates a filesystem security structure based on the given
* Windows security descriptor.
*/
{
int idtype;
int flags = 0;
/*
* ZFS only has one set of flags so for now only
* Windows DACL flags are taken into account.
*/
if (sd_control & SE_DACL_DEFAULTED)
flags |= ACL_DEFAULTED;
if (sd_control & SE_DACL_AUTO_INHERITED)
if (sd_control & SE_DACL_PROTECTED)
flags |= ACL_PROTECTED;
flags |= ACL_IS_DIR;
/* Owner */
if (!smb_sid_isvalid(sid))
return (NT_STATUS_INVALID_SID);
if (idm_stat != IDMAP_SUCCESS) {
return (NT_STATUS_NONE_MAPPED);
}
}
/* Group */
if (!smb_sid_isvalid(sid))
return (NT_STATUS_INVALID_SID);
if (idm_stat != IDMAP_SUCCESS) {
return (NT_STATUS_NONE_MAPPED);
}
}
/* DACL */
if (status != NT_STATUS_SUCCESS)
return (status);
}
else
return (NT_STATUS_INVALID_ACL);
}
/* SACL */
if (status != NT_STATUS_SUCCESS) {
return (status);
}
} else {
return (NT_STATUS_INVALID_ACL);
}
}
return (status);
}
/*
* smb_sd_fromfs
*
* Makes an Windows style security descriptor in absolute form
* based on the given filesystem security information.
*
* Should call smb_sd_term() for the returned sd to free allocated
* members.
*/
static uint32_t
{
/* Owner */
SMB_IDMAP_USER, &sid);
if (idm_stat != IDMAP_SUCCESS) {
return (NT_STATUS_NONE_MAPPED);
}
}
/* Group */
SMB_IDMAP_GROUP, &sid);
if (idm_stat != IDMAP_SUCCESS) {
return (NT_STATUS_NONE_MAPPED);
}
}
/* DACL */
return (NT_STATUS_INTERNAL_ERROR);
}
/*
* Need to sort the ACL before send it to Windows
* clients. Winodws GUI is sensitive about the order
* of ACEs.
*/
} else {
}
}
/* SACL */
return (NT_STATUS_INTERNAL_ERROR);
}
} else {
}
}
return (status);
}
static void
{
if (flags & ACL_DEFAULTED)
if (flags & ACL_AUTO_INHERIT)
if (flags & ACL_PROTECTED)
if (present)
}
static void
{
if (flags & ACL_DEFAULTED)
if (flags & ACL_AUTO_INHERIT)
if (flags & ACL_PROTECTED)
if (present)
}
/*
* smb_fssd_init
*
* Initializes the given FS SD structure.
*/
void
{
}
/*
* smb_fssd_term
*
* Frees allocated memory for acl fields.
*/
void
{
}