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 2 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, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #define DBGC_CLASS DBGC_AUTH
30 /****************************************************************************
31 Create a UNIX user on demand.
32 ****************************************************************************/
34 static int smb_create_user(const char *domain
, const char *unix_username
, const char *homedir
)
39 pstrcpy(add_script
, lp_adduser_script());
42 all_string_sub(add_script
, "%u", unix_username
, sizeof(pstring
));
44 all_string_sub(add_script
, "%D", domain
, sizeof(pstring
));
46 all_string_sub(add_script
, "%H", homedir
, sizeof(pstring
));
47 ret
= smbrun(add_script
,NULL
);
49 DEBUG(ret
? 0 : 3,("smb_create_user: Running the command `%s' gave %d\n",add_script
,ret
));
53 /****************************************************************************
54 Create an auth_usersupplied_data structure
55 ****************************************************************************/
57 static NTSTATUS
make_user_info(auth_usersupplied_info
**user_info
,
59 const char *internal_username
,
60 const char *client_domain
,
62 const char *wksta_name
,
63 DATA_BLOB
*lm_pwd
, DATA_BLOB
*nt_pwd
,
64 DATA_BLOB
*lm_interactive_pwd
, DATA_BLOB
*nt_interactive_pwd
,
69 DEBUG(5,("attempting to make a user_info for %s (%s)\n", internal_username
, smb_name
));
71 *user_info
= SMB_MALLOC_P(auth_usersupplied_info
);
72 if (*user_info
== NULL
) {
73 DEBUG(0,("malloc failed for user_info (size %lu)\n", (unsigned long)sizeof(*user_info
)));
74 return NT_STATUS_NO_MEMORY
;
77 ZERO_STRUCTP(*user_info
);
79 DEBUG(5,("making strings for %s's user_info struct\n", internal_username
));
81 (*user_info
)->smb_name
= SMB_STRDUP(smb_name
);
82 if ((*user_info
)->smb_name
== NULL
) {
83 free_user_info(user_info
);
84 return NT_STATUS_NO_MEMORY
;
87 (*user_info
)->internal_username
= SMB_STRDUP(internal_username
);
88 if ((*user_info
)->internal_username
== NULL
) {
89 free_user_info(user_info
);
90 return NT_STATUS_NO_MEMORY
;
93 (*user_info
)->domain
= SMB_STRDUP(domain
);
94 if ((*user_info
)->domain
== NULL
) {
95 free_user_info(user_info
);
96 return NT_STATUS_NO_MEMORY
;
99 (*user_info
)->client_domain
= SMB_STRDUP(client_domain
);
100 if ((*user_info
)->client_domain
== NULL
) {
101 free_user_info(user_info
);
102 return NT_STATUS_NO_MEMORY
;
105 (*user_info
)->wksta_name
= SMB_STRDUP(wksta_name
);
106 if ((*user_info
)->wksta_name
== NULL
) {
107 free_user_info(user_info
);
108 return NT_STATUS_NO_MEMORY
;
111 DEBUG(5,("making blobs for %s's user_info struct\n", internal_username
));
114 (*user_info
)->lm_resp
= data_blob(lm_pwd
->data
, lm_pwd
->length
);
116 (*user_info
)->nt_resp
= data_blob(nt_pwd
->data
, nt_pwd
->length
);
117 if (lm_interactive_pwd
)
118 (*user_info
)->lm_interactive_pwd
= data_blob(lm_interactive_pwd
->data
, lm_interactive_pwd
->length
);
119 if (nt_interactive_pwd
)
120 (*user_info
)->nt_interactive_pwd
= data_blob(nt_interactive_pwd
->data
, nt_interactive_pwd
->length
);
123 (*user_info
)->plaintext_password
= data_blob(plaintext
->data
, plaintext
->length
);
125 (*user_info
)->encrypted
= encrypted
;
127 (*user_info
)->logon_parameters
= 0;
129 DEBUG(10,("made an %sencrypted user_info for %s (%s)\n", encrypted
? "":"un" , internal_username
, smb_name
));
134 /****************************************************************************
135 Create an auth_usersupplied_data structure after appropriate mapping.
136 ****************************************************************************/
138 NTSTATUS
make_user_info_map(auth_usersupplied_info
**user_info
,
139 const char *smb_name
,
140 const char *client_domain
,
141 const char *wksta_name
,
142 DATA_BLOB
*lm_pwd
, DATA_BLOB
*nt_pwd
,
143 DATA_BLOB
*lm_interactive_pwd
, DATA_BLOB
*nt_interactive_pwd
,
144 DATA_BLOB
*plaintext
,
150 fstring internal_username
;
151 fstrcpy(internal_username
, smb_name
);
152 was_mapped
= map_username(internal_username
);
154 DEBUG(5, ("make_user_info_map: Mapping user [%s]\\[%s] from workstation [%s]\n",
155 client_domain
, smb_name
, wksta_name
));
157 /* don't allow "" as a domain, fixes a Win9X bug
158 where it doens't supply a domain for logon script
159 'net use' commands. */
161 if ( *client_domain
)
162 domain
= client_domain
;
164 domain
= lp_workgroup();
166 /* do what win2k does. Always map unknown domains to our own
167 and let the "passdb backend" handle unknown users. */
169 if ( !is_trusted_domain(domain
) && !strequal(domain
, get_global_sam_name()) )
170 domain
= my_sam_name();
172 /* we know that it is a trusted domain (and we are allowing them) or it is our domain */
174 result
= make_user_info(user_info
, smb_name
, internal_username
,
175 client_domain
, domain
, wksta_name
,
177 lm_interactive_pwd
, nt_interactive_pwd
,
178 plaintext
, encrypted
);
179 if (NT_STATUS_IS_OK(result
)) {
180 (*user_info
)->was_mapped
= was_mapped
;
185 /****************************************************************************
186 Create an auth_usersupplied_data, making the DATA_BLOBs here.
187 Decrypt and encrypt the passwords.
188 ****************************************************************************/
190 BOOL
make_user_info_netlogon_network(auth_usersupplied_info
**user_info
,
191 const char *smb_name
,
192 const char *client_domain
,
193 const char *wksta_name
,
194 uint32 logon_parameters
,
195 const uchar
*lm_network_pwd
,
197 const uchar
*nt_network_pwd
,
202 DATA_BLOB lm_blob
= data_blob(lm_network_pwd
, lm_pwd_len
);
203 DATA_BLOB nt_blob
= data_blob(nt_network_pwd
, nt_pwd_len
);
205 status
= make_user_info_map(user_info
,
206 smb_name
, client_domain
,
208 lm_pwd_len
? &lm_blob
: NULL
,
209 nt_pwd_len
? &nt_blob
: NULL
,
213 if (NT_STATUS_IS_OK(status
)) {
214 (*user_info
)->logon_parameters
= logon_parameters
;
216 ret
= NT_STATUS_IS_OK(status
) ? True
: False
;
218 data_blob_free(&lm_blob
);
219 data_blob_free(&nt_blob
);
223 /****************************************************************************
224 Create an auth_usersupplied_data, making the DATA_BLOBs here.
225 Decrypt and encrypt the passwords.
226 ****************************************************************************/
228 BOOL
make_user_info_netlogon_interactive(auth_usersupplied_info
**user_info
,
229 const char *smb_name
,
230 const char *client_domain
,
231 const char *wksta_name
,
232 uint32 logon_parameters
,
234 const uchar lm_interactive_pwd
[16],
235 const uchar nt_interactive_pwd
[16],
236 const uchar
*dc_sess_key
)
238 unsigned char lm_pwd
[16];
239 unsigned char nt_pwd
[16];
240 unsigned char local_lm_response
[24];
241 unsigned char local_nt_response
[24];
242 unsigned char key
[16];
245 memcpy(key
, dc_sess_key
, 8);
247 if (lm_interactive_pwd
)
248 memcpy(lm_pwd
, lm_interactive_pwd
, sizeof(lm_pwd
));
250 if (nt_interactive_pwd
)
251 memcpy(nt_pwd
, nt_interactive_pwd
, sizeof(nt_pwd
));
253 #ifdef DEBUG_PASSWORD
255 dump_data(100, key
, sizeof(key
));
257 DEBUG(100,("lm owf password:"));
258 dump_data(100, lm_pwd
, sizeof(lm_pwd
));
260 DEBUG(100,("nt owf password:"));
261 dump_data(100, nt_pwd
, sizeof(nt_pwd
));
264 if (lm_interactive_pwd
)
265 SamOEMhash(lm_pwd
, key
, sizeof(lm_pwd
));
267 if (nt_interactive_pwd
)
268 SamOEMhash(nt_pwd
, key
, sizeof(nt_pwd
));
270 #ifdef DEBUG_PASSWORD
271 DEBUG(100,("decrypt of lm owf password:"));
272 dump_data(100, lm_pwd
, sizeof(lm_pwd
));
274 DEBUG(100,("decrypt of nt owf password:"));
275 dump_data(100, nt_pwd
, sizeof(nt_pwd
));
278 if (lm_interactive_pwd
)
279 SMBOWFencrypt(lm_pwd
, chal
,
282 if (nt_interactive_pwd
)
283 SMBOWFencrypt(nt_pwd
, chal
,
286 /* Password info paranoia */
292 DATA_BLOB local_lm_blob
;
293 DATA_BLOB local_nt_blob
;
295 DATA_BLOB lm_interactive_blob
;
296 DATA_BLOB nt_interactive_blob
;
298 if (lm_interactive_pwd
) {
299 local_lm_blob
= data_blob(local_lm_response
,
300 sizeof(local_lm_response
));
301 lm_interactive_blob
= data_blob(lm_pwd
,
306 if (nt_interactive_pwd
) {
307 local_nt_blob
= data_blob(local_nt_response
,
308 sizeof(local_nt_response
));
309 nt_interactive_blob
= data_blob(nt_pwd
,
314 nt_status
= make_user_info_map(
316 smb_name
, client_domain
, wksta_name
,
317 lm_interactive_pwd
? &local_lm_blob
: NULL
,
318 nt_interactive_pwd
? &local_nt_blob
: NULL
,
319 lm_interactive_pwd
? &lm_interactive_blob
: NULL
,
320 nt_interactive_pwd
? &nt_interactive_blob
: NULL
,
323 if (NT_STATUS_IS_OK(nt_status
)) {
324 (*user_info
)->logon_parameters
= logon_parameters
;
327 ret
= NT_STATUS_IS_OK(nt_status
) ? True
: False
;
328 data_blob_free(&local_lm_blob
);
329 data_blob_free(&local_nt_blob
);
330 data_blob_free(&lm_interactive_blob
);
331 data_blob_free(&nt_interactive_blob
);
337 /****************************************************************************
338 Create an auth_usersupplied_data structure
339 ****************************************************************************/
341 BOOL
make_user_info_for_reply(auth_usersupplied_info
**user_info
,
342 const char *smb_name
,
343 const char *client_domain
,
345 DATA_BLOB plaintext_password
)
348 DATA_BLOB local_lm_blob
;
349 DATA_BLOB local_nt_blob
;
350 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
353 * Not encrypted - do so.
356 DEBUG(5,("make_user_info_for_reply: User passwords not in encrypted "
359 if (plaintext_password
.data
) {
360 unsigned char local_lm_response
[24];
362 #ifdef DEBUG_PASSWORD
363 DEBUG(10,("Unencrypted password (len %d):\n",
364 (int)plaintext_password
.length
));
365 dump_data(100, plaintext_password
.data
,
366 plaintext_password
.length
);
369 SMBencrypt( (const char *)plaintext_password
.data
,
370 (const uchar
*)chal
, local_lm_response
);
371 local_lm_blob
= data_blob(local_lm_response
, 24);
373 /* We can't do an NT hash here, as the password needs to be
375 local_nt_blob
= data_blob(NULL
, 0);
378 local_lm_blob
= data_blob(NULL
, 0);
379 local_nt_blob
= data_blob(NULL
, 0);
382 ret
= make_user_info_map(
383 user_info
, smb_name
, client_domain
,
384 get_remote_machine_name(),
385 local_lm_blob
.data
? &local_lm_blob
: NULL
,
386 local_nt_blob
.data
? &local_nt_blob
: NULL
,
388 plaintext_password
.data
? &plaintext_password
: NULL
,
391 data_blob_free(&local_lm_blob
);
392 return NT_STATUS_IS_OK(ret
) ? True
: False
;
395 /****************************************************************************
396 Create an auth_usersupplied_data structure
397 ****************************************************************************/
399 NTSTATUS
make_user_info_for_reply_enc(auth_usersupplied_info
**user_info
,
400 const char *smb_name
,
401 const char *client_domain
,
402 DATA_BLOB lm_resp
, DATA_BLOB nt_resp
)
404 return make_user_info_map(user_info
, smb_name
,
406 get_remote_machine_name(),
407 lm_resp
.data
? &lm_resp
: NULL
,
408 nt_resp
.data
? &nt_resp
: NULL
,
413 /****************************************************************************
414 Create a guest user_info blob, for anonymous authenticaion.
415 ****************************************************************************/
417 BOOL
make_user_info_guest(auth_usersupplied_info
**user_info
)
421 nt_status
= make_user_info(user_info
,
430 return NT_STATUS_IS_OK(nt_status
) ? True
: False
;
433 /****************************************************************************
434 prints a NT_USER_TOKEN to debug output.
435 ****************************************************************************/
437 void debug_nt_user_token(int dbg_class
, int dbg_lev
, NT_USER_TOKEN
*token
)
442 DEBUGC(dbg_class
, dbg_lev
, ("NT user token: (NULL)\n"));
446 DEBUGC(dbg_class
, dbg_lev
,
447 ("NT user token of user %s\n",
448 sid_string_static(&token
->user_sids
[0]) ));
449 DEBUGADDC(dbg_class
, dbg_lev
,
450 ("contains %lu SIDs\n", (unsigned long)token
->num_sids
));
451 for (i
= 0; i
< token
->num_sids
; i
++)
452 DEBUGADDC(dbg_class
, dbg_lev
,
453 ("SID[%3lu]: %s\n", (unsigned long)i
,
454 sid_string_static(&token
->user_sids
[i
])));
456 dump_se_priv( dbg_class
, dbg_lev
, &token
->privileges
);
459 /****************************************************************************
460 prints a UNIX 'token' to debug output.
461 ****************************************************************************/
463 void debug_unix_user_token(int dbg_class
, int dbg_lev
, uid_t uid
, gid_t gid
,
464 int n_groups
, gid_t
*groups
)
467 DEBUGC(dbg_class
, dbg_lev
,
468 ("UNIX token of user %ld\n", (long int)uid
));
470 DEBUGADDC(dbg_class
, dbg_lev
,
471 ("Primary group is %ld and contains %i supplementary "
472 "groups\n", (long int)gid
, n_groups
));
473 for (i
= 0; i
< n_groups
; i
++)
474 DEBUGADDC(dbg_class
, dbg_lev
, ("Group[%3i]: %ld\n", i
,
475 (long int)groups
[i
]));
478 static int server_info_dtor(auth_serversupplied_info
*server_info
)
480 TALLOC_FREE(server_info
->sam_account
);
481 ZERO_STRUCTP(server_info
);
485 /***************************************************************************
486 Make a server_info struct. Free with TALLOC_FREE().
487 ***************************************************************************/
489 static auth_serversupplied_info
*make_server_info(TALLOC_CTX
*mem_ctx
)
491 struct auth_serversupplied_info
*result
;
493 result
= TALLOC_ZERO_P(mem_ctx
, auth_serversupplied_info
);
494 if (result
== NULL
) {
495 DEBUG(0, ("talloc failed\n"));
499 talloc_set_destructor(result
, server_info_dtor
);
501 /* Initialise the uid and gid values to something non-zero
502 which may save us from giving away root access if there
503 is a bug in allocating these fields. */
510 /***************************************************************************
511 Make (and fill) a user_info struct from a struct samu
512 ***************************************************************************/
514 NTSTATUS
make_server_info_sam(auth_serversupplied_info
**server_info
,
515 struct samu
*sampass
)
520 auth_serversupplied_info
*result
;
523 DOM_SID unix_group_sid
;
526 if ( !(result
= make_server_info(NULL
)) ) {
527 return NT_STATUS_NO_MEMORY
;
530 if ( !(pwd
= getpwnam_alloc(result
, pdb_get_username(sampass
))) ) {
531 DEBUG(1, ("User %s in passdb, but getpwnam() fails!\n",
532 pdb_get_username(sampass
)));
534 return NT_STATUS_NO_SUCH_USER
;
537 result
->sam_account
= sampass
;
538 /* Ensure thaat the sampass will be freed with the result */
539 talloc_steal(result
, sampass
);
540 result
->unix_name
= pwd
->pw_name
;
541 /* Ensure that we keep pwd->pw_name, because we will free pwd below */
542 talloc_steal(result
, pwd
->pw_name
);
543 result
->gid
= pwd
->pw_gid
;
544 result
->uid
= pwd
->pw_uid
;
548 status
= pdb_enum_group_memberships(result
, sampass
,
549 &result
->sids
, &gids
,
552 if (!NT_STATUS_IS_OK(status
)) {
553 DEBUG(10, ("pdb_enum_group_memberships failed: %s\n",
555 result
->sam_account
= NULL
; /* Don't free on error exit. */
560 /* Add the "Unix Group" SID for each gid to catch mapped groups
561 and their Unix equivalent. This is to solve the backwards
562 compatibility problem of 'valid users = +ntadmin' where
563 ntadmin has been paired with "Domain Admins" in the group
564 mapping table. Otherwise smb.conf would need to be changed
565 to 'valid user = "Domain Admins"'. --jerry */
567 num_gids
= result
->num_sids
;
568 for ( i
=0; i
<num_gids
; i
++ ) {
569 if ( !gid_to_unix_groups_sid( gids
[i
], &unix_group_sid
) ) {
570 DEBUG(1,("make_server_info_sam: Failed to create SID "
571 "for gid %d!\n", gids
[i
]));
574 if (!add_sid_to_array_unique( result
, &unix_group_sid
,
575 &result
->sids
, &result
->num_sids
)) {
576 result
->sam_account
= NULL
; /* Don't free on error exit. */
578 return NT_STATUS_NO_MEMORY
;
582 /* For now we throw away the gids and convert via sid_to_gid
583 * later. This needs fixing, but I'd like to get the code straight and
588 DEBUG(5,("make_server_info_sam: made server info for user %s -> %s\n",
589 pdb_get_username(sampass
), result
->unix_name
));
591 *server_info
= result
;
596 static NTSTATUS
log_nt_token(TALLOC_CTX
*tmp_ctx
, NT_USER_TOKEN
*token
)
602 if ((lp_log_nt_token_command() == NULL
) ||
603 (strlen(lp_log_nt_token_command()) == 0)) {
607 group_sidstr
= talloc_strdup(tmp_ctx
, "");
608 for (i
=1; i
<token
->num_sids
; i
++) {
609 group_sidstr
= talloc_asprintf(
610 tmp_ctx
, "%s %s", group_sidstr
,
611 sid_string_static(&token
->user_sids
[i
]));
614 command
= talloc_string_sub(
615 tmp_ctx
, lp_log_nt_token_command(),
616 "%s", sid_string_static(&token
->user_sids
[0]));
617 command
= talloc_string_sub(tmp_ctx
, command
, "%t", group_sidstr
);
619 if (command
== NULL
) {
620 return NT_STATUS_NO_MEMORY
;
623 DEBUG(8, ("running command: [%s]\n", command
));
624 if (smbrun(command
, NULL
) != 0) {
625 DEBUG(0, ("Could not log NT token\n"));
626 return NT_STATUS_ACCESS_DENIED
;
633 * Create the token to use from server_info->sam_account and
634 * server_info->sids (the info3/sam groups). Find the unix gids.
637 NTSTATUS
create_local_token(auth_serversupplied_info
*server_info
)
644 mem_ctx
= talloc_new(NULL
);
645 if (mem_ctx
== NULL
) {
646 DEBUG(0, ("talloc_new failed\n"));
647 return NT_STATUS_NO_MEMORY
;
651 * If winbind is not around, we can not make much use of the SIDs the
652 * domain controller provided us with. Likewise if the user name was
653 * mapped to some local unix user.
656 if (((lp_server_role() == ROLE_DOMAIN_MEMBER
) && !winbind_ping()) ||
657 (server_info
->was_mapped
)) {
658 status
= create_token_from_username(server_info
,
659 server_info
->unix_name
,
663 &server_info
->unix_name
,
667 server_info
->ptok
= create_local_nt_token(
669 pdb_get_user_sid(server_info
->sam_account
),
671 server_info
->num_sids
, server_info
->sids
);
672 status
= server_info
->ptok
?
673 NT_STATUS_OK
: NT_STATUS_NO_SUCH_USER
;
676 if (!NT_STATUS_IS_OK(status
)) {
677 TALLOC_FREE(mem_ctx
);
681 /* Convert the SIDs to gids. */
683 server_info
->n_groups
= 0;
684 server_info
->groups
= NULL
;
686 /* Start at index 1, where the groups start. */
688 for (i
=1; i
<server_info
->ptok
->num_sids
; i
++) {
690 DOM_SID
*sid
= &server_info
->ptok
->user_sids
[i
];
692 if (!sid_to_gid(sid
, &gid
)) {
693 DEBUG(10, ("Could not convert SID %s to gid, "
694 "ignoring it\n", sid_string_static(sid
)));
697 add_gid_to_array_unique(server_info
, gid
, &server_info
->groups
,
698 &server_info
->n_groups
);
701 debug_nt_user_token(DBGC_AUTH
, 10, server_info
->ptok
);
703 status
= log_nt_token(mem_ctx
, server_info
->ptok
);
705 TALLOC_FREE(mem_ctx
);
710 * Create an artificial NT token given just a username. (Initially indended
713 * We go through lookup_name() to avoid problems we had with 'winbind use
718 * unmapped unix users: Go directly to nss to find the user's group.
720 * A passdb user: The list of groups is provided by pdb_enum_group_memberships.
722 * If the user is provided by winbind, the primary gid is set to "domain
723 * users" of the user's domain. For an explanation why this is necessary, see
724 * the thread starting at
725 * http://lists.samba.org/archive/samba-technical/2006-January/044803.html.
728 NTSTATUS
create_token_from_username(TALLOC_CTX
*mem_ctx
, const char *username
,
730 uid_t
*uid
, gid_t
*gid
,
731 char **found_username
,
732 struct nt_user_token
**token
)
734 NTSTATUS result
= NT_STATUS_NO_SUCH_USER
;
737 enum lsa_SidType type
;
740 DOM_SID unix_group_sid
;
741 size_t num_group_sids
;
745 tmp_ctx
= talloc_new(NULL
);
746 if (tmp_ctx
== NULL
) {
747 DEBUG(0, ("talloc_new failed\n"));
748 return NT_STATUS_NO_MEMORY
;
751 if (!lookup_name_smbconf(tmp_ctx
, username
, LOOKUP_NAME_ALL
,
752 NULL
, NULL
, &user_sid
, &type
)) {
753 DEBUG(1, ("lookup_name_smbconf for %s failed\n", username
));
757 if (type
!= SID_NAME_USER
) {
758 DEBUG(1, ("%s is a %s, not a user\n", username
,
759 sid_type_lookup(type
)));
763 if (!sid_to_uid(&user_sid
, uid
)) {
764 DEBUG(1, ("sid_to_uid for %s (%s) failed\n",
765 username
, sid_string_static(&user_sid
)));
769 if (sid_check_is_in_our_domain(&user_sid
)) {
771 /* This is a passdb user, so ask passdb */
773 struct samu
*sam_acct
= NULL
;
775 if ( !(sam_acct
= samu_new( tmp_ctx
)) ) {
776 result
= NT_STATUS_NO_MEMORY
;
780 if (!pdb_getsampwsid(sam_acct
, &user_sid
)) {
781 DEBUG(1, ("pdb_getsampwsid(%s) for user %s failed\n",
782 sid_string_static(&user_sid
), username
));
783 DEBUGADD(1, ("Fall back to unix user %s\n", username
));
787 result
= pdb_enum_group_memberships(tmp_ctx
, sam_acct
,
790 if (!NT_STATUS_IS_OK(result
)) {
791 DEBUG(10, ("enum_group_memberships failed for %s\n",
793 DEBUGADD(1, ("Fall back to unix user %s\n", username
));
797 /* see the smb_panic() in pdb_default_enum_group_memberships */
798 SMB_ASSERT(num_group_sids
> 0);
802 /* Ensure we're returning the found_username on the right context. */
803 *found_username
= talloc_strdup(mem_ctx
,
804 pdb_get_username(sam_acct
));
806 } else if (sid_check_is_in_unix_users(&user_sid
)) {
808 /* This is a unix user not in passdb. We need to ask nss
809 * directly, without consulting passdb */
814 * This goto target is used as a fallback for the passdb
815 * case. The concrete bug report is when passdb gave us an
821 uid_to_unix_users_sid(*uid
, &user_sid
);
823 pass
= getpwuid_alloc(tmp_ctx
, *uid
);
825 DEBUG(1, ("getpwuid(%d) for user %s failed\n",
830 if (!getgroups_unix_user(tmp_ctx
, username
, pass
->pw_gid
,
831 &gids
, &num_group_sids
)) {
832 DEBUG(1, ("getgroups_unix_user for user %s failed\n",
837 group_sids
= talloc_array(tmp_ctx
, DOM_SID
, num_group_sids
);
838 if (group_sids
== NULL
) {
839 DEBUG(1, ("talloc_array failed\n"));
840 result
= NT_STATUS_NO_MEMORY
;
844 for (i
=0; i
<num_group_sids
; i
++) {
845 gid_to_sid(&group_sids
[i
], gids
[i
]);
848 /* In getgroups_unix_user we always set the primary gid */
849 SMB_ASSERT(num_group_sids
> 0);
853 /* Ensure we're returning the found_username on the right context. */
854 *found_username
= talloc_strdup(mem_ctx
, pass
->pw_name
);
857 /* This user is from winbind, force the primary gid to the
858 * user's "domain users" group. Under certain circumstances
859 * (user comes from NT4), this might be a loss of
860 * information. But we can not rely on winbind getting the
861 * correct info. AD might prohibit winbind looking up that
867 group_sids
= talloc_array(tmp_ctx
, DOM_SID
, num_group_sids
);
868 if (group_sids
== NULL
) {
869 DEBUG(1, ("talloc_array failed\n"));
870 result
= NT_STATUS_NO_MEMORY
;
874 sid_copy(&group_sids
[0], &user_sid
);
875 sid_split_rid(&group_sids
[0], &dummy
);
876 sid_append_rid(&group_sids
[0], DOMAIN_GROUP_RID_USERS
);
878 if (!sid_to_gid(&group_sids
[0], gid
)) {
879 DEBUG(1, ("sid_to_gid(%s) failed\n",
880 sid_string_static(&group_sids
[0])));
886 /* Ensure we're returning the found_username on the right context. */
887 *found_username
= talloc_strdup(mem_ctx
, username
);
890 /* Add the "Unix Group" SID for each gid to catch mapped groups
891 and their Unix equivalent. This is to solve the backwards
892 compatibility problem of 'valid users = +ntadmin' where
893 ntadmin has been paired with "Domain Admins" in the group
894 mapping table. Otherwise smb.conf would need to be changed
895 to 'valid user = "Domain Admins"'. --jerry */
897 num_gids
= num_group_sids
;
898 for ( i
=0; i
<num_gids
; i
++ ) {
901 /* don't pickup anything managed by Winbind */
903 if ( lp_idmap_gid(&low
, &high
) && (gids
[i
] >= low
) && (gids
[i
] <= high
) )
906 if ( !gid_to_unix_groups_sid( gids
[i
], &unix_group_sid
) ) {
907 DEBUG(1,("create_token_from_username: Failed to create SID "
908 "for gid %d!\n", gids
[i
]));
911 if (!add_sid_to_array_unique(tmp_ctx
, &unix_group_sid
,
912 &group_sids
, &num_group_sids
)) {
913 result
= NT_STATUS_NO_MEMORY
;
918 /* Ensure we're creating the nt_token on the right context. */
919 *token
= create_local_nt_token(mem_ctx
, &user_sid
,
920 is_guest
, num_group_sids
, group_sids
);
922 if ((*token
== NULL
) || (*found_username
== NULL
)) {
923 result
= NT_STATUS_NO_MEMORY
;
927 result
= NT_STATUS_OK
;
929 TALLOC_FREE(tmp_ctx
);
933 /***************************************************************************
934 Build upon create_token_from_username:
936 Expensive helper function to figure out whether a user given its name is
937 member of a particular group.
938 ***************************************************************************/
940 BOOL
user_in_group_sid(const char *username
, const DOM_SID
*group_sid
)
945 char *found_username
;
946 struct nt_user_token
*token
;
951 mem_ctx
= talloc_new(NULL
);
952 if (mem_ctx
== NULL
) {
953 DEBUG(0, ("talloc_new failed\n"));
957 status
= create_token_from_username(mem_ctx
, username
, False
,
958 &uid
, &gid
, &found_username
,
961 if (!NT_STATUS_IS_OK(status
)) {
962 DEBUG(10, ("could not create token for %s\n", username
));
966 result
= nt_token_check_sid(group_sid
, token
);
968 TALLOC_FREE(mem_ctx
);
973 BOOL
user_in_group(const char *username
, const char *groupname
)
979 mem_ctx
= talloc_new(NULL
);
980 if (mem_ctx
== NULL
) {
981 DEBUG(0, ("talloc_new failed\n"));
985 ret
= lookup_name(mem_ctx
, groupname
, LOOKUP_NAME_ALL
,
986 NULL
, NULL
, &group_sid
, NULL
);
987 TALLOC_FREE(mem_ctx
);
990 DEBUG(10, ("lookup_name for (%s) failed.\n", groupname
));
994 return user_in_group_sid(username
, &group_sid
);
998 /***************************************************************************
999 Make (and fill) a user_info struct from a 'struct passwd' by conversion
1001 ***************************************************************************/
1003 NTSTATUS
make_server_info_pw(auth_serversupplied_info
**server_info
,
1004 char *unix_username
,
1008 struct samu
*sampass
= NULL
;
1010 auth_serversupplied_info
*result
;
1012 if ( !(sampass
= samu_new( NULL
)) ) {
1013 return NT_STATUS_NO_MEMORY
;
1016 status
= samu_set_unix( sampass
, pwd
);
1017 if (!NT_STATUS_IS_OK(status
)) {
1021 result
= make_server_info(NULL
);
1022 if (result
== NULL
) {
1023 TALLOC_FREE(sampass
);
1024 return NT_STATUS_NO_MEMORY
;
1027 result
->sam_account
= sampass
;
1028 result
->unix_name
= talloc_strdup(result
, unix_username
);
1029 result
->uid
= pwd
->pw_uid
;
1030 result
->gid
= pwd
->pw_gid
;
1032 status
= pdb_enum_group_memberships(result
, sampass
,
1033 &result
->sids
, &gids
,
1036 if (!NT_STATUS_IS_OK(status
)) {
1037 DEBUG(10, ("pdb_enum_group_memberships failed: %s\n",
1038 nt_errstr(status
)));
1039 TALLOC_FREE(result
);
1043 /* For now we throw away the gids and convert via sid_to_gid
1044 * later. This needs fixing, but I'd like to get the code straight and
1048 *server_info
= result
;
1050 return NT_STATUS_OK
;
1053 /***************************************************************************
1054 Make (and fill) a user_info struct for a guest login.
1055 This *must* succeed for smbd to start. If there is no mapping entry for
1056 the guest gid, then create one.
1057 ***************************************************************************/
1059 static NTSTATUS
make_new_server_info_guest(auth_serversupplied_info
**server_info
)
1062 struct samu
*sampass
= NULL
;
1065 static const char zeros
[16] = { 0, };
1067 if ( !(sampass
= samu_new( NULL
)) ) {
1068 return NT_STATUS_NO_MEMORY
;
1071 sid_copy(&guest_sid
, get_global_sam_sid());
1072 sid_append_rid(&guest_sid
, DOMAIN_USER_RID_GUEST
);
1075 ret
= pdb_getsampwsid(sampass
, &guest_sid
);
1079 TALLOC_FREE(sampass
);
1080 return NT_STATUS_NO_SUCH_USER
;
1083 status
= make_server_info_sam(server_info
, sampass
);
1084 if (!NT_STATUS_IS_OK(status
)) {
1085 TALLOC_FREE(sampass
);
1089 (*server_info
)->guest
= True
;
1091 status
= create_local_token(*server_info
);
1092 if (!NT_STATUS_IS_OK(status
)) {
1093 DEBUG(10, ("create_local_token failed: %s\n",
1094 nt_errstr(status
)));
1098 /* annoying, but the Guest really does have a session key, and it is
1100 (*server_info
)->user_session_key
= data_blob(zeros
, sizeof(zeros
));
1101 (*server_info
)->lm_session_key
= data_blob(zeros
, sizeof(zeros
));
1103 return NT_STATUS_OK
;
1106 static auth_serversupplied_info
*copy_serverinfo(auth_serversupplied_info
*src
)
1108 auth_serversupplied_info
*dst
;
1110 dst
= make_server_info(NULL
);
1115 dst
->guest
= src
->guest
;
1116 dst
->uid
= src
->uid
;
1117 dst
->gid
= src
->gid
;
1118 dst
->n_groups
= src
->n_groups
;
1119 if (src
->n_groups
!= 0) {
1120 dst
->groups
= (gid_t
*)talloc_memdup(
1121 dst
, src
->groups
, sizeof(gid_t
)*dst
->n_groups
);
1127 dst
->ptok
= dup_nt_token(dst
, src
->ptok
);
1134 dst
->user_session_key
= data_blob_talloc( dst
, src
->user_session_key
.data
,
1135 src
->user_session_key
.length
);
1137 dst
->lm_session_key
= data_blob_talloc(dst
, src
->lm_session_key
.data
,
1138 src
->lm_session_key
.length
);
1140 dst
->sam_account
= samu_new(NULL
);
1141 if (!dst
->sam_account
) {
1146 if (!pdb_copy_sam_account(dst
->sam_account
, src
->sam_account
)) {
1151 dst
->pam_handle
= NULL
;
1152 dst
->unix_name
= talloc_strdup(dst
, src
->unix_name
);
1153 if (!dst
->unix_name
) {
1161 static auth_serversupplied_info
*guest_info
= NULL
;
1163 BOOL
init_guest_info(void)
1165 if (guest_info
!= NULL
)
1168 return NT_STATUS_IS_OK(make_new_server_info_guest(&guest_info
));
1171 NTSTATUS
make_server_info_guest(auth_serversupplied_info
**server_info
)
1173 *server_info
= copy_serverinfo(guest_info
);
1174 return (*server_info
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NO_MEMORY
;
1177 BOOL
copy_current_user(struct current_user
*dst
, struct current_user
*src
)
1180 NT_USER_TOKEN
*nt_token
;
1182 groups
= (gid_t
*)memdup(src
->ut
.groups
,
1183 sizeof(gid_t
) * src
->ut
.ngroups
);
1184 if ((src
->ut
.ngroups
!= 0) && (groups
== NULL
)) {
1188 nt_token
= dup_nt_token(NULL
, src
->nt_user_token
);
1189 if (nt_token
== NULL
) {
1194 dst
->conn
= src
->conn
;
1195 dst
->vuid
= src
->vuid
;
1196 dst
->ut
.uid
= src
->ut
.uid
;
1197 dst
->ut
.gid
= src
->ut
.gid
;
1198 dst
->ut
.ngroups
= src
->ut
.ngroups
;
1199 dst
->ut
.groups
= groups
;
1200 dst
->nt_user_token
= nt_token
;
1204 BOOL
set_current_user_guest(struct current_user
*dst
)
1207 NT_USER_TOKEN
*nt_token
;
1209 groups
= (gid_t
*)memdup(guest_info
->groups
,
1210 sizeof(gid_t
) * guest_info
->n_groups
);
1211 if (groups
== NULL
) {
1215 nt_token
= dup_nt_token(NULL
, guest_info
->ptok
);
1216 if (nt_token
== NULL
) {
1221 TALLOC_FREE(dst
->nt_user_token
);
1222 SAFE_FREE(dst
->ut
.groups
);
1224 /* dst->conn is never really dereferenced, it's only tested for
1225 * equality in uid.c */
1228 dst
->vuid
= UID_FIELD_INVALID
;
1229 dst
->ut
.uid
= guest_info
->uid
;
1230 dst
->ut
.gid
= guest_info
->gid
;
1231 dst
->ut
.ngroups
= guest_info
->n_groups
;
1232 dst
->ut
.groups
= groups
;
1233 dst
->nt_user_token
= nt_token
;
1237 /***************************************************************************
1238 Purely internal function for make_server_info_info3
1239 Fill the sam account from getpwnam
1240 ***************************************************************************/
1241 static NTSTATUS
fill_sam_account(TALLOC_CTX
*mem_ctx
,
1243 const char *username
,
1244 char **found_username
,
1245 uid_t
*uid
, gid_t
*gid
,
1246 struct samu
*account
,
1247 BOOL
*username_was_mapped
)
1250 fstring dom_user
, lower_username
;
1251 fstring real_username
;
1252 struct passwd
*passwd
;
1254 fstrcpy( lower_username
, username
);
1255 strlower_m( lower_username
);
1257 fstr_sprintf(dom_user
, "%s%c%s", domain
, *lp_winbind_separator(),
1260 /* Get the passwd struct. Try to create the account is necessary. */
1262 *username_was_mapped
= map_username( dom_user
);
1264 if ( !(passwd
= smb_getpwnam( NULL
, dom_user
, real_username
, True
)) )
1265 return NT_STATUS_NO_SUCH_USER
;
1267 *uid
= passwd
->pw_uid
;
1268 *gid
= passwd
->pw_gid
;
1270 /* This is pointless -- there is no suport for differing
1271 unix and windows names. Make sure to always store the
1272 one we actually looked up and succeeded. Have I mentioned
1273 why I hate the 'winbind use default domain' parameter?
1276 *found_username
= talloc_strdup( mem_ctx
, real_username
);
1278 DEBUG(5,("fill_sam_account: located username was [%s]\n", *found_username
));
1280 nt_status
= samu_set_unix( account
, passwd
);
1282 TALLOC_FREE(passwd
);
1287 /****************************************************************************
1288 Wrapper to allow the getpwnam() call to strip the domain name and
1289 try again in case a local UNIX user is already there. Also run through
1290 the username if we fallback to the username only.
1291 ****************************************************************************/
1293 struct passwd
*smb_getpwnam( TALLOC_CTX
*mem_ctx
, char *domuser
,
1294 fstring save_username
, BOOL create
)
1296 struct passwd
*pw
= NULL
;
1300 /* we only save a copy of the username it has been mangled
1301 by winbindd use default domain */
1303 save_username
[0] = '\0';
1305 /* don't call map_username() here since it has to be done higher
1306 up the stack so we don't call it mutliple times */
1308 fstrcpy( username
, domuser
);
1310 p
= strchr_m( username
, *lp_winbind_separator() );
1312 /* code for a DOMAIN\user string */
1315 fstring strip_username
;
1317 pw
= Get_Pwnam_alloc( mem_ctx
, domuser
);
1319 /* make sure we get the case of the username correct */
1320 /* work around 'winbind use default domain = yes' */
1322 if ( !strchr_m( pw
->pw_name
, *lp_winbind_separator() ) ) {
1325 /* split the domain and username into 2 strings */
1329 fstr_sprintf(save_username
, "%s%c%s", domain
, *lp_winbind_separator(), pw
->pw_name
);
1332 fstrcpy( save_username
, pw
->pw_name
);
1338 /* setup for lookup of just the username */
1339 /* remember that p and username are overlapping memory */
1342 fstrcpy( strip_username
, p
);
1343 fstrcpy( username
, strip_username
);
1346 /* just lookup a plain username */
1348 pw
= Get_Pwnam_alloc(mem_ctx
, username
);
1350 /* Create local user if requested but only if winbindd
1351 is not running. We need to protect against cases
1352 where winbindd is failing and then prematurely
1353 creating users in /etc/passwd */
1355 if ( !pw
&& create
&& !winbind_ping() ) {
1356 /* Don't add a machine account. */
1357 if (username
[strlen(username
)-1] == '$')
1360 smb_create_user(NULL
, username
, NULL
);
1361 pw
= Get_Pwnam_alloc(mem_ctx
, username
);
1364 /* one last check for a valid passwd struct */
1367 fstrcpy( save_username
, pw
->pw_name
);
1372 /***************************************************************************
1373 Make a server_info struct from the info3 returned by a domain logon
1374 ***************************************************************************/
1376 NTSTATUS
make_server_info_info3(TALLOC_CTX
*mem_ctx
,
1377 const char *sent_nt_username
,
1379 auth_serversupplied_info
**server_info
,
1380 NET_USER_INFO_3
*info3
)
1382 static const char zeros
[16] = { 0, };
1384 NTSTATUS nt_status
= NT_STATUS_OK
;
1385 char *found_username
;
1386 const char *nt_domain
;
1387 const char *nt_username
;
1388 struct samu
*sam_account
= NULL
;
1391 BOOL username_was_mapped
;
1398 auth_serversupplied_info
*result
;
1401 Here is where we should check the list of
1402 trusted domains, and verify that the SID
1406 sid_copy(&user_sid
, &info3
->dom_sid
.sid
);
1407 if (!sid_append_rid(&user_sid
, info3
->user_rid
)) {
1408 return NT_STATUS_INVALID_PARAMETER
;
1411 sid_copy(&group_sid
, &info3
->dom_sid
.sid
);
1412 if (!sid_append_rid(&group_sid
, info3
->group_rid
)) {
1413 return NT_STATUS_INVALID_PARAMETER
;
1416 if (!(nt_username
= unistr2_tdup(mem_ctx
, &(info3
->uni_user_name
)))) {
1417 /* If the server didn't give us one, just use the one we sent
1419 nt_username
= sent_nt_username
;
1422 if (!(nt_domain
= unistr2_tdup(mem_ctx
, &(info3
->uni_logon_dom
)))) {
1423 /* If the server didn't give us one, just use the one we sent
1428 /* try to fill the SAM account.. If getpwnam() fails, then try the
1429 add user script (2.2.x behavior).
1431 We use the _unmapped_ username here in an attempt to provide
1432 consistent username mapping behavior between kerberos and NTLM[SSP]
1433 authentication in domain mode security. I.E. Username mapping
1434 should be applied to the fully qualified username
1435 (e.g. DOMAIN\user) and not just the login name. Yes this means we
1436 called map_username() unnecessarily in make_user_info_map() but
1437 that is how the current code is designed. Making the change here
1438 is the least disruptive place. -- jerry */
1440 if ( !(sam_account
= samu_new( NULL
)) ) {
1441 return NT_STATUS_NO_MEMORY
;
1444 /* this call will try to create the user if necessary */
1446 nt_status
= fill_sam_account(mem_ctx
, nt_domain
, sent_nt_username
,
1447 &found_username
, &uid
, &gid
, sam_account
,
1448 &username_was_mapped
);
1451 /* if we still don't have a valid unix account check for
1452 'map to guest = bad uid' */
1454 if (!NT_STATUS_IS_OK(nt_status
)) {
1455 TALLOC_FREE( sam_account
);
1456 if ( lp_map_to_guest() == MAP_TO_GUEST_ON_BAD_UID
) {
1457 make_server_info_guest(server_info
);
1458 return NT_STATUS_OK
;
1463 if (!pdb_set_nt_username(sam_account
, nt_username
, PDB_CHANGED
)) {
1464 TALLOC_FREE(sam_account
);
1465 return NT_STATUS_NO_MEMORY
;
1468 if (!pdb_set_username(sam_account
, nt_username
, PDB_CHANGED
)) {
1469 TALLOC_FREE(sam_account
);
1470 return NT_STATUS_NO_MEMORY
;
1473 if (!pdb_set_domain(sam_account
, nt_domain
, PDB_CHANGED
)) {
1474 TALLOC_FREE(sam_account
);
1475 return NT_STATUS_NO_MEMORY
;
1478 if (!pdb_set_user_sid(sam_account
, &user_sid
, PDB_CHANGED
)) {
1479 TALLOC_FREE(sam_account
);
1480 return NT_STATUS_UNSUCCESSFUL
;
1483 if (!pdb_set_group_sid(sam_account
, &group_sid
, PDB_CHANGED
)) {
1484 TALLOC_FREE(sam_account
);
1485 return NT_STATUS_UNSUCCESSFUL
;
1488 if (!pdb_set_fullname(sam_account
,
1489 unistr2_static(&(info3
->uni_full_name
)),
1491 TALLOC_FREE(sam_account
);
1492 return NT_STATUS_NO_MEMORY
;
1495 if (!pdb_set_logon_script(sam_account
,
1496 unistr2_static(&(info3
->uni_logon_script
)),
1498 TALLOC_FREE(sam_account
);
1499 return NT_STATUS_NO_MEMORY
;
1502 if (!pdb_set_profile_path(sam_account
,
1503 unistr2_static(&(info3
->uni_profile_path
)),
1505 TALLOC_FREE(sam_account
);
1506 return NT_STATUS_NO_MEMORY
;
1509 if (!pdb_set_homedir(sam_account
,
1510 unistr2_static(&(info3
->uni_home_dir
)),
1512 TALLOC_FREE(sam_account
);
1513 return NT_STATUS_NO_MEMORY
;
1516 if (!pdb_set_dir_drive(sam_account
,
1517 unistr2_static(&(info3
->uni_dir_drive
)),
1519 TALLOC_FREE(sam_account
);
1520 return NT_STATUS_NO_MEMORY
;
1523 if (!pdb_set_acct_ctrl(sam_account
, info3
->acct_flags
, PDB_CHANGED
)) {
1524 TALLOC_FREE(sam_account
);
1525 return NT_STATUS_NO_MEMORY
;
1528 result
= make_server_info(NULL
);
1529 if (result
== NULL
) {
1530 DEBUG(4, ("make_server_info failed!\n"));
1531 TALLOC_FREE(sam_account
);
1532 return NT_STATUS_NO_MEMORY
;
1535 /* save this here to _net_sam_logon() doesn't fail (it assumes a
1536 valid struct samu) */
1538 result
->sam_account
= sam_account
;
1539 result
->unix_name
= talloc_strdup(result
, found_username
);
1541 /* Fill in the unix info we found on the way */
1546 /* Create a 'combined' list of all SIDs we might want in the SD */
1548 result
->num_sids
= 0;
1549 result
->sids
= NULL
;
1551 /* and create (by appending rids) the 'domain' sids */
1553 for (i
= 0; i
< info3
->num_groups2
; i
++) {
1555 if (!sid_compose(&sid
, &info3
->dom_sid
.sid
,
1556 info3
->gids
[i
].g_rid
)) {
1557 DEBUG(3,("could not append additional group rid "
1558 "0x%x\n", info3
->gids
[i
].g_rid
));
1559 TALLOC_FREE(result
);
1560 return NT_STATUS_INVALID_PARAMETER
;
1562 if (!add_sid_to_array(result
, &sid
, &result
->sids
,
1563 &result
->num_sids
)) {
1564 TALLOC_FREE(result
);
1565 return NT_STATUS_NO_MEMORY
;
1569 /* Copy 'other' sids. We need to do sid filtering here to
1570 prevent possible elevation of privileges. See:
1572 http://www.microsoft.com/windows2000/techinfo/administration/security/sidfilter.asp
1575 for (i
= 0; i
< info3
->num_other_sids
; i
++) {
1576 if (!add_sid_to_array(result
, &info3
->other_sids
[i
].sid
,
1578 &result
->num_sids
)) {
1579 TALLOC_FREE(result
);
1580 return NT_STATUS_NO_MEMORY
;
1584 result
->login_server
= unistr2_tdup(result
,
1585 &(info3
->uni_logon_srv
));
1587 /* ensure we are never given NULL session keys */
1589 if (memcmp(info3
->user_sess_key
, zeros
, sizeof(zeros
)) == 0) {
1590 result
->user_session_key
= data_blob(NULL
, 0);
1592 result
->user_session_key
= data_blob_talloc(
1593 result
, info3
->user_sess_key
,
1594 sizeof(info3
->user_sess_key
));
1597 if (memcmp(info3
->lm_sess_key
, zeros
, 8) == 0) {
1598 result
->lm_session_key
= data_blob(NULL
, 0);
1600 result
->lm_session_key
= data_blob_talloc(
1601 result
, info3
->lm_sess_key
,
1602 sizeof(info3
->lm_sess_key
));
1605 result
->was_mapped
= username_was_mapped
;
1607 *server_info
= result
;
1609 return NT_STATUS_OK
;
1612 /***************************************************************************
1613 Free a user_info struct
1614 ***************************************************************************/
1616 void free_user_info(auth_usersupplied_info
**user_info
)
1618 DEBUG(5,("attempting to free (and zero) a user_info structure\n"));
1619 if (*user_info
!= NULL
) {
1620 if ((*user_info
)->smb_name
) {
1621 DEBUG(10,("structure was created for %s\n",
1622 (*user_info
)->smb_name
));
1624 SAFE_FREE((*user_info
)->smb_name
);
1625 SAFE_FREE((*user_info
)->internal_username
);
1626 SAFE_FREE((*user_info
)->client_domain
);
1627 SAFE_FREE((*user_info
)->domain
);
1628 SAFE_FREE((*user_info
)->wksta_name
);
1629 data_blob_free(&(*user_info
)->lm_resp
);
1630 data_blob_free(&(*user_info
)->nt_resp
);
1631 data_blob_clear_free(&(*user_info
)->lm_interactive_pwd
);
1632 data_blob_clear_free(&(*user_info
)->nt_interactive_pwd
);
1633 data_blob_clear_free(&(*user_info
)->plaintext_password
);
1634 ZERO_STRUCT(**user_info
);
1636 SAFE_FREE(*user_info
);
1639 /***************************************************************************
1640 Make an auth_methods struct
1641 ***************************************************************************/
1643 BOOL
make_auth_methods(struct auth_context
*auth_context
, auth_methods
**auth_method
)
1645 if (!auth_context
) {
1646 smb_panic("no auth_context supplied to "
1647 "make_auth_methods()!\n");
1651 smb_panic("make_auth_methods: pointer to auth_method pointer "
1655 *auth_method
= TALLOC_P(auth_context
->mem_ctx
, auth_methods
);
1656 if (!*auth_method
) {
1657 DEBUG(0,("make_auth_method: malloc failed!\n"));
1660 ZERO_STRUCTP(*auth_method
);
1666 * Verify whether or not given domain is trusted.
1668 * @param domain_name name of the domain to be verified
1669 * @return true if domain is one of the trusted once or
1670 * false if otherwise
1673 BOOL
is_trusted_domain(const char* dom_name
)
1675 DOM_SID trustdom_sid
;
1678 /* no trusted domains for a standalone server */
1680 if ( lp_server_role() == ROLE_STANDALONE
)
1683 /* if we are a DC, then check for a direct trust relationships */
1687 DEBUG (5,("is_trusted_domain: Checking for domain trust with "
1688 "[%s]\n", dom_name
));
1689 ret
= pdb_get_trusteddom_pw(dom_name
, NULL
, NULL
, NULL
);
1697 /* If winbind is around, ask it */
1699 result
= wb_is_trusted_domain(dom_name
);
1701 if (result
== NSS_STATUS_SUCCESS
) {
1705 if (result
== NSS_STATUS_NOTFOUND
) {
1706 /* winbind could not find the domain */
1710 /* The only other possible result is that winbind is not up
1711 and running. We need to update the trustdom_cache
1714 update_trustdom_cache();
1717 /* now the trustdom cache should be available a DC could still
1718 * have a transitive trust so fall back to the cache of trusted
1719 * domains (like a domain member would use */
1721 if ( trustdom_cache_fetch(dom_name
, &trustdom_sid
) ) {