diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-07-17 19:53:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:11 -0500 |
commit | 4c713703d046f756989e7eb901e884829825593c (patch) | |
tree | f1ac625f3086f86a81c1e1c2025b9a428e06e2ae /source3/lib | |
parent | 283b74fce595642fb2e2a2fad87c2de9c3bc5403 (diff) | |
download | samba-4c713703d046f756989e7eb901e884829825593c.tar.gz samba-4c713703d046f756989e7eb901e884829825593c.tar.xz samba-4c713703d046f756989e7eb901e884829825593c.zip |
r17097: Move share_access_check from rpc_server/srv_srvsvc_nt.c to lib/sharesec.c
(This used to be commit 220dd4333032aea238066e3fbec9fca51ed16ddf)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/sharesec.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/lib/sharesec.c b/source3/lib/sharesec.c index 9c40eb0ac7b..0c8035e3dc6 100644 --- a/source3/lib/sharesec.c +++ b/source3/lib/sharesec.c @@ -206,6 +206,37 @@ BOOL delete_share_security(int snum) return True; } +/******************************************************************* + Can this user access with share with the required permissions ? +********************************************************************/ + +BOOL share_access_check(const NT_USER_TOKEN *token, const char *sharename, + uint32 desired_access) +{ + uint32 granted; + NTSTATUS status; + TALLOC_CTX *mem_ctx = NULL; + SEC_DESC *psd = NULL; + size_t sd_size; + BOOL ret = True; + + if (!(mem_ctx = talloc_init("share_access_check"))) { + return False; + } + + psd = get_share_security(mem_ctx, sharename, &sd_size); + + if (!psd) { + TALLOC_FREE(mem_ctx); + return True; + } + + ret = se_access_check(psd, token, desired_access, &granted, &status); + + talloc_destroy(mem_ctx); + return ret; +} + /*************************************************************************** Parse the contents of an acl string from a usershare file. ***************************************************************************/ |