1 /*
2    Unix SMB/CIFS implementation.
3 
4    security descriptor utility functions
5 
6    Copyright (C) Andrew Tridgell 		2004
7    Copyright (C) Andrew Bartlett 		2010
8    Copyright (C) Stefan Metzmacher 		2005
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 _LIBCLI_SECURITY_SECURITY_TOKEN_H_
25 #define _LIBCLI_SECURITY_SECURITY_TOKEN_H_
26 
27 #include "librpc/gen_ndr/security.h"
28 
29 #define PRIMARY_USER_SID_INDEX 0
30 #define PRIMARY_GROUP_SID_INDEX 1
31 
32 /*
33   return a blank security token
34 */
35 struct security_token *security_token_initialise(TALLOC_CTX *mem_ctx);
36 
37 /****************************************************************************
38  prints a struct security_token to debug output.
39 ****************************************************************************/
40 void security_token_debug(int dbg_class, int dbg_lev, const struct security_token *token);
41 
42 bool security_token_is_sid(const struct security_token *token, const struct dom_sid *sid);
43 
44 bool security_token_is_sid_string(const struct security_token *token, const char *sid_string);
45 
46 bool security_token_is_system(const struct security_token *token);
47 
48 bool security_token_is_anonymous(const struct security_token *token);
49 
50 bool security_token_has_sid(const struct security_token *token, const struct dom_sid *sid);
51 
52 bool security_token_has_sid_string(const struct security_token *token, const char *sid_string);
53 
54 bool security_token_has_builtin_guests(const struct security_token *token);
55 
56 bool security_token_has_builtin_administrators(const struct security_token *token);
57 
58 bool security_token_has_nt_authenticated_users(const struct security_token *token);
59 
60 bool security_token_has_enterprise_dcs(const struct security_token *token);
61 
62 #endif
63