2 Unix SMB/CIFS implementation.
3 Authentication utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Andrew Bartlett 2001-2010
6 Copyright (C) Jeremy Allison 2000-2001
7 Copyright (C) Rafal Szczesniak 2002
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 "auth/auth.h"
26 #include "auth/auth_sam.h"
27 #include "auth/credentials/credentials.h"
28 #include "auth/credentials/credentials_krb5.h"
29 #include "libcli/security/security.h"
30 #include "libcli/auth/libcli_auth.h"
31 #include "dsdb/samdb/samdb.h"
32 #include "auth/session_proto.h"
33 #include "system/kerberos.h"
34 #include <gssapi/gssapi.h>
36 _PUBLIC_
struct auth_session_info
*anonymous_session(TALLOC_CTX
*mem_ctx
,
37 struct loadparm_context
*lp_ctx
)
40 struct auth_session_info
*session_info
= NULL
;
41 nt_status
= auth_anonymous_session_info(mem_ctx
, lp_ctx
, &session_info
);
42 if (!NT_STATUS_IS_OK(nt_status
)) {
48 _PUBLIC_ NTSTATUS
auth_generate_session_info(TALLOC_CTX
*mem_ctx
,
49 struct loadparm_context
*lp_ctx
, /* Optional, if you don't want privilages */
50 struct ldb_context
*sam_ctx
, /* Optional, if you don't want local groups */
51 struct auth_user_info_dc
*user_info_dc
,
52 uint32_t session_info_flags
,
53 struct auth_session_info
**_session_info
)
55 struct auth_session_info
*session_info
;
57 unsigned int i
, num_sids
= 0;
61 struct dom_sid
*sids
= NULL
;
62 const struct dom_sid
*anonymous_sid
, *system_sid
;
64 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
65 NT_STATUS_HAVE_NO_MEMORY(tmp_ctx
);
67 session_info
= talloc_zero(tmp_ctx
, struct auth_session_info
);
68 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info
, tmp_ctx
);
70 session_info
->info
= talloc_reference(session_info
, user_info_dc
->info
);
72 session_info
->torture
= talloc_zero(session_info
, struct auth_user_info_torture
);
73 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info
->torture
, tmp_ctx
);
74 session_info
->torture
->num_dc_sids
= user_info_dc
->num_sids
;
75 session_info
->torture
->dc_sids
= talloc_reference(session_info
, user_info_dc
->sids
);
76 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info
->torture
->dc_sids
, tmp_ctx
);
78 /* unless set otherwise, the session key is the user session
79 * key from the auth subsystem */
80 session_info
->session_key
= data_blob_talloc(session_info
, user_info_dc
->user_session_key
.data
, user_info_dc
->user_session_key
.length
);
81 if (!session_info
->session_key
.data
&& session_info
->session_key
.length
) {
82 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info
->session_key
.data
, tmp_ctx
);
85 anonymous_sid
= dom_sid_parse_talloc(tmp_ctx
, SID_NT_ANONYMOUS
);
86 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(anonymous_sid
, tmp_ctx
);
88 system_sid
= dom_sid_parse_talloc(tmp_ctx
, SID_NT_SYSTEM
);
89 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(system_sid
, tmp_ctx
);
91 sids
= talloc_array(tmp_ctx
, struct dom_sid
, user_info_dc
->num_sids
);
92 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sids
, tmp_ctx
);
95 return NT_STATUS_NO_MEMORY
;
98 num_sids
= user_info_dc
->num_sids
;
100 for (i
=0; i
< user_info_dc
->num_sids
; i
++) {
101 sids
[i
] = user_info_dc
->sids
[i
];
104 if (user_info_dc
->num_sids
> PRIMARY_USER_SID_INDEX
&& dom_sid_equal(anonymous_sid
, &user_info_dc
->sids
[PRIMARY_USER_SID_INDEX
])) {
105 /* Don't expand nested groups of system, anonymous etc*/
106 } else if (user_info_dc
->num_sids
> PRIMARY_USER_SID_INDEX
&& dom_sid_equal(system_sid
, &user_info_dc
->sids
[PRIMARY_USER_SID_INDEX
])) {
107 /* Don't expand nested groups of system, anonymous etc*/
108 } else if (sam_ctx
) {
109 filter
= talloc_asprintf(tmp_ctx
, "(&(objectClass=group)(groupType:1.2.840.113556.1.4.803:=%u))",
110 GROUP_TYPE_BUILTIN_LOCAL_GROUP
);
112 /* Search for each group in the token */
113 for (i
= 0; i
< user_info_dc
->num_sids
; i
++) {
118 sid_string
= dom_sid_string(tmp_ctx
,
119 &user_info_dc
->sids
[i
]);
120 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sid_string
, user_info_dc
);
122 sid_dn
= talloc_asprintf(tmp_ctx
, "<SID=%s>", sid_string
);
123 talloc_free(sid_string
);
124 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sid_dn
, user_info_dc
);
125 sid_blob
= data_blob_string_const(sid_dn
);
127 /* This function takes in memberOf values and expands
128 * them, as long as they meet the filter - so only
131 * We already have the SID in the token, so set
132 * 'only childs' flag to true */
133 nt_status
= dsdb_expand_nested_groups(sam_ctx
, &sid_blob
, true, filter
,
134 tmp_ctx
, &sids
, &num_sids
);
135 if (!NT_STATUS_IS_OK(nt_status
)) {
136 talloc_free(tmp_ctx
);
142 nt_status
= security_token_create(session_info
,
147 &session_info
->security_token
);
148 NT_STATUS_NOT_OK_RETURN_AND_FREE(nt_status
, tmp_ctx
);
150 session_info
->credentials
= NULL
;
152 talloc_steal(mem_ctx
, session_info
);
153 *_session_info
= session_info
;
154 talloc_free(tmp_ctx
);
158 /* Fill out the auth_session_info with a cli_credentials based on the
159 * auth_session_info we were forwarded over named pipe forwarding.
161 * NOTE: The stucture members of session_info_transport are stolen
162 * with talloc_move() into auth_session_info for long term use
164 struct auth_session_info
*auth_session_info_from_transport(TALLOC_CTX
*mem_ctx
,
165 struct auth_session_info_transport
*session_info_transport
,
166 struct loadparm_context
*lp_ctx
,
169 struct auth_session_info
*session_info
;
170 session_info
= talloc_steal(mem_ctx
, session_info_transport
->session_info
);
172 if (session_info_transport
->exported_gssapi_credentials
.length
) {
173 struct cli_credentials
*creds
;
174 OM_uint32 minor_status
;
175 gss_buffer_desc cred_token
;
176 gss_cred_id_t cred_handle
;
177 const char *error_string
;
180 DEBUG(10, ("Delegated credentials supplied by client\n"));
182 cred_token
.value
= session_info_transport
->exported_gssapi_credentials
.data
;
183 cred_token
.length
= session_info_transport
->exported_gssapi_credentials
.length
;
185 ret
= gss_import_cred(&minor_status
,
188 if (ret
!= GSS_S_COMPLETE
) {
189 *reason
= "Internal error in gss_import_cred()";
193 creds
= cli_credentials_init(session_info
);
195 *reason
= "Out of memory in cli_credentials_init()";
198 session_info
->credentials
= creds
;
200 cli_credentials_set_conf(creds
, lp_ctx
);
201 /* Just so we don't segfault trying to get at a username */
202 cli_credentials_set_anonymous(creds
);
204 ret
= cli_credentials_set_client_gss_creds(creds
,
210 *reason
= talloc_asprintf(mem_ctx
,
211 "Failed to set pipe forwarded"
212 "creds: %s\n", error_string
);
216 /* This credential handle isn't useful for password
217 * authentication, so ensure nobody tries to do that */
218 cli_credentials_set_kerberos_state(creds
,
219 CRED_MUST_USE_KERBEROS
);
227 /* Create a auth_session_info_transport from an auth_session_info.
229 * NOTE: Members of the auth_session_info_transport structure are
230 * talloc_referenced() into this structure, and should not be changed.
232 NTSTATUS
auth_session_info_transport_from_session(TALLOC_CTX
*mem_ctx
,
233 struct auth_session_info
*session_info
,
234 struct tevent_context
*event_ctx
,
235 struct loadparm_context
*lp_ctx
,
236 struct auth_session_info_transport
**transport_out
)
239 struct auth_session_info_transport
*session_info_transport
240 = talloc_zero(mem_ctx
, struct auth_session_info_transport
);
241 if (!session_info_transport
) {
242 return NT_STATUS_NO_MEMORY
;
244 session_info_transport
->session_info
= talloc_reference(session_info_transport
, session_info
);
245 if (!session_info_transport
->session_info
) {
246 return NT_STATUS_NO_MEMORY
;
249 if (session_info
->credentials
) {
250 struct gssapi_creds_container
*gcc
;
252 OM_uint32 minor_status
;
253 gss_buffer_desc cred_token
;
254 const char *error_string
;
257 ret
= cli_credentials_get_client_gss_creds(session_info
->credentials
,
260 &gcc
, &error_string
);
262 *transport_out
= session_info_transport
;
266 gret
= gss_export_cred(&minor_status
,
269 if (gret
!= GSS_S_COMPLETE
) {
270 return NT_STATUS_INTERNAL_ERROR
;
273 if (cred_token
.length
) {
274 session_info_transport
->exported_gssapi_credentials
275 = data_blob_talloc(session_info_transport
,
278 gss_release_buffer(&minor_status
, &cred_token
);
279 NT_STATUS_HAVE_NO_MEMORY(session_info_transport
->exported_gssapi_credentials
.data
);
282 *transport_out
= session_info_transport
;
287 /* Produce a session_info for an arbitary DN or principal in the local
288 * DB, assuming the local DB holds all the groups
290 * Supply either a principal or a DN
292 NTSTATUS
authsam_get_session_info_principal(TALLOC_CTX
*mem_ctx
,
293 struct loadparm_context
*lp_ctx
,
294 struct ldb_context
*sam_ctx
,
295 const char *principal
,
296 struct ldb_dn
*user_dn
,
297 uint32_t session_info_flags
,
298 struct auth_session_info
**session_info
)
301 struct auth_user_info_dc
*user_info_dc
;
302 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
304 return NT_STATUS_NO_MEMORY
;
306 nt_status
= authsam_get_user_info_dc_principal(tmp_ctx
, lp_ctx
, sam_ctx
,
309 if (!NT_STATUS_IS_OK(nt_status
)) {
310 talloc_free(tmp_ctx
);
314 nt_status
= auth_generate_session_info(tmp_ctx
, lp_ctx
, sam_ctx
,
315 user_info_dc
, session_info_flags
,
318 if (NT_STATUS_IS_OK(nt_status
)) {
319 talloc_steal(mem_ctx
, *session_info
);
321 talloc_free(tmp_ctx
);
326 * prints a struct auth_session_info security token to debug output.
328 void auth_session_info_debug(int dbg_lev
,
329 const struct auth_session_info
*session_info
)
332 DEBUG(dbg_lev
, ("Session Info: (NULL)\n"));
336 security_token_debug(0, dbg_lev
, session_info
->security_token
);