2 Unix SMB/CIFS implementation.
4 Winbind daemon - user related functions
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jeremy Allison 2001.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #define DBGC_CLASS DBGC_WINBIND
29 extern userdom_struct current_user_info
;
31 /* Fill a pwent structure with information we have obtained */
33 static BOOL
winbindd_fill_pwent(char *dom_name
, char *user_name
,
34 DOM_SID
*user_sid
, DOM_SID
*group_sid
,
35 char *full_name
, struct winbindd_pw
*pw
)
37 fstring output_username
;
41 if (!pw
|| !dom_name
|| !user_name
)
44 /* Resolve the uid number */
46 if (NT_STATUS_IS_ERR(sid_to_uid(user_sid
, &(pw
->pw_uid
)))) {
47 DEBUG(1, ("error getting user id for sid %s\n", sid_to_string(sid_string
, user_sid
)));
51 /* Resolve the gid number */
53 if (NT_STATUS_IS_ERR(sid_to_gid(group_sid
, &(pw
->pw_gid
)))) {
54 DEBUG(1, ("error getting group id for sid %s\n", sid_to_string(sid_string
, group_sid
)));
60 fill_domain_username(output_username
, dom_name
, user_name
);
62 safe_strcpy(pw
->pw_name
, output_username
, sizeof(pw
->pw_name
) - 1);
64 /* Full name (gecos) */
66 safe_strcpy(pw
->pw_gecos
, full_name
, sizeof(pw
->pw_gecos
) - 1);
68 /* Home directory and shell - use template config parameters. The
69 defaults are /tmp for the home directory and /bin/false for
72 /* The substitution of %U and %D in the 'template homedir' is done
73 by lp_string() calling standard_sub_basic(). */
75 fstrcpy(current_user_info
.smb_name
, user_name
);
76 sub_set_smb_name(user_name
);
77 fstrcpy(current_user_info
.domain
, dom_name
);
79 pstrcpy(homedir
, lp_template_homedir());
81 safe_strcpy(pw
->pw_dir
, homedir
, sizeof(pw
->pw_dir
) - 1);
83 safe_strcpy(pw
->pw_shell
, lp_template_shell(),
84 sizeof(pw
->pw_shell
) - 1);
86 /* Password - set to "x" as we can't generate anything useful here.
87 Authentication can be done using the pam_winbind module. */
89 safe_strcpy(pw
->pw_passwd
, "x", sizeof(pw
->pw_passwd
) - 1);
94 /* Return a password structure from a username. */
96 enum winbindd_result
winbindd_getpwnam(struct winbindd_cli_state
*state
)
98 WINBIND_USERINFO user_info
;
101 fstring name_domain
, name_user
;
102 enum SID_NAME_USE name_type
;
103 struct winbindd_domain
*domain
;
106 /* Ensure null termination */
107 state
->request
.data
.username
[sizeof(state
->request
.data
.username
)-1]='\0';
109 DEBUG(3, ("[%5d]: getpwnam %s\n", state
->pid
,
110 state
->request
.data
.username
));
112 /* Parse domain and username */
114 if (!parse_domain_user(state
->request
.data
.username
, name_domain
,
116 return WINBINDD_ERROR
;
118 if ((domain
= find_domain_from_name(name_domain
)) == NULL
) {
119 DEBUG(5, ("no such domain: %s\n", name_domain
));
120 return WINBINDD_ERROR
;
123 /* Get rid and name type from name */
125 if (!winbindd_lookup_sid_by_name(domain
, name_user
, &user_sid
, &name_type
)) {
126 DEBUG(1, ("user '%s' does not exist\n", name_user
));
127 return WINBINDD_ERROR
;
130 if (name_type
!= SID_NAME_USER
) {
131 DEBUG(1, ("name '%s' is not a user name: %d\n", name_user
,
133 return WINBINDD_ERROR
;
136 /* Get some user info. Split the user rid from the sid obtained
137 from the winbind_lookup_by_name() call and use it in a
138 winbind_lookup_userinfo() */
140 if (!(mem_ctx
= talloc_init("winbindd_getpwnam([%s]\\[%s])",
141 name_domain
, name_user
))) {
142 DEBUG(1, ("out of memory\n"));
143 return WINBINDD_ERROR
;
146 status
= domain
->methods
->query_user(domain
, mem_ctx
, &user_sid
,
149 if (!NT_STATUS_IS_OK(status
)) {
150 DEBUG(1, ("error getting user info for user '[%s]\\[%s]'\n",
151 name_domain
, name_user
));
152 talloc_destroy(mem_ctx
);
153 return WINBINDD_ERROR
;
156 /* Now take all this information and fill in a passwd structure */
157 if (!winbindd_fill_pwent(name_domain
, name_user
,
158 user_info
.user_sid
, user_info
.group_sid
,
160 &state
->response
.data
.pw
)) {
161 talloc_destroy(mem_ctx
);
162 return WINBINDD_ERROR
;
165 talloc_destroy(mem_ctx
);
170 /* Return a password structure given a uid number */
172 enum winbindd_result
winbindd_getpwuid(struct winbindd_cli_state
*state
)
175 struct winbindd_domain
*domain
;
178 enum SID_NAME_USE name_type
;
179 WINBIND_USERINFO user_info
;
184 /* Bug out if the uid isn't in the winbind range */
186 if ((state
->request
.data
.uid
< server_state
.uid_low
) ||
187 (state
->request
.data
.uid
> server_state
.uid_high
))
188 return WINBINDD_ERROR
;
190 DEBUG(3, ("[%5d]: getpwuid %d\n", state
->pid
,
191 state
->request
.data
.uid
));
193 /* Get rid from uid */
195 if (NT_STATUS_IS_ERR(uid_to_sid(&user_sid
, state
->request
.data
.uid
))) {
196 DEBUG(1, ("could not convert uid %d to SID\n",
197 state
->request
.data
.uid
));
198 return WINBINDD_ERROR
;
201 /* Get name and name type from rid */
203 if (!winbindd_lookup_name_by_sid(&user_sid
, dom_name
, user_name
, &name_type
)) {
206 sid_to_string(temp
, &user_sid
);
207 DEBUG(1, ("could not lookup sid %s\n", temp
));
208 return WINBINDD_ERROR
;
211 domain
= find_domain_from_sid(&user_sid
);
214 DEBUG(1,("Can't find domain from sid\n"));
215 return WINBINDD_ERROR
;
218 /* Get some user info */
220 if (!(mem_ctx
= talloc_init("winbind_getpwuid(%d)",
221 state
->request
.data
.uid
))) {
223 DEBUG(1, ("out of memory\n"));
224 return WINBINDD_ERROR
;
227 status
= domain
->methods
->query_user(domain
, mem_ctx
, &user_sid
,
230 if (!NT_STATUS_IS_OK(status
)) {
231 DEBUG(1, ("error getting user info for user '%s'\n",
233 talloc_destroy(mem_ctx
);
234 return WINBINDD_ERROR
;
237 /* Check group has a gid number */
239 if (NT_STATUS_IS_ERR(sid_to_gid(user_info
.group_sid
, &gid
))) {
240 DEBUG(1, ("error getting group id for user %s\n", user_name
));
241 talloc_destroy(mem_ctx
);
242 return WINBINDD_ERROR
;
245 /* Fill in password structure */
247 if (!winbindd_fill_pwent(domain
->name
, user_name
, user_info
.user_sid
,
249 user_info
.full_name
, &state
->response
.data
.pw
)) {
250 talloc_destroy(mem_ctx
);
251 return WINBINDD_ERROR
;
254 talloc_destroy(mem_ctx
);
260 * set/get/endpwent functions
263 /* Rewind file pointer for ntdom passwd database */
265 enum winbindd_result
winbindd_setpwent(struct winbindd_cli_state
*state
)
267 struct winbindd_domain
*domain
;
269 DEBUG(3, ("[%5d]: setpwent\n", state
->pid
));
271 /* Check user has enabled this */
273 if (!lp_winbind_enum_users())
274 return WINBINDD_ERROR
;
276 /* Free old static data if it exists */
278 if (state
->getpwent_state
!= NULL
) {
279 free_getent_state(state
->getpwent_state
);
280 state
->getpwent_state
= NULL
;
283 /* Create sam pipes for each domain we know about */
285 for(domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
286 struct getent_state
*domain_state
;
288 /* Create a state record for this domain */
290 if ((domain_state
= (struct getent_state
*)
291 malloc(sizeof(struct getent_state
))) == NULL
)
292 return WINBINDD_ERROR
;
294 ZERO_STRUCTP(domain_state
);
296 fstrcpy(domain_state
->domain_name
, domain
->name
);
298 /* Add to list of open domains */
300 DLIST_ADD(state
->getpwent_state
, domain_state
);
306 /* Close file pointer to ntdom passwd database */
308 enum winbindd_result
winbindd_endpwent(struct winbindd_cli_state
*state
)
310 DEBUG(3, ("[%5d]: endpwent\n", state
->pid
));
312 free_getent_state(state
->getpwent_state
);
313 state
->getpwent_state
= NULL
;
318 /* Get partial list of domain users for a domain. We fill in the sam_entries,
319 and num_sam_entries fields with domain user information. The dispinfo_ndx
320 field is incremented to the index of the next user to fetch. Return True if
321 some users were returned, False otherwise. */
323 #define MAX_FETCH_SAM_ENTRIES 100
325 static BOOL
get_sam_user_entries(struct getent_state
*ent
)
329 WINBIND_USERINFO
*info
;
330 struct getpwent_user
*name_list
= NULL
;
333 struct winbindd_domain
*domain
;
334 struct winbindd_methods
*methods
;
337 if (ent
->num_sam_entries
)
340 if (!(mem_ctx
= talloc_init("get_sam_user_entries(%s)",
344 if (!(domain
= find_domain_from_name(ent
->domain_name
))) {
345 DEBUG(3, ("no such domain %s in get_sam_user_entries\n",
350 methods
= domain
->methods
;
352 /* Free any existing user info */
354 SAFE_FREE(ent
->sam_entries
);
355 ent
->num_sam_entries
= 0;
357 /* Call query_user_list to get a list of usernames and user rids */
361 status
= methods
->query_user_list(domain
, mem_ctx
, &num_entries
,
365 struct getpwent_user
*tnl
;
367 tnl
= (struct getpwent_user
*)Realloc(name_list
,
368 sizeof(struct getpwent_user
) *
369 (ent
->num_sam_entries
+
373 DEBUG(0,("get_sam_user_entries realloc failed.\n"));
374 SAFE_FREE(name_list
);
380 for (i
= 0; i
< num_entries
; i
++) {
381 /* Store account name and gecos */
382 if (!info
[i
].acct_name
) {
383 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].name
, "");
385 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].name
,
388 if (!info
[i
].full_name
) {
389 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].gecos
, "");
391 fstrcpy(name_list
[ent
->num_sam_entries
+ i
].gecos
,
395 /* User and group ids */
396 sid_copy(&name_list
[ent
->num_sam_entries
+i
].user_sid
, info
[i
].user_sid
);
397 sid_copy(&name_list
[ent
->num_sam_entries
+i
].group_sid
, info
[i
].group_sid
);
400 ent
->num_sam_entries
+= num_entries
;
402 /* Fill in remaining fields */
404 ent
->sam_entries
= name_list
;
405 ent
->sam_entry_index
= 0;
406 result
= ent
->num_sam_entries
> 0;
410 talloc_destroy(mem_ctx
);
415 /* Fetch next passwd entry from ntdom database */
417 #define MAX_GETPWENT_USERS 500
419 enum winbindd_result
winbindd_getpwent(struct winbindd_cli_state
*state
)
421 struct getent_state
*ent
;
422 struct winbindd_pw
*user_list
;
423 int num_users
, user_list_ndx
= 0, i
;
425 DEBUG(3, ("[%5d]: getpwent\n", state
->pid
));
427 /* Check user has enabled this */
429 if (!lp_winbind_enum_users())
430 return WINBINDD_ERROR
;
432 /* Allocate space for returning a chunk of users */
434 num_users
= MIN(MAX_GETPWENT_USERS
, state
->request
.data
.num_entries
);
436 if ((state
->response
.extra_data
=
437 malloc(num_users
* sizeof(struct winbindd_pw
))) == NULL
)
438 return WINBINDD_ERROR
;
440 memset(state
->response
.extra_data
, 0, num_users
*
441 sizeof(struct winbindd_pw
));
443 user_list
= (struct winbindd_pw
*)state
->response
.extra_data
;
445 if (!(ent
= state
->getpwent_state
))
446 return WINBINDD_ERROR
;
448 /* Start sending back users */
450 for (i
= 0; i
< num_users
; i
++) {
451 struct getpwent_user
*name_list
= NULL
;
454 /* Do we need to fetch another chunk of users? */
456 if (ent
->num_sam_entries
== ent
->sam_entry_index
) {
458 while(ent
&& !get_sam_user_entries(ent
)) {
459 struct getent_state
*next_ent
;
461 /* Free state information for this domain */
463 SAFE_FREE(ent
->sam_entries
);
465 next_ent
= ent
->next
;
466 DLIST_REMOVE(state
->getpwent_state
, ent
);
472 /* No more domains */
478 name_list
= ent
->sam_entries
;
480 /* Skip machine accounts */
482 if (name_list
[ent
->sam_entry_index
].
483 name
[strlen(name_list
[ent
->sam_entry_index
].name
) - 1]
485 ent
->sam_entry_index
++;
489 /* Lookup user info */
491 result
= winbindd_fill_pwent(
493 name_list
[ent
->sam_entry_index
].name
,
494 &name_list
[ent
->sam_entry_index
].user_sid
,
495 &name_list
[ent
->sam_entry_index
].group_sid
,
496 name_list
[ent
->sam_entry_index
].gecos
,
497 &user_list
[user_list_ndx
]);
499 ent
->sam_entry_index
++;
501 /* Add user to return list */
506 state
->response
.data
.num_entries
++;
507 state
->response
.length
+=
508 sizeof(struct winbindd_pw
);
511 DEBUG(1, ("could not lookup domain user %s\n",
512 name_list
[ent
->sam_entry_index
].name
));
517 return (user_list_ndx
> 0) ? WINBINDD_OK
: WINBINDD_ERROR
;
520 /* List domain users without mapping to unix ids */
522 enum winbindd_result
winbindd_list_users(struct winbindd_cli_state
*state
)
524 struct winbindd_domain
*domain
;
525 WINBIND_USERINFO
*info
;
526 uint32 num_entries
= 0, total_entries
= 0;
527 char *ted
, *extra_data
= NULL
;
528 int extra_data_len
= 0;
530 enum winbindd_result rv
= WINBINDD_ERROR
;
532 DEBUG(3, ("[%5d]: list users\n", state
->pid
));
534 if (!(mem_ctx
= talloc_init("winbindd_list_users")))
535 return WINBINDD_ERROR
;
537 /* Enumerate over trusted domains */
539 for (domain
= domain_list(); domain
; domain
= domain
->next
) {
541 struct winbindd_methods
*methods
;
544 methods
= domain
->methods
;
546 /* Query display info */
547 status
= methods
->query_user_list(domain
, mem_ctx
,
548 &num_entries
, &info
);
550 if (num_entries
== 0)
553 /* Allocate some memory for extra data */
554 total_entries
+= num_entries
;
556 ted
= Realloc(extra_data
, sizeof(fstring
) * total_entries
);
559 DEBUG(0,("failed to enlarge buffer!\n"));
560 SAFE_FREE(extra_data
);
565 /* Pack user list into extra data fields */
567 for (i
= 0; i
< num_entries
; i
++) {
568 fstring acct_name
, name
;
570 if (!info
[i
].acct_name
) {
571 fstrcpy(acct_name
, "");
573 fstrcpy(acct_name
, info
[i
].acct_name
);
576 fill_domain_username(name
, domain
->name
, acct_name
);
578 /* Append to extra data */
579 memcpy(&extra_data
[extra_data_len
], name
,
581 extra_data_len
+= strlen(name
);
582 extra_data
[extra_data_len
++] = ',';
586 /* Assign extra_data fields in response structure */
589 extra_data
[extra_data_len
- 1] = '\0';
590 state
->response
.extra_data
= extra_data
;
591 state
->response
.length
+= extra_data_len
;
594 /* No domains responded but that's still OK so don't return an
601 talloc_destroy(mem_ctx
);