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/>.
25 #include "libcli/security/security_token.h"
26 #include "libcli/security/dom_sid.h"
27 #include "libcli/security/privileges.h"
30 return a blank security token
32 struct security_token
*security_token_initialise(TALLOC_CTX
*mem_ctx
)
34 struct security_token
*st
;
36 st
= talloc_zero(mem_ctx
, struct security_token
);
44 /****************************************************************************
45 prints a struct security_token to debug output.
46 ****************************************************************************/
47 void security_token_debug(int dbg_class
, int dbg_lev
, const struct security_token
*token
)
53 DEBUGC(dbg_class
, dbg_lev
, ("Security token: (NULL)\n"));
57 mem_ctx
= talloc_init("security_token_debug()");
62 DEBUGC(dbg_class
, dbg_lev
, ("Security token SIDs (%lu):\n",
63 (unsigned long)token
->num_sids
));
64 for (i
= 0; i
< token
->num_sids
; i
++) {
65 DEBUGADDC(dbg_class
, dbg_lev
, (" SID[%3lu]: %s\n", (unsigned long)i
,
66 dom_sid_string(mem_ctx
, &token
->sids
[i
])));
69 security_token_debug_privileges(dbg_class
, dbg_lev
, token
);
74 /* These really should be cheaper... */
76 bool security_token_is_sid(const struct security_token
*token
, const struct dom_sid
*sid
)
78 if (token
->sids
&& dom_sid_equal(&token
->sids
[PRIMARY_USER_SID_INDEX
], sid
)) {
84 bool security_token_is_sid_string(const struct security_token
*token
, const char *sid_string
)
89 ret
= dom_sid_parse(sid_string
, &sid
);
94 ret
= security_token_is_sid(token
, &sid
);
98 bool security_token_is_system(const struct security_token
*token
)
100 return security_token_is_sid(token
, &global_sid_System
);
103 bool security_token_is_anonymous(const struct security_token
*token
)
105 return security_token_is_sid(token
, &global_sid_Anonymous
);
108 bool security_token_has_sid(const struct security_token
*token
, const struct dom_sid
*sid
)
111 for (i
= 0; i
< token
->num_sids
; i
++) {
112 if (dom_sid_equal(&token
->sids
[i
], sid
)) {
119 bool security_token_has_sid_string(const struct security_token
*token
, const char *sid_string
)
124 ret
= dom_sid_parse(sid_string
, &sid
);
129 ret
= security_token_has_sid(token
, &sid
);
133 bool security_token_has_builtin_guests(const struct security_token
*token
)
135 return security_token_has_sid(token
, &global_sid_Builtin_Guests
);
138 bool security_token_has_builtin_administrators(const struct security_token
*token
)
140 return security_token_has_sid(token
, &global_sid_Builtin_Administrators
);
143 bool security_token_has_nt_authenticated_users(const struct security_token
*token
)
145 return security_token_has_sid(token
, &global_sid_Authenticated_Users
);
148 bool security_token_has_enterprise_dcs(const struct security_token
*token
)
150 return security_token_has_sid(token
, &global_sid_Enterprise_DCs
);