docs: Clarify "ldap ssl" description in man smb.conf.
[Samba/gebeck_regimport.git] / nsswitch / winbind_nss_linux.c
blob4a7943278ea9f1b71730d0e8b75827956ddc3812
1 /*
2 Unix SMB/CIFS implementation.
4 Windows NT Domain nsswitch module
6 Copyright (C) Tim Potter 2000
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 3 of the License, or (at your option) any later version.
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "winbind_client.h"
24 #if HAVE_PTHREAD_H
25 #include <pthread.h>
26 #endif
28 #if HAVE_PTHREAD
29 static pthread_mutex_t winbind_nss_mutex = PTHREAD_MUTEX_INITIALIZER;
30 #endif
32 /* Maximum number of users to pass back over the unix domain socket
33 per call. This is not a static limit on the total number of users
34 or groups returned in total. */
36 #define MAX_GETPWENT_USERS 250
37 #define MAX_GETGRENT_USERS 250
39 NSS_STATUS _nss_winbind_setpwent(void);
40 NSS_STATUS _nss_winbind_endpwent(void);
41 NSS_STATUS _nss_winbind_getpwent_r(struct passwd *result, char *buffer,
42 size_t buflen, int *errnop);
43 NSS_STATUS _nss_winbind_getpwuid_r(uid_t uid, struct passwd *result,
44 char *buffer, size_t buflen, int *errnop);
45 NSS_STATUS _nss_winbind_getpwnam_r(const char *name, struct passwd *result,
46 char *buffer, size_t buflen, int *errnop);
47 NSS_STATUS _nss_winbind_setgrent(void);
48 NSS_STATUS _nss_winbind_endgrent(void);
49 NSS_STATUS _nss_winbind_getgrent_r(struct group *result, char *buffer,
50 size_t buflen, int *errnop);
51 NSS_STATUS _nss_winbind_getgrlst_r(struct group *result, char *buffer,
52 size_t buflen, int *errnop);
53 NSS_STATUS _nss_winbind_getgrnam_r(const char *name, struct group *result,
54 char *buffer, size_t buflen, int *errnop);
55 NSS_STATUS _nss_winbind_getgrgid_r(gid_t gid, struct group *result, char *buffer,
56 size_t buflen, int *errnop);
57 NSS_STATUS _nss_winbind_initgroups_dyn(char *user, gid_t group, long int *start,
58 long int *size, gid_t **groups,
59 long int limit, int *errnop);
60 NSS_STATUS _nss_winbind_getusersids(const char *user_sid, char **group_sids,
61 int *num_groups, char *buffer, size_t buf_size,
62 int *errnop);
63 NSS_STATUS _nss_winbind_nametosid(const char *name, char **sid, char *buffer,
64 size_t buflen, int *errnop);
65 NSS_STATUS _nss_winbind_sidtoname(const char *sid, char **name, char *buffer,
66 size_t buflen, int *errnop);
67 NSS_STATUS _nss_winbind_sidtouid(const char *sid, uid_t *uid, int *errnop);
68 NSS_STATUS _nss_winbind_sidtogid(const char *sid, gid_t *gid, int *errnop);
69 NSS_STATUS _nss_winbind_uidtosid(uid_t uid, char **sid, char *buffer,
70 size_t buflen, int *errnop);
71 NSS_STATUS _nss_winbind_gidtosid(gid_t gid, char **sid, char *buffer,
72 size_t buflen, int *errnop);
74 /* Prototypes from wb_common.c */
76 /* Allocate some space from the nss static buffer. The buffer and buflen
77 are the pointers passed in by the C library to the _nss_ntdom_*
78 functions. */
80 static char *get_static(char **buffer, size_t *buflen, size_t len)
82 char *result;
84 /* Error check. We return false if things aren't set up right, or
85 there isn't enough buffer space left. */
87 if ((buffer == NULL) || (buflen == NULL) || (*buflen < len)) {
88 return NULL;
91 /* Return an index into the static buffer */
93 result = *buffer;
94 *buffer += len;
95 *buflen -= len;
97 return result;
100 /* I've copied the strtok() replacement function next_token_Xalloc() from
101 lib/util_str.c as I really don't want to have to link in any other
102 objects if I can possibly avoid it. */
104 static bool next_token_alloc(const char **ptr,
105 char **pp_buff,
106 const char *sep)
108 const char *s;
109 const char *saved_s;
110 char *pbuf;
111 bool quoted;
112 size_t len=1;
114 *pp_buff = NULL;
115 if (!ptr) {
116 return(false);
119 s = *ptr;
121 /* default to simple separators */
122 if (!sep) {
123 sep = " \t\n\r";
126 /* find the first non sep char */
127 while (*s && strchr(sep,*s)) {
128 s++;
131 /* nothing left? */
132 if (!*s) {
133 return false;
136 /* When restarting we need to go from here. */
137 saved_s = s;
139 /* Work out the length needed. */
140 for (quoted = false; *s &&
141 (quoted || !strchr(sep,*s)); s++) {
142 if (*s == '\"') {
143 quoted = !quoted;
144 } else {
145 len++;
149 /* We started with len = 1 so we have space for the nul. */
150 *pp_buff = (char *)malloc(len);
151 if (!*pp_buff) {
152 return false;
155 /* copy over the token */
156 pbuf = *pp_buff;
157 s = saved_s;
158 for (quoted = false; *s &&
159 (quoted || !strchr(sep,*s)); s++) {
160 if ( *s == '\"' ) {
161 quoted = !quoted;
162 } else {
163 *pbuf++ = *s;
167 *ptr = (*s) ? s+1 : s;
168 *pbuf = 0;
170 return true;
173 /* Fill a pwent structure from a winbindd_response structure. We use
174 the static data passed to us by libc to put strings and stuff in.
175 Return NSS_STATUS_TRYAGAIN if we run out of memory. */
177 static NSS_STATUS fill_pwent(struct passwd *result,
178 struct winbindd_pw *pw,
179 char **buffer, size_t *buflen)
181 /* User name */
183 if ((result->pw_name =
184 get_static(buffer, buflen, strlen(pw->pw_name) + 1)) == NULL) {
186 /* Out of memory */
188 return NSS_STATUS_TRYAGAIN;
191 strcpy(result->pw_name, pw->pw_name);
193 /* Password */
195 if ((result->pw_passwd =
196 get_static(buffer, buflen, strlen(pw->pw_passwd) + 1)) == NULL) {
198 /* Out of memory */
200 return NSS_STATUS_TRYAGAIN;
203 strcpy(result->pw_passwd, pw->pw_passwd);
205 /* [ug]id */
207 result->pw_uid = pw->pw_uid;
208 result->pw_gid = pw->pw_gid;
210 /* GECOS */
212 if ((result->pw_gecos =
213 get_static(buffer, buflen, strlen(pw->pw_gecos) + 1)) == NULL) {
215 /* Out of memory */
217 return NSS_STATUS_TRYAGAIN;
220 strcpy(result->pw_gecos, pw->pw_gecos);
222 /* Home directory */
224 if ((result->pw_dir =
225 get_static(buffer, buflen, strlen(pw->pw_dir) + 1)) == NULL) {
227 /* Out of memory */
229 return NSS_STATUS_TRYAGAIN;
232 strcpy(result->pw_dir, pw->pw_dir);
234 /* Logon shell */
236 if ((result->pw_shell =
237 get_static(buffer, buflen, strlen(pw->pw_shell) + 1)) == NULL) {
239 /* Out of memory */
241 return NSS_STATUS_TRYAGAIN;
244 strcpy(result->pw_shell, pw->pw_shell);
246 /* The struct passwd for Solaris has some extra fields which must
247 be initialised or nscd crashes. */
249 #if HAVE_PASSWD_PW_COMMENT
250 result->pw_comment = "";
251 #endif
253 #if HAVE_PASSWD_PW_AGE
254 result->pw_age = "";
255 #endif
257 return NSS_STATUS_SUCCESS;
260 /* Fill a grent structure from a winbindd_response structure. We use
261 the static data passed to us by libc to put strings and stuff in.
262 Return NSS_STATUS_TRYAGAIN if we run out of memory. */
264 static NSS_STATUS fill_grent(struct group *result, struct winbindd_gr *gr,
265 char *gr_mem, char **buffer, size_t *buflen)
267 char *name;
268 int i;
269 char *tst;
271 /* Group name */
273 if ((result->gr_name =
274 get_static(buffer, buflen, strlen(gr->gr_name) + 1)) == NULL) {
276 /* Out of memory */
278 return NSS_STATUS_TRYAGAIN;
281 strcpy(result->gr_name, gr->gr_name);
283 /* Password */
285 if ((result->gr_passwd =
286 get_static(buffer, buflen, strlen(gr->gr_passwd) + 1)) == NULL) {
288 /* Out of memory */
289 return NSS_STATUS_TRYAGAIN;
292 strcpy(result->gr_passwd, gr->gr_passwd);
294 /* gid */
296 result->gr_gid = gr->gr_gid;
298 /* Group membership */
300 if ((gr->num_gr_mem < 0) || !gr_mem) {
301 gr->num_gr_mem = 0;
304 /* this next value is a pointer to a pointer so let's align it */
306 /* Calculate number of extra bytes needed to align on pointer size boundry */
307 if ((i = (unsigned long)(*buffer) % sizeof(char*)) != 0)
308 i = sizeof(char*) - i;
310 if ((tst = get_static(buffer, buflen, ((gr->num_gr_mem + 1) *
311 sizeof(char *)+i))) == NULL) {
313 /* Out of memory */
315 return NSS_STATUS_TRYAGAIN;
317 result->gr_mem = (char **)(tst + i);
319 if (gr->num_gr_mem == 0) {
321 /* Group is empty */
323 *(result->gr_mem) = NULL;
324 return NSS_STATUS_SUCCESS;
327 /* Start looking at extra data */
329 i = 0;
331 while(next_token_alloc((const char **)&gr_mem, &name, ",")) {
332 /* Allocate space for member */
333 if (((result->gr_mem)[i] =
334 get_static(buffer, buflen, strlen(name) + 1)) == NULL) {
335 free(name);
336 /* Out of memory */
337 return NSS_STATUS_TRYAGAIN;
339 strcpy((result->gr_mem)[i], name);
340 free(name);
341 i++;
344 /* Terminate list */
346 (result->gr_mem)[i] = NULL;
348 return NSS_STATUS_SUCCESS;
352 * NSS user functions
355 static struct winbindd_response getpwent_response;
357 static int ndx_pw_cache; /* Current index into pwd cache */
358 static int num_pw_cache; /* Current size of pwd cache */
360 /* Rewind "file pointer" to start of ntdom password database */
362 NSS_STATUS
363 _nss_winbind_setpwent(void)
365 NSS_STATUS ret;
366 #ifdef DEBUG_NSS
367 fprintf(stderr, "[%5d]: setpwent\n", getpid());
368 #endif
370 #if HAVE_PTHREAD
371 pthread_mutex_lock(&winbind_nss_mutex);
372 #endif
374 if (num_pw_cache > 0) {
375 ndx_pw_cache = num_pw_cache = 0;
376 winbindd_free_response(&getpwent_response);
379 ret = winbindd_request_response(WINBINDD_SETPWENT, NULL, NULL);
380 #ifdef DEBUG_NSS
381 fprintf(stderr, "[%5d]: setpwent returns %s (%d)\n", getpid(),
382 nss_err_str(ret), ret);
383 #endif
385 #if HAVE_PTHREAD
386 pthread_mutex_unlock(&winbind_nss_mutex);
387 #endif
388 return ret;
391 /* Close ntdom password database "file pointer" */
393 NSS_STATUS
394 _nss_winbind_endpwent(void)
396 NSS_STATUS ret;
397 #ifdef DEBUG_NSS
398 fprintf(stderr, "[%5d]: endpwent\n", getpid());
399 #endif
401 #if HAVE_PTHREAD
402 pthread_mutex_lock(&winbind_nss_mutex);
403 #endif
405 if (num_pw_cache > 0) {
406 ndx_pw_cache = num_pw_cache = 0;
407 winbindd_free_response(&getpwent_response);
410 ret = winbindd_request_response(WINBINDD_ENDPWENT, NULL, NULL);
411 #ifdef DEBUG_NSS
412 fprintf(stderr, "[%5d]: endpwent returns %s (%d)\n", getpid(),
413 nss_err_str(ret), ret);
414 #endif
416 #if HAVE_PTHREAD
417 pthread_mutex_unlock(&winbind_nss_mutex);
418 #endif
420 return ret;
423 /* Fetch the next password entry from ntdom password database */
425 NSS_STATUS
426 _nss_winbind_getpwent_r(struct passwd *result, char *buffer,
427 size_t buflen, int *errnop)
429 NSS_STATUS ret;
430 struct winbindd_request request;
431 static int called_again;
433 #ifdef DEBUG_NSS
434 fprintf(stderr, "[%5d]: getpwent\n", getpid());
435 #endif
437 #if HAVE_PTHREAD
438 pthread_mutex_lock(&winbind_nss_mutex);
439 #endif
441 /* Return an entry from the cache if we have one, or if we are
442 called again because we exceeded our static buffer. */
444 if ((ndx_pw_cache < num_pw_cache) || called_again) {
445 goto return_result;
448 /* Else call winbindd to get a bunch of entries */
450 if (num_pw_cache > 0) {
451 winbindd_free_response(&getpwent_response);
454 ZERO_STRUCT(request);
455 ZERO_STRUCT(getpwent_response);
457 request.data.num_entries = MAX_GETPWENT_USERS;
459 ret = winbindd_request_response(WINBINDD_GETPWENT, &request,
460 &getpwent_response);
462 if (ret == NSS_STATUS_SUCCESS) {
463 struct winbindd_pw *pw_cache;
465 /* Fill cache */
467 ndx_pw_cache = 0;
468 num_pw_cache = getpwent_response.data.num_entries;
470 /* Return a result */
472 return_result:
474 pw_cache = (struct winbindd_pw *)
475 getpwent_response.extra_data.data;
477 /* Check data is valid */
479 if (pw_cache == NULL) {
480 ret = NSS_STATUS_NOTFOUND;
481 goto done;
484 ret = fill_pwent(result, &pw_cache[ndx_pw_cache],
485 &buffer, &buflen);
487 /* Out of memory - try again */
489 if (ret == NSS_STATUS_TRYAGAIN) {
490 called_again = true;
491 *errnop = errno = ERANGE;
492 goto done;
495 *errnop = errno = 0;
496 called_again = false;
497 ndx_pw_cache++;
499 /* If we've finished with this lot of results free cache */
501 if (ndx_pw_cache == num_pw_cache) {
502 ndx_pw_cache = num_pw_cache = 0;
503 winbindd_free_response(&getpwent_response);
506 done:
507 #ifdef DEBUG_NSS
508 fprintf(stderr, "[%5d]: getpwent returns %s (%d)\n", getpid(),
509 nss_err_str(ret), ret);
510 #endif
512 #if HAVE_PTHREAD
513 pthread_mutex_unlock(&winbind_nss_mutex);
514 #endif
515 return ret;
518 /* Return passwd struct from uid */
520 NSS_STATUS
521 _nss_winbind_getpwuid_r(uid_t uid, struct passwd *result, char *buffer,
522 size_t buflen, int *errnop)
524 NSS_STATUS ret;
525 static struct winbindd_response response;
526 struct winbindd_request request;
527 static int keep_response;
529 #ifdef DEBUG_NSS
530 fprintf(stderr, "[%5d]: getpwuid_r %d\n", getpid(), (unsigned int)uid);
531 #endif
533 #if HAVE_PTHREAD
534 pthread_mutex_lock(&winbind_nss_mutex);
535 #endif
537 /* If our static buffer needs to be expanded we are called again */
538 if (!keep_response || uid != response.data.pw.pw_uid) {
540 /* Call for the first time */
542 ZERO_STRUCT(response);
543 ZERO_STRUCT(request);
545 request.data.uid = uid;
547 ret = winbindd_request_response(WINBINDD_GETPWUID, &request, &response);
549 if (ret == NSS_STATUS_SUCCESS) {
550 ret = fill_pwent(result, &response.data.pw,
551 &buffer, &buflen);
553 if (ret == NSS_STATUS_TRYAGAIN) {
554 keep_response = true;
555 *errnop = errno = ERANGE;
556 goto done;
560 } else {
562 /* We've been called again */
564 ret = fill_pwent(result, &response.data.pw, &buffer, &buflen);
566 if (ret == NSS_STATUS_TRYAGAIN) {
567 *errnop = errno = ERANGE;
568 goto done;
571 keep_response = false;
572 *errnop = errno = 0;
575 winbindd_free_response(&response);
577 done:
579 #ifdef DEBUG_NSS
580 fprintf(stderr, "[%5d]: getpwuid %d returns %s (%d)\n", getpid(),
581 (unsigned int)uid, nss_err_str(ret), ret);
582 #endif
584 #if HAVE_PTHREAD
585 pthread_mutex_unlock(&winbind_nss_mutex);
586 #endif
588 return ret;
591 /* Return passwd struct from username */
592 NSS_STATUS
593 _nss_winbind_getpwnam_r(const char *name, struct passwd *result, char *buffer,
594 size_t buflen, int *errnop)
596 NSS_STATUS ret;
597 static struct winbindd_response response;
598 struct winbindd_request request;
599 static int keep_response;
601 #ifdef DEBUG_NSS
602 fprintf(stderr, "[%5d]: getpwnam_r %s\n", getpid(), name);
603 #endif
605 #if HAVE_PTHREAD
606 pthread_mutex_lock(&winbind_nss_mutex);
607 #endif
609 /* If our static buffer needs to be expanded we are called again */
611 if (!keep_response || strcmp(name,response.data.pw.pw_name) != 0) {
613 /* Call for the first time */
615 ZERO_STRUCT(response);
616 ZERO_STRUCT(request);
618 strncpy(request.data.username, name,
619 sizeof(request.data.username) - 1);
620 request.data.username
621 [sizeof(request.data.username) - 1] = '\0';
623 ret = winbindd_request_response(WINBINDD_GETPWNAM, &request, &response);
625 if (ret == NSS_STATUS_SUCCESS) {
626 ret = fill_pwent(result, &response.data.pw, &buffer,
627 &buflen);
629 if (ret == NSS_STATUS_TRYAGAIN) {
630 keep_response = true;
631 *errnop = errno = ERANGE;
632 goto done;
636 } else {
638 /* We've been called again */
640 ret = fill_pwent(result, &response.data.pw, &buffer, &buflen);
642 if (ret == NSS_STATUS_TRYAGAIN) {
643 keep_response = true;
644 *errnop = errno = ERANGE;
645 goto done;
648 keep_response = false;
649 *errnop = errno = 0;
652 winbindd_free_response(&response);
653 done:
654 #ifdef DEBUG_NSS
655 fprintf(stderr, "[%5d]: getpwnam %s returns %s (%d)\n", getpid(),
656 name, nss_err_str(ret), ret);
657 #endif
659 #if HAVE_PTHREAD
660 pthread_mutex_unlock(&winbind_nss_mutex);
661 #endif
663 return ret;
667 * NSS group functions
670 static struct winbindd_response getgrent_response;
672 static int ndx_gr_cache; /* Current index into grp cache */
673 static int num_gr_cache; /* Current size of grp cache */
675 /* Rewind "file pointer" to start of ntdom group database */
677 NSS_STATUS
678 _nss_winbind_setgrent(void)
680 NSS_STATUS ret;
681 #ifdef DEBUG_NSS
682 fprintf(stderr, "[%5d]: setgrent\n", getpid());
683 #endif
685 #if HAVE_PTHREAD
686 pthread_mutex_lock(&winbind_nss_mutex);
687 #endif
689 if (num_gr_cache > 0) {
690 ndx_gr_cache = num_gr_cache = 0;
691 winbindd_free_response(&getgrent_response);
694 ret = winbindd_request_response(WINBINDD_SETGRENT, NULL, NULL);
695 #ifdef DEBUG_NSS
696 fprintf(stderr, "[%5d]: setgrent returns %s (%d)\n", getpid(),
697 nss_err_str(ret), ret);
698 #endif
700 #if HAVE_PTHREAD
701 pthread_mutex_unlock(&winbind_nss_mutex);
702 #endif
704 return ret;
707 /* Close "file pointer" for ntdom group database */
709 NSS_STATUS
710 _nss_winbind_endgrent(void)
712 NSS_STATUS ret;
713 #ifdef DEBUG_NSS
714 fprintf(stderr, "[%5d]: endgrent\n", getpid());
715 #endif
717 #if HAVE_PTHREAD
718 pthread_mutex_lock(&winbind_nss_mutex);
719 #endif
721 if (num_gr_cache > 0) {
722 ndx_gr_cache = num_gr_cache = 0;
723 winbindd_free_response(&getgrent_response);
726 ret = winbindd_request_response(WINBINDD_ENDGRENT, NULL, NULL);
727 #ifdef DEBUG_NSS
728 fprintf(stderr, "[%5d]: endgrent returns %s (%d)\n", getpid(),
729 nss_err_str(ret), ret);
730 #endif
732 #if HAVE_PTHREAD
733 pthread_mutex_unlock(&winbind_nss_mutex);
734 #endif
736 return ret;
739 /* Get next entry from ntdom group database */
741 static NSS_STATUS
742 winbind_getgrent(enum winbindd_cmd cmd,
743 struct group *result,
744 char *buffer, size_t buflen, int *errnop)
746 NSS_STATUS ret;
747 static struct winbindd_request request;
748 static int called_again;
751 #ifdef DEBUG_NSS
752 fprintf(stderr, "[%5d]: getgrent\n", getpid());
753 #endif
755 #if HAVE_PTHREAD
756 pthread_mutex_lock(&winbind_nss_mutex);
757 #endif
759 /* Return an entry from the cache if we have one, or if we are
760 called again because we exceeded our static buffer. */
762 if ((ndx_gr_cache < num_gr_cache) || called_again) {
763 goto return_result;
766 /* Else call winbindd to get a bunch of entries */
768 if (num_gr_cache > 0) {
769 winbindd_free_response(&getgrent_response);
772 ZERO_STRUCT(request);
773 ZERO_STRUCT(getgrent_response);
775 request.data.num_entries = MAX_GETGRENT_USERS;
777 ret = winbindd_request_response(cmd, &request,
778 &getgrent_response);
780 if (ret == NSS_STATUS_SUCCESS) {
781 struct winbindd_gr *gr_cache;
782 int mem_ofs;
784 /* Fill cache */
786 ndx_gr_cache = 0;
787 num_gr_cache = getgrent_response.data.num_entries;
789 /* Return a result */
791 return_result:
793 gr_cache = (struct winbindd_gr *)
794 getgrent_response.extra_data.data;
796 /* Check data is valid */
798 if (gr_cache == NULL) {
799 ret = NSS_STATUS_NOTFOUND;
800 goto done;
803 /* Fill group membership. The offset into the extra data
804 for the group membership is the reported offset plus the
805 size of all the winbindd_gr records returned. */
807 mem_ofs = gr_cache[ndx_gr_cache].gr_mem_ofs +
808 num_gr_cache * sizeof(struct winbindd_gr);
810 ret = fill_grent(result, &gr_cache[ndx_gr_cache],
811 ((char *)getgrent_response.extra_data.data)+mem_ofs,
812 &buffer, &buflen);
814 /* Out of memory - try again */
816 if (ret == NSS_STATUS_TRYAGAIN) {
817 called_again = true;
818 *errnop = errno = ERANGE;
819 goto done;
822 *errnop = 0;
823 called_again = false;
824 ndx_gr_cache++;
826 /* If we've finished with this lot of results free cache */
828 if (ndx_gr_cache == num_gr_cache) {
829 ndx_gr_cache = num_gr_cache = 0;
830 winbindd_free_response(&getgrent_response);
833 done:
834 #ifdef DEBUG_NSS
835 fprintf(stderr, "[%5d]: getgrent returns %s (%d)\n", getpid(),
836 nss_err_str(ret), ret);
837 #endif
839 #if HAVE_PTHREAD
840 pthread_mutex_unlock(&winbind_nss_mutex);
841 #endif
843 return ret;
847 NSS_STATUS
848 _nss_winbind_getgrent_r(struct group *result,
849 char *buffer, size_t buflen, int *errnop)
851 return winbind_getgrent(WINBINDD_GETGRENT, result, buffer, buflen, errnop);
854 NSS_STATUS
855 _nss_winbind_getgrlst_r(struct group *result,
856 char *buffer, size_t buflen, int *errnop)
858 return winbind_getgrent(WINBINDD_GETGRLST, result, buffer, buflen, errnop);
861 /* Return group struct from group name */
863 NSS_STATUS
864 _nss_winbind_getgrnam_r(const char *name,
865 struct group *result, char *buffer,
866 size_t buflen, int *errnop)
868 NSS_STATUS ret;
869 static struct winbindd_response response;
870 struct winbindd_request request;
871 static int keep_response;
873 #ifdef DEBUG_NSS
874 fprintf(stderr, "[%5d]: getgrnam %s\n", getpid(), name);
875 #endif
877 #if HAVE_PTHREAD
878 pthread_mutex_lock(&winbind_nss_mutex);
879 #endif
881 /* If our static buffer needs to be expanded we are called again */
882 /* Or if the stored response group name differs from the request. */
884 if (!keep_response || strcmp(name,response.data.gr.gr_name) != 0) {
886 /* Call for the first time */
888 ZERO_STRUCT(request);
889 ZERO_STRUCT(response);
891 strncpy(request.data.groupname, name,
892 sizeof(request.data.groupname));
893 request.data.groupname
894 [sizeof(request.data.groupname) - 1] = '\0';
896 ret = winbindd_request_response(WINBINDD_GETGRNAM, &request, &response);
898 if (ret == NSS_STATUS_SUCCESS) {
899 ret = fill_grent(result, &response.data.gr,
900 (char *)response.extra_data.data,
901 &buffer, &buflen);
903 if (ret == NSS_STATUS_TRYAGAIN) {
904 keep_response = true;
905 *errnop = errno = ERANGE;
906 goto done;
910 } else {
912 /* We've been called again */
914 ret = fill_grent(result, &response.data.gr,
915 (char *)response.extra_data.data, &buffer,
916 &buflen);
918 if (ret == NSS_STATUS_TRYAGAIN) {
919 keep_response = true;
920 *errnop = errno = ERANGE;
921 goto done;
924 keep_response = false;
925 *errnop = 0;
928 winbindd_free_response(&response);
929 done:
930 #ifdef DEBUG_NSS
931 fprintf(stderr, "[%5d]: getgrnam %s returns %s (%d)\n", getpid(),
932 name, nss_err_str(ret), ret);
933 #endif
935 #if HAVE_PTHREAD
936 pthread_mutex_unlock(&winbind_nss_mutex);
937 #endif
939 return ret;
942 /* Return group struct from gid */
944 NSS_STATUS
945 _nss_winbind_getgrgid_r(gid_t gid,
946 struct group *result, char *buffer,
947 size_t buflen, int *errnop)
949 NSS_STATUS ret;
950 static struct winbindd_response response;
951 struct winbindd_request request;
952 static int keep_response;
954 #ifdef DEBUG_NSS
955 fprintf(stderr, "[%5d]: getgrgid %d\n", getpid(), gid);
956 #endif
958 #if HAVE_PTHREAD
959 pthread_mutex_lock(&winbind_nss_mutex);
960 #endif
962 /* If our static buffer needs to be expanded we are called again */
963 /* Or if the stored response group name differs from the request. */
965 if (!keep_response || gid != response.data.gr.gr_gid) {
967 /* Call for the first time */
969 ZERO_STRUCT(request);
970 ZERO_STRUCT(response);
972 request.data.gid = gid;
974 ret = winbindd_request_response(WINBINDD_GETGRGID, &request, &response);
976 if (ret == NSS_STATUS_SUCCESS) {
978 ret = fill_grent(result, &response.data.gr,
979 (char *)response.extra_data.data,
980 &buffer, &buflen);
982 if (ret == NSS_STATUS_TRYAGAIN) {
983 keep_response = true;
984 *errnop = errno = ERANGE;
985 goto done;
989 } else {
991 /* We've been called again */
993 ret = fill_grent(result, &response.data.gr,
994 (char *)response.extra_data.data, &buffer,
995 &buflen);
997 if (ret == NSS_STATUS_TRYAGAIN) {
998 keep_response = true;
999 *errnop = errno = ERANGE;
1000 goto done;
1003 keep_response = false;
1004 *errnop = 0;
1007 winbindd_free_response(&response);
1008 done:
1009 #ifdef DEBUG_NSS
1010 fprintf(stderr, "[%5d]: getgrgid %d returns %s (%d)\n", getpid(),
1011 (unsigned int)gid, nss_err_str(ret), ret);
1012 #endif
1014 #if HAVE_PTHREAD
1015 pthread_mutex_unlock(&winbind_nss_mutex);
1016 #endif
1017 return ret;
1020 /* Initialise supplementary groups */
1022 NSS_STATUS
1023 _nss_winbind_initgroups_dyn(char *user, gid_t group, long int *start,
1024 long int *size, gid_t **groups, long int limit,
1025 int *errnop)
1027 NSS_STATUS ret;
1028 struct winbindd_request request;
1029 struct winbindd_response response;
1030 int i;
1032 #ifdef DEBUG_NSS
1033 fprintf(stderr, "[%5d]: initgroups %s (%d)\n", getpid(),
1034 user, group);
1035 #endif
1037 #if HAVE_PTHREAD
1038 pthread_mutex_lock(&winbind_nss_mutex);
1039 #endif
1041 ZERO_STRUCT(request);
1042 ZERO_STRUCT(response);
1044 strncpy(request.data.username, user,
1045 sizeof(request.data.username) - 1);
1047 ret = winbindd_request_response(WINBINDD_GETGROUPS, &request, &response);
1049 if (ret == NSS_STATUS_SUCCESS) {
1050 int num_gids = response.data.num_entries;
1051 gid_t *gid_list = (gid_t *)response.extra_data.data;
1053 #ifdef DEBUG_NSS
1054 fprintf(stderr, "[%5d]: initgroups %s: got NSS_STATUS_SUCCESS "
1055 "and %d gids\n", getpid(),
1056 user, num_gids);
1057 #endif
1058 if (gid_list == NULL) {
1059 ret = NSS_STATUS_NOTFOUND;
1060 goto done;
1063 /* Copy group list to client */
1065 for (i = 0; i < num_gids; i++) {
1067 #ifdef DEBUG_NSS
1068 fprintf(stderr, "[%5d]: initgroups %s (%d): "
1069 "processing gid %d \n", getpid(),
1070 user, group, gid_list[i]);
1071 #endif
1073 /* Skip primary group */
1075 if (gid_list[i] == group) {
1076 continue;
1079 /* Filled buffer ? If so, resize. */
1081 if (*start == *size) {
1082 long int newsize;
1083 gid_t *newgroups;
1085 newsize = 2 * (*size);
1086 if (limit > 0) {
1087 if (*size == limit) {
1088 goto done;
1090 if (newsize > limit) {
1091 newsize = limit;
1095 newgroups = (gid_t *)
1096 realloc((*groups),
1097 newsize * sizeof(**groups));
1098 if (!newgroups) {
1099 *errnop = ENOMEM;
1100 ret = NSS_STATUS_NOTFOUND;
1101 goto done;
1103 *groups = newgroups;
1104 *size = newsize;
1107 /* Add to buffer */
1109 (*groups)[*start] = gid_list[i];
1110 *start += 1;
1114 /* Back to your regularly scheduled programming */
1116 done:
1117 #ifdef DEBUG_NSS
1118 fprintf(stderr, "[%5d]: initgroups %s returns %s (%d)\n", getpid(),
1119 user, nss_err_str(ret), ret);
1120 #endif
1122 #if HAVE_PTHREAD
1123 pthread_mutex_unlock(&winbind_nss_mutex);
1124 #endif
1126 return ret;
1130 /* return a list of group SIDs for a user SID */
1131 NSS_STATUS
1132 _nss_winbind_getusersids(const char *user_sid, char **group_sids,
1133 int *num_groups,
1134 char *buffer, size_t buf_size, int *errnop)
1136 NSS_STATUS ret;
1137 struct winbindd_request request;
1138 struct winbindd_response response;
1140 #ifdef DEBUG_NSS
1141 fprintf(stderr, "[%5d]: getusersids %s\n", getpid(), user_sid);
1142 #endif
1144 #if HAVE_PTHREAD
1145 pthread_mutex_lock(&winbind_nss_mutex);
1146 #endif
1148 ZERO_STRUCT(request);
1149 ZERO_STRUCT(response);
1151 strncpy(request.data.sid, user_sid,sizeof(request.data.sid) - 1);
1152 request.data.sid[sizeof(request.data.sid) - 1] = '\0';
1154 ret = winbindd_request_response(WINBINDD_GETUSERSIDS, &request, &response);
1156 if (ret != NSS_STATUS_SUCCESS) {
1157 goto done;
1160 if (buf_size < response.length - sizeof(response)) {
1161 ret = NSS_STATUS_TRYAGAIN;
1162 errno = *errnop = ERANGE;
1163 goto done;
1166 *num_groups = response.data.num_entries;
1167 *group_sids = buffer;
1168 memcpy(buffer, response.extra_data.data, response.length - sizeof(response));
1169 errno = *errnop = 0;
1171 done:
1172 winbindd_free_response(&response);
1174 #if HAVE_PTHREAD
1175 pthread_mutex_unlock(&winbind_nss_mutex);
1176 #endif
1178 return ret;
1182 /* map a user or group name to a SID string */
1183 NSS_STATUS
1184 _nss_winbind_nametosid(const char *name, char **sid, char *buffer,
1185 size_t buflen, int *errnop)
1187 NSS_STATUS ret;
1188 struct winbindd_response response;
1189 struct winbindd_request request;
1191 #ifdef DEBUG_NSS
1192 fprintf(stderr, "[%5d]: nametosid %s\n", getpid(), name);
1193 #endif
1195 #if HAVE_PTHREAD
1196 pthread_mutex_lock(&winbind_nss_mutex);
1197 #endif
1199 ZERO_STRUCT(response);
1200 ZERO_STRUCT(request);
1202 strncpy(request.data.name.name, name,
1203 sizeof(request.data.name.name) - 1);
1204 request.data.name.name[sizeof(request.data.name.name) - 1] = '\0';
1206 ret = winbindd_request_response(WINBINDD_LOOKUPNAME, &request, &response);
1207 if (ret != NSS_STATUS_SUCCESS) {
1208 *errnop = errno = EINVAL;
1209 goto failed;
1212 if (buflen < strlen(response.data.sid.sid)+1) {
1213 ret = NSS_STATUS_TRYAGAIN;
1214 *errnop = errno = ERANGE;
1215 goto failed;
1218 *errnop = errno = 0;
1219 *sid = buffer;
1220 strcpy(*sid, response.data.sid.sid);
1222 failed:
1223 winbindd_free_response(&response);
1225 #if HAVE_PTHREAD
1226 pthread_mutex_unlock(&winbind_nss_mutex);
1227 #endif
1229 return ret;
1232 /* map a sid string to a user or group name */
1233 NSS_STATUS
1234 _nss_winbind_sidtoname(const char *sid, char **name, char *buffer,
1235 size_t buflen, int *errnop)
1237 NSS_STATUS ret;
1238 struct winbindd_response response;
1239 struct winbindd_request request;
1240 static char sep_char;
1241 unsigned needed;
1243 #ifdef DEBUG_NSS
1244 fprintf(stderr, "[%5d]: sidtoname %s\n", getpid(), sid);
1245 #endif
1247 #if HAVE_PTHREAD
1248 pthread_mutex_lock(&winbind_nss_mutex);
1249 #endif
1251 ZERO_STRUCT(response);
1252 ZERO_STRUCT(request);
1254 /* we need to fetch the separator first time through */
1255 if (!sep_char) {
1256 ret = winbindd_request_response(WINBINDD_INFO, &request, &response);
1257 if (ret != NSS_STATUS_SUCCESS) {
1258 *errnop = errno = EINVAL;
1259 goto failed;
1262 sep_char = response.data.info.winbind_separator;
1263 winbindd_free_response(&response);
1267 strncpy(request.data.sid, sid,
1268 sizeof(request.data.sid) - 1);
1269 request.data.sid[sizeof(request.data.sid) - 1] = '\0';
1271 ret = winbindd_request_response(WINBINDD_LOOKUPSID, &request, &response);
1272 if (ret != NSS_STATUS_SUCCESS) {
1273 *errnop = errno = EINVAL;
1274 goto failed;
1277 needed =
1278 strlen(response.data.name.dom_name) +
1279 strlen(response.data.name.name) + 2;
1281 if (buflen < needed) {
1282 ret = NSS_STATUS_TRYAGAIN;
1283 *errnop = errno = ERANGE;
1284 goto failed;
1287 snprintf(buffer, needed, "%s%c%s",
1288 response.data.name.dom_name,
1289 sep_char,
1290 response.data.name.name);
1292 *name = buffer;
1293 *errnop = errno = 0;
1295 failed:
1296 winbindd_free_response(&response);
1298 #if HAVE_PTHREAD
1299 pthread_mutex_unlock(&winbind_nss_mutex);
1300 #endif
1302 return ret;
1305 /* map a sid to a uid */
1306 NSS_STATUS
1307 _nss_winbind_sidtouid(const char *sid, uid_t *uid, int *errnop)
1309 NSS_STATUS ret;
1310 struct winbindd_response response;
1311 struct winbindd_request request;
1313 #ifdef DEBUG_NSS
1314 fprintf(stderr, "[%5d]: sidtouid %s\n", getpid(), sid);
1315 #endif
1317 #if HAVE_PTHREAD
1318 pthread_mutex_lock(&winbind_nss_mutex);
1319 #endif
1321 ZERO_STRUCT(request);
1322 ZERO_STRUCT(response);
1324 strncpy(request.data.sid, sid, sizeof(request.data.sid) - 1);
1325 request.data.sid[sizeof(request.data.sid) - 1] = '\0';
1327 ret = winbindd_request_response(WINBINDD_SID_TO_UID, &request, &response);
1328 if (ret != NSS_STATUS_SUCCESS) {
1329 *errnop = errno = EINVAL;
1330 goto failed;
1333 *uid = response.data.uid;
1335 failed:
1337 #if HAVE_PTHREAD
1338 pthread_mutex_unlock(&winbind_nss_mutex);
1339 #endif
1341 return ret;
1344 /* map a sid to a gid */
1345 NSS_STATUS
1346 _nss_winbind_sidtogid(const char *sid, gid_t *gid, int *errnop)
1348 NSS_STATUS ret;
1349 struct winbindd_response response;
1350 struct winbindd_request request;
1352 #ifdef DEBUG_NSS
1353 fprintf(stderr, "[%5d]: sidtogid %s\n", getpid(), sid);
1354 #endif
1356 #if HAVE_PTHREAD
1357 pthread_mutex_lock(&winbind_nss_mutex);
1358 #endif
1360 ZERO_STRUCT(request);
1361 ZERO_STRUCT(response);
1363 strncpy(request.data.sid, sid, sizeof(request.data.sid) - 1);
1364 request.data.sid[sizeof(request.data.sid) - 1] = '\0';
1366 ret = winbindd_request_response(WINBINDD_SID_TO_GID, &request, &response);
1367 if (ret != NSS_STATUS_SUCCESS) {
1368 *errnop = errno = EINVAL;
1369 goto failed;
1372 *gid = response.data.gid;
1374 failed:
1376 #if HAVE_PTHREAD
1377 pthread_mutex_unlock(&winbind_nss_mutex);
1378 #endif
1380 return ret;
1383 /* map a uid to a SID string */
1384 NSS_STATUS
1385 _nss_winbind_uidtosid(uid_t uid, char **sid, char *buffer,
1386 size_t buflen, int *errnop)
1388 NSS_STATUS ret;
1389 struct winbindd_response response;
1390 struct winbindd_request request;
1392 #ifdef DEBUG_NSS
1393 fprintf(stderr, "[%5u]: uidtosid %u\n", (unsigned int)getpid(), (unsigned int)uid);
1394 #endif
1396 #if HAVE_PTHREAD
1397 pthread_mutex_lock(&winbind_nss_mutex);
1398 #endif
1400 ZERO_STRUCT(response);
1401 ZERO_STRUCT(request);
1403 request.data.uid = uid;
1405 ret = winbindd_request_response(WINBINDD_UID_TO_SID, &request, &response);
1406 if (ret != NSS_STATUS_SUCCESS) {
1407 *errnop = errno = EINVAL;
1408 goto failed;
1411 if (buflen < strlen(response.data.sid.sid)+1) {
1412 ret = NSS_STATUS_TRYAGAIN;
1413 *errnop = errno = ERANGE;
1414 goto failed;
1417 *errnop = errno = 0;
1418 *sid = buffer;
1419 strcpy(*sid, response.data.sid.sid);
1421 failed:
1422 winbindd_free_response(&response);
1424 #if HAVE_PTHREAD
1425 pthread_mutex_unlock(&winbind_nss_mutex);
1426 #endif
1428 return ret;
1431 /* map a gid to a SID string */
1432 NSS_STATUS
1433 _nss_winbind_gidtosid(gid_t gid, char **sid, char *buffer,
1434 size_t buflen, int *errnop)
1436 NSS_STATUS ret;
1437 struct winbindd_response response;
1438 struct winbindd_request request;
1440 #ifdef DEBUG_NSS
1441 fprintf(stderr, "[%5u]: gidtosid %u\n", (unsigned int)getpid(), (unsigned int)gid);
1442 #endif
1444 #if HAVE_PTHREAD
1445 pthread_mutex_lock(&winbind_nss_mutex);
1446 #endif
1448 ZERO_STRUCT(response);
1449 ZERO_STRUCT(request);
1451 request.data.gid = gid;
1453 ret = winbindd_request_response(WINBINDD_GID_TO_SID, &request, &response);
1454 if (ret != NSS_STATUS_SUCCESS) {
1455 *errnop = errno = EINVAL;
1456 goto failed;
1459 if (buflen < strlen(response.data.sid.sid)+1) {
1460 ret = NSS_STATUS_TRYAGAIN;
1461 *errnop = errno = ERANGE;
1462 goto failed;
1465 *errnop = errno = 0;
1466 *sid = buffer;
1467 strcpy(*sid, response.data.sid.sid);
1469 failed:
1470 winbindd_free_response(&response);
1472 #if HAVE_PTHREAD
1473 pthread_mutex_unlock(&winbind_nss_mutex);
1474 #endif
1476 return ret;