nbns_client.c
Go to the documentation of this file.
1 /**
2  * @file nbns_client.c
3  * @brief NBNS client (NetBIOS Name Service)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2025 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.5.4
29  **/
30 
31 //Switch to the appropriate trace level
32 #define TRACE_LEVEL NBNS_TRACE_LEVEL
33 
34 //Dependencies
35 #include "core/net.h"
36 #include "ipv4/ipv4_misc.h"
37 #include "netbios/nbns_client.h"
38 #include "netbios/nbns_common.h"
39 #include "dns/dns_debug.h"
40 #include "debug.h"
41 
42 //Check TCP/IP stack configuration
43 #if (NBNS_CLIENT_SUPPORT == ENABLED && IPV4_SUPPORT == ENABLED)
44 
45 
46 /**
47  * @brief Resolve a host name using NBNS
48  * @param[in] interface Underlying network interface
49  * @param[in] name Name of the host to be resolved
50  * @param[out] ipAddr IP address corresponding to the specified host name
51  **/
52 
54 {
55  error_t error;
56  DnsCacheEntry *entry;
57 
58 #if (NET_RTOS_SUPPORT == ENABLED)
59  systime_t delay;
60 
61  //Debug message
62  TRACE_INFO("Resolving host name %s (NBNS resolver)...\r\n", name);
63 #endif
64 
65  //Get exclusive access
67 
68  //Search the DNS cache for the specified host name
69  entry = dnsFindEntry(interface, name, HOST_TYPE_IPV4,
71 
72  //Check whether a matching entry has been found
73  if(entry != NULL)
74  {
75  //Host name already resolved?
76  if(entry->state == DNS_STATE_RESOLVED ||
77  entry->state == DNS_STATE_PERMANENT)
78  {
79  //Return the corresponding IP address
80  *ipAddr = entry->ipAddr;
81  //Successful host name resolution
82  error = NO_ERROR;
83  }
84  else if(entry->state == DNS_STATE_FAILED)
85  {
86  //The entry should be deleted since name resolution has failed
87  dnsDeleteEntry(entry);
88  //Report an error
89  error = ERROR_FAILURE;
90  }
91  else
92  {
93  //Host name resolution is in progress
94  error = ERROR_IN_PROGRESS;
95  }
96  }
97  else
98  {
99  //If no entry exists, then create a new one
100  entry = dnsCreateEntry();
101 
102  //Record the host name whose IP address is unknown
103  osStrcpy(entry->name, name);
104 
105  //Initialize DNS cache entry
106  entry->type = HOST_TYPE_IPV4;
108  entry->interface = interface;
109 
110  //Initialize retransmission counter
112  //Send NBNS query
113  error = nbnsSendQuery(entry);
114 
115  //NBNS message successfully sent?
116  if(!error)
117  {
118  //Save the time at which the query message was sent
119  entry->timestamp = osGetSystemTime();
120  //Set timeout value
123  //Decrement retransmission counter
124  entry->retransmitCount--;
125 
126  //Switch state
127  entry->state = DNS_STATE_IN_PROGRESS;
128  //Host name resolution is in progress
129  error = ERROR_IN_PROGRESS;
130  }
131  }
132 
133  //Release exclusive access
135 
136 #if (NET_RTOS_SUPPORT == ENABLED)
137  //Set default polling interval
139 
140  //Wait the host name resolution to complete
141  while(error == ERROR_IN_PROGRESS)
142  {
143  //Wait until the next polling period
144  osDelayTask(delay);
145 
146  //Get exclusive access
148 
149  //Search the DNS cache for the specified host name
150  entry = dnsFindEntry(interface, name, HOST_TYPE_IPV4,
152 
153  //Check whether a matching entry has been found
154  if(entry != NULL)
155  {
156  //Host name successfully resolved?
157  if(entry->state == DNS_STATE_RESOLVED)
158  {
159  //Return the corresponding IP address
160  *ipAddr = entry->ipAddr;
161  //Successful host name resolution
162  error = NO_ERROR;
163  }
164  else if(entry->state == DNS_STATE_FAILED)
165  {
166  //The entry should be deleted since name resolution has failed
167  dnsDeleteEntry(entry);
168  //Report an error
169  error = ERROR_FAILURE;
170  }
171  else
172  {
173  //Host name resolution is in progress
174  }
175  }
176  else
177  {
178  //Host name resolution failed
179  error = ERROR_FAILURE;
180  }
181 
182  //Release exclusive access
184 
185  //Backoff support for less aggressive polling
186  delay = MIN(delay * 2, DNS_CACHE_MAX_POLLING_INTERVAL);
187  }
188 
189  //Check status code
190  if(error)
191  {
192  //Failed to resolve host name
193  TRACE_INFO("Host name resolution failed!\r\n");
194  }
195  else
196  {
197  //Successful host name resolution
198  TRACE_INFO("Host name resolved to %s...\r\n", ipAddrToString(ipAddr, NULL));
199  }
200 #endif
201 
202  //Return status code
203  return error;
204 }
205 
206 
207 /**
208  * @brief Send a NBNS query message
209  * @param[in] entry Pointer to a valid DNS cache entry
210  * @return Error code
211  **/
212 
214 {
215  error_t error;
216  size_t length;
217  size_t offset;
218  NetBuffer *buffer;
220  DnsQuestion *dnsQuestion;
222  NetTxAncillary ancillary;
223 
224  //Allocate a memory buffer to hold the NBNS query message
225  buffer = udpAllocBuffer(DNS_MESSAGE_MAX_SIZE, &offset);
226  //Failed to allocate buffer?
227  if(buffer == NULL)
228  return ERROR_OUT_OF_MEMORY;
229 
230  //Point to the NBNS header
231  message = netBufferAt(buffer, offset, 0);
232 
233  //Format NBNS query message
234  message->id = htons(entry->id);
235  message->qr = 0;
236  message->opcode = DNS_OPCODE_QUERY;
237  message->aa = 0;
238  message->tc = 0;
239  message->rd = 0;
240  message->ra = 0;
241  message->z = 0;
242  message->b = 1;
243  message->rcode = DNS_RCODE_NOERROR;
244 
245  //The NBNS query contains one question
246  message->qdcount = HTONS(1);
247  message->ancount = 0;
248  message->nscount = 0;
249  message->arcount = 0;
250 
251  //Length of the NBNS query message
252  length = sizeof(DnsHeader);
253 
254  //Encode the NetBIOS name
255  length += nbnsEncodeName(entry->name, message->questions);
256 
257  //Point to the corresponding question structure
258  dnsQuestion = DNS_GET_QUESTION(message, length);
259 
260  //Fill in question structure
261  dnsQuestion->qtype = HTONS(DNS_RR_TYPE_NB);
262  dnsQuestion->qclass = HTONS(DNS_RR_CLASS_IN);
263 
264  //Update the length of the NBNS query message
265  length += sizeof(DnsQuestion);
266 
267  //Adjust the length of the multi-part buffer
268  netBufferSetLength(buffer, offset + length);
269 
270  //Debug message
271  TRACE_INFO("Sending NBNS message (%" PRIuSIZE " bytes)...\r\n", length);
272  //Dump message
274 
275  //NBNS only supports IPv4
276  destIpAddr.length = sizeof(Ipv4Addr);
277 
278  //The destination address is the broadcast address
279  error = ipv4GetBroadcastAddr(entry->interface, &destIpAddr.ipv4Addr);
280 
281  //Check status code
282  if(!error)
283  {
284  //Additional options can be passed to the stack along with the packet
285  ancillary = NET_DEFAULT_TX_ANCILLARY;
286 
287  //A request packet is always sent to the well known port 137
288  error = udpSendBuffer(entry->interface, NULL, NBNS_PORT, &destIpAddr,
289  NBNS_PORT, buffer, offset, &ancillary);
290  }
291 
292  //Free previously allocated memory
293  netBufferFree(buffer);
294 
295  //Return status code
296  return error;
297 }
298 
299 
300 /**
301  * @brief Process NBNS response message
302  * @param[in] interface Underlying network interface
303  * @param[in] pseudoHeader UDP pseudo header
304  * @param[in] udpHeader UDP header
305  * @param[in] message Pointer to the NBNS response message
306  * @param[in] length Length of the message
307  **/
308 
309 void nbnsProcessResponse(NetInterface *interface, const Ipv4PseudoHeader *pseudoHeader,
310  const UdpHeader *udpHeader, const NbnsHeader *message, size_t length)
311 {
312  uint_t i;
313  size_t pos;
314  DnsCacheEntry *entry;
315  DnsResourceRecord *record;
316  NbnsAddrEntry *addrEntry;
317 
318  //The NBNS response shall contain one answer
319  if(ntohs(message->qdcount) != 0 && ntohs(message->ancount) != 1)
320  return;
321 
322  //Parse NetBIOS name
323  pos = nbnsParseName(message, length, sizeof(DnsHeader), NULL);
324  //Invalid name?
325  if(!pos)
326  return;
327 
328  //Point to the associated resource record
329  record = DNS_GET_RESOURCE_RECORD(message, pos);
330  //Point to the resource data
331  pos += sizeof(DnsResourceRecord);
332 
333  //Make sure the resource record is valid
334  if(pos > length)
335  return;
336  if((pos + ntohs(record->rdlength)) > length)
337  return;
338 
339  //Check the class and the type of the resource record
340  if(ntohs(record->rclass) != DNS_RR_CLASS_IN)
341  return;
342  if(ntohs(record->rtype) != DNS_RR_TYPE_NB)
343  return;
344 
345  //Verify the length of the data field
346  if(ntohs(record->rdlength) < sizeof(NbnsAddrEntry))
347  return;
348 
349  //Loop through DNS cache entries
350  for(i = 0; i < DNS_CACHE_SIZE; i++)
351  {
352  //Point to the current entry
353  entry = &dnsCache[i];
354 
355  //NBNS name resolution in progress?
356  if(entry->state == DNS_STATE_IN_PROGRESS &&
357  entry->protocol == HOST_NAME_RESOLVER_NBNS &&
358  entry->type == HOST_TYPE_IPV4)
359  {
360  //Compare identifiers
361  if(entry->id == ntohs(message->id))
362  {
363  //Compare NetBIOS names
364  if(nbnsCompareName(message, length, sizeof(DnsHeader), entry->name))
365  {
366  //Point to the address entry array
367  addrEntry = (NbnsAddrEntry *) record->rdata;
368  //Copy the IPv4 address
369  entry->ipAddr.length = sizeof(Ipv4Addr);
370  entry->ipAddr.ipv4Addr = addrEntry->addr;
371 
372  //Save current time
373  entry->timestamp = osGetSystemTime();
374  //Save TTL value
375  entry->timeout = ntohl(record->ttl) * 1000;
376  //Limit the lifetime of the NBNS cache entries
377  entry->timeout = MIN(entry->timeout, NBNS_MAX_LIFETIME);
378 
379  //Host name successfully resolved
380  entry->state = DNS_STATE_RESOLVED;
381  }
382  }
383  }
384  }
385 }
386 
387 #endif
#define htons(value)
Definition: cpu_endian.h:413
@ DNS_STATE_PERMANENT
Definition: dns_cache.h:89
HostType type
IPv4 or IPv6 host?
Definition: dns_cache.h:100
const NetTxAncillary NET_DEFAULT_TX_ANCILLARY
Definition: net_misc.c:72
#define netMutex
Definition: net_legacy.h:195
size_t nbnsParseName(const NbnsHeader *message, size_t length, size_t pos, char_t *dest)
Decode a NetBIOS name.
Definition: nbns_common.c:222
IP network address.
Definition: ip.h:90
@ DNS_OPCODE_QUERY
Query.
Definition: dns_common.h:81
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
uint8_t message[]
Definition: chap.h:154
NbnsAddrEntry
Definition: nbns_common.h:142
systime_t timeout
Retransmission timeout.
Definition: dns_cache.h:109
void nbnsProcessResponse(NetInterface *interface, const Ipv4PseudoHeader *pseudoHeader, const UdpHeader *udpHeader, const NbnsHeader *message, size_t length)
Process NBNS response message.
Definition: nbns_client.c:309
char_t * ipAddrToString(const IpAddr *ipAddr, char_t *str)
Convert a binary IP address to a string representation.
Definition: ip.c:804
@ ERROR_OUT_OF_MEMORY
Definition: error.h:63
#define NBNS_MAX_LIFETIME
Definition: nbns_client.h:72
#define NBNS_CLIENT_MAX_RETRIES
Definition: nbns_client.h:51
HostnameResolver protocol
Name resolution protocol.
Definition: dns_cache.h:101
@ DNS_RR_CLASS_IN
Internet.
Definition: dns_common.h:124
char_t name[]
DnsHeader
Definition: dns_common.h:202
#define NBNS_PORT
Definition: nbns_common.h:46
IpAddr ipAddr
IP address.
Definition: dns_cache.h:107
uint32_t Ipv4Addr
IPv4 network address.
Definition: ipv4.h:298
error_t nbnsSendQuery(DnsCacheEntry *entry)
Send a NBNS query message.
Definition: nbns_client.c:213
uint16_t id
Identifier used to match queries and responses.
Definition: dns_cache.h:105
@ DNS_RCODE_NOERROR
No error.
Definition: dns_common.h:95
@ ERROR_IN_PROGRESS
Definition: error.h:214
Helper functions for IPv4.
NbnsHeader
Definition: nbns_common.h:131
@ DNS_RR_TYPE_NB
NetBIOS name.
Definition: dns_common.h:148
error_t
Error codes.
Definition: error.h:43
#define DNS_GET_QUESTION(message, offset)
Definition: dns_common.h:63
char_t name[DNS_MAX_NAME_LEN+1]
Domain name.
Definition: dns_cache.h:106
systime_t timestamp
Timestamp to manage entry lifetime.
Definition: dns_cache.h:108
#define DNS_GET_RESOURCE_RECORD(message, offset)
Definition: dns_common.h:64
Definitions common to NBNS client and NBNS responder.
NBNS client (NetBIOS Name Service)
@ ERROR_FAILURE
Generic error code.
Definition: error.h:45
@ DNS_STATE_FAILED
Definition: dns_cache.h:88
#define NBNS_CLIENT_INIT_TIMEOUT
Definition: nbns_client.h:58
#define NetInterface
Definition: net.h:36
void netBufferFree(NetBuffer *buffer)
Dispose a multi-part buffer.
Definition: net_mem.c:282
DNS cache entry.
Definition: dns_cache.h:98
error_t udpSendBuffer(NetInterface *interface, const IpAddr *srcIpAddr, uint16_t srcPort, const IpAddr *destIpAddr, uint16_t destPort, NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a UDP datagram.
Definition: udp.c:658
DnsCacheEntry * dnsCreateEntry(void)
Create a new entry in the DNS cache.
Definition: dns_cache.c:103
#define NetTxAncillary
Definition: net_misc.h:36
systime_t maxTimeout
Maximum retransmission timeout.
Definition: dns_cache.h:110
#define Ipv4PseudoHeader
Definition: ipv4.h:39
#define TRACE_INFO(...)
Definition: debug.h:105
uint8_t length
Definition: tcp.h:375
void dnsDumpMessage(const DnsHeader *message, size_t length)
Dump DNS message for debugging purpose.
Definition: dns_debug.c:52
#define MIN(a, b)
Definition: os_port.h:63
NetBuffer * udpAllocBuffer(size_t length, size_t *offset)
Allocate a buffer to hold a UDP packet.
Definition: udp.c:948
size_t length
Definition: ip.h:91
@ HOST_TYPE_IPV4
Definition: socket.h:217
UdpHeader
Definition: udp.h:85
size_t nbnsEncodeName(const char_t *src, uint8_t *dest)
Encode a NetBIOS name.
Definition: nbns_common.c:148
#define DNS_CACHE_INIT_POLLING_INTERVAL
Definition: dns_cache.h:61
uint32_t systime_t
System time.
#define ntohs(value)
Definition: cpu_endian.h:421
char char_t
Definition: compiler_port.h:55
DnsCacheEntry * dnsFindEntry(NetInterface *interface, const char_t *name, HostType type, HostnameResolver protocol)
Search the DNS cache for a given domain name.
Definition: dns_cache.c:184
Ipv4Addr ipv4Addr
Definition: ip.h:95
#define HTONS(value)
Definition: cpu_endian.h:410
@ DNS_STATE_IN_PROGRESS
Definition: dns_cache.h:86
NetInterface * interface
Underlying network interface.
Definition: dns_cache.h:102
void osAcquireMutex(OsMutex *mutex)
Acquire ownership of the specified mutex object.
#define DNS_CACHE_SIZE
Definition: dns_cache.h:47
void osReleaseMutex(OsMutex *mutex)
Release ownership of the specified mutex object.
@ DNS_STATE_RESOLVED
Definition: dns_cache.h:87
error_t ipv4GetBroadcastAddr(NetInterface *interface, Ipv4Addr *addr)
Get IPv4 broadcast address.
Definition: ipv4_misc.c:754
#define DNS_MESSAGE_MAX_SIZE
Definition: dns_common.h:45
@ HOST_NAME_RESOLVER_NBNS
Definition: socket.h:231
error_t netBufferSetLength(NetBuffer *buffer, size_t length)
Adjust the length of a multi-part buffer.
Definition: net_mem.c:322
DnsQuestion
Definition: dns_common.h:213
void dnsDeleteEntry(DnsCacheEntry *entry)
Delete the specified DNS cache entry.
Definition: dns_cache.c:153
void osDelayTask(systime_t delay)
Delay routine.
void * netBufferAt(const NetBuffer *buffer, size_t offset, size_t length)
Returns a pointer to a data segment.
Definition: net_mem.c:418
Ipv4Addr ipAddr
Definition: ipcp.h:105
DnsCacheEntry dnsCache[DNS_CACHE_SIZE]
Definition: dns_cache.c:51
DnsState state
Entry state.
Definition: dns_cache.h:99
uint_t retransmitCount
Retransmission counter.
Definition: dns_cache.h:111
#define PRIuSIZE
unsigned int uint_t
Definition: compiler_port.h:57
TCP/IP stack core.
DnsResourceRecord
Definition: dns_common.h:227
Data logging functions for debugging purpose (DNS)
#define osStrcpy(s1, s2)
Definition: os_port.h:210
#define DNS_CACHE_MAX_POLLING_INTERVAL
Definition: dns_cache.h:68
#define ntohl(value)
Definition: cpu_endian.h:422
@ NO_ERROR
Success.
Definition: error.h:44
Debugging facilities.
error_t nbnsResolve(NetInterface *interface, const char_t *name, IpAddr *ipAddr)
Resolve a host name using NBNS.
Definition: nbns_client.c:53
bool_t nbnsCompareName(const NbnsHeader *message, size_t length, size_t pos, const char_t *name)
Compare NetBIOS names.
Definition: nbns_common.c:316
systime_t osGetSystemTime(void)
Retrieve system time.
#define NBNS_CLIENT_MAX_TIMEOUT
Definition: nbns_client.h:65
Ipv4Addr destIpAddr
Definition: ipcp.h:80