dsdb: Ensure "authenticated users" is processed for group memberships
[samba.git] / source4 / auth / session.c
1 /* 
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
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 #include "includes.h"
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>
35 #include "libcli/wbclient/wbclient.h"
36
37 _PUBLIC_ struct auth_session_info *anonymous_session(TALLOC_CTX *mem_ctx, 
38                                             struct loadparm_context *lp_ctx)
39 {
40         NTSTATUS nt_status;
41         struct auth_session_info *session_info = NULL;
42         nt_status = auth_anonymous_session_info(mem_ctx, lp_ctx, &session_info);
43         if (!NT_STATUS_IS_OK(nt_status)) {
44                 return NULL;
45         }
46         return session_info;
47 }
48
49 _PUBLIC_ NTSTATUS auth_generate_session_info(TALLOC_CTX *mem_ctx,
50                                              struct loadparm_context *lp_ctx, /* Optional, if you don't want privilages */
51                                              struct ldb_context *sam_ctx, /* Optional, if you don't want local groups */
52                                              struct auth_user_info_dc *user_info_dc,
53                                              uint32_t session_info_flags,
54                                              struct auth_session_info **_session_info)
55 {
56         struct auth_session_info *session_info;
57         NTSTATUS nt_status;
58         unsigned int i, num_sids = 0;
59
60         const char *filter;
61
62         struct dom_sid *sids = NULL;
63         const struct dom_sid *anonymous_sid, *system_sid;
64
65         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
66         NT_STATUS_HAVE_NO_MEMORY(tmp_ctx);
67
68         session_info = talloc_zero(tmp_ctx, struct auth_session_info);
69         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info, tmp_ctx);
70
71         session_info->info = talloc_reference(session_info, user_info_dc->info);
72
73         session_info->torture = talloc_zero(session_info, struct auth_user_info_torture);
74         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info->torture, tmp_ctx);
75         session_info->torture->num_dc_sids = user_info_dc->num_sids;
76         session_info->torture->dc_sids = talloc_reference(session_info, user_info_dc->sids);
77         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info->torture->dc_sids, tmp_ctx);
78
79         /* unless set otherwise, the session key is the user session
80          * key from the auth subsystem */ 
81         session_info->session_key = data_blob_talloc(session_info, user_info_dc->user_session_key.data, user_info_dc->user_session_key.length);
82         if (!session_info->session_key.data && session_info->session_key.length) {
83                 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info->session_key.data, tmp_ctx);
84         }
85
86         anonymous_sid = dom_sid_parse_talloc(tmp_ctx, SID_NT_ANONYMOUS);
87         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(anonymous_sid, tmp_ctx);
88
89         system_sid = dom_sid_parse_talloc(tmp_ctx, SID_NT_SYSTEM);
90         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(system_sid, tmp_ctx);
91
92         sids = talloc_array(tmp_ctx, struct dom_sid, user_info_dc->num_sids);
93         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sids, tmp_ctx);
94         if (!sids) {
95                 talloc_free(tmp_ctx);
96                 return NT_STATUS_NO_MEMORY;
97         }
98
99         num_sids = user_info_dc->num_sids;
100
101         for (i=0; i < user_info_dc->num_sids; i++) {
102                 sids[i] = user_info_dc->sids[i];
103         }
104
105         /*
106          * Finally add the "standard" sids.
107          * The only difference between guest and "anonymous"
108          * is the addition of Authenticated_Users.
109          */
110
111         if (session_info_flags & AUTH_SESSION_INFO_DEFAULT_GROUPS) {
112                 sids = talloc_realloc(tmp_ctx, sids, struct dom_sid, num_sids + 2);
113                 NT_STATUS_HAVE_NO_MEMORY(sids);
114
115                 if (!dom_sid_parse(SID_WORLD, &sids[num_sids])) {
116                         return NT_STATUS_INTERNAL_ERROR;
117                 }
118                 num_sids++;
119
120                 if (!dom_sid_parse(SID_NT_NETWORK, &sids[num_sids])) {
121                         return NT_STATUS_INTERNAL_ERROR;
122                 }
123                 num_sids++;
124         }
125
126         if (session_info_flags & AUTH_SESSION_INFO_AUTHENTICATED) {
127                 sids = talloc_realloc(tmp_ctx, sids, struct dom_sid, num_sids + 1);
128                 NT_STATUS_HAVE_NO_MEMORY(sids);
129
130                 if (!dom_sid_parse(SID_NT_AUTHENTICATED_USERS, &sids[num_sids])) {
131                         return NT_STATUS_INTERNAL_ERROR;
132                 }
133                 num_sids++;
134         }
135
136
137
138         if (num_sids > PRIMARY_USER_SID_INDEX && dom_sid_equal(anonymous_sid, &sids[PRIMARY_USER_SID_INDEX])) {
139                 /* Don't expand nested groups of system, anonymous etc*/
140         } else if (num_sids > PRIMARY_USER_SID_INDEX && dom_sid_equal(system_sid, &sids[PRIMARY_USER_SID_INDEX])) {
141                 /* Don't expand nested groups of system, anonymous etc*/
142         } else if (sam_ctx) {
143                 filter = talloc_asprintf(tmp_ctx, "(&(objectClass=group)(groupType:1.2.840.113556.1.4.803:=%u))",
144                                          GROUP_TYPE_BUILTIN_LOCAL_GROUP);
145
146                 /* Search for each group in the token */
147                 for (i = 0; i < num_sids; i++) {
148                         char *sid_string;
149                         const char *sid_dn;
150                         DATA_BLOB sid_blob;
151                         int ret;
152
153                         sid_string = dom_sid_string(tmp_ctx,
154                                                       &sids[i]);
155                         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sid_string, user_info_dc);
156                         
157                         sid_dn = talloc_asprintf(tmp_ctx, "<SID=%s>", sid_string);
158                         talloc_free(sid_string);
159                         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(sid_dn, user_info_dc);
160                         sid_blob = data_blob_string_const(sid_dn);
161                         
162                         /* This function takes in memberOf values and expands
163                          * them, as long as they meet the filter - so only
164                          * builtin groups
165                          *
166                          * We already have the SID in the token, so set
167                          * 'only childs' flag to true */
168                         nt_status = dsdb_expand_nested_groups(sam_ctx, &sid_blob, true, filter,
169                                                               tmp_ctx, &sids, &num_sids);
170                         if (!NT_STATUS_IS_OK(nt_status)) {
171                                 talloc_free(tmp_ctx);
172                                 return nt_status;
173                         }
174                 }
175         }
176
177         nt_status = security_token_create(session_info,
178                                           lp_ctx,
179                                           num_sids,
180                                           sids,
181                                           session_info_flags,
182                                           &session_info->security_token);
183         NT_STATUS_NOT_OK_RETURN_AND_FREE(nt_status, tmp_ctx);
184
185         session_info->credentials = NULL;
186
187         talloc_steal(mem_ctx, session_info);
188         *_session_info = session_info;
189         talloc_free(tmp_ctx);
190         return NT_STATUS_OK;
191 }
192
193
194 /* Fill out the auth_session_info with a cli_credentials based on the
195  * auth_session_info we were forwarded over named pipe forwarding.
196  *
197  * NOTE: The stucture members of session_info_transport are stolen
198  * with talloc_move() into auth_session_info for long term use
199  */
200 struct auth_session_info *auth_session_info_from_transport(TALLOC_CTX *mem_ctx,
201                                                            struct auth_session_info_transport *session_info_transport,
202                                                            struct loadparm_context *lp_ctx,
203                                                            const char **reason)
204 {
205         struct auth_session_info *session_info;
206         session_info = talloc_steal(mem_ctx, session_info_transport->session_info);
207 #ifdef HAVE_GSS_IMPORT_CRED
208         if (session_info_transport->exported_gssapi_credentials.length) {
209                 struct cli_credentials *creds;
210                 OM_uint32 minor_status;
211                 gss_buffer_desc cred_token;
212                 gss_cred_id_t cred_handle;
213                 const char *error_string;
214                 int ret;
215
216                 DEBUG(10, ("Delegated credentials supplied by client\n"));
217
218                 cred_token.value = session_info_transport->exported_gssapi_credentials.data;
219                 cred_token.length = session_info_transport->exported_gssapi_credentials.length;
220
221                 ret = gss_import_cred(&minor_status,
222                                       &cred_token,
223                                       &cred_handle);
224                 if (ret != GSS_S_COMPLETE) {
225                         *reason = "Internal error in gss_import_cred()";
226                         return NULL;
227                 }
228
229                 creds = cli_credentials_init(session_info);
230                 if (!creds) {
231                         *reason = "Out of memory in cli_credentials_init()";
232                         return NULL;
233                 }
234                 session_info->credentials = creds;
235
236                 cli_credentials_set_conf(creds, lp_ctx);
237                 /* Just so we don't segfault trying to get at a username */
238                 cli_credentials_set_anonymous(creds);
239
240                 ret = cli_credentials_set_client_gss_creds(creds,
241                                                            lp_ctx,
242                                                            cred_handle,
243                                                            CRED_SPECIFIED,
244                                                            &error_string);
245                 if (ret) {
246                         *reason = talloc_asprintf(mem_ctx,
247                                                   "Failed to set pipe forwarded"
248                                                   "creds: %s\n", error_string);
249                         return NULL;
250                 }
251
252                 /* This credential handle isn't useful for password
253                  * authentication, so ensure nobody tries to do that */
254                 cli_credentials_set_kerberos_state(creds,
255                                                    CRED_MUST_USE_KERBEROS);
256
257         }
258 #endif
259         return session_info;
260 }
261
262
263 /* Create a auth_session_info_transport from an auth_session_info.
264  *
265  * NOTE: Members of the auth_session_info_transport structure are
266  * talloc_referenced() into this structure, and should not be changed.
267  */
268 NTSTATUS auth_session_info_transport_from_session(TALLOC_CTX *mem_ctx,
269                                                   struct auth_session_info *session_info,
270                                                   struct tevent_context *event_ctx,
271                                                   struct loadparm_context *lp_ctx,
272                                                   struct auth_session_info_transport **transport_out)
273 {
274
275         struct auth_session_info_transport *session_info_transport
276                 = talloc_zero(mem_ctx, struct auth_session_info_transport);
277         if (!session_info_transport) {
278                 return NT_STATUS_NO_MEMORY;
279         };
280         session_info_transport->session_info = talloc_reference(session_info_transport, session_info);
281         if (!session_info_transport->session_info) {
282                 return NT_STATUS_NO_MEMORY;
283         };
284 #ifdef HAVE_GSS_EXPORT_CRED
285         if (session_info->credentials) {
286                 struct gssapi_creds_container *gcc;
287                 OM_uint32 gret;
288                 OM_uint32 minor_status;
289                 gss_buffer_desc cred_token;
290                 const char *error_string;
291                 int ret;
292
293                 ret = cli_credentials_get_client_gss_creds(session_info->credentials,
294                                                            event_ctx,
295                                                            lp_ctx,
296                                                            &gcc, &error_string);
297                 if (ret != 0) {
298                         *transport_out = session_info_transport;
299                         return NT_STATUS_OK;
300                 }
301
302                 gret = gss_export_cred(&minor_status,
303                                        gcc->creds,
304                                        &cred_token);
305                 if (gret != GSS_S_COMPLETE) {
306                         return NT_STATUS_INTERNAL_ERROR;
307                 }
308
309                 if (cred_token.length) {
310                         session_info_transport->exported_gssapi_credentials
311                                 = data_blob_talloc(session_info_transport,
312                                                    cred_token.value,
313                                                    cred_token.length);
314                         gss_release_buffer(&minor_status, &cred_token);
315                         NT_STATUS_HAVE_NO_MEMORY(session_info_transport->exported_gssapi_credentials.data);
316                 }
317         }
318 #endif
319         *transport_out = session_info_transport;
320         return NT_STATUS_OK;
321 }
322
323
324 /* Produce a session_info for an arbitary DN or principal in the local
325  * DB, assuming the local DB holds all the groups
326  *
327  * Supply either a principal or a DN
328  */
329 NTSTATUS authsam_get_session_info_principal(TALLOC_CTX *mem_ctx,
330                                             struct loadparm_context *lp_ctx,
331                                             struct ldb_context *sam_ctx,
332                                             const char *principal,
333                                             struct ldb_dn *user_dn,
334                                             uint32_t session_info_flags,
335                                             struct auth_session_info **session_info)
336 {
337         NTSTATUS nt_status;
338         struct auth_user_info_dc *user_info_dc;
339         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
340         if (!tmp_ctx) {
341                 return NT_STATUS_NO_MEMORY;
342         }
343         nt_status = authsam_get_user_info_dc_principal(tmp_ctx, lp_ctx, sam_ctx,
344                                                       principal, user_dn,
345                                                       &user_info_dc);
346         if (!NT_STATUS_IS_OK(nt_status)) {
347                 talloc_free(tmp_ctx);
348                 return nt_status;
349         }
350
351         nt_status = auth_generate_session_info(tmp_ctx, lp_ctx, sam_ctx,
352                                                user_info_dc, session_info_flags,
353                                                session_info);
354
355         if (NT_STATUS_IS_OK(nt_status)) {
356                 talloc_steal(mem_ctx, *session_info);
357         }
358         talloc_free(tmp_ctx);
359         return nt_status;
360 }
361
362 /**
363  * prints a struct auth_session_info security token to debug output.
364  */
365 void auth_session_info_debug(int dbg_lev, 
366                              const struct auth_session_info *session_info)
367 {
368         if (!session_info) {
369                 DEBUG(dbg_lev, ("Session Info: (NULL)\n"));
370                 return; 
371         }
372
373         security_token_debug(0, dbg_lev, session_info->security_token);
374 }