s4:objectclass LDB module - move one checks into the "objectclass derivation loop"
[Samba/gebeck_regimport.git] / libcli / security / access_check.h
blob700f981879ffe4feab60c60cd971a314e2ac3889
1 /*
2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2004
5 Copyright (C) Gerald Carter 2005
6 Copyright (C) Volker Lendecke 2007
7 Copyright (C) Jeremy Allison 2008
8 Copyright (C) Andrew Bartlett 2010
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "librpc/gen_ndr/security.h"
26 /* Map generic access rights to object specific rights. This technique is
27 used to give meaning to assigning read, write, execute and all access to
28 objects. Each type of object has its own mapping of generic to object
29 specific access rights. */
31 void se_map_generic(uint32_t *access_mask, const struct generic_mapping *mapping);
33 /* Map generic access rights to object specific rights for all the ACE's
34 * in a security_acl.
36 void security_acl_map_generic(struct security_acl *sa,
37 const struct generic_mapping *mapping);
39 /* Map standard access rights to object specific rights. This technique is
40 used to give meaning to assigning read, write, execute and all access to
41 objects. Each type of object has its own mapping of standard to object
42 specific access rights. */
43 void se_map_standard(uint32_t *access_mask, const struct standard_mapping *mapping);
46 The main entry point for access checking. If returning ACCESS_DENIED
47 this function returns the denied bits in the uint32_t pointed
48 to by the access_granted pointer.
50 NTSTATUS se_access_check(const struct security_descriptor *sd,
51 const struct security_token *token,
52 uint32_t access_desired,
53 uint32_t *access_granted);
55 /* modified access check for the purposes of DS security
56 * Lots of code duplication, it will ve united in just one
57 * function eventually */
59 NTSTATUS sec_access_check_ds(const struct security_descriptor *sd,
60 const struct security_token *token,
61 uint32_t access_desired,
62 uint32_t *access_granted,
63 struct object_tree *tree,
64 struct dom_sid *replace_sid);
66 bool insert_in_object_tree(TALLOC_CTX *mem_ctx,
67 const struct GUID *guid,
68 uint32_t init_access,
69 struct object_tree **root,
70 struct object_tree **new_node);
72 /* search by GUID */
73 struct object_tree *get_object_tree_by_GUID(struct object_tree *root,
74 const struct GUID *guid);
76 /* Change the granted access per each ACE */
77 void object_tree_modify_access(struct object_tree *root,
78 uint32_t access);