2 Unix SMB/CIFS implementation.
4 Winbind daemon - user related functions
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jeremy Allison 2001.
8 Copyright (C) Gerald (Jerry) Carter 2003.
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.
29 #define DBGC_CLASS DBGC_WINBIND
31 extern userdom_struct current_user_info
;
33 /* Fill a pwent structure with information we have obtained */
35 static BOOL
winbindd_fill_pwent(char *dom_name
, char *user_name
,
36 DOM_SID
*user_sid
, DOM_SID
*group_sid
,
37 char *full_name
, struct winbindd_pw
*pw
)
39 fstring output_username
;
44 if (!pw
|| !dom_name
|| !user_name
)
47 /* Resolve the uid number */
49 if (!NT_STATUS_IS_OK(idmap_sid_to_uid(user_sid
, &pw
->pw_uid
, 0))) {
50 DEBUG(1, ("error getting user id for sid %s\n", sid_to_string(sid_string
, user_sid
)));
54 /* Resolve the gid number */
56 if (!NT_STATUS_IS_OK(idmap_sid_to_gid(group_sid
, &pw
->pw_gid
, 0))) {
57 DEBUG(1, ("error getting group id for sid %s\n", sid_to_string(sid_string
, group_sid
)));
61 strlower_m(user_name
);
65 fill_domain_username(output_username
, dom_name
, user_name
);
67 safe_strcpy(pw
->pw_name
, output_username
, sizeof(pw
->pw_name
) - 1);
69 /* Full name (gecos) */
71 safe_strcpy(pw
->pw_gecos
, full_name
, sizeof(pw
->pw_gecos
) - 1);
73 /* Home directory and shell - use template config parameters. The
74 defaults are /tmp for the home directory and /bin/false for
77 /* The substitution of %U and %D in the 'template homedir' is done
78 by alloc_sub_specified() below. */
80 fstrcpy(current_user_info
.domain
, dom_name
);
82 homedir
= alloc_sub_specified(lp_template_homedir(), user_name
, dom_name
, pw
->pw_uid
, pw
->pw_gid
);
87 safe_strcpy(pw
->pw_dir
, homedir
, sizeof(pw
->pw_dir
) - 1);
91 shell
= alloc_sub_specified(lp_template_shell(), user_name
, dom_name
, pw
->pw_uid
, pw
->pw_gid
);
96 safe_strcpy(pw
->pw_shell
, shell
,
97 sizeof(pw
->pw_shell
) - 1);
101 /* Password - set to "x" as we can't generate anything useful here.
102 Authentication can be done using the pam_winbind module. */
104 safe_strcpy(pw
->pw_passwd
, "x", sizeof(pw
->pw_passwd
) - 1);
109 /* Return a password structure from a username. */
111 enum winbindd_result
winbindd_getpwnam(struct winbindd_cli_state
*state
)
113 WINBIND_USERINFO user_info
;
117 fstring name_domain
, name_user
;
118 enum SID_NAME_USE name_type
;
119 struct winbindd_domain
*domain
;
122 /* Ensure null termination */
123 state
->request
.data
.username
[sizeof(state
->request
.data
.username
)-1]='\0';
125 DEBUG(3, ("[%5lu]: getpwnam %s\n", (unsigned long)state
->pid
,
126 state
->request
.data
.username
));
128 /* Parse domain and username */
130 parse_domain_user(state
->request
.data
.username
,
131 name_domain
, name_user
);
133 /* if this is our local domain (or no domain), the do a local tdb search */
135 if ( !*name_domain
|| strequal(name_domain
, get_global_sam_name()) ) {
136 if ( !(pw
= wb_getpwnam(name_user
)) ) {
137 DEBUG(5,("winbindd_getpwnam: lookup for %s\\%s failed\n",
138 name_domain
, name_user
));
139 return WINBINDD_ERROR
;
141 memcpy( &state
->response
.data
.pw
, pw
, sizeof(WINBINDD_PW
) );
145 /* should we deal with users for our domain? */
147 if ((domain
= find_domain_from_name(name_domain
)) == NULL
) {
148 DEBUG(5, ("no such domain: %s\n", name_domain
));
149 return WINBINDD_ERROR
;
152 if ( domain
->primary
&& lp_winbind_trusted_domains_only()) {
153 DEBUG(7,("winbindd_getpwnam: My domain -- rejecting getpwnam() for %s\\%s.\n",
154 name_domain
, name_user
));
155 return WINBINDD_ERROR
;
158 /* Get rid and name type from name */
160 if (!winbindd_lookup_sid_by_name(domain
, domain
->name
, name_user
, &user_sid
, &name_type
)) {
161 DEBUG(1, ("user '%s' does not exist\n", name_user
));
162 return WINBINDD_ERROR
;
165 if (name_type
!= SID_NAME_USER
&& name_type
!= SID_NAME_COMPUTER
) {
166 DEBUG(1, ("name '%s' is not a user name: %d\n", name_user
,
168 return WINBINDD_ERROR
;
171 /* Get some user info. */
173 if (!(mem_ctx
= talloc_init("winbindd_getpwnam([%s]\\[%s])",
174 name_domain
, name_user
))) {
175 DEBUG(1, ("out of memory\n"));
176 return WINBINDD_ERROR
;
179 status
= domain
->methods
->query_user(domain
, mem_ctx
, &user_sid
,
182 if (!NT_STATUS_IS_OK(status
)) {
183 DEBUG(1, ("error getting user info for user '[%s]\\[%s]'\n",
184 name_domain
, name_user
));
185 talloc_destroy(mem_ctx
);
186 return WINBINDD_ERROR
;
189 /* Now take all this information and fill in a passwd structure */
190 if (!winbindd_fill_pwent(name_domain
, user_info
.acct_name
,
191 user_info
.user_sid
, user_info
.group_sid
,
193 &state
->response
.data
.pw
)) {
194 talloc_destroy(mem_ctx
);
195 return WINBINDD_ERROR
;
198 talloc_destroy(mem_ctx
);
203 /* Return a password structure given a uid number */
205 enum winbindd_result
winbindd_getpwuid(struct winbindd_cli_state
*state
)
208 struct winbindd_domain
*domain
;
212 enum SID_NAME_USE name_type
;
213 WINBIND_USERINFO user_info
;
218 /* Bug out if the uid isn't in the winbind range */
220 if ((state
->request
.data
.uid
< server_state
.uid_low
) ||
221 (state
->request
.data
.uid
> server_state
.uid_high
))
222 return WINBINDD_ERROR
;
224 DEBUG(3, ("[%5lu]: getpwuid %lu\n", (unsigned long)state
->pid
,
225 (unsigned long)state
->request
.data
.uid
));
227 /* always try local tdb first */
229 if ( (pw
= wb_getpwuid(state
->request
.data
.uid
)) != NULL
) {
230 memcpy( &state
->response
.data
.pw
, pw
, sizeof(WINBINDD_PW
) );
234 /* Get rid from uid */
236 if (!NT_STATUS_IS_OK(idmap_uid_to_sid(&user_sid
, state
->request
.data
.uid
))) {
237 DEBUG(1, ("could not convert uid %lu to SID\n",
238 (unsigned long)state
->request
.data
.uid
));
239 return WINBINDD_ERROR
;
242 /* Get name and name type from rid */
244 if (!winbindd_lookup_name_by_sid(&user_sid
, dom_name
, user_name
, &name_type
)) {
247 sid_to_string(temp
, &user_sid
);
248 DEBUG(1, ("could not lookup sid %s\n", temp
));
249 return WINBINDD_ERROR
;
252 domain
= find_domain_from_sid(&user_sid
);
255 DEBUG(1,("Can't find domain from sid\n"));
256 return WINBINDD_ERROR
;
259 /* Get some user info */
261 if (!(mem_ctx
= talloc_init("winbind_getpwuid(%lu)",
262 (unsigned long)state
->request
.data
.uid
))) {
264 DEBUG(1, ("out of memory\n"));
265 return WINBINDD_ERROR
;
268 status
= domain
->methods
->query_user(domain
, mem_ctx
, &user_sid
,
271 if (!NT_STATUS_IS_OK(status
)) {
272 DEBUG(1, ("error getting user info for user '%s'\n",
274 talloc_destroy(mem_ctx
);
275 return WINBINDD_ERROR
;
278 /* Check group has a gid number */
280 if (!NT_STATUS_IS_OK(idmap_sid_to_gid(user_info
.group_sid
, &gid
, 0))) {
281 DEBUG(1, ("error getting group id for user %s\n", user_name
));
282 talloc_destroy(mem_ctx
);
283 return WINBINDD_ERROR
;
286 /* Fill in password structure */
288 if (!winbindd_fill_pwent(domain
->name
, user_info
.acct_name
, user_info
.user_sid
,
290 user_info
.full_name
, &state
->response
.data
.pw
)) {
291 talloc_destroy(mem_ctx
);
292 return WINBINDD_ERROR
;
295 talloc_destroy(mem_ctx
);
301 * set/get/endpwent functions
304 /* Rewind file pointer for ntdom passwd database */
306 enum winbindd_result
winbindd_setpwent(struct winbindd_cli_state
*state
)
308 struct winbindd_domain
*domain
;
310 DEBUG(3, ("[%5lu]: setpwent\n", (unsigned long)state
->pid
));
312 /* Check user has enabled this */
314 if (!lp_winbind_enum_users())
315 return WINBINDD_ERROR
;
317 /* Free old static data if it exists */
319 if (state
->getpwent_state
!= NULL
) {
320 free_getent_state(state
->getpwent_state
);
321 state
->getpwent_state
= NULL
;
325 /* add any local users we have */
327 if ( (domain_state
= (struct getent_state
*)malloc(sizeof(struct getent_state
))) == NULL
)
328 return WINBINDD_ERROR
;
330 ZERO_STRUCTP(domain_state
);
332 /* Add to list of open domains */
334 DLIST_ADD(state
->getpwent_state
, domain_state
);
337 /* Create sam pipes for each domain we know about */
339 for(domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
340 struct getent_state
*domain_state
;
343 /* don't add our domaina if we are a PDC or if we
344 are a member of a Samba domain */
346 if ( (IS_DC
|| lp_winbind_trusted_domains_only())
347 && strequal(domain
->name
, lp_workgroup()) )
352 /* Create a state record for this domain */
354 if ((domain_state
= SMB_MALLOC_P(struct getent_state
)) == NULL
)
355 return WINBINDD_ERROR
;
357 ZERO_STRUCTP(domain_state
);
359 fstrcpy(domain_state
->domain_name
, domain
->name
);
361 /* Add to list of open domains */
363 DLIST_ADD(state
->getpwent_state
, domain_state
);
366 state
->getpwent_initialized
= True
;
371 /* Close file pointer to ntdom passwd database */
373 enum winbindd_result
winbindd_endpwent(struct winbindd_cli_state
*state
)
375 DEBUG(3, ("[%5lu]: endpwent\n", (unsigned long)state
->pid
));
377 free_getent_state(state
->getpwent_state
);
378 state
->getpwent_initialized
= False
;
379 state
->getpwent_state
= NULL
;
384 /* Get partial list of domain users for a domain. We fill in the sam_entries,
385 and num_sam_entries fields with domain user information. The dispinfo_ndx
386 field is incremented to the index of the next user to fetch. Return True if
387 some users were returned, False otherwise. */
389 static BOOL
get_sam_user_entries(struct getent_state
*ent
)
393 WINBIND_USERINFO
*info
;
394 struct getpwent_user
*name_list
= NULL
;
397 struct winbindd_domain
*domain
;
398 struct winbindd_methods
*methods
;
401 if (ent
->num_sam_entries
)
404 if (!(mem_ctx
= talloc_init("get_sam_user_entries(%s)",
408 if (!(domain
= find_domain_from_name(ent
->domain_name
))) {
409 DEBUG(3, ("no such domain %s in get_sam_user_entries\n",
414 methods
= domain
->methods
;
416 /* Free any existing user info */
418 SAFE_FREE(ent
->sam_entries
);
419 ent
->num_sam_entries
= 0;
421 /* Call query_user_list to get a list of usernames and user rids */
425 status
= methods
->query_user_list(domain
, mem_ctx
, &num_entries
,
429 struct getpwent_user
*tnl
;
431 tnl
= SMB_REALLOC_ARRAY(name_list
, struct getpwent_user
, ent
->num_sam_entries
+ num_entries
);
434 DEBUG(0,("get_sam_user_entries realloc failed.\n"));
435 SAFE_FREE(name_list
);
441 for (i
= 0; i
< num_entries
; i
++) {
442 /* Store account name and gecos */
443 if (!info
[i
].acct_name
) {
444 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].name
, "");
446 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].name
,
449 if (!info
[i
].full_name
) {
450 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].gecos
, "");
452 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].gecos
,
456 /* User and group ids */
457 sid_copy(&name_list
[ent
->num_sam_entries
+i
].user_sid
, info
[i
].user_sid
);
458 sid_copy(&name_list
[ent
->num_sam_entries
+i
].group_sid
, info
[i
].group_sid
);
461 ent
->num_sam_entries
+= num_entries
;
463 /* Fill in remaining fields */
465 ent
->sam_entries
= name_list
;
466 ent
->sam_entry_index
= 0;
467 result
= ent
->num_sam_entries
> 0;
471 talloc_destroy(mem_ctx
);
476 /* Fetch next passwd entry from ntdom database */
478 #define MAX_GETPWENT_USERS 500
480 enum winbindd_result
winbindd_getpwent(struct winbindd_cli_state
*state
)
482 struct getent_state
*ent
;
483 struct winbindd_pw
*user_list
;
484 int num_users
, user_list_ndx
= 0, i
;
486 DEBUG(3, ("[%5lu]: getpwent\n", (unsigned long)state
->pid
));
488 /* Check user has enabled this */
490 if (!lp_winbind_enum_users())
491 return WINBINDD_ERROR
;
493 /* Allocate space for returning a chunk of users */
495 num_users
= MIN(MAX_GETPWENT_USERS
, state
->request
.data
.num_entries
);
497 if ((state
->response
.extra_data
= SMB_MALLOC_ARRAY(struct winbindd_pw
, num_users
)) == NULL
)
498 return WINBINDD_ERROR
;
500 memset(state
->response
.extra_data
, 0, num_users
*
501 sizeof(struct winbindd_pw
));
503 user_list
= (struct winbindd_pw
*)state
->response
.extra_data
;
505 if (!state
->getpwent_initialized
)
506 winbindd_setpwent(state
);
508 if (!(ent
= state
->getpwent_state
))
509 return WINBINDD_ERROR
;
511 /* Start sending back users */
513 for (i
= 0; i
< num_users
; i
++) {
514 struct getpwent_user
*name_list
= NULL
;
517 /* Do we need to fetch another chunk of users? */
519 if (ent
->num_sam_entries
== ent
->sam_entry_index
) {
521 while(ent
&& !get_sam_user_entries(ent
)) {
522 struct getent_state
*next_ent
;
524 /* Free state information for this domain */
526 SAFE_FREE(ent
->sam_entries
);
528 next_ent
= ent
->next
;
529 DLIST_REMOVE(state
->getpwent_state
, ent
);
535 /* No more domains */
541 name_list
= ent
->sam_entries
;
543 /* Lookup user info */
545 result
= winbindd_fill_pwent(
547 name_list
[ent
->sam_entry_index
].name
,
548 &name_list
[ent
->sam_entry_index
].user_sid
,
549 &name_list
[ent
->sam_entry_index
].group_sid
,
550 name_list
[ent
->sam_entry_index
].gecos
,
551 &user_list
[user_list_ndx
]);
553 ent
->sam_entry_index
++;
555 /* Add user to return list */
560 state
->response
.data
.num_entries
++;
561 state
->response
.length
+=
562 sizeof(struct winbindd_pw
);
565 DEBUG(1, ("could not lookup domain user %s\n",
566 name_list
[ent
->sam_entry_index
].name
));
571 return (user_list_ndx
> 0) ? WINBINDD_OK
: WINBINDD_ERROR
;
574 /* List domain users without mapping to unix ids */
576 enum winbindd_result
winbindd_list_users(struct winbindd_cli_state
*state
)
578 struct winbindd_domain
*domain
;
579 WINBIND_USERINFO
*info
;
580 const char *which_domain
;
581 uint32 num_entries
= 0, total_entries
= 0;
582 char *ted
, *extra_data
= NULL
;
583 int extra_data_len
= 0;
585 enum winbindd_result rv
= WINBINDD_ERROR
;
587 DEBUG(3, ("[%5lu]: list users\n", (unsigned long)state
->pid
));
589 if (!(mem_ctx
= talloc_init("winbindd_list_users")))
590 return WINBINDD_ERROR
;
592 /* Ensure null termination */
593 state
->request
.domain_name
[sizeof(state
->request
.domain_name
)-1]='\0';
594 which_domain
= state
->request
.domain_name
;
596 /* Enumerate over trusted domains */
598 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
600 struct winbindd_methods
*methods
;
603 /* if we have a domain name restricting the request and this
604 one in the list doesn't match, then just bypass the remainder
607 if ( *which_domain
&& !strequal(which_domain
, domain
->name
) )
610 methods
= domain
->methods
;
612 /* Query display info */
613 status
= methods
->query_user_list(domain
, mem_ctx
,
614 &num_entries
, &info
);
616 if (num_entries
== 0)
619 /* Allocate some memory for extra data */
620 total_entries
+= num_entries
;
622 ted
= SMB_REALLOC(extra_data
, sizeof(fstring
) * total_entries
);
625 DEBUG(0,("failed to enlarge buffer!\n"));
626 SAFE_FREE(extra_data
);
631 /* Pack user list into extra data fields */
633 for (i
= 0; i
< num_entries
; i
++) {
634 fstring acct_name
, name
;
636 if (!info
[i
].acct_name
) {
637 fstrcpy(acct_name
, "");
639 fstrcpy(acct_name
, info
[i
].acct_name
);
642 fill_domain_username(name
, domain
->name
, acct_name
);
644 /* Append to extra data */
645 memcpy(&extra_data
[extra_data_len
], name
,
647 extra_data_len
+= strlen(name
);
648 extra_data
[extra_data_len
++] = ',';
652 /* Assign extra_data fields in response structure */
655 extra_data
[extra_data_len
- 1] = '\0';
656 state
->response
.extra_data
= extra_data
;
657 state
->response
.length
+= extra_data_len
;
660 /* No domains responded but that's still OK so don't return an
667 talloc_destroy(mem_ctx
);