2 Unix SMB/CIFS implementation.
3 NBT netbios routines and daemon - version 2
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Luke Kenneth Casson Leighton 1994-1998
6 Copyright (C) Jeremy Allison 1994-2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "nmbd/nmbd.h"
24 #include "../lib/util/select.h"
25 #include "system/select.h"
26 #include "libsmb/libsmb.h"
29 extern int ClientDGRAM
;
30 extern int global_nmb_port
;
32 extern int num_response_packets
;
34 bool rescan_listen_set
= False
;
36 static struct nb_packet_server
*packet_server
;
38 bool nmbd_init_packet_server(void)
42 status
= nb_packet_server_create(
43 NULL
, nmbd_event_context(),
44 lp_parm_int(-1, "nmbd", "unexpected_clients", 200),
46 if (!NT_STATUS_IS_OK(status
)) {
47 DEBUG(0, ("ERROR: nb_packet_server_create failed: %s\n",
55 /*******************************************************************
56 The global packet linked-list. Incoming entries are
57 added to the end of this list. It is supposed to remain fairly
58 short so we won't bother with an end pointer.
59 ******************************************************************/
61 static struct packet_struct
*packet_queue
= NULL
;
63 /***************************************************************************
64 Utility function to find the specific fd to send a packet out on.
65 **************************************************************************/
67 static int find_subnet_fd_for_address( struct in_addr local_ip
)
69 struct subnet_record
*subrec
;
71 for( subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
))
72 if(ip_equal_v4(local_ip
, subrec
->myip
))
73 return subrec
->nmb_sock
;
78 /***************************************************************************
79 Utility function to find the specific fd to send a mailslot packet out on.
80 **************************************************************************/
82 static int find_subnet_mailslot_fd_for_address( struct in_addr local_ip
)
84 struct subnet_record
*subrec
;
86 for( subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
))
87 if(ip_equal_v4(local_ip
, subrec
->myip
))
88 return subrec
->dgram_sock
;
93 /***************************************************************************
94 Get/Set problematic nb_flags as network byte order 16 bit int.
95 **************************************************************************/
97 uint16_t get_nb_flags(char *buf
)
99 return ((((uint16_t)*buf
)&0xFFFF) & NB_FLGMSK
);
102 void set_nb_flags(char *buf
, uint16_t nb_flags
)
104 *buf
++ = ((nb_flags
& NB_FLGMSK
) & 0xFF);
108 /***************************************************************************
109 Dumps out the browse packet data.
110 **************************************************************************/
112 static void debug_browse_data(const char *outbuf
, int len
)
116 DEBUG( 4, ( "debug_browse_data():\n" ) );
117 for (i
= 0; i
< len
; i
+= 16) {
118 DEBUGADD( 4, ( "%3x char ", i
) );
120 for (j
= 0; j
< 16; j
++) {
126 if (x
< 32 || x
> 127)
129 DEBUGADD( 4, ( "%c", x
) );
132 DEBUGADD( 4, ( "%*s hex", 16-j
, "" ) );
134 for (j
= 0; j
< 16; j
++) {
137 DEBUGADD( 4, ( " %02x", (unsigned char)outbuf
[i
+j
] ) );
140 DEBUGADD( 4, ("\n") );
144 /***************************************************************************
145 Generates the unique transaction identifier
146 **************************************************************************/
148 static uint16_t name_trn_id
=0;
150 static uint16_t generate_name_trn_id(void)
153 name_trn_id
= ((unsigned)time(NULL
)%(unsigned)0x7FFF) + ((unsigned)getpid()%(unsigned)100);
155 name_trn_id
= (name_trn_id
+1) % (unsigned)0x7FFF;
159 /***************************************************************************
160 Either loops back or sends out a completed NetBIOS packet.
161 **************************************************************************/
163 static bool send_netbios_packet(struct packet_struct
*p
)
165 bool loopback_this_packet
= False
;
167 /* Check if we are sending to or from ourselves as a WINS server. */
168 if(ismyip_v4(p
->ip
) && (p
->port
== global_nmb_port
))
169 loopback_this_packet
= True
;
171 if(loopback_this_packet
) {
172 struct packet_struct
*lo_packet
= NULL
;
173 DEBUG(5,("send_netbios_packet: sending packet to ourselves.\n"));
174 if((lo_packet
= copy_packet(p
)) == NULL
)
176 queue_packet(lo_packet
);
177 } else if (!send_packet(p
)) {
178 DEBUG(0,("send_netbios_packet: send_packet() to IP %s port %d failed\n",
179 inet_ntoa(p
->ip
),p
->port
));
186 /***************************************************************************
187 Sets up the common elements of an outgoing NetBIOS packet.
189 Note: do not attempt to rationalise whether rec_des should be set or not
190 in a particular situation. Just follow rfc_1002 or look at examples from WinXX.
191 It does NOT follow the rule that requests to the wins server always have
192 rec_des true. See for example name releases and refreshes
193 **************************************************************************/
195 static struct packet_struct
*create_and_init_netbios_packet(struct nmb_name
*nmbname
,
196 bool bcast
, bool rec_des
,
197 struct in_addr to_ip
)
199 struct packet_struct
*packet
= NULL
;
200 struct nmb_packet
*nmb
= NULL
;
202 /* Allocate the packet_struct we will return. */
203 if((packet
= SMB_MALLOC_P(struct packet_struct
)) == NULL
) {
204 DEBUG(0,("create_and_init_netbios_packet: malloc fail (1) for packet struct.\n"));
208 memset((char *)packet
,'\0',sizeof(*packet
));
210 nmb
= &packet
->packet
.nmb
;
212 nmb
->header
.name_trn_id
= generate_name_trn_id();
213 nmb
->header
.response
= False
;
214 nmb
->header
.nm_flags
.recursion_desired
= rec_des
;
215 nmb
->header
.nm_flags
.recursion_available
= False
;
216 nmb
->header
.nm_flags
.trunc
= False
;
217 nmb
->header
.nm_flags
.authoritative
= False
;
218 nmb
->header
.nm_flags
.bcast
= bcast
;
220 nmb
->header
.rcode
= 0;
221 nmb
->header
.qdcount
= 1;
222 nmb
->header
.ancount
= 0;
223 nmb
->header
.nscount
= 0;
225 nmb
->question
.question_name
= *nmbname
;
226 nmb
->question
.question_type
= QUESTION_TYPE_NB_QUERY
;
227 nmb
->question
.question_class
= QUESTION_CLASS_IN
;
230 packet
->port
= NMB_PORT
;
231 packet
->recv_fd
= -1;
232 packet
->send_fd
= ClientNMB
;
233 packet
->timestamp
= time(NULL
);
234 packet
->packet_type
= NMB_PACKET
;
235 packet
->locked
= False
;
237 return packet
; /* Caller must free. */
240 /***************************************************************************
241 Sets up the common elements of register, refresh or release packet.
242 **************************************************************************/
244 static bool create_and_init_additional_record(struct packet_struct
*packet
,
246 const struct in_addr
*register_ip
)
248 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
250 if((nmb
->additional
= SMB_MALLOC_P(struct res_rec
)) == NULL
) {
251 DEBUG(0,("create_and_init_additional_record: malloc fail for additional record.\n"));
255 memset((char *)nmb
->additional
,'\0',sizeof(struct res_rec
));
257 nmb
->additional
->rr_name
= nmb
->question
.question_name
;
258 nmb
->additional
->rr_type
= RR_TYPE_NB
;
259 nmb
->additional
->rr_class
= RR_CLASS_IN
;
261 /* See RFC 1002, sections 5.1.1.1, 5.1.1.2 and 5.1.1.3 */
262 if (nmb
->header
.nm_flags
.bcast
)
263 nmb
->additional
->ttl
= PERMANENT_TTL
;
265 nmb
->additional
->ttl
= lp_max_ttl();
267 nmb
->additional
->rdlength
= 6;
269 set_nb_flags(nmb
->additional
->rdata
,nb_flags
);
271 /* Set the address for the name we are registering. */
272 putip(&nmb
->additional
->rdata
[2], register_ip
);
275 it turns out that Jeremys code was correct, we are supposed
276 to send registrations from the IP we are registering. The
277 trick is what to do on timeouts! When we send on a
278 non-routable IP then the reply will timeout, and we should
279 treat this as success, not failure. That means we go into
280 our standard refresh cycle for that name which copes nicely
281 with disconnected networks.
283 packet
->recv_fd
= -1;
284 packet
->send_fd
= find_subnet_fd_for_address(*register_ip
);
289 /***************************************************************************
290 Sends out a name query.
291 **************************************************************************/
293 static bool initiate_name_query_packet( struct packet_struct
*packet
)
295 struct nmb_packet
*nmb
= NULL
;
297 nmb
= &packet
->packet
.nmb
;
299 nmb
->header
.opcode
= NMB_NAME_QUERY_OPCODE
;
300 nmb
->header
.arcount
= 0;
302 nmb
->header
.nm_flags
.recursion_desired
= True
;
304 DEBUG(4,("initiate_name_query_packet: sending query for name %s (bcast=%s) to IP %s\n",
305 nmb_namestr(&nmb
->question
.question_name
),
306 BOOLSTR(nmb
->header
.nm_flags
.bcast
), inet_ntoa(packet
->ip
)));
308 return send_netbios_packet( packet
);
311 /***************************************************************************
312 Sends out a name query - from a WINS server.
313 **************************************************************************/
315 static bool initiate_name_query_packet_from_wins_server( struct packet_struct
*packet
)
317 struct nmb_packet
*nmb
= NULL
;
319 nmb
= &packet
->packet
.nmb
;
321 nmb
->header
.opcode
= NMB_NAME_QUERY_OPCODE
;
322 nmb
->header
.arcount
= 0;
324 nmb
->header
.nm_flags
.recursion_desired
= False
;
326 DEBUG(4,("initiate_name_query_packet_from_wins_server: sending query for name %s (bcast=%s) to IP %s\n",
327 nmb_namestr(&nmb
->question
.question_name
),
328 BOOLSTR(nmb
->header
.nm_flags
.bcast
), inet_ntoa(packet
->ip
)));
330 return send_netbios_packet( packet
);
333 /***************************************************************************
334 Sends out a name register.
335 **************************************************************************/
337 static bool initiate_name_register_packet( struct packet_struct
*packet
,
338 uint16_t nb_flags
, const struct in_addr
*register_ip
)
340 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
342 nmb
->header
.opcode
= NMB_NAME_REG_OPCODE
;
343 nmb
->header
.arcount
= 1;
345 nmb
->header
.nm_flags
.recursion_desired
= True
;
347 if(create_and_init_additional_record(packet
, nb_flags
, register_ip
) == False
)
350 DEBUG(4,("initiate_name_register_packet: sending registration for name %s (bcast=%s) to IP %s\n",
351 nmb_namestr(&nmb
->additional
->rr_name
),
352 BOOLSTR(nmb
->header
.nm_flags
.bcast
), inet_ntoa(packet
->ip
)));
354 return send_netbios_packet( packet
);
357 /***************************************************************************
358 Sends out a multihomed name register.
359 **************************************************************************/
361 static bool initiate_multihomed_name_register_packet(struct packet_struct
*packet
,
362 uint16_t nb_flags
, struct in_addr
*register_ip
)
364 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
365 fstring second_ip_buf
;
367 fstrcpy(second_ip_buf
, inet_ntoa(packet
->ip
));
369 nmb
->header
.opcode
= NMB_NAME_MULTIHOMED_REG_OPCODE
;
370 nmb
->header
.arcount
= 1;
372 nmb
->header
.nm_flags
.recursion_desired
= True
;
374 if(create_and_init_additional_record(packet
, nb_flags
, register_ip
) == False
)
377 DEBUG(4,("initiate_multihomed_name_register_packet: sending registration \
378 for name %s IP %s (bcast=%s) to IP %s\n",
379 nmb_namestr(&nmb
->additional
->rr_name
), inet_ntoa(*register_ip
),
380 BOOLSTR(nmb
->header
.nm_flags
.bcast
), second_ip_buf
));
382 return send_netbios_packet( packet
);
385 /***************************************************************************
386 Sends out a name refresh.
387 **************************************************************************/
389 static bool initiate_name_refresh_packet( struct packet_struct
*packet
,
390 uint16_t nb_flags
, struct in_addr
*refresh_ip
)
392 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
394 nmb
->header
.opcode
= NMB_NAME_REFRESH_OPCODE_8
;
395 nmb
->header
.arcount
= 1;
397 nmb
->header
.nm_flags
.recursion_desired
= False
;
399 if(create_and_init_additional_record(packet
, nb_flags
, refresh_ip
) == False
)
402 DEBUG(4,("initiate_name_refresh_packet: sending refresh for name %s (bcast=%s) to IP %s\n",
403 nmb_namestr(&nmb
->additional
->rr_name
),
404 BOOLSTR(nmb
->header
.nm_flags
.bcast
), inet_ntoa(packet
->ip
)));
406 return send_netbios_packet( packet
);
409 /***************************************************************************
410 Sends out a name release.
411 **************************************************************************/
413 static bool initiate_name_release_packet( struct packet_struct
*packet
,
414 uint16_t nb_flags
, struct in_addr
*release_ip
)
416 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
418 nmb
->header
.opcode
= NMB_NAME_RELEASE_OPCODE
;
419 nmb
->header
.arcount
= 1;
421 nmb
->header
.nm_flags
.recursion_desired
= False
;
423 if(create_and_init_additional_record(packet
, nb_flags
, release_ip
) == False
)
426 DEBUG(4,("initiate_name_release_packet: sending release for name %s (bcast=%s) to IP %s\n",
427 nmb_namestr(&nmb
->additional
->rr_name
),
428 BOOLSTR(nmb
->header
.nm_flags
.bcast
), inet_ntoa(packet
->ip
)));
430 return send_netbios_packet( packet
);
433 /***************************************************************************
434 Sends out a node status.
435 **************************************************************************/
437 static bool initiate_node_status_packet( struct packet_struct
*packet
)
439 struct nmb_packet
*nmb
= &packet
->packet
.nmb
;
441 nmb
->header
.opcode
= NMB_NAME_QUERY_OPCODE
;
442 nmb
->header
.arcount
= 0;
444 nmb
->header
.nm_flags
.recursion_desired
= False
;
446 nmb
->question
.question_type
= QUESTION_TYPE_NB_STATUS
;
448 DEBUG(4,("initiate_node_status_packet: sending node status request for name %s to IP %s\n",
449 nmb_namestr(&nmb
->question
.question_name
),
450 inet_ntoa(packet
->ip
)));
452 return send_netbios_packet( packet
);
455 /****************************************************************************
456 Simplification functions for queuing standard packets.
457 These should be the only publicly callable functions for sending
459 ****************************************************************************/
461 /****************************************************************************
462 Assertion - we should never be sending nmbd packets on the remote
464 ****************************************************************************/
466 static bool assert_check_subnet(struct subnet_record
*subrec
)
468 if( subrec
== remote_broadcast_subnet
) {
469 DEBUG(0,("assert_check_subnet: Attempt to send packet on remote broadcast subnet. \
476 /****************************************************************************
477 Queue a register name packet to the broadcast address of a subnet.
478 ****************************************************************************/
480 struct response_record
*queue_register_name( struct subnet_record
*subrec
,
481 response_function resp_fn
,
482 timeout_response_function timeout_fn
,
483 register_name_success_function success_fn
,
484 register_name_fail_function fail_fn
,
485 struct userdata_struct
*userdata
,
486 struct nmb_name
*nmbname
,
489 struct packet_struct
*p
;
490 struct response_record
*rrec
;
491 struct sockaddr_storage ss
;
492 const struct sockaddr_storage
*pss
= NULL
;
493 if(assert_check_subnet(subrec
))
496 /* note that all name registration requests have RD set (rfc1002 - section 4.2.2 */
497 if ((p
= create_and_init_netbios_packet(nmbname
, (subrec
!= unicast_subnet
), True
,
498 subrec
->bcast_ip
)) == NULL
)
501 in_addr_to_sockaddr_storage(&ss
, subrec
->bcast_ip
);
502 pss
= iface_ip((struct sockaddr
*)(void *)&ss
);
503 if (!pss
|| pss
->ss_family
!= AF_INET
) {
509 if(initiate_name_register_packet(p
, nb_flags
,
510 &((const struct sockaddr_in
*)pss
)->sin_addr
) == False
) {
516 if((rrec
= make_response_record(subrec
, /* subnet record. */
517 p
, /* packet we sent. */
518 resp_fn
, /* function to call on response. */
519 timeout_fn
, /* function to call on timeout. */
520 (success_function
)success_fn
, /* function to call on operation success. */
521 (fail_function
)fail_fn
, /* function to call on operation fail. */
522 userdata
)) == NULL
) {
531 /****************************************************************************
532 Queue a refresh name packet to the broadcast address of a subnet.
533 ****************************************************************************/
535 void queue_wins_refresh(struct nmb_name
*nmbname
,
536 response_function resp_fn
,
537 timeout_response_function timeout_fn
,
539 struct in_addr refresh_ip
,
542 struct packet_struct
*p
;
543 struct response_record
*rrec
;
544 struct in_addr wins_ip
;
545 struct userdata_struct
*userdata
;
548 wins_ip
= wins_srv_ip_tag(tag
, refresh_ip
);
550 if ((p
= create_and_init_netbios_packet(nmbname
, False
, False
, wins_ip
)) == NULL
) {
554 if (!initiate_name_refresh_packet(p
, nb_flags
, &refresh_ip
)) {
560 fstrcpy(ip_str
, inet_ntoa(refresh_ip
));
562 DEBUG(6,("Refreshing name %s IP %s with WINS server %s using tag '%s'\n",
563 nmb_namestr(nmbname
), ip_str
, inet_ntoa(wins_ip
), tag
));
565 userdata
= (struct userdata_struct
*)SMB_MALLOC(sizeof(*userdata
) + strlen(tag
) + 1);
569 DEBUG(0,("Failed to allocate userdata structure!\n"));
572 ZERO_STRUCTP(userdata
);
573 userdata
->userdata_len
= strlen(tag
) + 1;
574 strlcpy(userdata
->data
, tag
, userdata
->userdata_len
);
576 if ((rrec
= make_response_record(unicast_subnet
,
581 userdata
)) == NULL
) {
589 /* we don't want to repeat refresh packets */
590 rrec
->repeat_count
= 0;
594 /****************************************************************************
595 Queue a multihomed register name packet to a given WINS server IP
596 ****************************************************************************/
598 struct response_record
*queue_register_multihomed_name( struct subnet_record
*subrec
,
599 response_function resp_fn
,
600 timeout_response_function timeout_fn
,
601 register_name_success_function success_fn
,
602 register_name_fail_function fail_fn
,
603 struct userdata_struct
*userdata
,
604 struct nmb_name
*nmbname
,
606 struct in_addr register_ip
,
607 struct in_addr wins_ip
)
609 struct packet_struct
*p
;
610 struct response_record
*rrec
;
614 if(subrec
!= unicast_subnet
) {
615 DEBUG(0,("queue_register_multihomed_name: should only be done on \
616 unicast subnet. subnet is %s\n.", subrec
->subnet_name
));
620 if(assert_check_subnet(subrec
))
623 if ((p
= create_and_init_netbios_packet(nmbname
, False
, True
, wins_ip
)) == NULL
)
626 if (nb_flags
& NB_GROUP
)
627 ret
= initiate_name_register_packet( p
, nb_flags
, ®ister_ip
);
629 ret
= initiate_multihomed_name_register_packet(p
, nb_flags
, ®ister_ip
);
637 if ((rrec
= make_response_record(subrec
, /* subnet record. */
638 p
, /* packet we sent. */
639 resp_fn
, /* function to call on response. */
640 timeout_fn
, /* function to call on timeout. */
641 (success_function
)success_fn
, /* function to call on operation success. */
642 (fail_function
)fail_fn
, /* function to call on operation fail. */
643 userdata
)) == NULL
) {
652 /****************************************************************************
653 Queue a release name packet to the broadcast address of a subnet.
654 ****************************************************************************/
656 struct response_record
*queue_release_name( struct subnet_record
*subrec
,
657 response_function resp_fn
,
658 timeout_response_function timeout_fn
,
659 release_name_success_function success_fn
,
660 release_name_fail_function fail_fn
,
661 struct userdata_struct
*userdata
,
662 struct nmb_name
*nmbname
,
664 struct in_addr release_ip
,
665 struct in_addr dest_ip
)
667 struct packet_struct
*p
;
668 struct response_record
*rrec
;
670 if(assert_check_subnet(subrec
))
673 if ((p
= create_and_init_netbios_packet(nmbname
, (subrec
!= unicast_subnet
), False
, dest_ip
)) == NULL
)
676 if(initiate_name_release_packet( p
, nb_flags
, &release_ip
) == False
) {
682 if((rrec
= make_response_record(subrec
, /* subnet record. */
683 p
, /* packet we sent. */
684 resp_fn
, /* function to call on response. */
685 timeout_fn
, /* function to call on timeout. */
686 (success_function
)success_fn
, /* function to call on operation success. */
687 (fail_function
)fail_fn
, /* function to call on operation fail. */
688 userdata
)) == NULL
) {
695 * For a broadcast release packet, only send once.
696 * This will cause us to remove the name asap. JRA.
699 if (subrec
!= unicast_subnet
) {
700 rrec
->repeat_count
= 0;
701 rrec
->repeat_time
= 0;
707 /****************************************************************************
708 Queue a query name packet to the broadcast address of a subnet.
709 ****************************************************************************/
711 struct response_record
*queue_query_name( struct subnet_record
*subrec
,
712 response_function resp_fn
,
713 timeout_response_function timeout_fn
,
714 query_name_success_function success_fn
,
715 query_name_fail_function fail_fn
,
716 struct userdata_struct
*userdata
,
717 struct nmb_name
*nmbname
)
719 struct packet_struct
*p
;
720 struct response_record
*rrec
;
721 struct in_addr to_ip
;
723 if(assert_check_subnet(subrec
))
726 to_ip
= subrec
->bcast_ip
;
728 /* queries to the WINS server turn up here as queries to IP 0.0.0.0
729 These need to be handled a bit differently */
730 if (subrec
->type
== UNICAST_SUBNET
&& is_zero_ip_v4(to_ip
)) {
731 /* What we really need to do is loop over each of our wins
732 * servers and wins server tags here, but that just doesn't
733 * fit our architecture at the moment (userdata may already
734 * be used when we get here). For now we just query the first
735 * active wins server on the first tag.
737 char **tags
= wins_srv_tags();
741 to_ip
= wins_srv_ip_tag(tags
[0], to_ip
);
742 wins_srv_tags_free(tags
);
745 if(( p
= create_and_init_netbios_packet(nmbname
,
746 (subrec
!= unicast_subnet
),
747 (subrec
== unicast_subnet
),
751 if(lp_bind_interfaces_only()) {
754 DEBUG(10,("queue_query_name: bind_interfaces_only is set, looking for suitable source IP\n"));
755 for(i
= 0; i
< iface_count(); i
++) {
756 const struct in_addr
*ifip
= iface_n_ip_v4(i
);
759 DEBUG(0,("queue_query_name: interface %d has NULL IP address !\n", i
));
763 if (is_loopback_ip_v4(*ifip
)) {
764 DEBUG(5,("queue_query_name: ignoring loopback interface (%d)\n", i
));
768 DEBUG(10,("queue_query_name: using source IP %s\n",inet_ntoa(*ifip
)));
769 p
->send_fd
= find_subnet_fd_for_address( *ifip
);
774 if(initiate_name_query_packet( p
) == False
) {
780 if((rrec
= make_response_record(subrec
, /* subnet record. */
781 p
, /* packet we sent. */
782 resp_fn
, /* function to call on response. */
783 timeout_fn
, /* function to call on timeout. */
784 (success_function
)success_fn
, /* function to call on operation success. */
785 (fail_function
)fail_fn
, /* function to call on operation fail. */
786 userdata
)) == NULL
) {
795 /****************************************************************************
796 Queue a query name packet to a given address from the WINS subnet.
797 ****************************************************************************/
799 struct response_record
*queue_query_name_from_wins_server( struct in_addr to_ip
,
800 response_function resp_fn
,
801 timeout_response_function timeout_fn
,
802 query_name_success_function success_fn
,
803 query_name_fail_function fail_fn
,
804 struct userdata_struct
*userdata
,
805 struct nmb_name
*nmbname
)
807 struct packet_struct
*p
;
808 struct response_record
*rrec
;
810 if ((p
= create_and_init_netbios_packet(nmbname
, False
, False
, to_ip
)) == NULL
)
813 if(initiate_name_query_packet_from_wins_server( p
) == False
) {
819 if((rrec
= make_response_record(wins_server_subnet
, /* subnet record. */
820 p
, /* packet we sent. */
821 resp_fn
, /* function to call on response. */
822 timeout_fn
, /* function to call on timeout. */
823 (success_function
)success_fn
, /* function to call on operation success. */
824 (fail_function
)fail_fn
, /* function to call on operation fail. */
825 userdata
)) == NULL
) {
834 /****************************************************************************
835 Queue a node status packet to a given name and address.
836 ****************************************************************************/
838 struct response_record
*queue_node_status( struct subnet_record
*subrec
,
839 response_function resp_fn
,
840 timeout_response_function timeout_fn
,
841 node_status_success_function success_fn
,
842 node_status_fail_function fail_fn
,
843 struct userdata_struct
*userdata
,
844 struct nmb_name
*nmbname
,
845 struct in_addr send_ip
)
847 struct packet_struct
*p
;
848 struct response_record
*rrec
;
851 if(subrec
!= unicast_subnet
) {
852 DEBUG(0,("queue_register_multihomed_name: should only be done on \
853 unicast subnet. subnet is %s\n.", subrec
->subnet_name
));
857 if(assert_check_subnet(subrec
))
860 if(( p
= create_and_init_netbios_packet(nmbname
, False
, False
, send_ip
)) == NULL
)
863 if(initiate_node_status_packet(p
) == False
) {
869 if((rrec
= make_response_record(subrec
, /* subnet record. */
870 p
, /* packet we sent. */
871 resp_fn
, /* function to call on response. */
872 timeout_fn
, /* function to call on timeout. */
873 (success_function
)success_fn
, /* function to call on operation success. */
874 (fail_function
)fail_fn
, /* function to call on operation fail. */
875 userdata
)) == NULL
) {
884 /****************************************************************************
885 Reply to a netbios name packet. see rfc1002.txt
886 ****************************************************************************/
888 void reply_netbios_packet(struct packet_struct
*orig_packet
,
889 int rcode
, enum netbios_reply_type_code rcv_code
, int opcode
,
890 int ttl
, char *data
,int len
)
892 struct packet_struct packet
;
893 struct nmb_packet
*nmb
= NULL
;
894 struct res_rec answers
;
895 struct nmb_packet
*orig_nmb
= &orig_packet
->packet
.nmb
;
896 bool loopback_this_packet
= False
;
897 int rr_type
= RR_TYPE_NB
;
898 const char *packet_type
= "unknown";
900 /* Check if we are sending to or from ourselves. */
901 if(ismyip_v4(orig_packet
->ip
) && (orig_packet
->port
== global_nmb_port
))
902 loopback_this_packet
= True
;
904 nmb
= &packet
.packet
.nmb
;
906 /* Do a partial copy of the packet. We clear the locked flag and
907 the resource record pointers. */
908 packet
= *orig_packet
; /* Full structure copy. */
909 packet
.locked
= False
;
912 nmb
->additional
= NULL
;
916 packet_type
= "nmb_status";
917 nmb
->header
.nm_flags
.recursion_desired
= False
;
918 nmb
->header
.nm_flags
.recursion_available
= False
;
919 rr_type
= RR_TYPE_NBSTAT
;
922 packet_type
= "nmb_query";
923 nmb
->header
.nm_flags
.recursion_desired
= True
;
924 nmb
->header
.nm_flags
.recursion_available
= True
;
926 rr_type
= RR_TYPE_NULL
;
930 case NMB_REG_REFRESH
:
931 packet_type
= "nmb_reg";
932 nmb
->header
.nm_flags
.recursion_desired
= True
;
933 nmb
->header
.nm_flags
.recursion_available
= True
;
936 packet_type
= "nmb_rel";
937 nmb
->header
.nm_flags
.recursion_desired
= False
;
938 nmb
->header
.nm_flags
.recursion_available
= False
;
941 packet_type
= "nmb_wack";
942 nmb
->header
.nm_flags
.recursion_desired
= False
;
943 nmb
->header
.nm_flags
.recursion_available
= False
;
944 rr_type
= RR_TYPE_NULL
;
947 packet_type
= "wins_reg";
948 nmb
->header
.nm_flags
.recursion_desired
= True
;
949 nmb
->header
.nm_flags
.recursion_available
= True
;
952 packet_type
= "wins_query";
953 nmb
->header
.nm_flags
.recursion_desired
= True
;
954 nmb
->header
.nm_flags
.recursion_available
= True
;
956 rr_type
= RR_TYPE_NULL
;
960 DEBUG(0,("reply_netbios_packet: Unknown packet type: %s %s to ip %s\n",
961 packet_type
, nmb_namestr(&orig_nmb
->question
.question_name
),
962 inet_ntoa(packet
.ip
)));
966 DEBUG(4, ("reply_netbios_packet: sending a reply of packet type: %s "
967 "%s to ip %s for id %d\n", packet_type
,
968 nmb_namestr(&orig_nmb
->question
.question_name
),
969 inet_ntoa(packet
.ip
), orig_nmb
->header
.name_trn_id
));
971 nmb
->header
.name_trn_id
= orig_nmb
->header
.name_trn_id
;
972 nmb
->header
.opcode
= opcode
;
973 nmb
->header
.response
= True
;
974 nmb
->header
.nm_flags
.bcast
= False
;
975 nmb
->header
.nm_flags
.trunc
= False
;
976 nmb
->header
.nm_flags
.authoritative
= True
;
978 nmb
->header
.rcode
= rcode
;
979 nmb
->header
.qdcount
= 0;
980 nmb
->header
.ancount
= 1;
981 nmb
->header
.nscount
= 0;
982 nmb
->header
.arcount
= 0;
984 memset((char*)&nmb
->question
,'\0',sizeof(nmb
->question
));
986 nmb
->answers
= &answers
;
987 memset((char*)nmb
->answers
,'\0',sizeof(*nmb
->answers
));
989 nmb
->answers
->rr_name
= orig_nmb
->question
.question_name
;
990 nmb
->answers
->rr_type
= rr_type
;
991 nmb
->answers
->rr_class
= RR_CLASS_IN
;
992 nmb
->answers
->ttl
= ttl
;
995 if (len
< 0 || len
> sizeof(nmb
->answers
->rdata
)) {
996 DEBUG(5,("reply_netbios_packet: "
997 "invalid packet len (%d)\n",
1001 nmb
->answers
->rdlength
= len
;
1002 memcpy(nmb
->answers
->rdata
, data
, len
);
1005 packet
.packet_type
= NMB_PACKET
;
1006 packet
.recv_fd
= -1;
1007 /* Ensure we send out on the same fd that the original
1008 packet came in on to give the correct source IP address. */
1009 if (orig_packet
->send_fd
!= -1) {
1010 packet
.send_fd
= orig_packet
->send_fd
;
1012 packet
.send_fd
= orig_packet
->recv_fd
;
1014 packet
.timestamp
= time(NULL
);
1016 debug_nmb_packet(&packet
);
1018 if(loopback_this_packet
) {
1019 struct packet_struct
*lo_packet
;
1020 DEBUG(5,("reply_netbios_packet: sending packet to ourselves.\n"));
1021 if((lo_packet
= copy_packet(&packet
)) == NULL
)
1023 queue_packet(lo_packet
);
1024 } else if (!send_packet(&packet
)) {
1025 DEBUG(0,("reply_netbios_packet: send_packet to IP %s port %d failed\n",
1026 inet_ntoa(packet
.ip
),packet
.port
));
1030 /*******************************************************************
1031 Queue a packet into a packet queue
1032 ******************************************************************/
1034 void queue_packet(struct packet_struct
*packet
)
1036 DLIST_ADD_END(packet_queue
, packet
);
1039 /****************************************************************************
1040 Try and find a matching subnet record for a datagram port 138 packet.
1041 ****************************************************************************/
1043 static struct subnet_record
*find_subnet_for_dgram_browse_packet(struct packet_struct
*p
)
1045 struct subnet_record
*subrec
;
1047 /* Go through all the broadcast subnets and see if the mask matches. */
1048 for (subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
1049 if(same_net_v4(p
->ip
, subrec
->bcast_ip
, subrec
->mask_ip
))
1053 /* If the subnet record is the remote announce broadcast subnet,
1054 hack it here to be the first subnet. This is really gross and
1055 is needed due to people turning on port 137/138 broadcast
1056 forwarding on their routers. May fire and brimstone rain
1060 return FIRST_SUBNET
;
1063 /****************************************************************************
1064 Dispatch a browse frame from port 138 to the correct processing function.
1065 ****************************************************************************/
1067 static void process_browse_packet(struct packet_struct
*p
, const char *buf
,int len
)
1069 struct dgram_packet
*dgram
= &p
->packet
.dgram
;
1070 int command
= CVAL(buf
,0);
1071 struct subnet_record
*subrec
= find_subnet_for_dgram_browse_packet(p
);
1075 /* Drop the packet if it's a different NetBIOS scope, or the source is from one of our names. */
1076 pull_ascii(scope
, dgram
->dest_name
.scope
, 64, 64, STR_TERMINATE
);
1077 if (!strequal(scope
, lp_netbios_scope())) {
1078 DEBUG(7,("process_browse_packet: Discarding datagram from IP %s. Scope (%s) \
1079 mismatch with our scope (%s).\n", inet_ntoa(p
->ip
), scope
, lp_netbios_scope()));
1083 pull_ascii_nstring(src_name
, sizeof(src_name
), dgram
->source_name
.name
);
1084 if (is_myname(src_name
)) {
1085 DEBUG(7,("process_browse_packet: Discarding datagram from IP %s. Source name \
1086 %s is one of our names !\n", inet_ntoa(p
->ip
), nmb_namestr(&dgram
->source_name
)));
1091 case ANN_HostAnnouncement
:
1092 debug_browse_data(buf
, len
);
1093 process_host_announce(subrec
, p
, buf
+1);
1095 case ANN_DomainAnnouncement
:
1096 debug_browse_data(buf
, len
);
1097 process_workgroup_announce(subrec
, p
, buf
+1);
1099 case ANN_LocalMasterAnnouncement
:
1100 debug_browse_data(buf
, len
);
1101 process_local_master_announce(subrec
, p
, buf
+1);
1103 case ANN_AnnouncementRequest
:
1104 debug_browse_data(buf
, len
);
1105 process_announce_request(subrec
, p
, buf
+1);
1108 debug_browse_data(buf
, len
);
1109 process_election(subrec
, p
, buf
+1);
1111 case ANN_GetBackupListReq
:
1112 debug_browse_data(buf
, len
);
1113 process_get_backup_list_request(subrec
, p
, buf
+1);
1115 case ANN_GetBackupListResp
:
1116 debug_browse_data(buf
, len
);
1117 /* We never send ANN_GetBackupListReq so we should never get these. */
1118 DEBUG(0,("process_browse_packet: Discarding GetBackupListResponse \
1119 packet from %s IP %s\n", nmb_namestr(&dgram
->source_name
), inet_ntoa(p
->ip
)));
1121 case ANN_ResetBrowserState
:
1122 debug_browse_data(buf
, len
);
1123 process_reset_browser(subrec
, p
, buf
+1);
1125 case ANN_MasterAnnouncement
:
1126 /* Master browser datagrams must be processed on the unicast subnet. */
1127 subrec
= unicast_subnet
;
1129 debug_browse_data(buf
, len
);
1130 process_master_browser_announce(subrec
, p
, buf
+1);
1132 case ANN_BecomeBackup
:
1134 * We don't currently implement this. Log it just in case.
1136 debug_browse_data(buf
, len
);
1137 DEBUG(10,("process_browse_packet: On subnet %s ignoring browse packet \
1138 command ANN_BecomeBackup from %s IP %s to %s\n", subrec
->subnet_name
, nmb_namestr(&dgram
->source_name
),
1139 inet_ntoa(p
->ip
), nmb_namestr(&dgram
->dest_name
)));
1142 debug_browse_data(buf
, len
);
1143 DEBUG(0,("process_browse_packet: On subnet %s ignoring browse packet \
1144 command code %d from %s IP %s to %s\n", subrec
->subnet_name
, command
, nmb_namestr(&dgram
->source_name
),
1145 inet_ntoa(p
->ip
), nmb_namestr(&dgram
->dest_name
)));
1150 /****************************************************************************
1151 Dispatch a LanMan browse frame from port 138 to the correct processing function.
1152 ****************************************************************************/
1154 static void process_lanman_packet(struct packet_struct
*p
, const char *buf
,int len
)
1156 struct dgram_packet
*dgram
= &p
->packet
.dgram
;
1157 int command
= SVAL(buf
,0);
1158 struct subnet_record
*subrec
= find_subnet_for_dgram_browse_packet(p
);
1162 /* Drop the packet if it's a different NetBIOS scope, or the source is from one of our names. */
1164 pull_ascii(scope
, dgram
->dest_name
.scope
, 64, 64, STR_TERMINATE
);
1165 if (!strequal(scope
, lp_netbios_scope())) {
1166 DEBUG(7,("process_lanman_packet: Discarding datagram from IP %s. Scope (%s) \
1167 mismatch with our scope (%s).\n", inet_ntoa(p
->ip
), scope
, lp_netbios_scope()));
1171 pull_ascii_nstring(src_name
, sizeof(src_name
), dgram
->source_name
.name
);
1172 if (is_myname(src_name
)) {
1173 DEBUG(0,("process_lanman_packet: Discarding datagram from IP %s. Source name \
1174 %s is one of our names !\n", inet_ntoa(p
->ip
), nmb_namestr(&dgram
->source_name
)));
1179 case ANN_HostAnnouncement
:
1180 debug_browse_data(buf
, len
);
1181 process_lm_host_announce(subrec
, p
, buf
+1, len
> 1 ? len
-1 : 0);
1183 case ANN_AnnouncementRequest
:
1184 process_lm_announce_request(subrec
, p
, buf
+1, len
> 1 ? len
-1 : 0);
1187 DEBUG(0,("process_lanman_packet: On subnet %s ignoring browse packet \
1188 command code %d from %s IP %s to %s\n", subrec
->subnet_name
, command
, nmb_namestr(&dgram
->source_name
),
1189 inet_ntoa(p
->ip
), nmb_namestr(&dgram
->dest_name
)));
1194 /****************************************************************************
1195 Determine if a packet is for us on port 138. Note that to have any chance of
1196 being efficient we need to drop as many packets as possible at this
1197 stage as subsequent processing is expensive.
1198 ****************************************************************************/
1200 static bool listening(struct packet_struct
*p
,struct nmb_name
*nbname
)
1202 struct subnet_record
*subrec
= NULL
;
1204 for (subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
1205 if(same_net_v4(p
->ip
, subrec
->bcast_ip
, subrec
->mask_ip
))
1210 subrec
= unicast_subnet
;
1212 return (find_name_on_subnet(subrec
, nbname
, FIND_SELF_NAME
) != NULL
);
1215 /****************************************************************************
1216 Process udp 138 datagrams
1217 ****************************************************************************/
1219 static void process_dgram(struct packet_struct
*p
)
1224 struct dgram_packet
*dgram
= &p
->packet
.dgram
;
1226 /* If we aren't listening to the destination name then ignore the packet */
1227 if (!listening(p
,&dgram
->dest_name
)) {
1228 nb_packet_dispatch(packet_server
, p
);
1229 DEBUG(5,("process_dgram: ignoring dgram packet sent to name %s from %s\n",
1230 nmb_namestr(&dgram
->dest_name
), inet_ntoa(p
->ip
)));
1234 if (dgram
->header
.msg_type
!= 0x10 && dgram
->header
.msg_type
!= 0x11 && dgram
->header
.msg_type
!= 0x12) {
1235 nb_packet_dispatch(packet_server
, p
);
1236 /* Don't process error packets etc yet */
1237 DEBUG(5,("process_dgram: ignoring dgram packet sent to name %s from IP %s as it is \
1238 an error packet of type %x\n", nmb_namestr(&dgram
->dest_name
), inet_ntoa(p
->ip
), dgram
->header
.msg_type
));
1242 /* Ensure we have a large enough packet before looking inside. */
1243 if (dgram
->datasize
< (smb_vwv12
- 2)) {
1244 /* That's the offset minus the 4 byte length + 2 bytes of offset. */
1245 DEBUG(0,("process_dgram: ignoring too short dgram packet (%u) sent to name %s from IP %s\n",
1246 (unsigned int)dgram
->datasize
,
1247 nmb_namestr(&dgram
->dest_name
),
1248 inet_ntoa(p
->ip
) ));
1252 buf
= &dgram
->data
[0];
1253 buf
-= 4; /* XXXX for the pseudo tcp length - someday I need to get rid of this */
1255 if (CVAL(buf
,smb_com
) != SMBtrans
)
1258 len
= SVAL(buf
,smb_vwv11
);
1259 buf2
= smb_base(buf
) + SVAL(buf
,smb_vwv12
);
1261 if (len
<= 0 || len
> dgram
->datasize
) {
1262 DEBUG(0,("process_dgram: ignoring malformed1 (datasize = %d, len = %d) datagram \
1263 packet sent to name %s from IP %s\n",
1266 nmb_namestr(&dgram
->dest_name
),
1267 inet_ntoa(p
->ip
) ));
1271 if (buf2
< dgram
->data
|| (buf2
>= dgram
->data
+ dgram
->datasize
)) {
1272 DEBUG(0,("process_dgram: ignoring malformed2 (datasize = %d, len=%d, off=%d) datagram \
1273 packet sent to name %s from IP %s\n",
1276 (int)PTR_DIFF(buf2
, dgram
->data
),
1277 nmb_namestr(&dgram
->dest_name
),
1278 inet_ntoa(p
->ip
) ));
1282 if ((buf2
+ len
< dgram
->data
) || (buf2
+ len
> dgram
->data
+ dgram
->datasize
)) {
1283 DEBUG(0,("process_dgram: ignoring malformed3 (datasize = %d, len=%d, off=%d) datagram \
1284 packet sent to name %s from IP %s\n",
1287 (int)PTR_DIFF(buf2
, dgram
->data
),
1288 nmb_namestr(&dgram
->dest_name
),
1289 inet_ntoa(p
->ip
) ));
1293 DEBUG(4,("process_dgram: datagram from %s to %s IP %s for %s of type %d len=%d\n",
1294 nmb_namestr(&dgram
->source_name
),nmb_namestr(&dgram
->dest_name
),
1295 inet_ntoa(p
->ip
), smb_buf_const(buf
),CVAL(buf2
,0),len
));
1297 /* Datagram packet received for the browser mailslot */
1298 if (strequal(smb_buf_const(buf
),BROWSE_MAILSLOT
)) {
1299 process_browse_packet(p
,buf2
,len
);
1303 /* Datagram packet received for the LAN Manager mailslot */
1304 if (strequal(smb_buf_const(buf
),LANMAN_MAILSLOT
)) {
1305 process_lanman_packet(p
,buf2
,len
);
1309 /* Datagram packet received for the domain logon mailslot */
1310 if (strequal(smb_buf_const(buf
),NET_LOGON_MAILSLOT
)) {
1311 process_logon_packet(p
,buf2
,len
,NET_LOGON_MAILSLOT
);
1315 /* Datagram packet received for the NT domain logon mailslot */
1316 if (strequal(smb_buf_const(buf
),NT_LOGON_MAILSLOT
)) {
1317 process_logon_packet(p
,buf2
,len
,NT_LOGON_MAILSLOT
);
1321 nb_packet_dispatch(packet_server
, p
);
1324 /****************************************************************************
1325 Validate a response nmb packet.
1326 ****************************************************************************/
1328 static bool validate_nmb_response_packet( struct nmb_packet
*nmb
)
1330 bool ignore
= False
;
1332 switch (nmb
->header
.opcode
) {
1333 case NMB_NAME_REG_OPCODE
:
1334 case NMB_NAME_REFRESH_OPCODE_8
: /* ambiguity in rfc1002 about which is correct. */
1335 case NMB_NAME_REFRESH_OPCODE_9
: /* WinNT uses 8 by default. */
1336 if (nmb
->header
.ancount
== 0) {
1337 DEBUG(0,("validate_nmb_response_packet: Bad REG/REFRESH Packet. "));
1342 case NMB_NAME_QUERY_OPCODE
:
1343 if ((nmb
->header
.ancount
!= 0) && (nmb
->header
.ancount
!= 1)) {
1344 DEBUG(0,("validate_nmb_response_packet: Bad QUERY Packet. "));
1349 case NMB_NAME_RELEASE_OPCODE
:
1350 if (nmb
->header
.ancount
== 0) {
1351 DEBUG(0,("validate_nmb_response_packet: Bad RELEASE Packet. "));
1356 case NMB_WACK_OPCODE
:
1357 /* Check WACK response here. */
1358 if (nmb
->header
.ancount
!= 1) {
1359 DEBUG(0,("validate_nmb_response_packet: Bad WACK Packet. "));
1364 DEBUG(0,("validate_nmb_response_packet: Ignoring packet with unknown opcode %d.\n",
1365 nmb
->header
.opcode
));
1370 DEBUG(0,("Ignoring response packet with opcode %d.\n", nmb
->header
.opcode
));
1375 /****************************************************************************
1376 Validate a request nmb packet.
1377 ****************************************************************************/
1379 static bool validate_nmb_packet( struct nmb_packet
*nmb
)
1381 bool ignore
= False
;
1383 switch (nmb
->header
.opcode
) {
1384 case NMB_NAME_REG_OPCODE
:
1385 case NMB_NAME_REFRESH_OPCODE_8
: /* ambiguity in rfc1002 about which is correct. */
1386 case NMB_NAME_REFRESH_OPCODE_9
: /* WinNT uses 8 by default. */
1387 case NMB_NAME_MULTIHOMED_REG_OPCODE
:
1388 if (nmb
->header
.qdcount
==0 || nmb
->header
.arcount
==0) {
1389 DEBUG(0,("validate_nmb_packet: Bad REG/REFRESH Packet. "));
1394 case NMB_NAME_QUERY_OPCODE
:
1395 if ((nmb
->header
.qdcount
== 0) || ((nmb
->question
.question_type
!= QUESTION_TYPE_NB_QUERY
) &&
1396 (nmb
->question
.question_type
!= QUESTION_TYPE_NB_STATUS
))) {
1397 DEBUG(0,("validate_nmb_packet: Bad QUERY Packet. "));
1402 case NMB_NAME_RELEASE_OPCODE
:
1403 if (nmb
->header
.qdcount
==0 || nmb
->header
.arcount
==0) {
1404 DEBUG(0,("validate_nmb_packet: Bad RELEASE Packet. "));
1409 DEBUG(0,("validate_nmb_packet: Ignoring packet with unknown opcode %d.\n",
1410 nmb
->header
.opcode
));
1415 DEBUG(0,("validate_nmb_packet: Ignoring request packet with opcode %d.\n", nmb
->header
.opcode
));
1420 /****************************************************************************
1421 Find a subnet (and potentially a response record) for a packet.
1422 ****************************************************************************/
1424 static struct subnet_record
*find_subnet_for_nmb_packet( struct packet_struct
*p
,
1425 struct response_record
**pprrec
)
1427 struct nmb_packet
*nmb
= &p
->packet
.nmb
;
1428 struct response_record
*rrec
= NULL
;
1429 struct subnet_record
*subrec
= NULL
;
1434 if(nmb
->header
.response
) {
1435 /* It's a response packet. Find a record for it or it's an error. */
1437 rrec
= find_response_record( &subrec
, nmb
->header
.name_trn_id
);
1439 DEBUG(3, ("find_subnet_for_nmb_packet: response "
1440 "record not found for response id %d\n",
1441 nmb
->header
.name_trn_id
));
1442 nb_packet_dispatch(packet_server
, p
);
1446 if(subrec
== NULL
) {
1447 DEBUG(0, ("find_subnet_for_nmb_packet: subnet record "
1448 "not found for response id %d\n",
1449 nmb
->header
.name_trn_id
));
1458 /* Try and see what subnet this packet belongs to. */
1461 if(packet_is_for_wins_server(p
))
1462 return wins_server_subnet
;
1464 /* If it wasn't a broadcast packet then send to the UNICAST subnet. */
1465 if(nmb
->header
.nm_flags
.bcast
== False
)
1466 return unicast_subnet
;
1468 /* Go through all the broadcast subnets and see if the mask matches. */
1469 for (subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
1470 if(same_net_v4(p
->ip
, subrec
->bcast_ip
, subrec
->mask_ip
))
1474 /* If none match it must have been a directed broadcast - assign the remote_broadcast_subnet. */
1475 return remote_broadcast_subnet
;
1478 /****************************************************************************
1479 Process a nmb request packet - validate the packet and route it.
1480 ****************************************************************************/
1482 static void process_nmb_request(struct packet_struct
*p
)
1484 struct nmb_packet
*nmb
= &p
->packet
.nmb
;
1485 struct subnet_record
*subrec
= NULL
;
1487 debug_nmb_packet(p
);
1489 /* Ensure we have a good packet. */
1490 if(validate_nmb_packet(nmb
))
1493 /* Allocate a subnet to this packet - if we cannot - fail. */
1494 if((subrec
= find_subnet_for_nmb_packet(p
, NULL
))==NULL
)
1497 switch (nmb
->header
.opcode
) {
1498 case NMB_NAME_REG_OPCODE
:
1499 if(subrec
== wins_server_subnet
)
1500 wins_process_name_registration_request(subrec
, p
);
1502 process_name_registration_request(subrec
, p
);
1505 case NMB_NAME_REFRESH_OPCODE_8
: /* ambiguity in rfc1002 about which is correct. */
1506 case NMB_NAME_REFRESH_OPCODE_9
:
1507 if(subrec
== wins_server_subnet
)
1508 wins_process_name_refresh_request(subrec
, p
);
1510 process_name_refresh_request(subrec
, p
);
1513 case NMB_NAME_MULTIHOMED_REG_OPCODE
:
1514 if(subrec
== wins_server_subnet
) {
1515 wins_process_multihomed_name_registration_request(subrec
, p
);
1517 DEBUG(0,("process_nmb_request: Multihomed registration request must be \
1518 directed at a WINS server.\n"));
1522 case NMB_NAME_QUERY_OPCODE
:
1523 switch (nmb
->question
.question_type
) {
1524 case QUESTION_TYPE_NB_QUERY
:
1525 if(subrec
== wins_server_subnet
)
1526 wins_process_name_query_request(subrec
, p
);
1528 process_name_query_request(subrec
, p
);
1530 case QUESTION_TYPE_NB_STATUS
:
1531 if(subrec
== wins_server_subnet
) {
1532 DEBUG(0,("process_nmb_request: NB_STATUS request directed at WINS server is \
1536 process_node_status_request(subrec
, p
);
1542 case NMB_NAME_RELEASE_OPCODE
:
1543 if(subrec
== wins_server_subnet
)
1544 wins_process_name_release_request(subrec
, p
);
1546 process_name_release_request(subrec
, p
);
1551 /****************************************************************************
1552 Process a nmb response packet - validate the packet and route it.
1553 to either the WINS server or a normal response.
1554 ****************************************************************************/
1556 static void process_nmb_response(struct packet_struct
*p
)
1558 struct nmb_packet
*nmb
= &p
->packet
.nmb
;
1559 struct subnet_record
*subrec
= NULL
;
1560 struct response_record
*rrec
= NULL
;
1562 debug_nmb_packet(p
);
1564 if(validate_nmb_response_packet(nmb
))
1567 if((subrec
= find_subnet_for_nmb_packet(p
, &rrec
))==NULL
)
1571 DEBUG(0, ("process_nmb_response: response packet received but "
1572 "no response record found for id = %d. Ignoring "
1573 "packet.\n", nmb
->header
.name_trn_id
));
1577 /* Increment the number of responses received for this record. */
1579 /* Ensure we don't re-send the request. */
1580 rrec
->repeat_count
= 0;
1582 /* Call the response received function for this packet. */
1583 (*rrec
->resp_fn
)(subrec
, rrec
, p
);
1586 /*******************************************************************
1587 Run elements off the packet queue till its empty
1588 ******************************************************************/
1590 void run_packet_queue(void)
1592 struct packet_struct
*p
;
1594 while ((p
= packet_queue
)) {
1595 DLIST_REMOVE(packet_queue
, p
);
1597 switch (p
->packet_type
) {
1599 if(p
->packet
.nmb
.header
.response
)
1600 process_nmb_response(p
);
1602 process_nmb_request(p
);
1613 /*******************************************************************
1614 Retransmit or timeout elements from all the outgoing subnet response
1615 record queues. NOTE that this code must also check the WINS server
1616 subnet for response records to timeout as the WINS server code
1617 can send requests to check if a client still owns a name.
1618 (Patch from Andrey Alekseyev <fetch@muffin.arcadia.spb.ru>).
1619 ******************************************************************/
1621 void retransmit_or_expire_response_records(time_t t
)
1623 struct subnet_record
*subrec
;
1625 for (subrec
= FIRST_SUBNET
; subrec
; subrec
= get_next_subnet_maybe_unicast_or_wins_server(subrec
)) {
1626 struct response_record
*rrec
, *nextrrec
;
1630 for (rrec
= subrec
->responselist
; rrec
; rrec
= nextrrec
) {
1631 nextrrec
= rrec
->next
;
1633 if (rrec
->repeat_time
<= t
) {
1634 if (rrec
->repeat_count
> 0) {
1635 /* Resend while we have a non-zero repeat_count. */
1636 if(!send_packet(rrec
->packet
)) {
1637 DEBUG(0,("retransmit_or_expire_response_records: Failed to resend packet id %hu \
1638 to IP %s on subnet %s\n", rrec
->response_id
, inet_ntoa(rrec
->packet
->ip
), subrec
->subnet_name
));
1640 rrec
->repeat_time
= t
+ rrec
->repeat_interval
;
1641 rrec
->repeat_count
--;
1643 DEBUG(4,("retransmit_or_expire_response_records: timeout for packet id %hu to IP %s \
1644 on subnet %s\n", rrec
->response_id
, inet_ntoa(rrec
->packet
->ip
), subrec
->subnet_name
));
1647 * Check the flag in this record to prevent recursion if we end
1648 * up in this function again via the timeout function call.
1651 if(!rrec
->in_expiration_processing
) {
1654 * Set the recursion protection flag in this record.
1657 rrec
->in_expiration_processing
= True
;
1659 /* Call the timeout function. This will deal with removing the
1660 timed out packet. */
1661 if(rrec
->timeout_fn
) {
1662 (*rrec
->timeout_fn
)(subrec
, rrec
);
1664 /* We must remove the record ourself if there is
1665 no timeout function. */
1666 remove_response_record(subrec
, rrec
);
1668 /* We have changed subrec->responselist,
1669 * restart from the beginning of this list. */
1671 } /* !rrec->in_expitation_processing */
1672 } /* rrec->repeat_count > 0 */
1673 } /* rrec->repeat_time <= t */
1674 } /* end for rrec */
1675 } /* end for subnet */
1678 /****************************************************************************
1679 Create an fd_set containing all the sockets in the subnet structures,
1680 plus the broadcast sockets.
1681 ***************************************************************************/
1683 struct socket_attributes
{
1684 enum packet_type type
;
1688 static bool create_listen_pollfds(struct pollfd
**pfds
,
1689 struct socket_attributes
**pattrs
,
1692 struct subnet_record
*subrec
= NULL
;
1696 struct socket_attributes
*attrs
;
1698 /* The ClientNMB and ClientDGRAM sockets */
1701 /* Check that we can add all the fd's we need. */
1702 for (subrec
= FIRST_SUBNET
;
1704 subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
1705 if (subrec
->nmb_sock
!= -1) {
1708 if (subrec
->dgram_sock
!= -1) {
1711 if (subrec
->nmb_bcast
!= -1) {
1714 if (subrec
->dgram_bcast
!= -1) {
1719 fds
= talloc_zero_array(NULL
, struct pollfd
, count
);
1721 DEBUG(1, ("create_listen_pollfds: malloc fail for fds. "
1722 "size %d\n", count
));
1726 attrs
= talloc_array(NULL
, struct socket_attributes
, count
);
1728 DEBUG(1, ("create_listen_pollfds: malloc fail for attrs. "
1729 "size %d\n", count
));
1736 fds
[num
].fd
= ClientNMB
;
1737 attrs
[num
].type
= NMB_PACKET
;
1738 attrs
[num
].broadcast
= false;
1741 fds
[num
].fd
= ClientDGRAM
;
1742 attrs
[num
].type
= DGRAM_PACKET
;
1743 attrs
[num
].broadcast
= false;
1746 for (subrec
= FIRST_SUBNET
; subrec
; subrec
= NEXT_SUBNET_EXCLUDING_UNICAST(subrec
)) {
1748 if (subrec
->nmb_sock
!= -1) {
1749 fds
[num
].fd
= subrec
->nmb_sock
;
1750 attrs
[num
].type
= NMB_PACKET
;
1751 attrs
[num
].broadcast
= false;
1755 if (subrec
->nmb_bcast
!= -1) {
1756 fds
[num
].fd
= subrec
->nmb_bcast
;
1757 attrs
[num
].type
= NMB_PACKET
;
1758 attrs
[num
].broadcast
= true;
1762 if (subrec
->dgram_sock
!= -1) {
1763 fds
[num
].fd
= subrec
->dgram_sock
;
1764 attrs
[num
].type
= DGRAM_PACKET
;
1765 attrs
[num
].broadcast
= false;
1769 if (subrec
->dgram_bcast
!= -1) {
1770 fds
[num
].fd
= subrec
->dgram_bcast
;
1771 attrs
[num
].type
= DGRAM_PACKET
;
1772 attrs
[num
].broadcast
= true;
1780 TALLOC_FREE(*pattrs
);
1783 *pnum_sockets
= count
;
1788 /****************************************************************************
1789 List of packets we're processing this select.
1790 ***************************************************************************/
1792 struct processed_packet
{
1793 struct processed_packet
*next
;
1794 struct processed_packet
*prev
;
1795 enum packet_type packet_type
;
1800 /****************************************************************************
1801 Have we seen this before ?
1802 ***************************************************************************/
1804 static bool is_processed_packet(struct processed_packet
*processed_packet_list
,
1805 struct packet_struct
*packet
)
1807 struct processed_packet
*p
= NULL
;
1809 for (p
= processed_packet_list
; p
; p
= p
->next
) {
1810 if (ip_equal_v4(p
->ip
, packet
->ip
) && p
->packet_type
== packet
->packet_type
) {
1811 if ((p
->packet_type
== NMB_PACKET
) &&
1813 packet
->packet
.nmb
.header
.name_trn_id
)) {
1815 } else if ((p
->packet_type
== DGRAM_PACKET
) &&
1817 packet
->packet
.dgram
.header
.dgm_id
)) {
1825 /****************************************************************************
1826 Keep a list of what we've seen before.
1827 ***************************************************************************/
1829 static bool store_processed_packet(struct processed_packet
**pp_processed_packet_list
,
1830 struct packet_struct
*packet
)
1832 struct processed_packet
*p
= SMB_MALLOC_P(struct processed_packet
);
1836 p
->packet_type
= packet
->packet_type
;
1838 if (packet
->packet_type
== NMB_PACKET
) {
1839 p
->packet_id
= packet
->packet
.nmb
.header
.name_trn_id
;
1840 } else if (packet
->packet_type
== DGRAM_PACKET
) {
1841 p
->packet_id
= packet
->packet
.dgram
.header
.dgm_id
;
1847 DLIST_ADD(*pp_processed_packet_list
, p
);
1851 /****************************************************************************
1852 Throw away what we've seen before.
1853 ***************************************************************************/
1855 static void free_processed_packet_list(struct processed_packet
**pp_processed_packet_list
)
1857 struct processed_packet
*p
= NULL
, *next
= NULL
;
1859 for (p
= *pp_processed_packet_list
; p
; p
= next
) {
1861 DLIST_REMOVE(*pp_processed_packet_list
, p
);
1866 /****************************************************************************
1867 Listens for NMB or DGRAM packets, and queues them.
1868 return True if the socket is dead
1869 ***************************************************************************/
1871 bool listen_for_packets(struct messaging_context
*msg
, bool run_election
)
1873 static struct pollfd
*fds
= NULL
;
1874 static struct socket_attributes
*attrs
= NULL
;
1875 static int listen_number
= 0;
1883 int dns_pollidx
= -1;
1885 struct processed_packet
*processed_packet_list
= NULL
;
1887 if ((fds
== NULL
) || rescan_listen_set
) {
1888 if (create_listen_pollfds(&fds
, &attrs
, &listen_number
)) {
1889 DEBUG(0,("listen_for_packets: Fatal error. unable to create listen set. Exiting.\n"));
1892 rescan_listen_set
= False
;
1896 * "fds" can be enlarged by event_add_to_poll_args
1897 * below. Shrink it again to what was given to us by
1898 * create_listen_pollfds.
1901 fds
= talloc_realloc(NULL
, fds
, struct pollfd
, listen_number
);
1905 num_sockets
= listen_number
;
1908 dns_fd
= asyncdns_fd();
1910 fds
= talloc_realloc(NULL
, fds
, struct pollfd
, num_sockets
+1);
1914 dns_pollidx
= num_sockets
;
1915 fds
[num_sockets
].fd
= dns_fd
;
1920 for (i
=0; i
<num_sockets
; i
++) {
1921 fds
[i
].events
= POLLIN
|POLLHUP
;
1924 /* Process a signal and timer events now... */
1925 if (run_events_poll(nmbd_event_context(), 0, NULL
, 0)) {
1930 * During elections and when expecting a netbios response packet we
1931 * need to send election packets at tighter intervals.
1932 * Ideally it needs to be the interval (in ms) between time now and
1933 * the time we are expecting the next netbios packet.
1936 timeout
= ((run_election
||num_response_packets
)
1937 ? 1 : NMBD_SELECT_LOOP
) * 1000;
1939 event_add_to_poll_args(nmbd_event_context(), NULL
,
1940 &fds
, &num_sockets
, &timeout
);
1942 pollrtn
= poll(fds
, num_sockets
, timeout
);
1944 if (run_events_poll(nmbd_event_context(), pollrtn
, fds
, num_sockets
)) {
1948 if (pollrtn
== -1) {
1953 if ((dns_fd
!= -1) && (dns_pollidx
!= -1) &&
1954 (fds
[dns_pollidx
].revents
& (POLLIN
|POLLHUP
|POLLERR
))) {
1959 for(i
= 0; i
< listen_number
; i
++) {
1960 enum packet_type packet_type
;
1961 struct packet_struct
*packet
;
1962 const char *packet_name
;
1966 if ((fds
[i
].revents
& (POLLIN
|POLLHUP
|POLLERR
)) == 0) {
1970 if (attrs
[i
].type
== NMB_PACKET
) {
1972 packet_type
= NMB_PACKET
;
1973 packet_name
= "nmb";
1974 client_fd
= ClientNMB
;
1975 client_port
= global_nmb_port
;
1978 packet_type
= DGRAM_PACKET
;
1979 packet_name
= "dgram";
1980 client_fd
= ClientDGRAM
;
1981 client_port
= DGRAM_PORT
;
1984 packet
= read_packet(fds
[i
].fd
, packet_type
);
1990 * If we got a packet on the broadcast socket and interfaces
1991 * only is set then check it came from one of our local nets.
1993 if (lp_bind_interfaces_only() &&
1994 (fds
[i
].fd
== client_fd
) &&
1995 (!is_local_net_v4(packet
->ip
))) {
1996 DEBUG(7,("discarding %s packet sent to broadcast socket from %s:%d\n",
1997 packet_name
, inet_ntoa(packet
->ip
), packet
->port
));
1998 free_packet(packet
);
2003 if ((is_loopback_ip_v4(packet
->ip
) || ismyip_v4(packet
->ip
)) &&
2004 packet
->port
== client_port
)
2006 if (client_port
== DGRAM_PORT
) {
2007 DEBUG(7,("discarding own dgram packet from %s:%d\n",
2008 inet_ntoa(packet
->ip
),packet
->port
));
2009 free_packet(packet
);
2013 if (packet
->packet
.nmb
.header
.nm_flags
.bcast
) {
2014 DEBUG(7,("discarding own nmb bcast packet from %s:%d\n",
2015 inet_ntoa(packet
->ip
),packet
->port
));
2016 free_packet(packet
);
2022 if (is_processed_packet(processed_packet_list
, packet
)) {
2023 DEBUG(7,("discarding duplicate packet from %s:%d\n",
2024 inet_ntoa(packet
->ip
),packet
->port
));
2025 free_packet(packet
);
2029 store_processed_packet(&processed_packet_list
, packet
);
2031 if (attrs
[i
].broadcast
) {
2032 /* this is a broadcast socket */
2033 packet
->send_fd
= fds
[i
-1].fd
;
2035 /* this is already a unicast socket */
2036 packet
->send_fd
= fds
[i
].fd
;
2039 queue_packet(packet
);
2042 free_processed_packet_list(&processed_packet_list
);
2046 /****************************************************************************
2047 Construct and send a netbios DGRAM.
2048 **************************************************************************/
2050 bool send_mailslot(bool unique
, const char *mailslot
,char *buf
, size_t len
,
2051 const char *srcname
, int src_type
,
2052 const char *dstname
, int dest_type
,
2053 struct in_addr dest_ip
,struct in_addr src_ip
,
2056 bool loopback_this_packet
= False
;
2057 struct packet_struct p
;
2058 struct dgram_packet
*dgram
= &p
.packet
.dgram
;
2062 memset((char *)&p
,'\0',sizeof(p
));
2064 if(ismyip_v4(dest_ip
) && (dest_port
== DGRAM_PORT
)) /* Only if to DGRAM_PORT */
2065 loopback_this_packet
= True
;
2067 /* generate_name_trn_id(); */ /* Not used, so gone, RJS */
2069 /* DIRECT GROUP or UNIQUE datagram. */
2070 dgram
->header
.msg_type
= unique
? 0x10 : 0x11;
2071 dgram
->header
.flags
.node_type
= M_NODE
;
2072 dgram
->header
.flags
.first
= True
;
2073 dgram
->header
.flags
.more
= False
;
2074 dgram
->header
.dgm_id
= generate_name_trn_id();
2075 dgram
->header
.source_ip
= src_ip
;
2076 dgram
->header
.source_port
= DGRAM_PORT
;
2077 dgram
->header
.dgm_length
= 0; /* Let build_dgram() handle this. */
2078 dgram
->header
.packet_offset
= 0;
2080 make_nmb_name(&dgram
->source_name
,srcname
,src_type
);
2081 make_nmb_name(&dgram
->dest_name
,dstname
,dest_type
);
2083 ptr
= &dgram
->data
[0];
2085 /* Setup the smb part. */
2086 ptr
-= 4; /* XXX Ugliness because of handling of tcp SMB length. */
2089 if (smb_size
+ 17*2 + strlen(mailslot
) + 1 + len
> MAX_DGRAM_SIZE
) {
2090 DEBUG(0, ("send_mailslot: Cannot write beyond end of packet\n"));
2094 cli_set_message(ptr
,17,strlen(mailslot
) + 1 + len
,True
);
2097 SCVAL(ptr
,smb_com
,SMBtrans
);
2098 SSVAL(ptr
,smb_vwv1
,len
);
2099 SSVAL(ptr
,smb_vwv11
,len
);
2100 SSVAL(ptr
,smb_vwv12
,70 + strlen(mailslot
));
2101 SSVAL(ptr
,smb_vwv13
,3);
2102 SSVAL(ptr
,smb_vwv14
,1);
2103 SSVAL(ptr
,smb_vwv15
,1);
2104 SSVAL(ptr
,smb_vwv16
,2);
2106 strlcpy_base(p2
, mailslot
, dgram
->data
, sizeof(dgram
->data
));
2107 p2
= skip_string(ptr
,MAX_DGRAM_SIZE
,p2
);
2109 if (((p2
+len
) > dgram
->data
+sizeof(dgram
->data
)) || ((p2
+len
) < p2
)) {
2110 DEBUG(0, ("send_mailslot: Cannot write beyond end of packet\n"));
2119 dgram
->datasize
= PTR_DIFF(p2
,ptr
+4); /* +4 for tcp length. */
2124 p
.send_fd
= find_subnet_mailslot_fd_for_address( src_ip
);
2125 p
.timestamp
= time(NULL
);
2126 p
.packet_type
= DGRAM_PACKET
;
2128 DEBUG(4,("send_mailslot: Sending to mailslot %s from %s IP %s ", mailslot
,
2129 nmb_namestr(&dgram
->source_name
), inet_ntoa(src_ip
)));
2130 DEBUG(4,("to %s IP %s\n", nmb_namestr(&dgram
->dest_name
), inet_ntoa(dest_ip
)));
2132 debug_browse_data(buf
, len
);
2134 if(loopback_this_packet
) {
2135 struct packet_struct
*lo_packet
= NULL
;
2136 DEBUG(5,("send_mailslot: sending packet to ourselves.\n"));
2137 if((lo_packet
= copy_packet(&p
)) == NULL
)
2139 queue_packet(lo_packet
);
2142 return(send_packet(&p
));