1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

nfs4acl_xattr: move some functions to a seperate file

These functions will be called from another translation unit in a
subsequent commit.

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Ralph Boehme 2018-11-25 12:07:26 +01:00 committed by Jeremy Allison
parent 10a230b98f
commit 3490a6e27a
4 changed files with 100 additions and 34 deletions

View File

@ -0,0 +1,73 @@
/*
* Copyright (C) Ralph Boehme 2018
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#include "includes.h"
#include "smbd/proto.h"
#include "libcli/security/security_descriptor.h"
#ifdef HAVE_RPC_XDR_H
/* <rpc/xdr.h> uses TRUE and FALSE */
#ifdef TRUE
#undef TRUE
#endif
#ifdef FALSE
#undef FALSE
#endif
#endif
#include "nfs4_acls.h"
#include "nfs41acl.h"
#include "nfs4acl_xattr_util.h"
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_VFS
unsigned smb4acl_to_nfs4acl_flags(uint16_t smb4acl_flags)
{
unsigned nfs4acl_flags = 0;
if (smb4acl_flags & SEC_DESC_DACL_AUTO_INHERITED) {
nfs4acl_flags |= ACL4_AUTO_INHERIT;
}
if (smb4acl_flags & SEC_DESC_DACL_PROTECTED) {
nfs4acl_flags |= ACL4_PROTECTED;
}
if (smb4acl_flags & SEC_DESC_DACL_DEFAULTED) {
nfs4acl_flags |= ACL4_DEFAULTED;
}
return nfs4acl_flags;
}
uint16_t nfs4acl_to_smb4acl_flags(unsigned nfsacl41_flags)
{
uint16_t smb4acl_flags = SEC_DESC_SELF_RELATIVE;
if (nfsacl41_flags & ACL4_AUTO_INHERIT) {
smb4acl_flags |= SEC_DESC_DACL_AUTO_INHERITED;
}
if (nfsacl41_flags & ACL4_PROTECTED) {
smb4acl_flags |= SEC_DESC_DACL_PROTECTED;
}
if (nfsacl41_flags & ACL4_DEFAULTED) {
smb4acl_flags |= SEC_DESC_DACL_DEFAULTED;
}
return smb4acl_flags;
}

View File

@ -0,0 +1,25 @@
/*
* Copyright (C) Ralph Boehme 2018
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _NFS4ACL_XATTR_UTIL_H_
#define _NFS4ACL_XATTR_UTIL_H_
unsigned smb4acl_to_nfs4acl_flags(uint16_t smb4acl_flags);
uint16_t nfs4acl_to_smb4acl_flags(unsigned nfsacl41_flags);
#endif /* _NFS4ACL_XATTR_UTIL_H_ */

View File

@ -39,6 +39,7 @@
#include <rpc/xdr.h>
#include "nfs41acl.h"
#include "nfs4acl_xattr_xdr.h"
#include "nfs4acl_xattr_util.h"
static unsigned nfs4acli_get_naces(nfsacl41i *nacl)
{
@ -122,23 +123,6 @@ static nfsace4i *nfs4acli_get_ace(nfsacl41i *nacl, size_t n)
return &nacl->na41_aces.na41_aces_val[n];
}
static unsigned smb4acl_to_nfs4acl_flags(uint16_t smb4acl_flags)
{
unsigned nfs4acl_flags = 0;
if (smb4acl_flags & SEC_DESC_DACL_AUTO_INHERITED) {
nfs4acl_flags |= ACL4_AUTO_INHERIT;
}
if (smb4acl_flags & SEC_DESC_DACL_PROTECTED) {
nfs4acl_flags |= ACL4_PROTECTED;
}
if (smb4acl_flags & SEC_DESC_DACL_DEFAULTED) {
nfs4acl_flags |= ACL4_DEFAULTED;
}
return nfs4acl_flags;
}
static bool smb4acl_to_nfs4acli(vfs_handle_struct *handle,
TALLOC_CTX *mem_ctx,
struct SMB4ACL_T *smb4acl,
@ -255,23 +239,6 @@ NTSTATUS nfs4acl_smb4acl_to_xdr_blob(vfs_handle_struct *handle,
return NT_STATUS_OK;
}
static uint16_t nfs4acl_to_smb4acl_flags(unsigned nfsacl41_flags)
{
uint16_t smb4acl_flags = SEC_DESC_SELF_RELATIVE;
if (nfsacl41_flags & ACL4_AUTO_INHERIT) {
smb4acl_flags |= SEC_DESC_DACL_AUTO_INHERITED;
}
if (nfsacl41_flags & ACL4_PROTECTED) {
smb4acl_flags |= SEC_DESC_DACL_PROTECTED;
}
if (nfsacl41_flags & ACL4_DEFAULTED) {
smb4acl_flags |= SEC_DESC_DACL_DEFAULTED;
}
return smb4acl_flags;
}
static NTSTATUS nfs4acl_xdr_blob_to_nfs4acli(struct vfs_handle_struct *handle,
TALLOC_CTX *mem_ctx,
DATA_BLOB *blob,

View File

@ -278,6 +278,7 @@ bld.SAMBA3_MODULE('vfs_nfs4acl_xattr',
vfs_nfs4acl_xattr.c
nfs4acl_xattr_ndr.c
nfs4acl_xattr_xdr.c
nfs4acl_xattr_util.c
''',
deps='NFS4_ACLS sunacl NDR_NFS4ACL VFS_NFS4_XDR',
init_function='',