s3:lib/events: make use of tevent_common_loop_timer_delay()
[Samba/gebeck_regimport.git] / libcli / security / security_token.h
blobb8ca990035c8b788874a9df7f45c3234d3ba490a
1 /*
2 Unix SMB/CIFS implementation.
4 security descriptor utility functions
6 Copyright (C) Andrew Tridgell 2004
7 Copyright (C) Andrew Bartlett 2010
8 Copyright (C) Stefan Metzmacher 2005
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 #ifndef _LIBCLI_SECURITY_SECURITY_TOKEN_H_
25 #define _LIBCLI_SECURITY_SECURITY_TOKEN_H_
27 #include "librpc/gen_ndr/security.h"
29 #define PRIMARY_USER_SID_INDEX 0
30 #define PRIMARY_GROUP_SID_INDEX 1
33 return a blank security token
35 struct security_token *security_token_initialise(TALLOC_CTX *mem_ctx);
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);
42 bool security_token_is_sid(const struct security_token *token, const struct dom_sid *sid);
44 bool security_token_is_sid_string(const struct security_token *token, const char *sid_string);
46 bool security_token_is_system(const struct security_token *token);
48 bool security_token_is_anonymous(const struct security_token *token);
50 bool security_token_has_sid(const struct security_token *token, const struct dom_sid *sid);
52 bool security_token_has_sid_string(const struct security_token *token, const char *sid_string);
54 bool security_token_has_builtin_administrators(const struct security_token *token);
56 bool security_token_has_nt_authenticated_users(const struct security_token *token);
58 bool security_token_has_enterprise_dcs(const struct security_token *token);
60 #endif