2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
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.
24 /* nmbd.c sets this to True. */
25 BOOL global_in_nmbd
= False
;
27 /****************************************************************************
28 Generate a random trn_id.
29 ****************************************************************************/
31 static int generate_trn_id(void)
36 sys_srandom(sys_getpid());
39 trn_id
= sys_random();
41 return trn_id
% (unsigned)0x7FFF;
44 /****************************************************************************
45 Parse a node status response into an array of structures.
46 ****************************************************************************/
48 static NODE_STATUS_STRUCT
*parse_node_status(char *p
, int *num_names
, struct node_status_extra
*extra
)
50 NODE_STATUS_STRUCT
*ret
;
53 *num_names
= CVAL(p
,0);
58 ret
= SMB_MALLOC_ARRAY(NODE_STATUS_STRUCT
,*num_names
);
63 for (i
=0;i
< *num_names
;i
++) {
64 StrnCpy(ret
[i
].name
,p
,15);
65 trim_char(ret
[i
].name
,'\0',' ');
66 ret
[i
].type
= CVAL(p
,15);
69 DEBUG(10, ("%s#%02x: flags = 0x%02x\n", ret
[i
].name
,
70 ret
[i
].type
, ret
[i
].flags
));
73 * Also, pick up the MAC address ...
76 memcpy(&extra
->mac_addr
, p
, 6); /* Fill in the mac addr */
82 /****************************************************************************
83 Do a NBT node status query on an open socket and return an array of
84 structures holding the returned names or NULL if the query failed.
85 **************************************************************************/
87 NODE_STATUS_STRUCT
*node_status_query(int fd
,struct nmb_name
*name
,
88 struct in_addr to_ip
, int *num_names
,
89 struct node_status_extra
*extra
)
93 int retry_time
= 2000;
95 struct packet_struct p
;
96 struct packet_struct
*p2
;
97 struct nmb_packet
*nmb
= &p
.packet
.nmb
;
98 NODE_STATUS_STRUCT
*ret
;
102 nmb
->header
.name_trn_id
= generate_trn_id();
103 nmb
->header
.opcode
= 0;
104 nmb
->header
.response
= False
;
105 nmb
->header
.nm_flags
.bcast
= False
;
106 nmb
->header
.nm_flags
.recursion_available
= False
;
107 nmb
->header
.nm_flags
.recursion_desired
= False
;
108 nmb
->header
.nm_flags
.trunc
= False
;
109 nmb
->header
.nm_flags
.authoritative
= False
;
110 nmb
->header
.rcode
= 0;
111 nmb
->header
.qdcount
= 1;
112 nmb
->header
.ancount
= 0;
113 nmb
->header
.nscount
= 0;
114 nmb
->header
.arcount
= 0;
115 nmb
->question
.question_name
= *name
;
116 nmb
->question
.question_type
= 0x21;
117 nmb
->question
.question_class
= 0x1;
122 p
.timestamp
= time(NULL
);
123 p
.packet_type
= NMB_PACKET
;
127 if (!send_packet(&p
))
133 struct timeval tval2
;
134 GetTimeOfDay(&tval2
);
135 if (TvalDiff(&tval
,&tval2
) > retry_time
) {
138 if (!found
&& !send_packet(&p
))
144 if ((p2
=receive_nmb_packet(fd
,90,nmb
->header
.name_trn_id
))) {
145 struct nmb_packet
*nmb2
= &p2
->packet
.nmb
;
146 debug_nmb_packet(p2
);
148 if (nmb2
->header
.opcode
!= 0 ||
149 nmb2
->header
.nm_flags
.bcast
||
150 nmb2
->header
.rcode
||
151 !nmb2
->header
.ancount
||
152 nmb2
->answers
->rr_type
!= 0x21) {
153 /* XXXX what do we do with this? could be a
154 redirect, but we'll discard it for the
160 ret
= parse_node_status(&nmb2
->answers
->rdata
[0], num_names
, extra
);
169 /****************************************************************************
170 Find the first type XX name in a node status reply - used for finding
171 a servers name given its IP. Return the matched name in *name.
172 **************************************************************************/
174 BOOL
name_status_find(const char *q_name
, int q_type
, int type
, struct in_addr to_ip
, fstring name
)
176 NODE_STATUS_STRUCT
*status
= NULL
;
177 struct nmb_name nname
;
182 if (lp_disable_netbios()) {
183 DEBUG(5,("name_status_find(%s#%02x): netbios is disabled\n", q_name
, q_type
));
187 DEBUG(10, ("name_status_find: looking up %s#%02x at %s\n", q_name
,
188 q_type
, inet_ntoa(to_ip
)));
190 /* Check the cache first. */
192 if (namecache_status_fetch(q_name
, q_type
, type
, to_ip
, name
))
195 sock
= open_socket_in(SOCK_DGRAM
, 0, 3, interpret_addr(lp_socket_address()), True
);
199 /* W2K PDC's seem not to respond to '*'#0. JRA */
200 make_nmb_name(&nname
, q_name
, q_type
);
201 status
= node_status_query(sock
, &nname
, to_ip
, &count
, NULL
);
206 for (i
=0;i
<count
;i
++) {
207 if (status
[i
].type
== type
)
213 pull_ascii_nstring(name
, sizeof(fstring
), status
[i
].name
);
215 /* Store the result in the cache. */
216 /* but don't store an entry for 0x1c names here. Here we have
217 a single host and DOMAIN<0x1c> names should be a list of hosts */
219 if ( q_type
!= 0x1c )
220 namecache_status_store(q_name
, q_type
, type
, to_ip
, name
);
227 DEBUG(10, ("name_status_find: name %sfound", result
? "" : "not "));
230 DEBUGADD(10, (", name %s ip address is %s", name
, inet_ntoa(to_ip
)));
238 comparison function used by sort_ip_list
241 static int ip_compare(struct in_addr
*ip1
, struct in_addr
*ip2
)
243 int max_bits1
=0, max_bits2
=0;
244 int num_interfaces
= iface_count();
247 for (i
=0;i
<num_interfaces
;i
++) {
250 ip
= *iface_n_bcast(i
);
251 bits1
= matching_quad_bits((uchar
*)&ip1
->s_addr
, (uchar
*)&ip
.s_addr
);
252 bits2
= matching_quad_bits((uchar
*)&ip2
->s_addr
, (uchar
*)&ip
.s_addr
);
253 max_bits1
= MAX(bits1
, max_bits1
);
254 max_bits2
= MAX(bits2
, max_bits2
);
257 /* bias towards directly reachable IPs */
258 if (iface_local(*ip1
)) {
261 if (iface_local(*ip2
)) {
265 return max_bits2
- max_bits1
;
268 /*******************************************************************
269 compare 2 ldap IPs by nearness to our interfaces - used in qsort
270 *******************************************************************/
272 static int ip_service_compare(struct ip_service
*ip1
, struct ip_service
*ip2
)
276 if ( (result
= ip_compare(&ip1
->ip
, &ip2
->ip
)) != 0 )
279 if ( ip1
->port
> ip2
->port
)
282 if ( ip1
->port
< ip2
->port
)
289 sort an IP list so that names that are close to one of our interfaces
290 are at the top. This prevents the problem where a WINS server returns an IP that
291 is not reachable from our subnet as the first match
294 static void sort_ip_list(struct in_addr
*iplist
, int count
)
300 qsort(iplist
, count
, sizeof(struct in_addr
), QSORT_CAST ip_compare
);
303 static void sort_ip_list2(struct ip_service
*iplist
, int count
)
309 qsort(iplist
, count
, sizeof(struct ip_service
), QSORT_CAST ip_service_compare
);
312 /**********************************************************************
313 Remove any duplicate address/port pairs in the list
314 *********************************************************************/
316 static int remove_duplicate_addrs2( struct ip_service
*iplist
, int count
)
320 DEBUG(10,("remove_duplicate_addrs2: looking for duplicate address/port pairs\n"));
322 /* one loop to remove duplicates */
323 for ( i
=0; i
<count
; i
++ ) {
324 if ( is_zero_ip(iplist
[i
].ip
) )
327 for ( j
=i
+1; j
<count
; j
++ ) {
328 if ( ip_service_equal(iplist
[i
], iplist
[j
]) )
329 zero_ip(&iplist
[j
].ip
);
333 /* one loop to clean up any holes we left */
334 /* first ip should never be a zero_ip() */
335 for (i
= 0; i
<count
; ) {
336 if ( is_zero_ip(iplist
[i
].ip
) ) {
338 memmove(&iplist
[i
], &iplist
[i
+1], (count
- i
- 1)*sizeof(iplist
[i
]));
348 /****************************************************************************
349 Do a netbios name query to find someones IP.
350 Returns an array of IP addresses or NULL if none.
351 *count will be set to the number of addresses returned.
352 *timed_out is set if we failed by timing out
353 ****************************************************************************/
355 struct in_addr
*name_query(int fd
,const char *name
,int name_type
,
356 BOOL bcast
,BOOL recurse
,
357 struct in_addr to_ip
, int *count
, int *flags
,
362 int retry_time
= bcast
?250:2000;
364 struct packet_struct p
;
365 struct packet_struct
*p2
;
366 struct nmb_packet
*nmb
= &p
.packet
.nmb
;
367 struct in_addr
*ip_list
= NULL
;
369 if (lp_disable_netbios()) {
370 DEBUG(5,("name_query(%s#%02x): netbios is disabled\n", name
, name_type
));
378 memset((char *)&p
,'\0',sizeof(p
));
382 nmb
->header
.name_trn_id
= generate_trn_id();
383 nmb
->header
.opcode
= 0;
384 nmb
->header
.response
= False
;
385 nmb
->header
.nm_flags
.bcast
= bcast
;
386 nmb
->header
.nm_flags
.recursion_available
= False
;
387 nmb
->header
.nm_flags
.recursion_desired
= recurse
;
388 nmb
->header
.nm_flags
.trunc
= False
;
389 nmb
->header
.nm_flags
.authoritative
= False
;
390 nmb
->header
.rcode
= 0;
391 nmb
->header
.qdcount
= 1;
392 nmb
->header
.ancount
= 0;
393 nmb
->header
.nscount
= 0;
394 nmb
->header
.arcount
= 0;
396 make_nmb_name(&nmb
->question
.question_name
,name
,name_type
);
398 nmb
->question
.question_type
= 0x20;
399 nmb
->question
.question_class
= 0x1;
404 p
.timestamp
= time(NULL
);
405 p
.packet_type
= NMB_PACKET
;
409 if (!send_packet(&p
))
415 struct timeval tval2
;
416 struct in_addr
*tmp_ip_list
;
418 GetTimeOfDay(&tval2
);
419 if (TvalDiff(&tval
,&tval2
) > retry_time
) {
422 if (!found
&& !send_packet(&p
))
428 if ((p2
=receive_nmb_packet(fd
,90,nmb
->header
.name_trn_id
))) {
429 struct nmb_packet
*nmb2
= &p2
->packet
.nmb
;
430 debug_nmb_packet(p2
);
432 /* If we get a Negative Name Query Response from a WINS
433 * server, we should report it and give up.
435 if( 0 == nmb2
->header
.opcode
/* A query response */
436 && !(bcast
) /* from a WINS server */
437 && nmb2
->header
.rcode
/* Error returned */
440 if( DEBUGLVL( 3 ) ) {
441 /* Only executed if DEBUGLEVEL >= 3 */
442 dbgtext( "Negative name query response, rcode 0x%02x: ", nmb2
->header
.rcode
);
443 switch( nmb2
->header
.rcode
) {
445 dbgtext( "Request was invalidly formatted.\n" );
448 dbgtext( "Problem with NBNS, cannot process name.\n");
451 dbgtext( "The name requested does not exist.\n" );
454 dbgtext( "Unsupported request error.\n" );
457 dbgtext( "Query refused error.\n" );
460 dbgtext( "Unrecognized error code.\n" );
468 if (nmb2
->header
.opcode
!= 0 ||
469 nmb2
->header
.nm_flags
.bcast
||
470 nmb2
->header
.rcode
||
471 !nmb2
->header
.ancount
) {
473 * XXXX what do we do with this? Could be a
474 * redirect, but we'll discard it for the
481 tmp_ip_list
= SMB_REALLOC_ARRAY( ip_list
, struct in_addr
,
482 (*count
) + nmb2
->answers
->rdlength
/6 );
485 DEBUG(0,("name_query: Realloc failed.\n"));
489 ip_list
= tmp_ip_list
;
492 DEBUG(2,("Got a positive name query response from %s ( ", inet_ntoa(p2
->ip
)));
493 for (i
=0;i
<nmb2
->answers
->rdlength
/6;i
++) {
494 putip((char *)&ip_list
[(*count
)],&nmb2
->answers
->rdata
[2+i
*6]);
495 DEBUGADD(2,("%s ",inet_ntoa(ip_list
[(*count
)])));
503 /* We add the flags back ... */
504 if (nmb2
->header
.response
)
505 (*flags
) |= NM_FLAGS_RS
;
506 if (nmb2
->header
.nm_flags
.authoritative
)
507 (*flags
) |= NM_FLAGS_AA
;
508 if (nmb2
->header
.nm_flags
.trunc
)
509 (*flags
) |= NM_FLAGS_TC
;
510 if (nmb2
->header
.nm_flags
.recursion_desired
)
511 (*flags
) |= NM_FLAGS_RD
;
512 if (nmb2
->header
.nm_flags
.recursion_available
)
513 (*flags
) |= NM_FLAGS_RA
;
514 if (nmb2
->header
.nm_flags
.bcast
)
515 (*flags
) |= NM_FLAGS_B
;
518 * If we're doing a unicast lookup we only
519 * expect one reply. Don't wait the full 2
520 * seconds if we got one. JRA.
527 /* only set timed_out if we didn't fund what we where looking for*/
529 if ( !found
&& timed_out
) {
533 /* sort the ip list so we choose close servers first if possible */
534 sort_ip_list(ip_list
, *count
);
539 /********************************************************
540 Start parsing the lmhosts file.
541 *********************************************************/
543 XFILE
*startlmhosts(char *fname
)
545 XFILE
*fp
= x_fopen(fname
,O_RDONLY
, 0);
547 DEBUG(4,("startlmhosts: Can't open lmhosts file %s. Error was %s\n",
548 fname
, strerror(errno
)));
554 /********************************************************
555 Parse the next line in the lmhosts file.
556 *********************************************************/
558 BOOL
getlmhostsent( XFILE
*fp
, pstring name
, int *name_type
, struct in_addr
*ipaddr
)
562 while(!x_feof(fp
) && !x_ferror(fp
)) {
563 pstring ip
,flags
,extra
;
570 if (!fgets_slash(line
,sizeof(pstring
),fp
)) {
584 if (next_token(&ptr
,ip
,NULL
,sizeof(ip
)))
586 if (next_token(&ptr
,name
,NULL
, sizeof(pstring
)))
588 if (next_token(&ptr
,flags
,NULL
, sizeof(flags
)))
590 if (next_token(&ptr
,extra
,NULL
, sizeof(extra
)))
596 if (count
> 0 && count
< 2) {
597 DEBUG(0,("getlmhostsent: Ill formed hosts line [%s]\n",line
));
602 DEBUG(0,("getlmhostsent: too many columns in lmhosts file (obsolete syntax)\n"));
606 DEBUG(4, ("getlmhostsent: lmhost entry: %s %s %s\n", ip
, name
, flags
));
608 if (strchr_m(flags
,'G') || strchr_m(flags
,'S')) {
609 DEBUG(0,("getlmhostsent: group flag in lmhosts ignored (obsolete)\n"));
613 *ipaddr
= *interpret_addr2(ip
);
615 /* Extra feature. If the name ends in '#XX', where XX is a hex number,
616 then only add that name type. */
617 if((ptr1
= strchr_m(name
, '#')) != NULL
) {
621 *name_type
= (int)strtol(ptr1
, &endptr
, 16);
622 if(!*ptr1
|| (endptr
== ptr1
)) {
623 DEBUG(0,("getlmhostsent: invalid name %s containing '#'.\n", name
));
627 *(--ptr1
) = '\0'; /* Truncate at the '#' */
636 /********************************************************
637 Finish parsing the lmhosts file.
638 *********************************************************/
640 void endlmhosts(XFILE
*fp
)
645 /********************************************************
646 convert an array if struct in_addrs to struct ip_service
647 return False on failure. Port is set to PORT_NONE;
648 *********************************************************/
650 static BOOL
convert_ip2service( struct ip_service
**return_iplist
, struct in_addr
*ip_list
, int count
)
654 if ( count
==0 || !ip_list
)
657 /* copy the ip address; port will be PORT_NONE */
658 if ( (*return_iplist
= SMB_MALLOC_ARRAY(struct ip_service
, count
)) == NULL
) {
659 DEBUG(0,("convert_ip2service: malloc failed for %d enetries!\n", count
));
663 for ( i
=0; i
<count
; i
++ ) {
664 (*return_iplist
)[i
].ip
= ip_list
[i
];
665 (*return_iplist
)[i
].port
= PORT_NONE
;
670 /********************************************************
671 Resolve via "bcast" method.
672 *********************************************************/
674 BOOL
name_resolve_bcast(const char *name
, int name_type
,
675 struct ip_service
**return_iplist
, int *return_count
)
678 int num_interfaces
= iface_count();
679 struct in_addr
*ip_list
;
682 if (lp_disable_netbios()) {
683 DEBUG(5,("name_resolve_bcast(%s#%02x): netbios is disabled\n", name
, name_type
));
687 *return_iplist
= NULL
;
691 * "bcast" means do a broadcast lookup on all the local interfaces.
694 DEBUG(3,("name_resolve_bcast: Attempting broadcast lookup for name %s<0x%x>\n", name
, name_type
));
696 sock
= open_socket_in( SOCK_DGRAM
, 0, 3,
697 interpret_addr(lp_socket_address()), True
);
699 if (sock
== -1) return False
;
701 set_socket_options(sock
,"SO_BROADCAST");
703 * Lookup the name on all the interfaces, return on
704 * the first successful match.
706 for( i
= num_interfaces
-1; i
>= 0; i
--) {
707 struct in_addr sendto_ip
;
709 /* Done this way to fix compiler error on IRIX 5.x */
710 sendto_ip
= *iface_n_bcast(i
);
711 ip_list
= name_query(sock
, name
, name_type
, True
,
712 True
, sendto_ip
, return_count
, &flags
, NULL
);
717 /* failed - no response */
724 if ( !convert_ip2service(return_iplist
, ip_list
, *return_count
) )
727 SAFE_FREE( ip_list
);
732 /********************************************************
733 Resolve via "wins" method.
734 *********************************************************/
736 BOOL
resolve_wins(const char *name
, int name_type
,
737 struct ip_service
**return_iplist
, int *return_count
)
741 struct in_addr src_ip
, *ip_list
= NULL
;
744 if (lp_disable_netbios()) {
745 DEBUG(5,("resolve_wins(%s#%02x): netbios is disabled\n", name
, name_type
));
749 *return_iplist
= NULL
;
752 DEBUG(3,("resolve_wins: Attempting wins lookup for name %s<0x%x>\n", name
, name_type
));
754 if (wins_srv_count() < 1) {
755 DEBUG(3,("resolve_wins: WINS server resolution selected and no WINS servers listed.\n"));
759 /* we try a lookup on each of the WINS tags in turn */
760 wins_tags
= wins_srv_tags();
763 /* huh? no tags?? give up in disgust */
767 /* the address we will be sending from */
768 src_ip
= *interpret_addr2(lp_socket_address());
770 /* in the worst case we will try every wins server with every
772 for (t
=0; wins_tags
&& wins_tags
[t
]; t
++) {
773 int srv_count
= wins_srv_count_tag(wins_tags
[t
]);
774 for (i
=0; i
<srv_count
; i
++) {
775 struct in_addr wins_ip
;
779 wins_ip
= wins_srv_ip_tag(wins_tags
[t
], src_ip
);
781 if (global_in_nmbd
&& ismyip(wins_ip
)) {
782 /* yikes! we'll loop forever */
786 /* skip any that have been unresponsive lately */
787 if (wins_srv_is_dead(wins_ip
, src_ip
)) {
791 DEBUG(3,("resolve_wins: using WINS server %s and tag '%s'\n", inet_ntoa(wins_ip
), wins_tags
[t
]));
793 sock
= open_socket_in(SOCK_DGRAM
, 0, 3, src_ip
.s_addr
, True
);
798 ip_list
= name_query(sock
,name
,name_type
, False
,
799 True
, wins_ip
, return_count
, &flags
,
802 /* exit loop if we got a list of addresses */
810 /* Timed out wating for WINS server to respond. Mark it dead. */
811 wins_srv_died(wins_ip
, src_ip
);
813 /* The name definately isn't in this
814 group of WINS servers. goto the next group */
820 wins_srv_tags_free(wins_tags
);
825 if ( !convert_ip2service( return_iplist
, ip_list
, *return_count
) )
828 SAFE_FREE( ip_list
);
829 wins_srv_tags_free(wins_tags
);
835 /********************************************************
836 Resolve via "lmhosts" method.
837 *********************************************************/
839 static BOOL
resolve_lmhosts(const char *name
, int name_type
,
840 struct ip_service
**return_iplist
, int *return_count
)
843 * "lmhosts" means parse the local lmhosts file.
849 struct in_addr return_ip
;
852 *return_iplist
= NULL
;
855 DEBUG(3,("resolve_lmhosts: Attempting lmhosts lookup for name %s<0x%x>\n", name
, name_type
));
857 fp
= startlmhosts(dyn_LMHOSTSFILE
);
862 while (getlmhostsent(fp
, lmhost_name
, &name_type2
, &return_ip
))
865 if (!strequal(name
, lmhost_name
))
868 if ((name_type2
!= -1) && (name_type
!= name_type2
))
871 *return_iplist
= SMB_REALLOC_ARRAY((*return_iplist
), struct ip_service
,
874 if ((*return_iplist
) == NULL
) {
875 DEBUG(3,("resolve_lmhosts: malloc fail !\n"));
879 (*return_iplist
)[*return_count
].ip
= return_ip
;
880 (*return_iplist
)[*return_count
].port
= PORT_NONE
;
883 /* we found something */
886 /* Multiple names only for DC lookup */
887 if (name_type
!= 0x1c)
897 /********************************************************
898 Resolve via "hosts" method.
899 *********************************************************/
901 static BOOL
resolve_hosts(const char *name
, int name_type
,
902 struct ip_service
**return_iplist
, int *return_count
)
905 * "host" means do a localhost, or dns lookup.
909 if ( name_type
!= 0x20 && name_type
!= 0x0) {
910 DEBUG(5, ("resolve_hosts: not appropriate for name type <0x%x>\n", name_type
));
914 *return_iplist
= NULL
;
917 DEBUG(3,("resolve_hosts: Attempting host lookup for name %s<0x%x>\n", name
, name_type
));
919 if (((hp
= sys_gethostbyname(name
)) != NULL
) && (hp
->h_addr
!= NULL
)) {
920 struct in_addr return_ip
;
921 putip((char *)&return_ip
,(char *)hp
->h_addr
);
922 *return_iplist
= SMB_MALLOC_P(struct ip_service
);
923 if(*return_iplist
== NULL
) {
924 DEBUG(3,("resolve_hosts: malloc fail !\n"));
927 (*return_iplist
)->ip
= return_ip
;
928 (*return_iplist
)->port
= PORT_NONE
;
935 /********************************************************
936 Resolve via "ADS" method.
937 *********************************************************/
939 static BOOL
resolve_ads(const char *name
, int name_type
,
940 struct ip_service
**return_iplist
, int *return_count
)
944 if ( name_type
== 0x1c ) {
950 /* try to lookup the _ldap._tcp.<domain> if we are using ADS */
951 if ( lp_security() != SEC_ADS
)
954 DEBUG(5,("resolve_hosts: Attempting to resolve DC's for %s using DNS\n",
957 if (ldap_domain2hostlist(name
, &list
) != LDAP_SUCCESS
)
960 count
= count_chars(list
, ' ') + 1;
961 if ( (*return_iplist
= SMB_MALLOC_ARRAY(struct ip_service
, count
)) == NULL
) {
962 DEBUG(0,("resolve_hosts: malloc failed for %d entries\n", count
));
967 while (next_token(&ptr
, tok
, " ", sizeof(tok
))) {
968 unsigned port
= LDAP_PORT
;
969 char *p
= strchr(tok
, ':');
974 (*return_iplist
)[i
].ip
= *interpret_addr2(tok
);
975 (*return_iplist
)[i
].port
= port
;
977 /* make sure it is a valid IP. I considered checking the negative
978 connection cache, but this is the wrong place for it. Maybe only
979 as a hac. After think about it, if all of the IP addresses retuend
980 from DNS are dead, what hope does a netbios name lookup have?
981 The standard reason for falling back to netbios lookups is that
982 our DNS server doesn't know anything about the DC's -- jerry */
984 if ( is_zero_ip((*return_iplist
)[i
].ip
) )
995 #endif /* HAVE_ADS */
1001 /*******************************************************************
1002 Internal interface to resolve a name into an IP address.
1003 Use this function if the string is either an IP address, DNS
1004 or host name or NetBIOS name. This uses the name switch in the
1005 smb.conf to determine the order of name resolution.
1007 Added support for ip addr/port to support ADS ldap servers.
1008 the only place we currently care about the port is in the
1009 resolve_hosts() when looking up DC's via SRV RR entries in DNS
1010 **********************************************************************/
1012 BOOL
internal_resolve_name(const char *name
, int name_type
,
1013 struct ip_service
**return_iplist
,
1014 int *return_count
, const char *resolve_order
)
1016 pstring name_resolve_list
;
1019 BOOL allones
= (strcmp(name
,"255.255.255.255") == 0);
1020 BOOL allzeros
= (strcmp(name
,"0.0.0.0") == 0);
1021 BOOL is_address
= is_ipaddress(name
);
1022 BOOL result
= False
;
1025 *return_iplist
= NULL
;
1028 DEBUG(10, ("internal_resolve_name: looking up %s#%x\n", name
, name_type
));
1030 if (allzeros
|| allones
|| is_address
) {
1032 if ( (*return_iplist
= SMB_MALLOC_P(struct ip_service
)) == NULL
) {
1033 DEBUG(0,("internal_resolve_name: malloc fail !\n"));
1038 /* ignore the port here */
1039 (*return_iplist
)->port
= PORT_NONE
;
1041 /* if it's in the form of an IP address then get the lib to interpret it */
1042 if (((*return_iplist
)->ip
.s_addr
= inet_addr(name
)) == 0xFFFFFFFF ){
1043 DEBUG(1,("internal_resolve_name: inet_addr failed on %s\n", name
));
1047 (*return_iplist
)->ip
.s_addr
= allones
? 0xFFFFFFFF : 0;
1053 /* Check name cache */
1055 if (namecache_fetch(name
, name_type
, return_iplist
, return_count
)) {
1056 /* This could be a negative response */
1057 return (*return_count
> 0);
1060 /* set the name resolution order */
1062 if ( strcmp( resolve_order
, "NULL") == 0 ) {
1063 DEBUG(8,("internal_resolve_name: all lookups disabled\n"));
1067 if ( !resolve_order
) {
1068 pstrcpy(name_resolve_list
, lp_name_resolve_order());
1070 pstrcpy(name_resolve_list
, resolve_order
);
1072 if ( !name_resolve_list
[0] ) {
1075 ptr
= name_resolve_list
;
1078 /* iterate through the name resolution backends */
1080 while (next_token(&ptr
, tok
, LIST_SEP
, sizeof(tok
))) {
1081 if((strequal(tok
, "host") || strequal(tok
, "hosts"))) {
1082 if (resolve_hosts(name
, name_type
, return_iplist
, return_count
)) {
1086 } else if(strequal( tok
, "ads")) {
1087 /* deal with 0x1c names here. This will result in a
1088 SRV record lookup for _ldap._tcp.<domain> if we
1089 are using 'security = ads' */
1090 if (resolve_ads(name
, name_type
, return_iplist
, return_count
)) {
1094 } else if(strequal( tok
, "lmhosts")) {
1095 if (resolve_lmhosts(name
, name_type
, return_iplist
, return_count
)) {
1099 } else if(strequal( tok
, "wins")) {
1100 /* don't resolve 1D via WINS */
1101 if (name_type
!= 0x1D && resolve_wins(name
, name_type
, return_iplist
, return_count
)) {
1105 } else if(strequal( tok
, "bcast")) {
1106 if (name_resolve_bcast(name
, name_type
, return_iplist
, return_count
)) {
1111 DEBUG(0,("resolve_name: unknown name switch type %s\n", tok
));
1115 /* All of the resolve_* functions above have returned false. */
1117 SAFE_FREE(*return_iplist
);
1124 /* Remove duplicate entries. Some queries, notably #1c (domain
1125 controllers) return the PDC in iplist[0] and then all domain
1126 controllers including the PDC in iplist[1..n]. Iterating over
1127 the iplist when the PDC is down will cause two sets of timeouts. */
1129 if ( *return_count
) {
1130 *return_count
= remove_duplicate_addrs2( *return_iplist
, *return_count
);
1133 /* Save in name cache */
1134 if ( DEBUGLEVEL
>= 100 ) {
1135 for (i
= 0; i
< *return_count
&& DEBUGLEVEL
== 100; i
++)
1136 DEBUG(100, ("Storing name %s of type %d (%s:%d)\n", name
,
1137 name_type
, inet_ntoa((*return_iplist
)[i
].ip
), (*return_iplist
)[i
].port
));
1140 namecache_store(name
, name_type
, *return_count
, *return_iplist
);
1142 /* Display some debugging info */
1144 if ( DEBUGLEVEL
>= 10 ) {
1145 DEBUG(10, ("internal_resolve_name: returning %d addresses: ", *return_count
));
1147 for (i
= 0; i
< *return_count
; i
++) {
1148 DEBUGADD(10, ("%s:%d ", inet_ntoa((*return_iplist
)[i
].ip
), (*return_iplist
)[i
].port
));
1157 /********************************************************
1158 Internal interface to resolve a name into one IP address.
1159 Use this function if the string is either an IP address, DNS
1160 or host name or NetBIOS name. This uses the name switch in the
1161 smb.conf to determine the order of name resolution.
1162 *********************************************************/
1164 BOOL
resolve_name(const char *name
, struct in_addr
*return_ip
, int name_type
)
1166 struct ip_service
*ip_list
= NULL
;
1169 if (is_ipaddress(name
)) {
1170 *return_ip
= *interpret_addr2(name
);
1174 if (internal_resolve_name(name
, name_type
, &ip_list
, &count
, lp_name_resolve_order())) {
1177 /* only return valid addresses for TCP connections */
1178 for (i
=0; i
<count
; i
++) {
1179 char *ip_str
= inet_ntoa(ip_list
[i
].ip
);
1181 strcmp(ip_str
, "255.255.255.255") != 0 &&
1182 strcmp(ip_str
, "0.0.0.0") != 0)
1184 *return_ip
= ip_list
[i
].ip
;
1195 /********************************************************
1196 Find the IP address of the master browser or DMB for a workgroup.
1197 *********************************************************/
1199 BOOL
find_master_ip(const char *group
, struct in_addr
*master_ip
)
1201 struct ip_service
*ip_list
= NULL
;
1204 if (lp_disable_netbios()) {
1205 DEBUG(5,("find_master_ip(%s): netbios is disabled\n", group
));
1209 if (internal_resolve_name(group
, 0x1D, &ip_list
, &count
, lp_name_resolve_order())) {
1210 *master_ip
= ip_list
[0].ip
;
1214 if(internal_resolve_name(group
, 0x1B, &ip_list
, &count
, lp_name_resolve_order())) {
1215 *master_ip
= ip_list
[0].ip
;
1224 /********************************************************
1225 Get the IP address list of the primary domain controller
1227 *********************************************************/
1229 BOOL
get_pdc_ip(const char *domain
, struct in_addr
*ip
)
1231 struct ip_service
*ip_list
;
1234 /* Look up #1B name */
1236 if (!internal_resolve_name(domain
, 0x1b, &ip_list
, &count
, lp_name_resolve_order())) {
1240 /* if we get more than 1 IP back we have to assume it is a
1241 multi-homed PDC and not a mess up */
1244 DEBUG(6,("get_pdc_ip: PDC has %d IP addresses!\n", count
));
1245 sort_ip_list2( ip_list
, count
);
1248 *ip
= ip_list
[0].ip
;
1255 /********************************************************
1256 Get the IP address list of the domain controllers for
1258 *********************************************************/
1260 static BOOL
get_dc_list(const char *domain
, struct ip_service
**ip_list
,
1261 int *count
, BOOL ads_only
, int *ordered
)
1263 fstring resolve_order
;
1265 /* if we are restricted to solely using DNS for looking
1266 up a domain controller, make sure that host lookups
1267 are enabled for the 'name resolve order'. If host lookups
1268 are disabled and ads_only is True, then set the string to
1271 fstrcpy( resolve_order
, lp_name_resolve_order() );
1272 strlower_m( resolve_order
);
1274 if ( strstr( resolve_order
, "host" ) )
1275 fstrcpy( resolve_order
, "ads" );
1277 fstrcpy( resolve_order
, "NULL" );
1283 /* If it's our domain then use the 'password server' parameter. */
1285 if ( strequal(domain
, lp_workgroup()) || strequal(domain
, lp_realm()) ) {
1287 char *pserver
= lp_passwordserver(); /* UNIX charset. */
1291 int num_addresses
= 0;
1292 int local_count
, i
, j
;
1293 struct ip_service
*return_iplist
= NULL
;
1294 struct ip_service
*auto_ip_list
= NULL
;
1295 BOOL done_auto_lookup
= False
;
1300 return internal_resolve_name(domain
, 0x1C, ip_list
, count
, resolve_order
);
1305 * if '*' appears in the "password server" list then add
1306 * an auto lookup to the list of manually configured
1307 * DC's. If any DC is listed by name, then the list should be
1308 * considered to be ordered
1311 while (next_token(&p
,name
,LIST_SEP
,sizeof(name
))) {
1312 if (strequal(name
, "*")) {
1313 if ( internal_resolve_name(domain
, 0x1C, &auto_ip_list
, &auto_count
, resolve_order
) )
1314 num_addresses
+= auto_count
;
1315 done_auto_lookup
= True
;
1316 DEBUG(8,("Adding %d DC's from auto lookup\n", auto_count
));
1322 /* if we have no addresses and haven't done the auto lookup, then
1323 just return the list of DC's */
1325 if ( (num_addresses
== 0) && !done_auto_lookup
) {
1326 return internal_resolve_name(domain
, 0x1C, ip_list
, count
, resolve_order
);
1329 /* maybe we just failed? */
1331 if ( num_addresses
== 0 ) {
1332 DEBUG(4,("get_dc_list: no servers found\n"));
1336 if ( (return_iplist
= SMB_MALLOC_ARRAY(struct ip_service
, num_addresses
)) == NULL
) {
1337 DEBUG(3,("get_dc_list: malloc fail !\n"));
1344 /* fill in the return list now with real IP's */
1346 while ( (local_count
<num_addresses
) && next_token(&p
,name
,LIST_SEP
,sizeof(name
)) ) {
1347 struct in_addr name_ip
;
1349 /* copy any addersses from the auto lookup */
1351 if ( strequal(name
, "*") ) {
1352 for ( j
=0; j
<auto_count
; j
++ ) {
1353 /* Check for and don't copy any known bad DC IP's. */
1354 if(!NT_STATUS_IS_OK(check_negative_conn_cache(domain
,
1355 inet_ntoa(auto_ip_list
[j
].ip
)))) {
1356 DEBUG(5,("get_dc_list: negative entry %s removed from DC list\n",
1357 inet_ntoa(auto_ip_list
[j
].ip
) ));
1360 return_iplist
[local_count
].ip
= auto_ip_list
[j
].ip
;
1361 return_iplist
[local_count
].port
= auto_ip_list
[j
].port
;
1368 /* added support for address:port syntax for ads (not that I think
1369 anyone will ever run the LDAP server in an AD domain on something
1370 other than port 389 */
1372 port
= (lp_security() == SEC_ADS
) ? LDAP_PORT
: PORT_NONE
;
1373 if ( (port_str
=strchr(name
, ':')) != NULL
) {
1376 port
= atoi( port_str
);
1379 /* explicit lookup; resolve_name() will handle names & IP addresses */
1380 if ( resolve_name( name
, &name_ip
, 0x20 ) ) {
1382 /* Check for and don't copy any known bad DC IP's. */
1383 if( !NT_STATUS_IS_OK(check_negative_conn_cache(domain
, inet_ntoa(name_ip
))) ) {
1384 DEBUG(5,("get_dc_list: negative entry %s removed from DC list\n",name
));
1388 return_iplist
[local_count
].ip
= name_ip
;
1389 return_iplist
[local_count
].port
= port
;
1395 SAFE_FREE(auto_ip_list
);
1397 /* need to remove duplicates in the list if we have any
1398 explicit password servers */
1400 if ( local_count
) {
1401 local_count
= remove_duplicate_addrs2( return_iplist
, local_count
);
1404 if ( DEBUGLEVEL
>= 4 ) {
1405 DEBUG(4,("get_dc_list: returning %d ip addresses in an %sordered list\n", local_count
,
1406 *ordered
? "":"un"));
1407 DEBUG(4,("get_dc_list: "));
1408 for ( i
=0; i
<local_count
; i
++ )
1409 DEBUGADD(4,("%s:%d ", inet_ntoa(return_iplist
[i
].ip
), return_iplist
[i
].port
));
1413 *ip_list
= return_iplist
;
1414 *count
= local_count
;
1416 return (*count
!= 0);
1419 DEBUG(10,("get_dc_list: defaulting to internal auto lookup for domain %s\n", domain
));
1421 return internal_resolve_name(domain
, 0x1C, ip_list
, count
, resolve_order
);
1424 /*********************************************************************
1425 Small wrapper function to get the DC list and sort it if neccessary.
1426 *********************************************************************/
1428 BOOL
get_sorted_dc_list( const char *domain
, struct ip_service
**ip_list
, int *count
, BOOL ads_only
)
1432 DEBUG(8,("get_sorted_dc_list: attempting lookup using [%s]\n",
1433 (ads_only
? "ads" : lp_name_resolve_order())));
1435 if ( !get_dc_list(domain
, ip_list
, count
, ads_only
, &ordered
) ) {
1439 /* only sort if we don't already have an ordered list */
1441 sort_ip_list2( *ip_list
, *count
);