lib: Remove unused parmlist code
[Samba.git] / nsswitch / wins.c
blob735a9a27dd714670ad1fc825363633642cf5968c
1 /*
2 Unix SMB/CIFS implementation.
3 a WINS nsswitch module
4 Copyright (C) Andrew Tridgell 1999
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "nsswitch/winbind_nss.h"
24 #ifdef HAVE_NS_API_H
26 #include <ns_daemon.h>
27 #endif
29 #if HAVE_PTHREAD_H
30 #include <pthread.h>
31 #endif
33 #if HAVE_PTHREAD
34 static pthread_mutex_t wins_nss_mutex = PTHREAD_MUTEX_INITIALIZER;
35 #endif
37 #ifndef INADDRSZ
38 #define INADDRSZ 4
39 #endif
41 static int initialised;
43 NSS_STATUS _nss_wins_gethostbyname_r(const char *hostname, struct hostent *he,
44 char *buffer, size_t buflen, int *h_errnop);
45 NSS_STATUS _nss_wins_gethostbyname2_r(const char *name, int af, struct hostent *he,
46 char *buffer, size_t buflen, int *h_errnop);
48 static void nss_wins_init(void)
50 initialised = 1;
51 lp_set_cmdline("log level", "0");
53 TimeInit();
54 setup_logging("nss_wins",False);
55 lp_load_global(get_dyn_CONFIGFILE());
56 load_interfaces();
59 static struct in_addr *lookup_byname_backend(const char *name, int *count)
61 TALLOC_CTX *frame;
62 struct sockaddr_storage *address = NULL;
63 struct in_addr *ret = NULL;
64 NTSTATUS status;
65 const char *p;
66 size_t nbt_len;
67 int j;
69 if (!initialised) {
70 nss_wins_init();
73 *count = 0;
75 nbt_len = strlen(name);
76 if (nbt_len > MAX_NETBIOSNAME_LEN - 1) {
77 return NULL;
79 p = strchr(name, '.');
80 if (p != NULL) {
81 return NULL;
84 frame = talloc_stackframe();
85 /* always try with wins first */
86 status = resolve_wins(name, 0x00, talloc_tos(),
87 &address, count);
88 if (NT_STATUS_IS_OK(status)) {
89 if ( (ret = SMB_MALLOC_P(struct in_addr)) == NULL ) {
90 TALLOC_FREE(frame);
91 return NULL;
93 if (address[0].ss_family != AF_INET) {
94 free(ret);
95 TALLOC_FREE(frame);
96 return NULL;
98 *ret = ((struct sockaddr_in *)(void *)address)
99 ->sin_addr;
100 TALLOC_FREE(frame);
101 return ret;
104 /* uggh, we have to broadcast to each interface in turn */
105 for (j=iface_count() - 1;j >= 0;j--) {
106 const struct in_addr *bcast = iface_n_bcast_v4(j);
107 struct sockaddr_storage ss;
108 struct sockaddr_storage *pss;
110 if (!bcast) {
111 continue;
113 in_addr_to_sockaddr_storage(&ss, *bcast);
114 status = name_query(name, 0x00, True, True, &ss,
115 talloc_tos(), &pss, count, NULL);
116 if (NT_STATUS_IS_OK(status) && (*count > 0)) {
117 if ((ret = SMB_MALLOC_P(struct in_addr)) == NULL) {
118 TALLOC_FREE(frame);
119 return NULL;
121 *ret = ((struct sockaddr_in *)pss)->sin_addr;
122 break;
125 TALLOC_FREE(frame);
126 return ret;
129 #ifdef HAVE_NS_API_H
131 static struct node_status *lookup_byaddr_backend(char *addr, int *count)
133 struct sockaddr_storage ss;
134 struct nmb_name nname;
135 struct node_status *result;
136 NTSTATUS status;
138 if (!initialised) {
139 nss_wins_init();
142 make_nmb_name(&nname, "*", 0);
143 if (!interpret_string_addr(&ss, addr, AI_NUMERICHOST)) {
144 return NULL;
146 status = node_status_query(NULL, &nname, &ss, &result, count, NULL);
147 if (!NT_STATUS_IS_OK(status)) {
148 return NULL;
151 return result;
154 /* IRIX version */
156 int init(void)
158 nsd_logprintf(NSD_LOG_MIN, "entering init (wins)\n");
159 nss_wins_init();
160 return NSD_OK;
163 int lookup(nsd_file_t *rq)
165 char *map;
166 char *key;
167 char *addr;
168 struct in_addr *ip_list;
169 struct node_status *status;
170 int i, count, len, size;
171 char response[1024];
172 bool found = False;
174 nsd_logprintf(NSD_LOG_MIN, "entering lookup (wins)\n");
175 if (! rq)
176 return NSD_ERROR;
178 map = nsd_attr_fetch_string(rq->f_attrs, "table", (char*)0);
179 if (! map) {
180 rq->f_status = NS_FATAL;
181 return NSD_ERROR;
184 key = nsd_attr_fetch_string(rq->f_attrs, "key", (char*)0);
185 if (! key || ! *key) {
186 rq->f_status = NS_FATAL;
187 return NSD_ERROR;
190 response[0] = '\0';
191 len = sizeof(response) - 2;
194 * response needs to be a string of the following format
195 * ip_address[ ip_address]*\tname[ alias]*
197 if (strcasecmp_m(map,"hosts.byaddr") == 0) {
198 if ( status = lookup_byaddr_backend(key, &count)) {
199 size = strlen(key) + 1;
200 if (size > len) {
201 talloc_free(status);
202 return NSD_ERROR;
204 len -= size;
205 strncat(response,key,size);
206 strncat(response,"\t",1);
207 for (i = 0; i < count; i++) {
208 /* ignore group names */
209 if (status[i].flags & 0x80) continue;
210 if (status[i].type == 0x20) {
211 size = sizeof(status[i].name) + 1;
212 if (size > len) {
213 talloc_free(status);
214 return NSD_ERROR;
216 len -= size;
217 strncat(response, status[i].name, size);
218 strncat(response, " ", 1);
219 found = True;
222 response[strlen(response)-1] = '\n';
223 talloc_free(status);
225 } else if (strcasecmp_m(map,"hosts.byname") == 0) {
226 if (ip_list = lookup_byname_backend(key, &count)) {
227 for (i = count; i ; i--) {
228 addr = inet_ntoa(ip_list[i-1]);
229 size = strlen(addr) + 1;
230 if (size > len) {
231 free(ip_list);
232 return NSD_ERROR;
234 len -= size;
235 if (i != 0)
236 response[strlen(response)-1] = ' ';
237 strncat(response,addr,size);
238 strncat(response,"\t",1);
240 size = strlen(key) + 1;
241 if (size > len) {
242 free(ip_list);
243 return NSD_ERROR;
245 strncat(response,key,size);
246 strncat(response,"\n",1);
247 found = True;
248 free(ip_list);
252 if (found) {
253 nsd_logprintf(NSD_LOG_LOW, "lookup (wins %s) %s\n",map,response);
254 nsd_set_result(rq,NS_SUCCESS,response,strlen(response),VOLATILE);
255 return NSD_OK;
257 nsd_logprintf(NSD_LOG_LOW, "lookup (wins) not found\n");
258 rq->f_status = NS_NOTFOUND;
259 return NSD_NEXT;
262 #else
264 /* Allocate some space from the nss static buffer. The buffer and buflen
265 are the pointers passed in by the C library to the _nss_*_*
266 functions. */
268 static char *get_static(char **buffer, size_t *buflen, int len)
270 char *result;
272 /* Error check. We return false if things aren't set up right, or
273 there isn't enough buffer space left. */
275 if ((buffer == NULL) || (buflen == NULL) || (*buflen < len)) {
276 return NULL;
279 /* Return an index into the static buffer */
281 result = *buffer;
282 *buffer += len;
283 *buflen -= len;
285 return result;
288 /****************************************************************************
289 gethostbyname() - we ignore any domain portion of the name and only
290 handle names that are at most 15 characters long
291 **************************************************************************/
292 NSS_STATUS
293 _nss_wins_gethostbyname_r(const char *hostname, struct hostent *he,
294 char *buffer, size_t buflen, int *h_errnop)
296 NSS_STATUS nss_status = NSS_STATUS_SUCCESS;
297 struct in_addr *ip_list;
298 int i, count;
299 fstring name;
300 size_t namelen;
301 TALLOC_CTX *frame;
303 #if HAVE_PTHREAD
304 pthread_mutex_lock(&wins_nss_mutex);
305 #endif
307 frame = talloc_stackframe();
309 memset(he, '\0', sizeof(*he));
310 fstrcpy(name, hostname);
312 /* Do lookup */
314 ip_list = lookup_byname_backend(name, &count);
316 if (!ip_list) {
317 nss_status = NSS_STATUS_NOTFOUND;
318 goto out;
321 /* Copy h_name */
323 namelen = strlen(name) + 1;
325 if ((he->h_name = get_static(&buffer, &buflen, namelen)) == NULL) {
326 free(ip_list);
327 nss_status = NSS_STATUS_TRYAGAIN;
328 goto out;
331 memcpy(he->h_name, name, namelen);
333 /* Copy h_addr_list, align to pointer boundary first */
335 if ((i = (unsigned long)(buffer) % sizeof(char*)) != 0)
336 i = sizeof(char*) - i;
338 if (get_static(&buffer, &buflen, i) == NULL) {
339 free(ip_list);
340 nss_status = NSS_STATUS_TRYAGAIN;
341 goto out;
344 if ((he->h_addr_list = (char **)get_static(
345 &buffer, &buflen, (count + 1) * sizeof(char *))) == NULL) {
346 free(ip_list);
347 nss_status = NSS_STATUS_TRYAGAIN;
348 goto out;
351 for (i = 0; i < count; i++) {
352 if ((he->h_addr_list[i] = get_static(&buffer, &buflen,
353 INADDRSZ)) == NULL) {
354 free(ip_list);
355 nss_status = NSS_STATUS_TRYAGAIN;
356 goto out;
358 memcpy(he->h_addr_list[i], &ip_list[i], INADDRSZ);
361 he->h_addr_list[count] = NULL;
363 free(ip_list);
365 /* Set h_addr_type and h_length */
367 he->h_addrtype = AF_INET;
368 he->h_length = INADDRSZ;
370 /* Set h_aliases */
372 if ((i = (unsigned long)(buffer) % sizeof(char*)) != 0)
373 i = sizeof(char*) - i;
375 if (get_static(&buffer, &buflen, i) == NULL) {
376 nss_status = NSS_STATUS_TRYAGAIN;
377 goto out;
380 if ((he->h_aliases = (char **)get_static(
381 &buffer, &buflen, sizeof(char *))) == NULL) {
382 nss_status = NSS_STATUS_TRYAGAIN;
383 goto out;
386 he->h_aliases[0] = NULL;
388 nss_status = NSS_STATUS_SUCCESS;
390 out:
392 TALLOC_FREE(frame);
394 #if HAVE_PTHREAD
395 pthread_mutex_unlock(&wins_nss_mutex);
396 #endif
397 return nss_status;
401 NSS_STATUS
402 _nss_wins_gethostbyname2_r(const char *name, int af, struct hostent *he,
403 char *buffer, size_t buflen, int *h_errnop)
405 NSS_STATUS nss_status;
407 if(af!=AF_INET) {
408 *h_errnop = NO_DATA;
409 nss_status = NSS_STATUS_UNAVAIL;
410 } else {
411 nss_status = _nss_wins_gethostbyname_r(
412 name, he, buffer, buflen, h_errnop);
414 return nss_status;
416 #endif