4 * Copyright (c) 2008 Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
5 * Copyright (c) 2009 Robin Getz <rgetz@blackfin.uclinux.org>
7 * This is a simple DNS implementation for U-Boot. It will use the first IP
8 * in the DNS response as net_server_ip. This can then be used for any other
9 * network related activities.
11 * The packet handling is partly based on TADNS, original copyrights
17 * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
19 * "THE BEER-WARE LICENSE" (Revision 42):
20 * Sergey Lyubka wrote this file. As long as you retain this notice you
21 * can do whatever you want with this stuff. If we meet some day, and you think
22 * this stuff is worth it, you can buy me a beer in return.
29 #include <asm/unaligned.h>
33 char *net_dns_resolve; /* The host to resolve */
34 char *net_dns_env_var; /* The envvar to store the answer in */
36 static int dns_our_port;
38 static void dns_send(void)
40 struct header *header;
45 enum dns_query_type qtype = DNS_A_RECORD;
47 name = net_dns_resolve;
48 pkt = (uchar *)(net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE);
51 /* Prepare DNS packet header */
52 header = (struct header *)pkt;
54 header->flags = htons(0x100); /* standard query */
55 header->nqueries = htons(1); /* Just one query */
61 name_len = strlen(name);
62 p = (uchar *)&header->data; /* For encoding host name into packet */
65 s = strchr(name, '.');
69 n = s - name; /* Chunk length */
70 *p++ = n; /* Copy length */
71 memcpy(p, name, n); /* Copy chunk */
81 *p++ = 0; /* Mark end of host name */
82 *p++ = 0; /* Some servers require double null */
83 *p++ = (unsigned char) qtype; /* Query Type */
86 *p++ = 1; /* Class: inet, 0x0001 */
88 n = p - pkt; /* Total packet length */
89 debug("Packet size %d\n", n);
91 dns_our_port = random_port();
93 net_send_udp_packet(net_server_ethaddr, net_dns_server,
94 DNS_SERVICE_PORT, dns_our_port, n);
95 debug("DNS packet sent\n");
98 static void dns_timeout_handler(void)
101 net_set_state(NETLOOP_FAIL);
104 static void dns_handler(uchar *pkt, unsigned dest, struct in_addr sip,
105 unsigned src, unsigned len)
107 struct header *header;
108 const unsigned char *p, *e, *s;
110 int found, stop, dlen;
112 struct in_addr ip_addr;
115 debug("%s\n", __func__);
116 if (dest != dns_our_port)
119 for (i = 0; i < len; i += 4)
120 debug("0x%p - 0x%.2x 0x%.2x 0x%.2x 0x%.2x\n",
121 pkt+i, pkt[i], pkt[i+1], pkt[i+2], pkt[i+3]);
123 /* We sent one query. We want to have a single answer: */
124 header = (struct header *)pkt;
125 if (ntohs(header->nqueries) != 1)
128 /* Received 0 answers */
129 if (header->nanswers == 0) {
130 puts("DNS: host not found\n");
131 net_set_state(NETLOOP_SUCCESS);
136 s = &header->data[0];
138 for (p = s; p < e && *p != '\0'; p++)
141 /* We sent query class 1, query type 1 */
142 if (&p[5] > e || get_unaligned_be16(p+1) != DNS_A_RECORD) {
143 puts("DNS: response was not an A record\n");
144 net_set_state(NETLOOP_SUCCESS);
148 /* Go to the first answer section */
151 /* Loop through the answers, we want A type answer */
152 for (found = stop = 0; !stop && &p[12] < e; ) {
153 /* Skip possible name in CNAME answer */
155 while (*p && &p[12] < e)
159 debug("Name (Offset in header): %d\n", p[1]);
161 type = get_unaligned_be16(p+2);
162 debug("type = %d\n", type);
163 if (type == DNS_CNAME_RECORD) {
164 /* CNAME answer. shift to the next section */
165 debug("Found canonical name\n");
166 dlen = get_unaligned_be16(p+10);
167 debug("dlen = %d\n", dlen);
169 } else if (type == DNS_A_RECORD) {
170 debug("Found A-record\n");
174 debug("Unknown type\n");
179 if (found && &p[12] < e) {
180 dlen = get_unaligned_be16(p+10);
182 memcpy(&ip_addr, p, 4);
185 ip_to_string(ip_addr, ip_str);
186 printf("%s\n", ip_str);
188 env_set(net_dns_env_var, ip_str);
190 puts("server responded with invalid IP number\n");
194 net_set_state(NETLOOP_SUCCESS);
199 debug("%s\n", __func__);
201 net_set_timeout_handler(DNS_TIMEOUT, dns_timeout_handler);
202 net_set_udp_handler(dns_handler);
204 /* Clear a previous MAC address, the server IP might have changed. */
205 memset(net_server_ethaddr, 0, sizeof(net_server_ethaddr));