1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | Security Descriptor (SD) helper functions
|
---|
4 |
|
---|
5 | Copyright (C) Andrew Tridgell 2000
|
---|
6 | Copyright (C) Tim Potter 2000
|
---|
7 | Copyright (C) Jeremy Allison 2000
|
---|
8 | Copyright (C) Jelmer Vernooij 2003
|
---|
9 |
|
---|
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.
|
---|
14 |
|
---|
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.
|
---|
19 |
|
---|
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/>.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #ifndef __UTIL_SD_H__
|
---|
25 | #define __UTIL_SD_H__
|
---|
26 |
|
---|
27 | void SidToString(struct cli_state *cli, fstring str, const struct dom_sid *sid,
|
---|
28 | bool numeric);
|
---|
29 | bool StringToSid(struct cli_state *cli, struct dom_sid *sid, const char *str);
|
---|
30 | void print_ace(struct cli_state *cli, FILE *f, struct security_ace *ace,
|
---|
31 | bool numeric);
|
---|
32 | bool parse_ace(struct cli_state *cli, struct security_ace *ace,
|
---|
33 | const char *orig_str);
|
---|
34 | void sec_desc_print(struct cli_state *cli, FILE *f,
|
---|
35 | struct security_descriptor *sd, bool numeric);
|
---|
36 |
|
---|
37 | #endif
|
---|