2 Unix SMB/CIFS implementation.
3 Authentication utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Andrew Bartlett 2001
6 Copyright (C) Jeremy Allison 2000-2001
7 Copyright (C) Rafal Szczesniak 2002
8 Copyright (C) Volker Lendecke 2006
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 "smbd/globals.h"
26 #include "../libcli/auth/libcli_auth.h"
27 #include "../lib/crypto/arcfour.h"
28 #include "rpc_client/init_lsa.h"
29 #include "../libcli/security/security.h"
32 #define DBGC_CLASS DBGC_AUTH
34 /****************************************************************************
35 Create a UNIX user on demand.
36 ****************************************************************************/
38 static int _smb_create_user(const char *domain
, const char *unix_username
, const char *homedir
)
40 TALLOC_CTX
*ctx
= talloc_tos();
44 add_script
= talloc_strdup(ctx
, lp_adduser_script());
45 if (!add_script
|| !*add_script
) {
48 add_script
= talloc_all_string_sub(ctx
,
56 add_script
= talloc_all_string_sub(ctx
,
65 add_script
= talloc_all_string_sub(ctx
,
73 ret
= smbrun(add_script
,NULL
);
76 ("smb_create_user: Running the command `%s' gave %d\n",
81 /****************************************************************************
82 Create an auth_usersupplied_data structure after appropriate mapping.
83 ****************************************************************************/
85 NTSTATUS
make_user_info_map(struct auth_usersupplied_info
**user_info
,
87 const char *client_domain
,
88 const char *workstation_name
,
91 const struct samr_Password
*lm_interactive_pwd
,
92 const struct samr_Password
*nt_interactive_pwd
,
93 const char *plaintext
,
94 enum auth_password_state password_state
)
99 char *internal_username
= NULL
;
101 was_mapped
= map_username(talloc_tos(), smb_name
, &internal_username
);
102 if (!internal_username
) {
103 return NT_STATUS_NO_MEMORY
;
106 DEBUG(5, ("Mapping user [%s]\\[%s] from workstation [%s]\n",
107 client_domain
, smb_name
, workstation_name
));
109 domain
= client_domain
;
111 /* If you connect to a Windows domain member using a bogus domain name,
112 * the Windows box will map the BOGUS\user to SAMNAME\user. Thus, if
113 * the Windows box is a DC the name will become DOMAIN\user and be
114 * authenticated against AD, if the Windows box is a member server but
115 * not a DC the name will become WORKSTATION\user. A standalone
116 * non-domain member box will also map to WORKSTATION\user.
117 * This also deals with the client passing in a "" domain */
119 if (!is_trusted_domain(domain
) &&
120 !strequal(domain
, my_sam_name()))
122 if (lp_map_untrusted_to_domain())
123 domain
= my_sam_name();
125 domain
= get_global_sam_name();
126 DEBUG(5, ("Mapped domain from [%s] to [%s] for user [%s] from "
127 "workstation [%s]\n",
128 client_domain
, domain
, smb_name
, workstation_name
));
131 /* We know that the given domain is trusted (and we are allowing them),
132 * it is our global SAM name, or for legacy behavior it is our
133 * primary domain name */
135 result
= make_user_info(user_info
, smb_name
, internal_username
,
136 client_domain
, domain
, workstation_name
,
138 lm_interactive_pwd
, nt_interactive_pwd
,
139 plaintext
, password_state
);
140 if (NT_STATUS_IS_OK(result
)) {
141 /* We have tried mapping */
142 (*user_info
)->mapped_state
= True
;
143 /* did we actually map the user to a different name? */
144 (*user_info
)->was_mapped
= was_mapped
;
149 /****************************************************************************
150 Create an auth_usersupplied_data, making the DATA_BLOBs here.
151 Decrypt and encrypt the passwords.
152 ****************************************************************************/
154 bool make_user_info_netlogon_network(struct auth_usersupplied_info
**user_info
,
155 const char *smb_name
,
156 const char *client_domain
,
157 const char *workstation_name
,
158 uint32 logon_parameters
,
159 const uchar
*lm_network_pwd
,
161 const uchar
*nt_network_pwd
,
166 DATA_BLOB lm_blob
= data_blob(lm_network_pwd
, lm_pwd_len
);
167 DATA_BLOB nt_blob
= data_blob(nt_network_pwd
, nt_pwd_len
);
169 status
= make_user_info_map(user_info
,
170 smb_name
, client_domain
,
172 lm_pwd_len
? &lm_blob
: NULL
,
173 nt_pwd_len
? &nt_blob
: NULL
,
175 AUTH_PASSWORD_RESPONSE
);
177 if (NT_STATUS_IS_OK(status
)) {
178 (*user_info
)->logon_parameters
= logon_parameters
;
180 ret
= NT_STATUS_IS_OK(status
) ? True
: False
;
182 data_blob_free(&lm_blob
);
183 data_blob_free(&nt_blob
);
187 /****************************************************************************
188 Create an auth_usersupplied_data, making the DATA_BLOBs here.
189 Decrypt and encrypt the passwords.
190 ****************************************************************************/
192 bool make_user_info_netlogon_interactive(struct auth_usersupplied_info
**user_info
,
193 const char *smb_name
,
194 const char *client_domain
,
195 const char *workstation_name
,
196 uint32 logon_parameters
,
198 const uchar lm_interactive_pwd
[16],
199 const uchar nt_interactive_pwd
[16],
200 const uchar
*dc_sess_key
)
202 struct samr_Password lm_pwd
;
203 struct samr_Password nt_pwd
;
204 unsigned char local_lm_response
[24];
205 unsigned char local_nt_response
[24];
206 unsigned char key
[16];
208 memcpy(key
, dc_sess_key
, 16);
210 if (lm_interactive_pwd
)
211 memcpy(lm_pwd
.hash
, lm_interactive_pwd
, sizeof(lm_pwd
.hash
));
213 if (nt_interactive_pwd
)
214 memcpy(nt_pwd
.hash
, nt_interactive_pwd
, sizeof(nt_pwd
.hash
));
216 #ifdef DEBUG_PASSWORD
218 dump_data(100, key
, sizeof(key
));
220 DEBUG(100,("lm owf password:"));
221 dump_data(100, lm_pwd
.hash
, sizeof(lm_pwd
.hash
));
223 DEBUG(100,("nt owf password:"));
224 dump_data(100, nt_pwd
.hash
, sizeof(nt_pwd
.hash
));
227 if (lm_interactive_pwd
)
228 arcfour_crypt(lm_pwd
.hash
, key
, sizeof(lm_pwd
.hash
));
230 if (nt_interactive_pwd
)
231 arcfour_crypt(nt_pwd
.hash
, key
, sizeof(nt_pwd
.hash
));
233 #ifdef DEBUG_PASSWORD
234 DEBUG(100,("decrypt of lm owf password:"));
235 dump_data(100, lm_pwd
.hash
, sizeof(lm_pwd
));
237 DEBUG(100,("decrypt of nt owf password:"));
238 dump_data(100, nt_pwd
.hash
, sizeof(nt_pwd
));
241 if (lm_interactive_pwd
)
242 SMBOWFencrypt(lm_pwd
.hash
, chal
,
245 if (nt_interactive_pwd
)
246 SMBOWFencrypt(nt_pwd
.hash
, chal
,
249 /* Password info paranoia */
255 DATA_BLOB local_lm_blob
;
256 DATA_BLOB local_nt_blob
;
258 if (lm_interactive_pwd
) {
259 local_lm_blob
= data_blob(local_lm_response
,
260 sizeof(local_lm_response
));
263 if (nt_interactive_pwd
) {
264 local_nt_blob
= data_blob(local_nt_response
,
265 sizeof(local_nt_response
));
268 nt_status
= make_user_info_map(
270 smb_name
, client_domain
, workstation_name
,
271 lm_interactive_pwd
? &local_lm_blob
: NULL
,
272 nt_interactive_pwd
? &local_nt_blob
: NULL
,
273 lm_interactive_pwd
? &lm_pwd
: NULL
,
274 nt_interactive_pwd
? &nt_pwd
: NULL
,
275 NULL
, AUTH_PASSWORD_HASH
);
277 if (NT_STATUS_IS_OK(nt_status
)) {
278 (*user_info
)->logon_parameters
= logon_parameters
;
281 ret
= NT_STATUS_IS_OK(nt_status
) ? True
: False
;
282 data_blob_free(&local_lm_blob
);
283 data_blob_free(&local_nt_blob
);
289 /****************************************************************************
290 Create an auth_usersupplied_data structure
291 ****************************************************************************/
293 bool make_user_info_for_reply(struct auth_usersupplied_info
**user_info
,
294 const char *smb_name
,
295 const char *client_domain
,
297 DATA_BLOB plaintext_password
)
300 DATA_BLOB local_lm_blob
;
301 DATA_BLOB local_nt_blob
;
302 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
303 char *plaintext_password_string
;
305 * Not encrypted - do so.
308 DEBUG(5,("make_user_info_for_reply: User passwords not in encrypted "
310 if (plaintext_password
.data
&& plaintext_password
.length
) {
311 unsigned char local_lm_response
[24];
313 #ifdef DEBUG_PASSWORD
314 DEBUG(10,("Unencrypted password (len %d):\n",
315 (int)plaintext_password
.length
));
316 dump_data(100, plaintext_password
.data
,
317 plaintext_password
.length
);
320 SMBencrypt( (const char *)plaintext_password
.data
,
321 (const uchar
*)chal
, local_lm_response
);
322 local_lm_blob
= data_blob(local_lm_response
, 24);
324 /* We can't do an NT hash here, as the password needs to be
326 local_nt_blob
= data_blob_null
;
328 local_lm_blob
= data_blob_null
;
329 local_nt_blob
= data_blob_null
;
332 plaintext_password_string
= talloc_strndup(talloc_tos(),
333 (const char *)plaintext_password
.data
,
334 plaintext_password
.length
);
335 if (!plaintext_password_string
) {
339 ret
= make_user_info_map(
340 user_info
, smb_name
, client_domain
,
341 get_remote_machine_name(),
342 local_lm_blob
.data
? &local_lm_blob
: NULL
,
343 local_nt_blob
.data
? &local_nt_blob
: NULL
,
345 plaintext_password_string
,
346 AUTH_PASSWORD_PLAIN
);
348 if (plaintext_password_string
) {
349 memset(plaintext_password_string
, '\0', strlen(plaintext_password_string
));
350 talloc_free(plaintext_password_string
);
353 data_blob_free(&local_lm_blob
);
354 return NT_STATUS_IS_OK(ret
) ? True
: False
;
357 /****************************************************************************
358 Create an auth_usersupplied_data structure
359 ****************************************************************************/
361 NTSTATUS
make_user_info_for_reply_enc(struct auth_usersupplied_info
**user_info
,
362 const char *smb_name
,
363 const char *client_domain
,
364 DATA_BLOB lm_resp
, DATA_BLOB nt_resp
)
366 return make_user_info_map(user_info
, smb_name
,
368 get_remote_machine_name(),
369 lm_resp
.data
&& (lm_resp
.length
> 0) ? &lm_resp
: NULL
,
370 nt_resp
.data
&& (nt_resp
.length
> 0) ? &nt_resp
: NULL
,
372 AUTH_PASSWORD_RESPONSE
);
375 /****************************************************************************
376 Create a guest user_info blob, for anonymous authenticaion.
377 ****************************************************************************/
379 bool make_user_info_guest(struct auth_usersupplied_info
**user_info
)
383 nt_status
= make_user_info(user_info
,
390 AUTH_PASSWORD_RESPONSE
);
392 return NT_STATUS_IS_OK(nt_status
) ? True
: False
;
395 static NTSTATUS
log_nt_token(struct security_token
*token
)
397 TALLOC_CTX
*frame
= talloc_stackframe();
402 if ((lp_log_nt_token_command() == NULL
) ||
403 (strlen(lp_log_nt_token_command()) == 0)) {
408 group_sidstr
= talloc_strdup(frame
, "");
409 for (i
=1; i
<token
->num_sids
; i
++) {
410 group_sidstr
= talloc_asprintf(
411 frame
, "%s %s", group_sidstr
,
412 sid_string_talloc(frame
, &token
->sids
[i
]));
415 command
= talloc_string_sub(
416 frame
, lp_log_nt_token_command(),
417 "%s", sid_string_talloc(frame
, &token
->sids
[0]));
418 command
= talloc_string_sub(frame
, command
, "%t", group_sidstr
);
420 if (command
== NULL
) {
422 return NT_STATUS_NO_MEMORY
;
425 DEBUG(8, ("running command: [%s]\n", command
));
426 if (smbrun(command
, NULL
) != 0) {
427 DEBUG(0, ("Could not log NT token\n"));
429 return NT_STATUS_ACCESS_DENIED
;
437 * Create the token to use from server_info->info3 and
438 * server_info->sids (the info3/sam groups). Find the unix gids.
441 NTSTATUS
create_local_token(struct auth_serversupplied_info
*server_info
)
445 struct dom_sid tmp_sid
;
448 * If winbind is not around, we can not make much use of the SIDs the
449 * domain controller provided us with. Likewise if the user name was
450 * mapped to some local unix user.
453 if (((lp_server_role() == ROLE_DOMAIN_MEMBER
) && !winbind_ping()) ||
454 (server_info
->nss_token
)) {
455 status
= create_token_from_username(server_info
,
456 server_info
->unix_name
,
458 &server_info
->utok
.uid
,
459 &server_info
->utok
.gid
,
460 &server_info
->unix_name
,
461 &server_info
->security_token
);
464 status
= create_local_nt_token_from_info3(server_info
,
468 &server_info
->security_token
);
471 if (!NT_STATUS_IS_OK(status
)) {
475 /* Convert the SIDs to gids. */
477 server_info
->utok
.ngroups
= 0;
478 server_info
->utok
.groups
= NULL
;
480 /* Start at index 1, where the groups start. */
482 for (i
=1; i
<server_info
->security_token
->num_sids
; i
++) {
484 struct dom_sid
*sid
= &server_info
->security_token
->sids
[i
];
486 if (!sid_to_gid(sid
, &gid
)) {
487 DEBUG(10, ("Could not convert SID %s to gid, "
488 "ignoring it\n", sid_string_dbg(sid
)));
491 add_gid_to_array_unique(server_info
, gid
,
492 &server_info
->utok
.groups
,
493 &server_info
->utok
.ngroups
);
497 * Add the "Unix Group" SID for each gid to catch mapped groups
498 * and their Unix equivalent. This is to solve the backwards
499 * compatibility problem of 'valid users = +ntadmin' where
500 * ntadmin has been paired with "Domain Admins" in the group
501 * mapping table. Otherwise smb.conf would need to be changed
502 * to 'valid user = "Domain Admins"'. --jerry
504 * For consistency we also add the "Unix User" SID,
505 * so that the complete unix token is represented within
509 uid_to_unix_users_sid(server_info
->utok
.uid
, &tmp_sid
);
511 add_sid_to_array_unique(server_info
->security_token
, &tmp_sid
,
512 &server_info
->security_token
->sids
,
513 &server_info
->security_token
->num_sids
);
515 for ( i
=0; i
<server_info
->utok
.ngroups
; i
++ ) {
516 gid_to_unix_groups_sid(server_info
->utok
.groups
[i
], &tmp_sid
);
517 add_sid_to_array_unique(server_info
->security_token
, &tmp_sid
,
518 &server_info
->security_token
->sids
,
519 &server_info
->security_token
->num_sids
);
522 security_token_debug(DBGC_AUTH
, 10, server_info
->security_token
);
523 debug_unix_user_token(DBGC_AUTH
, 10,
524 server_info
->utok
.uid
,
525 server_info
->utok
.gid
,
526 server_info
->utok
.ngroups
,
527 server_info
->utok
.groups
);
529 status
= log_nt_token(server_info
->security_token
);
533 /***************************************************************************
534 Make (and fill) a server_info struct from a 'struct passwd' by conversion
536 ***************************************************************************/
538 NTSTATUS
make_server_info_pw(struct auth_serversupplied_info
**server_info
,
543 struct samu
*sampass
= NULL
;
544 char *qualified_name
= NULL
;
545 TALLOC_CTX
*mem_ctx
= NULL
;
546 struct dom_sid u_sid
;
547 enum lsa_SidType type
;
548 struct auth_serversupplied_info
*result
;
551 * The SID returned in server_info->sam_account is based
552 * on our SAM sid even though for a pure UNIX account this should
553 * not be the case as it doesn't really exist in the SAM db.
554 * This causes lookups on "[in]valid users" to fail as they
555 * will lookup this name as a "Unix User" SID to check against
556 * the user token. Fix this by adding the "Unix User"\unix_username
557 * SID to the sid array. The correct fix should probably be
558 * changing the server_info->sam_account user SID to be a
559 * S-1-22 Unix SID, but this might break old configs where
560 * plaintext passwords were used with no SAM backend.
563 mem_ctx
= talloc_init("make_server_info_pw_tmp");
565 return NT_STATUS_NO_MEMORY
;
568 qualified_name
= talloc_asprintf(mem_ctx
, "%s\\%s",
569 unix_users_domain_name(),
571 if (!qualified_name
) {
572 TALLOC_FREE(mem_ctx
);
573 return NT_STATUS_NO_MEMORY
;
576 if (!lookup_name(mem_ctx
, qualified_name
, LOOKUP_NAME_ALL
,
579 TALLOC_FREE(mem_ctx
);
580 return NT_STATUS_NO_SUCH_USER
;
583 TALLOC_FREE(mem_ctx
);
585 if (type
!= SID_NAME_USER
) {
586 return NT_STATUS_NO_SUCH_USER
;
589 if ( !(sampass
= samu_new( NULL
)) ) {
590 return NT_STATUS_NO_MEMORY
;
593 status
= samu_set_unix( sampass
, pwd
);
594 if (!NT_STATUS_IS_OK(status
)) {
598 /* In pathological cases the above call can set the account
599 * name to the DOMAIN\username form. Reset the account name
600 * using unix_username */
601 pdb_set_username(sampass
, unix_username
, PDB_SET
);
603 /* set the user sid to be the calculated u_sid */
604 pdb_set_user_sid(sampass
, &u_sid
, PDB_SET
);
606 result
= make_server_info(NULL
);
607 if (result
== NULL
) {
608 TALLOC_FREE(sampass
);
609 return NT_STATUS_NO_MEMORY
;
612 status
= samu_to_SamInfo3(result
, sampass
, global_myname(),
613 &result
->info3
, &result
->extra
);
614 TALLOC_FREE(sampass
);
615 if (!NT_STATUS_IS_OK(status
)) {
616 DEBUG(10, ("Failed to convert samu to info3: %s\n",
622 result
->unix_name
= talloc_strdup(result
, unix_username
);
623 result
->sanitized_username
= sanitize_username(result
, unix_username
);
625 if ((result
->unix_name
== NULL
)
626 || (result
->sanitized_username
== NULL
)) {
628 return NT_STATUS_NO_MEMORY
;
631 result
->utok
.uid
= pwd
->pw_uid
;
632 result
->utok
.gid
= pwd
->pw_gid
;
634 *server_info
= result
;
639 static NTSTATUS
get_guest_info3(TALLOC_CTX
*mem_ctx
,
640 struct netr_SamInfo3
*info3
)
642 const char *guest_account
= lp_guestaccount();
643 struct dom_sid domain_sid
;
647 pwd
= Get_Pwnam_alloc(mem_ctx
, guest_account
);
649 DEBUG(0,("SamInfo3_for_guest: Unable to locate guest "
650 "account [%s]!\n", guest_account
));
651 return NT_STATUS_NO_SUCH_USER
;
654 /* Set acount name */
655 tmp
= talloc_strdup(mem_ctx
, pwd
->pw_name
);
657 return NT_STATUS_NO_MEMORY
;
659 init_lsa_String(&info3
->base
.account_name
, tmp
);
661 /* Set domain name */
662 tmp
= talloc_strdup(mem_ctx
, get_global_sam_name());
664 return NT_STATUS_NO_MEMORY
;
666 init_lsa_StringLarge(&info3
->base
.domain
, tmp
);
669 sid_copy(&domain_sid
, get_global_sam_sid());
671 info3
->base
.domain_sid
= dom_sid_dup(mem_ctx
, &domain_sid
);
672 if (info3
->base
.domain_sid
== NULL
) {
673 return NT_STATUS_NO_MEMORY
;
677 info3
->base
.rid
= DOMAIN_RID_GUEST
;
680 info3
->base
.primary_gid
= BUILTIN_RID_GUESTS
;
686 /***************************************************************************
687 Make (and fill) a user_info struct for a guest login.
688 This *must* succeed for smbd to start. If there is no mapping entry for
689 the guest gid, then create one.
690 ***************************************************************************/
692 static NTSTATUS
make_new_server_info_guest(struct auth_serversupplied_info
**server_info
)
694 static const char zeros
[16] = {0};
695 const char *guest_account
= lp_guestaccount();
696 const char *domain
= global_myname();
697 struct netr_SamInfo3 info3
;
702 tmp_ctx
= talloc_stackframe();
703 if (tmp_ctx
== NULL
) {
704 return NT_STATUS_NO_MEMORY
;
709 status
= get_guest_info3(tmp_ctx
, &info3
);
710 if (!NT_STATUS_IS_OK(status
)) {
714 status
= make_server_info_info3(tmp_ctx
,
719 if (!NT_STATUS_IS_OK(status
)) {
723 (*server_info
)->guest
= True
;
725 status
= create_local_token(*server_info
);
726 if (!NT_STATUS_IS_OK(status
)) {
727 DEBUG(10, ("create_local_token failed: %s\n",
732 /* annoying, but the Guest really does have a session key, and it is
734 (*server_info
)->user_session_key
= data_blob(zeros
, sizeof(zeros
));
735 (*server_info
)->lm_session_key
= data_blob(zeros
, sizeof(zeros
));
737 alpha_strcpy(tmp
, (*server_info
)->info3
->base
.account_name
.string
,
738 ". _-$", sizeof(tmp
));
739 (*server_info
)->sanitized_username
= talloc_strdup(*server_info
, tmp
);
741 status
= NT_STATUS_OK
;
743 TALLOC_FREE(tmp_ctx
);
747 /***************************************************************************
748 Make (and fill) a user_info struct for a system user login.
749 This *must* succeed for smbd to start.
750 ***************************************************************************/
752 static NTSTATUS
make_new_server_info_system(TALLOC_CTX
*mem_ctx
,
753 struct auth_serversupplied_info
**server_info
)
758 pwd
= getpwuid_alloc(mem_ctx
, sec_initial_uid());
760 return NT_STATUS_NO_MEMORY
;
763 status
= make_serverinfo_from_username(mem_ctx
,
768 if (!NT_STATUS_IS_OK(status
)) {
772 (*server_info
)->system
= true;
774 status
= add_sid_to_array_unique((*server_info
)->security_token
->sids
,
776 &(*server_info
)->security_token
->sids
,
777 &(*server_info
)->security_token
->num_sids
);
778 if (!NT_STATUS_IS_OK(status
)) {
779 TALLOC_FREE((*server_info
));
786 /****************************************************************************
787 Fake a auth_serversupplied_info just from a username
788 ****************************************************************************/
790 NTSTATUS
make_serverinfo_from_username(TALLOC_CTX
*mem_ctx
,
791 const char *username
,
793 struct auth_serversupplied_info
**presult
)
795 struct auth_serversupplied_info
*result
;
799 pwd
= Get_Pwnam_alloc(talloc_tos(), username
);
801 return NT_STATUS_NO_SUCH_USER
;
804 status
= make_server_info_pw(&result
, pwd
->pw_name
, pwd
);
808 if (!NT_STATUS_IS_OK(status
)) {
812 result
->nss_token
= true;
813 result
->guest
= is_guest
;
815 status
= create_local_token(result
);
817 if (!NT_STATUS_IS_OK(status
)) {
822 *presult
= talloc_steal(mem_ctx
, result
);
827 struct auth_serversupplied_info
*copy_serverinfo(TALLOC_CTX
*mem_ctx
,
828 const struct auth_serversupplied_info
*src
)
830 struct auth_serversupplied_info
*dst
;
832 dst
= make_server_info(mem_ctx
);
837 dst
->guest
= src
->guest
;
838 dst
->system
= src
->system
;
839 dst
->utok
.uid
= src
->utok
.uid
;
840 dst
->utok
.gid
= src
->utok
.gid
;
841 dst
->utok
.ngroups
= src
->utok
.ngroups
;
842 if (src
->utok
.ngroups
!= 0) {
843 dst
->utok
.groups
= (gid_t
*)TALLOC_MEMDUP(
844 dst
, src
->utok
.groups
,
845 sizeof(gid_t
)*dst
->utok
.ngroups
);
847 dst
->utok
.groups
= NULL
;
850 if (src
->security_token
) {
851 dst
->security_token
= dup_nt_token(dst
, src
->security_token
);
852 if (!dst
->security_token
) {
858 dst
->user_session_key
= data_blob_talloc( dst
, src
->user_session_key
.data
,
859 src
->user_session_key
.length
);
861 dst
->lm_session_key
= data_blob_talloc(dst
, src
->lm_session_key
.data
,
862 src
->lm_session_key
.length
);
864 dst
->info3
= copy_netr_SamInfo3(dst
, src
->info3
);
869 dst
->extra
= src
->extra
;
871 dst
->unix_name
= talloc_strdup(dst
, src
->unix_name
);
872 if (!dst
->unix_name
) {
877 dst
->sanitized_username
= talloc_strdup(dst
, src
->sanitized_username
);
878 if (!dst
->sanitized_username
) {
887 * Set a new session key. Used in the rpc server where we have to override the
888 * SMB level session key with SystemLibraryDTC
891 bool server_info_set_session_key(struct auth_serversupplied_info
*info
,
892 DATA_BLOB session_key
)
894 TALLOC_FREE(info
->user_session_key
.data
);
896 info
->user_session_key
= data_blob_talloc(
897 info
, session_key
.data
, session_key
.length
);
899 return (info
->user_session_key
.data
!= NULL
);
902 static struct auth_serversupplied_info
*guest_info
= NULL
;
904 bool init_guest_info(void)
906 if (guest_info
!= NULL
)
909 return NT_STATUS_IS_OK(make_new_server_info_guest(&guest_info
));
912 NTSTATUS
make_server_info_guest(TALLOC_CTX
*mem_ctx
,
913 struct auth_serversupplied_info
**server_info
)
915 *server_info
= copy_serverinfo(mem_ctx
, guest_info
);
916 return (*server_info
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NO_MEMORY
;
919 static struct auth_serversupplied_info
*system_info
= NULL
;
921 bool init_system_info(void)
923 if (system_info
!= NULL
)
926 return NT_STATUS_IS_OK(make_new_server_info_system(NULL
,
930 NTSTATUS
make_server_info_system(TALLOC_CTX
*mem_ctx
,
931 struct auth_serversupplied_info
**server_info
)
933 if (system_info
== NULL
) return NT_STATUS_UNSUCCESSFUL
;
934 *server_info
= copy_serverinfo(mem_ctx
, system_info
);
935 return (*server_info
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NO_MEMORY
;
938 const struct auth_serversupplied_info
*get_server_info_system(void)
943 bool copy_current_user(struct current_user
*dst
, struct current_user
*src
)
946 struct security_token
*nt_token
;
948 groups
= (gid_t
*)memdup(src
->ut
.groups
,
949 sizeof(gid_t
) * src
->ut
.ngroups
);
950 if ((src
->ut
.ngroups
!= 0) && (groups
== NULL
)) {
954 nt_token
= dup_nt_token(NULL
, src
->nt_user_token
);
955 if (nt_token
== NULL
) {
960 dst
->conn
= src
->conn
;
961 dst
->vuid
= src
->vuid
;
962 dst
->ut
.uid
= src
->ut
.uid
;
963 dst
->ut
.gid
= src
->ut
.gid
;
964 dst
->ut
.ngroups
= src
->ut
.ngroups
;
965 dst
->ut
.groups
= groups
;
966 dst
->nt_user_token
= nt_token
;
970 /***************************************************************************
971 Purely internal function for make_server_info_info3
972 ***************************************************************************/
974 static NTSTATUS
check_account(TALLOC_CTX
*mem_ctx
, const char *domain
,
975 const char *username
, char **found_username
,
977 bool *username_was_mapped
)
979 char *orig_dom_user
= NULL
;
980 char *dom_user
= NULL
;
981 char *lower_username
= NULL
;
982 char *real_username
= NULL
;
983 struct passwd
*passwd
;
985 lower_username
= talloc_strdup(mem_ctx
, username
);
986 if (!lower_username
) {
987 return NT_STATUS_NO_MEMORY
;
989 strlower_m( lower_username
);
991 orig_dom_user
= talloc_asprintf(mem_ctx
,
994 *lp_winbind_separator(),
996 if (!orig_dom_user
) {
997 return NT_STATUS_NO_MEMORY
;
1000 /* Get the passwd struct. Try to create the account if necessary. */
1002 *username_was_mapped
= map_username(mem_ctx
, orig_dom_user
, &dom_user
);
1004 return NT_STATUS_NO_MEMORY
;
1007 passwd
= smb_getpwnam(mem_ctx
, dom_user
, &real_username
, True
);
1009 DEBUG(3, ("Failed to find authenticated user %s via "
1010 "getpwnam(), denying access.\n", dom_user
));
1011 return NT_STATUS_NO_SUCH_USER
;
1014 if (!real_username
) {
1015 return NT_STATUS_NO_MEMORY
;
1020 /* This is pointless -- there is no suport for differing
1021 unix and windows names. Make sure to always store the
1022 one we actually looked up and succeeded. Have I mentioned
1023 why I hate the 'winbind use default domain' parameter?
1026 *found_username
= talloc_strdup( mem_ctx
, real_username
);
1028 return NT_STATUS_OK
;
1031 /****************************************************************************
1032 Wrapper to allow the getpwnam() call to strip the domain name and
1033 try again in case a local UNIX user is already there. Also run through
1034 the username if we fallback to the username only.
1035 ****************************************************************************/
1037 struct passwd
*smb_getpwnam( TALLOC_CTX
*mem_ctx
, const char *domuser
,
1038 char **p_save_username
, bool create
)
1040 struct passwd
*pw
= NULL
;
1042 char *username
= NULL
;
1044 /* we only save a copy of the username it has been mangled
1045 by winbindd use default domain */
1046 *p_save_username
= NULL
;
1048 /* don't call map_username() here since it has to be done higher
1049 up the stack so we don't call it multiple times */
1051 username
= talloc_strdup(mem_ctx
, domuser
);
1056 p
= strchr_m( username
, *lp_winbind_separator() );
1058 /* code for a DOMAIN\user string */
1061 pw
= Get_Pwnam_alloc( mem_ctx
, domuser
);
1063 /* make sure we get the case of the username correct */
1064 /* work around 'winbind use default domain = yes' */
1066 if ( !strchr_m( pw
->pw_name
, *lp_winbind_separator() ) ) {
1069 /* split the domain and username into 2 strings */
1073 *p_save_username
= talloc_asprintf(mem_ctx
,
1076 *lp_winbind_separator(),
1078 if (!*p_save_username
) {
1083 *p_save_username
= talloc_strdup(mem_ctx
, pw
->pw_name
);
1090 /* setup for lookup of just the username */
1091 /* remember that p and username are overlapping memory */
1094 username
= talloc_strdup(mem_ctx
, p
);
1100 /* just lookup a plain username */
1102 pw
= Get_Pwnam_alloc(mem_ctx
, username
);
1104 /* Create local user if requested but only if winbindd
1105 is not running. We need to protect against cases
1106 where winbindd is failing and then prematurely
1107 creating users in /etc/passwd */
1109 if ( !pw
&& create
&& !winbind_ping() ) {
1110 /* Don't add a machine account. */
1111 if (username
[strlen(username
)-1] == '$')
1114 _smb_create_user(NULL
, username
, NULL
);
1115 pw
= Get_Pwnam_alloc(mem_ctx
, username
);
1118 /* one last check for a valid passwd struct */
1121 *p_save_username
= talloc_strdup(mem_ctx
, pw
->pw_name
);
1126 /***************************************************************************
1127 Make a server_info struct from the info3 returned by a domain logon
1128 ***************************************************************************/
1130 NTSTATUS
make_server_info_info3(TALLOC_CTX
*mem_ctx
,
1131 const char *sent_nt_username
,
1133 struct auth_serversupplied_info
**server_info
,
1134 struct netr_SamInfo3
*info3
)
1136 static const char zeros
[16] = {0, };
1138 NTSTATUS nt_status
= NT_STATUS_OK
;
1139 char *found_username
= NULL
;
1140 const char *nt_domain
;
1141 const char *nt_username
;
1142 bool username_was_mapped
;
1144 struct auth_serversupplied_info
*result
;
1145 struct dom_sid
*group_sid
;
1146 struct netr_SamInfo3
*i3
;
1149 Here is where we should check the list of
1150 trusted domains, and verify that the SID
1154 nt_username
= talloc_strdup(mem_ctx
, info3
->base
.account_name
.string
);
1156 /* If the server didn't give us one, just use the one we sent
1158 nt_username
= sent_nt_username
;
1161 nt_domain
= talloc_strdup(mem_ctx
, info3
->base
.domain
.string
);
1163 /* If the server didn't give us one, just use the one we sent
1168 /* If getpwnam() fails try the add user script (2.2.x behavior).
1170 We use the _unmapped_ username here in an attempt to provide
1171 consistent username mapping behavior between kerberos and NTLM[SSP]
1172 authentication in domain mode security. I.E. Username mapping
1173 should be applied to the fully qualified username
1174 (e.g. DOMAIN\user) and not just the login name. Yes this means we
1175 called map_username() unnecessarily in make_user_info_map() but
1176 that is how the current code is designed. Making the change here
1177 is the least disruptive place. -- jerry */
1179 /* this call will try to create the user if necessary */
1181 nt_status
= check_account(mem_ctx
, nt_domain
, sent_nt_username
,
1182 &found_username
, &pwd
,
1183 &username_was_mapped
);
1185 if (!NT_STATUS_IS_OK(nt_status
)) {
1189 result
= make_server_info(NULL
);
1190 if (result
== NULL
) {
1191 DEBUG(4, ("make_server_info failed!\n"));
1192 return NT_STATUS_NO_MEMORY
;
1195 result
->unix_name
= talloc_strdup(result
, found_username
);
1197 result
->sanitized_username
= sanitize_username(result
,
1199 if (result
->sanitized_username
== NULL
) {
1200 TALLOC_FREE(result
);
1201 return NT_STATUS_NO_MEMORY
;
1204 /* copy in the info3 */
1205 result
->info3
= i3
= copy_netr_SamInfo3(result
, info3
);
1206 if (result
->info3
== NULL
) {
1207 TALLOC_FREE(result
);
1208 return NT_STATUS_NO_MEMORY
;
1211 /* Fill in the unix info we found on the way */
1212 result
->utok
.uid
= pwd
->pw_uid
;
1213 result
->utok
.gid
= pwd
->pw_gid
;
1215 /* We can't just trust that the primary group sid sent us is something
1216 * we can really use. Obtain the useable sid, and store the original
1217 * one as an additional group if it had to be replaced */
1218 nt_status
= get_primary_group_sid(mem_ctx
, found_username
,
1220 if (!NT_STATUS_IS_OK(nt_status
)) {
1221 TALLOC_FREE(result
);
1225 /* store and check if it is the same we got originally */
1226 sid_peek_rid(group_sid
, &i3
->base
.primary_gid
);
1227 if (i3
->base
.primary_gid
!= info3
->base
.primary_gid
) {
1228 uint32_t n
= i3
->base
.groups
.count
;
1229 /* not the same, store the original as an additional group */
1230 i3
->base
.groups
.rids
=
1231 talloc_realloc(i3
, i3
->base
.groups
.rids
,
1232 struct samr_RidWithAttribute
, n
+ 1);
1233 if (i3
->base
.groups
.rids
== NULL
) {
1234 TALLOC_FREE(result
);
1235 return NT_STATUS_NO_MEMORY
;
1237 i3
->base
.groups
.rids
[n
].rid
= info3
->base
.primary_gid
;
1238 i3
->base
.groups
.rids
[n
].attributes
= SE_GROUP_ENABLED
;
1239 i3
->base
.groups
.count
= n
+ 1;
1242 /* ensure we are never given NULL session keys */
1244 if (memcmp(info3
->base
.key
.key
, zeros
, sizeof(zeros
)) == 0) {
1245 result
->user_session_key
= data_blob_null
;
1247 result
->user_session_key
= data_blob_talloc(
1248 result
, info3
->base
.key
.key
,
1249 sizeof(info3
->base
.key
.key
));
1252 if (memcmp(info3
->base
.LMSessKey
.key
, zeros
, 8) == 0) {
1253 result
->lm_session_key
= data_blob_null
;
1255 result
->lm_session_key
= data_blob_talloc(
1256 result
, info3
->base
.LMSessKey
.key
,
1257 sizeof(info3
->base
.LMSessKey
.key
));
1260 result
->nss_token
|= username_was_mapped
;
1262 *server_info
= result
;
1264 return NT_STATUS_OK
;
1267 /*****************************************************************************
1268 Make a server_info struct from the wbcAuthUserInfo returned by a domain logon
1269 ******************************************************************************/
1271 NTSTATUS
make_server_info_wbcAuthUserInfo(TALLOC_CTX
*mem_ctx
,
1272 const char *sent_nt_username
,
1274 const struct wbcAuthUserInfo
*info
,
1275 struct auth_serversupplied_info
**server_info
)
1277 struct netr_SamInfo3
*info3
;
1279 info3
= wbcAuthUserInfo_to_netr_SamInfo3(mem_ctx
, info
);
1281 return NT_STATUS_NO_MEMORY
;
1284 return make_server_info_info3(mem_ctx
,
1285 sent_nt_username
, domain
,
1286 server_info
, info3
);
1290 * Verify whether or not given domain is trusted.
1292 * @param domain_name name of the domain to be verified
1293 * @return true if domain is one of the trusted ones or
1294 * false if otherwise
1297 bool is_trusted_domain(const char* dom_name
)
1299 struct dom_sid trustdom_sid
;
1302 /* no trusted domains for a standalone server */
1304 if ( lp_server_role() == ROLE_STANDALONE
)
1307 if (dom_name
== NULL
|| dom_name
[0] == '\0') {
1311 if (strequal(dom_name
, get_global_sam_name())) {
1315 /* if we are a DC, then check for a direct trust relationships */
1319 DEBUG (5,("is_trusted_domain: Checking for domain trust with "
1320 "[%s]\n", dom_name
));
1321 ret
= pdb_get_trusteddom_pw(dom_name
, NULL
, NULL
, NULL
);
1329 /* If winbind is around, ask it */
1331 result
= wb_is_trusted_domain(dom_name
);
1333 if (result
== WBC_ERR_SUCCESS
) {
1337 if (result
== WBC_ERR_DOMAIN_NOT_FOUND
) {
1338 /* winbind could not find the domain */
1342 /* The only other possible result is that winbind is not up
1343 and running. We need to update the trustdom_cache
1346 update_trustdom_cache();
1349 /* now the trustdom cache should be available a DC could still
1350 * have a transitive trust so fall back to the cache of trusted
1351 * domains (like a domain member would use */
1353 if ( trustdom_cache_fetch(dom_name
, &trustdom_sid
) ) {