2 Unix SMB/CIFS implementation.
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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <ns_daemon.h>
35 static int initialised
;
37 extern BOOL AllowDebugChange
;
39 /* Use our own create socket code so we don't recurse.... */
41 static int wins_lookup_open_socket_in(void)
43 struct sockaddr_in sock
;
47 memset((char *)&sock
,'\0',sizeof(sock
));
49 #ifdef HAVE_SOCK_SIN_LEN
50 sock
.sin_len
= sizeof(sock
);
53 sock
.sin_family
= AF_INET
;
54 sock
.sin_addr
.s_addr
= interpret_addr("0.0.0.0");
55 res
= socket(AF_INET
, SOCK_DGRAM
, 0);
59 setsockopt(res
,SOL_SOCKET
,SO_REUSEADDR
,(char *)&val
,sizeof(val
));
61 setsockopt(res
,SOL_SOCKET
,SO_REUSEPORT
,(char *)&val
,sizeof(val
));
62 #endif /* SO_REUSEPORT */
64 /* now we've got a socket - we need to bind it */
66 if (bind(res
, (struct sockaddr
* ) &sock
,sizeof(sock
)) < 0) {
71 set_socket_options(res
,"SO_BROADCAST");
77 static void nss_wins_init(void)
81 AllowDebugChange
= False
;
84 setup_logging("nss_wins",False
);
85 lp_load(dyn_CONFIGFILE
,True
,False
,False
);
89 static struct in_addr
*lookup_byname_backend(const char *name
, int *count
)
92 struct ip_service
*address
= NULL
;
93 struct in_addr
*ret
= NULL
;
102 /* always try with wins first */
103 if (resolve_wins(name
,0x00,&address
,count
)) {
104 if ( (ret
= SMB_MALLOC_P(struct in_addr
)) == NULL
) {
108 *ret
= address
[0].ip
;
113 fd
= wins_lookup_open_socket_in();
118 /* uggh, we have to broadcast to each interface in turn */
119 for (j
=iface_count() - 1;j
>= 0;j
--) {
120 struct in_addr
*bcast
= iface_n_bcast(j
);
121 ret
= name_query(fd
,name
,0x00,True
,True
,*bcast
,count
, &flags
, NULL
);
131 static struct node_status
*lookup_byaddr_backend(char *addr
, int *count
)
135 struct nmb_name nname
;
136 struct node_status
*status
;
142 fd
= wins_lookup_open_socket_in();
146 make_nmb_name(&nname
, "*", 0);
147 ip
= *interpret_addr2(addr
);
148 status
= node_status_query(fd
,&nname
,ip
, count
, NULL
);
158 nsd_logprintf(NSD_LOG_MIN
, "entering init (wins)\n");
163 int lookup(nsd_file_t
*rq
)
168 struct in_addr
*ip_list
;
169 struct node_status
*status
;
170 int i
, count
, len
, size
;
174 nsd_logprintf(NSD_LOG_MIN
, "entering lookup (wins)\n");
178 map
= nsd_attr_fetch_string(rq
->f_attrs
, "table", (char*)0);
180 rq
->f_status
= NS_FATAL
;
184 key
= nsd_attr_fetch_string(rq
->f_attrs
, "key", (char*)0);
185 if (! key
|| ! *key
) {
186 rq
->f_status
= NS_FATAL
;
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(map
,"hosts.byaddr") == 0) {
198 if ( status
= lookup_byaddr_backend(key
, &count
)) {
199 size
= strlen(key
) + 1;
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;
217 strncat(response
, status
[i
].name
, size
);
218 strncat(response
, " ", 1);
222 response
[strlen(response
)-1] = '\n';
225 } else if (StrCaseCmp(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;
236 response
[strlen(response
)-1] = ' ';
237 strncat(response
,addr
,size
);
238 strncat(response
,"\t",1);
240 size
= strlen(key
) + 1;
245 strncat(response
,key
,size
);
246 strncat(response
,"\n",1);
253 nsd_logprintf(NSD_LOG_LOW
, "lookup (wins %s) %s\n",map
,response
);
254 nsd_set_result(rq
,NS_SUCCESS
,response
,strlen(response
),VOLATILE
);
257 nsd_logprintf(NSD_LOG_LOW
, "lookup (wins) not found\n");
258 rq
->f_status
= NS_NOTFOUND
;
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_*_*
268 static char *get_static(char **buffer
, size_t *buflen
, int len
)
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
)) {
279 /* Return an index into the static buffer */
288 /****************************************************************************
289 gethostbyname() - we ignore any domain portion of the name and only
290 handle names that are at most 15 characters long
291 **************************************************************************/
293 _nss_wins_gethostbyname_r(const char *hostname
, struct hostent
*he
,
294 char *buffer
, size_t buflen
, int *h_errnop
)
296 struct in_addr
*ip_list
;
301 memset(he
, '\0', sizeof(*he
));
302 fstrcpy(name
, hostname
);
306 ip_list
= lookup_byname_backend(name
, &count
);
309 return NSS_STATUS_NOTFOUND
;
313 namelen
= strlen(name
) + 1;
315 if ((he
->h_name
= get_static(&buffer
, &buflen
, namelen
)) == NULL
)
316 return NSS_STATUS_TRYAGAIN
;
318 memcpy(he
->h_name
, name
, namelen
);
320 /* Copy h_addr_list, align to pointer boundary first */
322 if ((i
= (unsigned long)(buffer
) % sizeof(char*)) != 0)
323 i
= sizeof(char*) - i
;
325 if (get_static(&buffer
, &buflen
, i
) == NULL
)
326 return NSS_STATUS_TRYAGAIN
;
328 if ((he
->h_addr_list
= (char **)get_static(
329 &buffer
, &buflen
, (count
+ 1) * sizeof(char *))) == NULL
)
330 return NSS_STATUS_TRYAGAIN
;
332 for (i
= 0; i
< count
; i
++) {
333 if ((he
->h_addr_list
[i
] = get_static(&buffer
, &buflen
,
335 return NSS_STATUS_TRYAGAIN
;
336 memcpy(he
->h_addr_list
[i
], &ip_list
[i
], INADDRSZ
);
339 he
->h_addr_list
[count
] = NULL
;
344 /* Set h_addr_type and h_length */
346 he
->h_addrtype
= AF_INET
;
347 he
->h_length
= INADDRSZ
;
351 if ((i
= (unsigned long)(buffer
) % sizeof(char*)) != 0)
352 i
= sizeof(char*) - i
;
354 if (get_static(&buffer
, &buflen
, i
) == NULL
)
355 return NSS_STATUS_TRYAGAIN
;
357 if ((he
->h_aliases
= (char **)get_static(
358 &buffer
, &buflen
, sizeof(char *))) == NULL
)
359 return NSS_STATUS_TRYAGAIN
;
361 he
->h_aliases
[0] = NULL
;
363 return NSS_STATUS_SUCCESS
;
368 _nss_wins_gethostbyname2_r(const char *name
, int af
, struct hostent
*he
,
369 char *buffer
, size_t buflen
, int *h_errnop
)
373 return NSS_STATUS_UNAVAIL
;
376 return _nss_wins_gethostbyname_r(
377 name
, he
, buffer
, buflen
, h_errnop
);