[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / nsswitch / winbind_nss_netbsd.c
blob97eb0cc76d4b42253151863a3a8ca630ad37cde3
1 /*
2 Unix SMB/CIFS implementation.
4 NetBSD loadable authentication module, providing identification
5 routines against Samba winbind/Windows NT Domain
7 Copyright (C) Luke Mewburn 2004-2005
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public
11 License as published by the Free Software Foundation; either
12 version 2 of the License, or (at your option) any later version.
14 This library 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 GNU
17 Library General Public License for more details.
19 You should have received a copy of the GNU Library General Public
20 License along with this library; if not, write to the
21 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
25 #include <sys/param.h>
27 #include "winbind_client.h"
29 #include <stdarg.h>
30 #include <syslog.h>
32 /* dynamic nsswitch with "new" getpw* nsdispatch API available */
33 #if defined(NSS_MODULE_INTERFACE_VERSION) && defined(HAVE_GETPWENT_R)
36 group functions
37 ---------------
40 static struct group _winbind_group;
41 static char _winbind_groupbuf[1024];
43 int
44 netbsdwinbind_endgrent(void *nsrv, void *nscb, va_list ap)
46 int rv;
48 rv = _nss_winbind_endgrent();
49 return rv;
52 int
53 netbsdwinbind_setgrent(void *nsrv, void *nscb, va_list ap)
55 int rv;
57 rv = _nss_winbind_setgrent();
58 return rv;
61 int
62 netbsdwinbind_getgrent(void *nsrv, void *nscb, va_list ap)
64 struct group **retval = va_arg(ap, struct group **);
66 int rv, rerrno;
68 *retval = NULL;
69 rv = _nss_winbind_getgrent_r(&_winbind_group,
70 _winbind_groupbuf, sizeof(_winbind_groupbuf), &rerrno);
71 if (rv == NS_SUCCESS)
72 *retval = &_winbind_group;
73 return rv;
76 int
77 netbsdwinbind_getgrent_r(void *nsrv, void *nscb, va_list ap)
79 int *retval = va_arg(ap, int *);
80 struct group *grp = va_arg(ap, struct group *);
81 char *buffer = va_arg(ap, char *);
82 size_t buflen = va_arg(ap, size_t);
83 struct group **result = va_arg(ap, struct group **);
85 int rv, rerrno;
87 *result = NULL;
88 rerrno = 0;
90 rv = _nss_winbind_getgrent_r(grp, buffer, buflen, rerrno);
91 if (rv == NS_SUCCESS)
92 *result = grp;
93 else
94 *retval = rerrno;
95 return rv;
98 int
99 netbsdwinbind_getgrgid(void *nsrv, void *nscb, va_list ap)
101 struct group **retval = va_arg(ap, struct group **);
102 gid_t gid = va_arg(ap, gid_t);
104 int rv, rerrno;
106 *retval = NULL;
107 rv = _nss_winbind_getgrgid_r(gid, &_winbind_group,
108 _winbind_groupbuf, sizeof(_winbind_groupbuf), &rerrno);
109 if (rv == NS_SUCCESS)
110 *retval = &_winbind_group;
111 return rv;
115 netbsdwinbind_getgrgid_r(void *nsrv, void *nscb, va_list ap)
117 int *retval = va_arg(ap, int *);
118 gid_t gid = va_arg(ap, gid_t);
119 struct group *grp = va_arg(ap, struct group *);
120 char *buffer = va_arg(ap, char *);
121 size_t buflen = va_arg(ap, size_t);
122 struct group **result = va_arg(ap, struct group **);
124 int rv, rerrno;
126 *result = NULL;
127 rerrno = 0;
129 rv = _nss_winbind_getgrgid_r(gid, grp, buffer, buflen, &rerrno);
130 if (rv == NS_SUCCESS)
131 *result = grp;
132 else
133 *retval = rerrno;
134 return rv;
138 netbsdwinbind_getgrnam(void *nsrv, void *nscb, va_list ap)
140 struct group **retval = va_arg(ap, struct group **);
141 const char *name = va_arg(ap, const char *);
143 int rv, rerrno;
145 *retval = NULL;
146 rv = _nss_winbind_getgrnam_r(name, &_winbind_group,
147 _winbind_groupbuf, sizeof(_winbind_groupbuf), &rerrno);
148 if (rv == NS_SUCCESS)
149 *retval = &_winbind_group;
150 return rv;
154 netbsdwinbind_getgrnam_r(void *nsrv, void *nscb, va_list ap)
156 int *retval = va_arg(ap, int *);
157 const char *name = va_arg(ap, const char *);
158 struct group *grp = va_arg(ap, struct group *);
159 char *buffer = va_arg(ap, char *);
160 size_t buflen = va_arg(ap, size_t);
161 struct group **result = va_arg(ap, struct group **);
163 int rv, rerrno;
165 *result = NULL;
166 rerrno = 0;
168 rv = _nss_winbind_getgrnam_r(name, grp, buffer, buflen, &rerrno);
169 if (rv == NS_SUCCESS)
170 *result = grp;
171 else
172 *retval = rerrno;
173 return rv;
177 netbsdwinbind_getgroupmembership(void *nsrv, void *nscb, va_list ap)
179 int *result = va_arg(ap, int *);
180 const char *uname = va_arg(ap, const char *);
181 gid_t agroup = va_arg(ap, gid_t);
182 gid_t *groups = va_arg(ap, gid_t *);
183 int maxgrp = va_arg(ap, int);
184 int *groupc = va_arg(ap, int *);
186 struct winbindd_request request;
187 struct winbindd_response response;
188 gid_t *wblistv;
189 int wblistc, i, isdup, dupc;
191 ZERO_STRUCT(request);
192 ZERO_STRUCT(response);
193 strncpy(request.data.username, uname,
194 sizeof(request.data.username) - 1);
195 i = winbindd_request_response(WINBINDD_GETGROUPS, &request, &response);
196 if (i != NSS_STATUS_SUCCESS)
197 return NS_NOTFOUND;
198 wblistv = (gid_t *)response.extra_data.data;
199 wblistc = response.data.num_entries;
201 for (i = 0; i < wblistc; i++) { /* add winbind gids */
202 isdup = 0; /* skip duplicates */
203 for (dupc = 0; dupc < MIN(maxgrp, *groupc); dupc++) {
204 if (groups[dupc] == wblistv[i]) {
205 isdup = 1;
206 break;
209 if (isdup)
210 continue;
211 if (*groupc < maxgrp) /* add this gid */
212 groups[*groupc] = wblistv[i];
213 else
214 *result = -1;
215 (*groupc)++;
217 SAFE_FREE(wblistv);
218 return NS_NOTFOUND;
223 passwd functions
224 ----------------
227 static struct passwd _winbind_passwd;
228 static char _winbind_passwdbuf[1024];
231 netbsdwinbind_endpwent(void *nsrv, void *nscb, va_list ap)
233 int rv;
235 rv = _nss_winbind_endpwent();
236 return rv;
240 netbsdwinbind_setpwent(void *nsrv, void *nscb, va_list ap)
242 int rv;
244 rv = _nss_winbind_setpwent();
245 return rv;
249 netbsdwinbind_getpwent(void *nsrv, void *nscb, va_list ap)
251 struct passwd **retval = va_arg(ap, struct passwd **);
253 int rv, rerrno;
255 *retval = NULL;
257 rv = _nss_winbind_getpwent_r(&_winbind_passwd,
258 _winbind_passwdbuf, sizeof(_winbind_passwdbuf), &rerrno);
259 if (rv == NS_SUCCESS)
260 *retval = &_winbind_passwd;
261 return rv;
265 netbsdwinbind_getpwent_r(void *nsrv, void *nscb, va_list ap)
267 int *retval = va_arg(ap, int *);
268 struct passwd *pw = va_arg(ap, struct passwd *);
269 char *buffer = va_arg(ap, char *);
270 size_t buflen = va_arg(ap, size_t);
271 struct passwd **result = va_arg(ap, struct passwd **);
273 int rv, rerrno;
275 *result = NULL;
276 rerrno = 0;
278 rv = _nss_winbind_getpwent_r(pw, buffer, buflen, rerrno);
279 if (rv == NS_SUCCESS)
280 *result = pw;
281 else
282 *retval = rerrno;
283 return rv;
287 netbsdwinbind_getpwnam(void *nsrv, void *nscb, va_list ap)
289 struct passwd **retval = va_arg(ap, struct passwd **);
290 const char *name = va_arg(ap, const char *);
292 int rv, rerrno;
294 *retval = NULL;
295 rv = _nss_winbind_getpwnam_r(name, &_winbind_passwd,
296 _winbind_passwdbuf, sizeof(_winbind_passwdbuf), &rerrno);
297 if (rv == NS_SUCCESS)
298 *retval = &_winbind_passwd;
299 return rv;
303 netbsdwinbind_getpwnam_r(void *nsrv, void *nscb, va_list ap)
305 int *retval = va_arg(ap, int *);
306 const char *name = va_arg(ap, const char *);
307 struct passwd *pw = va_arg(ap, struct passwd *);
308 char *buffer = va_arg(ap, char *);
309 size_t buflen = va_arg(ap, size_t);
310 struct passwd **result = va_arg(ap, struct passwd **);
312 int rv, rerrno;
314 *result = NULL;
315 rerrno = 0;
317 rv = _nss_winbind_getpwnam_r(name, pw, buffer, buflen, &rerrno);
318 if (rv == NS_SUCCESS)
319 *result = pw;
320 else
321 *retval = rerrno;
322 return rv;
326 netbsdwinbind_getpwuid(void *nsrv, void *nscb, va_list ap)
328 struct passwd **retval = va_arg(ap, struct passwd **);
329 uid_t uid = va_arg(ap, uid_t);
331 int rv, rerrno;
333 *retval = NULL;
334 rv = _nss_winbind_getpwuid_r(uid, &_winbind_passwd,
335 _winbind_passwdbuf, sizeof(_winbind_passwdbuf), &rerrno);
336 if (rv == NS_SUCCESS)
337 *retval = &_winbind_passwd;
338 return rv;
342 netbsdwinbind_getpwuid_r(void *nsrv, void *nscb, va_list ap)
344 int *retval = va_arg(ap, int *);
345 uid_t uid = va_arg(ap, uid_t);
346 struct passwd *pw = va_arg(ap, struct passwd *);
347 char *buffer = va_arg(ap, char *);
348 size_t buflen = va_arg(ap, size_t);
349 struct passwd **result = va_arg(ap, struct passwd **);
351 int rv, rerrno;
353 *result = NULL;
354 rerrno = 0;
356 rv = _nss_winbind_getpwuid_r(uid, pw, buffer, buflen, &rerrno);
357 if (rv == NS_SUCCESS)
358 *result = pw;
359 else
360 *retval = rerrno;
361 return rv;
366 nsswitch module setup
367 ---------------------
371 static ns_mtab winbind_methods[] = {
373 { NSDB_GROUP, "endgrent", netbsdwinbind_endgrent, NULL },
374 { NSDB_GROUP, "getgrent", netbsdwinbind_getgrent, NULL },
375 { NSDB_GROUP, "getgrent_r", netbsdwinbind_getgrent_r, NULL },
376 { NSDB_GROUP, "getgrgid", netbsdwinbind_getgrgid, NULL },
377 { NSDB_GROUP, "getgrgid_r", netbsdwinbind_getgrgid_r, NULL },
378 { NSDB_GROUP, "getgrnam", netbsdwinbind_getgrnam, NULL },
379 { NSDB_GROUP, "getgrnam_r", netbsdwinbind_getgrnam_r, NULL },
380 { NSDB_GROUP, "setgrent", netbsdwinbind_setgrent, NULL },
381 { NSDB_GROUP, "setgroupent", netbsdwinbind_setgrent, NULL },
382 { NSDB_GROUP, "getgroupmembership", netbsdwinbind_getgroupmembership, NULL },
384 { NSDB_PASSWD, "endpwent", netbsdwinbind_endpwent, NULL },
385 { NSDB_PASSWD, "getpwent", netbsdwinbind_getpwent, NULL },
386 { NSDB_PASSWD, "getpwent_r", netbsdwinbind_getpwent_r, NULL },
387 { NSDB_PASSWD, "getpwnam", netbsdwinbind_getpwnam, NULL },
388 { NSDB_PASSWD, "getpwnam_r", netbsdwinbind_getpwnam_r, NULL },
389 { NSDB_PASSWD, "getpwuid", netbsdwinbind_getpwuid, NULL },
390 { NSDB_PASSWD, "getpwuid_r", netbsdwinbind_getpwuid_r, NULL },
391 { NSDB_PASSWD, "setpassent", netbsdwinbind_setpwent, NULL },
392 { NSDB_PASSWD, "setpwent", netbsdwinbind_setpwent, NULL },
396 ns_mtab *
397 nss_module_register(const char *source, unsigned int *mtabsize,
398 nss_module_unregister_fn *unreg)
400 *mtabsize = sizeof(winbind_methods)/sizeof(winbind_methods[0]);
401 *unreg = NULL;
402 return (winbind_methods);
405 #endif /* NSS_MODULE_INTERFACE_VERSION && HAVE_GETPWENT_R */