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 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/>.
22 #include "nsswitch/winbind_nss.h"
26 #include <ns_daemon.h>
34 static pthread_mutex_t wins_nss_mutex
= PTHREAD_MUTEX_INITIALIZER
;
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)
51 load_case_tables_library();
52 lp_set_cmdline("log level", "0");
55 setup_logging("nss_wins",False
);
56 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
60 static struct in_addr
*lookup_byname_backend(const char *name
, int *count
)
63 struct sockaddr_storage
*address
= NULL
;
64 struct in_addr
*ret
= NULL
;
76 nbt_len
= strlen(name
);
77 if (nbt_len
> MAX_NETBIOSNAME_LEN
- 1) {
80 p
= strchr(name
, '.');
85 frame
= talloc_stackframe();
86 /* always try with wins first */
87 status
= resolve_wins(name
, 0x00, talloc_tos(),
89 if (NT_STATUS_IS_OK(status
)) {
90 if ( (ret
= SMB_MALLOC_P(struct in_addr
)) == NULL
) {
94 if (address
[0].ss_family
!= AF_INET
) {
99 *ret
= ((struct sockaddr_in
*)(void *)address
)
105 /* uggh, we have to broadcast to each interface in turn */
106 for (j
=iface_count() - 1;j
>= 0;j
--) {
107 const struct in_addr
*bcast
= iface_n_bcast_v4(j
);
108 struct sockaddr_storage ss
;
109 struct sockaddr_storage
*pss
;
114 in_addr_to_sockaddr_storage(&ss
, *bcast
);
115 status
= name_query(name
, 0x00, True
, True
, &ss
,
116 talloc_tos(), &pss
, count
, NULL
);
117 if (NT_STATUS_IS_OK(status
) && (*count
> 0)) {
118 if ((ret
= SMB_MALLOC_P(struct in_addr
)) == NULL
) {
122 *ret
= ((struct sockaddr_in
*)pss
)->sin_addr
;
132 static struct node_status
*lookup_byaddr_backend(char *addr
, int *count
)
134 struct sockaddr_storage ss
;
135 struct nmb_name nname
;
136 struct node_status
*result
;
143 make_nmb_name(&nname
, "*", 0);
144 if (!interpret_string_addr(&ss
, addr
, AI_NUMERICHOST
)) {
147 status
= node_status_query(NULL
, &nname
, &ss
, &result
, count
, NULL
);
148 if (!NT_STATUS_IS_OK(status
)) {
159 nsd_logprintf(NSD_LOG_MIN
, "entering init (wins)\n");
164 int lookup(nsd_file_t
*rq
)
169 struct in_addr
*ip_list
;
170 struct node_status
*status
;
171 int i
, count
, len
, size
;
175 nsd_logprintf(NSD_LOG_MIN
, "entering lookup (wins)\n");
179 map
= nsd_attr_fetch_string(rq
->f_attrs
, "table", (char*)0);
181 rq
->f_status
= NS_FATAL
;
185 key
= nsd_attr_fetch_string(rq
->f_attrs
, "key", (char*)0);
186 if (! key
|| ! *key
) {
187 rq
->f_status
= NS_FATAL
;
192 len
= sizeof(response
) - 2;
195 * response needs to be a string of the following format
196 * ip_address[ ip_address]*\tname[ alias]*
198 if (strcasecmp_m(map
,"hosts.byaddr") == 0) {
199 if ( status
= lookup_byaddr_backend(key
, &count
)) {
200 size
= strlen(key
) + 1;
206 strncat(response
,key
,size
);
207 strncat(response
,"\t",1);
208 for (i
= 0; i
< count
; i
++) {
209 /* ignore group names */
210 if (status
[i
].flags
& 0x80) continue;
211 if (status
[i
].type
== 0x20) {
212 size
= sizeof(status
[i
].name
) + 1;
218 strncat(response
, status
[i
].name
, size
);
219 strncat(response
, " ", 1);
223 response
[strlen(response
)-1] = '\n';
226 } else if (strcasecmp_m(map
,"hosts.byname") == 0) {
227 if (ip_list
= lookup_byname_backend(key
, &count
)) {
228 for (i
= count
; i
; i
--) {
229 addr
= inet_ntoa(ip_list
[i
-1]);
230 size
= strlen(addr
) + 1;
237 response
[strlen(response
)-1] = ' ';
238 strncat(response
,addr
,size
);
239 strncat(response
,"\t",1);
241 size
= strlen(key
) + 1;
246 strncat(response
,key
,size
);
247 strncat(response
,"\n",1);
254 nsd_logprintf(NSD_LOG_LOW
, "lookup (wins %s) %s\n",map
,response
);
255 nsd_set_result(rq
,NS_SUCCESS
,response
,strlen(response
),VOLATILE
);
258 nsd_logprintf(NSD_LOG_LOW
, "lookup (wins) not found\n");
259 rq
->f_status
= NS_NOTFOUND
;
265 /* Allocate some space from the nss static buffer. The buffer and buflen
266 are the pointers passed in by the C library to the _nss_*_*
269 static char *get_static(char **buffer
, size_t *buflen
, int len
)
273 /* Error check. We return false if things aren't set up right, or
274 there isn't enough buffer space left. */
276 if ((buffer
== NULL
) || (buflen
== NULL
) || (*buflen
< len
)) {
280 /* Return an index into the static buffer */
289 /****************************************************************************
290 gethostbyname() - we ignore any domain portion of the name and only
291 handle names that are at most 15 characters long
292 **************************************************************************/
294 _nss_wins_gethostbyname_r(const char *hostname
, struct hostent
*he
,
295 char *buffer
, size_t buflen
, int *h_errnop
)
297 NSS_STATUS nss_status
= NSS_STATUS_SUCCESS
;
298 struct in_addr
*ip_list
;
305 pthread_mutex_lock(&wins_nss_mutex
);
308 frame
= talloc_stackframe();
310 memset(he
, '\0', sizeof(*he
));
311 fstrcpy(name
, hostname
);
315 ip_list
= lookup_byname_backend(name
, &count
);
318 nss_status
= NSS_STATUS_NOTFOUND
;
324 namelen
= strlen(name
) + 1;
326 if ((he
->h_name
= get_static(&buffer
, &buflen
, namelen
)) == NULL
) {
328 nss_status
= NSS_STATUS_TRYAGAIN
;
332 memcpy(he
->h_name
, name
, namelen
);
334 /* Copy h_addr_list, align to pointer boundary first */
336 if ((i
= (unsigned long)(buffer
) % sizeof(char*)) != 0)
337 i
= sizeof(char*) - i
;
339 if (get_static(&buffer
, &buflen
, i
) == NULL
) {
341 nss_status
= NSS_STATUS_TRYAGAIN
;
345 if ((he
->h_addr_list
= (char **)get_static(
346 &buffer
, &buflen
, (count
+ 1) * sizeof(char *))) == NULL
) {
348 nss_status
= NSS_STATUS_TRYAGAIN
;
352 for (i
= 0; i
< count
; i
++) {
353 if ((he
->h_addr_list
[i
] = get_static(&buffer
, &buflen
,
354 INADDRSZ
)) == NULL
) {
356 nss_status
= NSS_STATUS_TRYAGAIN
;
359 memcpy(he
->h_addr_list
[i
], &ip_list
[i
], INADDRSZ
);
362 he
->h_addr_list
[count
] = NULL
;
366 /* Set h_addr_type and h_length */
368 he
->h_addrtype
= AF_INET
;
369 he
->h_length
= INADDRSZ
;
373 if ((i
= (unsigned long)(buffer
) % sizeof(char*)) != 0)
374 i
= sizeof(char*) - i
;
376 if (get_static(&buffer
, &buflen
, i
) == NULL
) {
377 nss_status
= NSS_STATUS_TRYAGAIN
;
381 if ((he
->h_aliases
= (char **)get_static(
382 &buffer
, &buflen
, sizeof(char *))) == NULL
) {
383 nss_status
= NSS_STATUS_TRYAGAIN
;
387 he
->h_aliases
[0] = NULL
;
389 nss_status
= NSS_STATUS_SUCCESS
;
396 pthread_mutex_unlock(&wins_nss_mutex
);
403 _nss_wins_gethostbyname2_r(const char *name
, int af
, struct hostent
*he
,
404 char *buffer
, size_t buflen
, int *h_errnop
)
406 NSS_STATUS nss_status
;
410 nss_status
= NSS_STATUS_UNAVAIL
;
412 nss_status
= _nss_wins_gethostbyname_r(
413 name
, he
, buffer
, buflen
, h_errnop
);