ldb:kv_index: use subtransaction_cancel in transaction_cancel
[Samba.git] / libcli / security / secace.h
blob879c711e4854eb350f25fff3ed0cc7adef190b75
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
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/>.
21 #ifndef _ACE_H_
22 #define _ACE_H_
24 #include "librpc/gen_ndr/security.h"
25 #include "librpc/ndr/libndr.h"
27 bool sec_ace_object(uint8_t type);
28 size_t ndr_subcontext_size_of_ace_coda(const struct security_ace *ace, size_t ace_size, libndr_flags flags);
29 bool sec_ace_callback(uint8_t type);
30 bool sec_ace_resource(uint8_t type);
31 bool sec_ace_has_extra_blob(uint8_t type);
33 void init_sec_ace(struct security_ace *t, const struct dom_sid *sid, enum security_ace_type type,
34 uint32_t mask, uint8_t flag);
35 int nt_ace_inherit_comp( const struct security_ace *a1, const struct security_ace *a2);
36 int nt_ace_canon_comp( const struct security_ace *a1, const struct security_ace *a2);
37 void dacl_sort_into_canonical_order(struct security_ace *srclist, unsigned int num_aces);
39 #endif /*_ACE_H_*/