]>
Commit | Line | Data |
---|---|---|
2d966958 WD |
1 | /* |
2 | * Copied from Linux Monitor (LiMon) - Networking. | |
3 | * | |
4 | * Copyright 1994 - 2000 Neil Russell. | |
5 | * (See License) | |
6 | * Copyright 2000 Roland Borde | |
7 | * Copyright 2000 Paolo Scaffardi | |
8 | * Copyright 2000-2002 Wolfgang Denk, [email protected] | |
2ea91039 | 9 | * SPDX-License-Identifier: GPL-2.0 |
2d966958 WD |
10 | */ |
11 | ||
12 | /* | |
13 | * General Desription: | |
14 | * | |
15 | * The user interface supports commands for BOOTP, RARP, and TFTP. | |
16 | * Also, we support ARP internally. Depending on available data, | |
17 | * these interact as follows: | |
18 | * | |
19 | * BOOTP: | |
20 | * | |
21 | * Prerequisites: - own ethernet address | |
22 | * We want: - own IP address | |
23 | * - TFTP server IP address | |
24 | * - name of bootfile | |
25 | * Next step: ARP | |
26 | * | |
d22c338e JH |
27 | * LINK_LOCAL: |
28 | * | |
29 | * Prerequisites: - own ethernet address | |
30 | * We want: - own IP address | |
31 | * Next step: ARP | |
32 | * | |
2d966958 WD |
33 | * RARP: |
34 | * | |
35 | * Prerequisites: - own ethernet address | |
36 | * We want: - own IP address | |
37 | * - TFTP server IP address | |
38 | * Next step: ARP | |
39 | * | |
40 | * ARP: | |
41 | * | |
42 | * Prerequisites: - own ethernet address | |
43 | * - own IP address | |
44 | * - TFTP server IP address | |
45 | * We want: - TFTP server ethernet address | |
46 | * Next step: TFTP | |
47 | * | |
48 | * DHCP: | |
49 | * | |
b2f50807 WD |
50 | * Prerequisites: - own ethernet address |
51 | * We want: - IP, Netmask, ServerIP, Gateway IP | |
52 | * - bootfilename, lease time | |
53 | * Next step: - TFTP | |
2d966958 WD |
54 | * |
55 | * TFTP: | |
56 | * | |
57 | * Prerequisites: - own ethernet address | |
58 | * - own IP address | |
59 | * - TFTP server IP address | |
60 | * - TFTP server ethernet address | |
61 | * - name of bootfile (if unknown, we use a default name | |
62 | * derived from our own IP address) | |
63 | * We want: - load the boot file | |
64 | * Next step: none | |
cbd8a35c WD |
65 | * |
66 | * NFS: | |
67 | * | |
68 | * Prerequisites: - own ethernet address | |
69 | * - own IP address | |
70 | * - name of bootfile (if unknown, we use a default name | |
71 | * derived from our own IP address) | |
72 | * We want: - load the boot file | |
73 | * Next step: none | |
ea287deb WD |
74 | * |
75 | * SNTP: | |
76 | * | |
b2f50807 | 77 | * Prerequisites: - own ethernet address |
ea287deb WD |
78 | * - own IP address |
79 | * We want: - network time | |
80 | * Next step: none | |
2d966958 WD |
81 | */ |
82 | ||
83 | ||
84 | #include <common.h> | |
2d966958 | 85 | #include <command.h> |
24b852a7 | 86 | #include <console.h> |
a9f51c9b | 87 | #include <environment.h> |
60304592 | 88 | #include <errno.h> |
2d966958 | 89 | #include <net.h> |
34696958 | 90 | #include <net/tftp.h> |
2d8d190c | 91 | #if defined(CONFIG_LED_STATUS) |
fc3e2165 | 92 | #include <miiphy.h> |
4545f4e6 | 93 | #include <status_led.h> |
fc3e2165 | 94 | #endif |
4545f4e6 JH |
95 | #include <watchdog.h> |
96 | #include <linux/compiler.h> | |
97 | #include "arp.h" | |
98 | #include "bootp.h" | |
f575ae1f | 99 | #include "cdp.h" |
1a32bf41 RG |
100 | #if defined(CONFIG_CMD_DNS) |
101 | #include "dns.h" | |
102 | #endif | |
d22c338e | 103 | #include "link_local.h" |
4545f4e6 | 104 | #include "nfs.h" |
a36b12f9 | 105 | #include "ping.h" |
4545f4e6 JH |
106 | #include "rarp.h" |
107 | #if defined(CONFIG_CMD_SNTP) | |
108 | #include "sntp.h" | |
109 | #endif | |
2d966958 | 110 | |
d87080b7 WD |
111 | DECLARE_GLOBAL_DATA_PTR; |
112 | ||
2d966958 WD |
113 | /** BOOTP EXTENTIONS **/ |
114 | ||
3e38e429 | 115 | /* Our subnet mask (0=unknown) */ |
049a95a7 | 116 | struct in_addr net_netmask; |
3e38e429 | 117 | /* Our gateways IP address */ |
049a95a7 | 118 | struct in_addr net_gateway; |
3e38e429 | 119 | /* Our DNS IP address */ |
049a95a7 | 120 | struct in_addr net_dns_server; |
1fe80d79 | 121 | #if defined(CONFIG_BOOTP_DNS2) |
3e38e429 | 122 | /* Our 2nd DNS IP address */ |
049a95a7 | 123 | struct in_addr net_dns_server2; |
3e38e429 | 124 | #endif |
2d966958 | 125 | |
53a5c424 | 126 | #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */ |
049a95a7 | 127 | struct in_addr net_mcast_addr; |
53a5c424 DU |
128 | #endif |
129 | ||
2d966958 WD |
130 | /** END OF BOOTP EXTENTIONS **/ |
131 | ||
3e38e429 | 132 | /* Our ethernet address */ |
0adb5b76 | 133 | u8 net_ethaddr[6]; |
3e38e429 | 134 | /* Boot server enet address */ |
0adb5b76 | 135 | u8 net_server_ethaddr[6]; |
3e38e429 | 136 | /* Our IP addr (0 = unknown) */ |
049a95a7 | 137 | struct in_addr net_ip; |
3e38e429 | 138 | /* Server IP addr (0 = unknown) */ |
049a95a7 | 139 | struct in_addr net_server_ip; |
3e38e429 | 140 | /* Current receive packet */ |
1203fcce | 141 | uchar *net_rx_packet; |
3e38e429 | 142 | /* Current rx packet length */ |
1203fcce | 143 | int net_rx_packet_len; |
3e38e429 | 144 | /* IP packet ID */ |
bc0571fc | 145 | static unsigned net_ip_id; |
3e38e429 | 146 | /* Ethernet bcast address */ |
0adb5b76 JH |
147 | const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
148 | const u8 net_null_ethaddr[6]; | |
0efe1bcf | 149 | #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER) |
bc0571fc | 150 | void (*push_packet)(void *, int len) = 0; |
f85b6071 | 151 | #endif |
3e38e429 | 152 | /* Network loop state */ |
22f6e99d | 153 | enum net_loop_state net_state; |
3e38e429 | 154 | /* Tried all network devices */ |
bc0571fc | 155 | int net_restart_wrap; |
3e38e429 | 156 | /* Network loop restarted */ |
bc0571fc | 157 | static int net_restarted; |
3e38e429 | 158 | /* At least one device configured */ |
bc0571fc | 159 | static int net_dev_exists; |
2d966958 | 160 | |
6e592385 | 161 | /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */ |
3e38e429 | 162 | /* default is without VLAN */ |
4fd5055f | 163 | ushort net_our_vlan = 0xFFFF; |
3e38e429 | 164 | /* ditto */ |
4fd5055f | 165 | ushort net_native_vlan = 0xFFFF; |
a3d991bd | 166 | |
3e38e429 | 167 | /* Boot File name */ |
11a69ff8 | 168 | char net_boot_file_name[1024]; |
1411157d JH |
169 | /* The actual transferred size of the bootfile (in bytes) */ |
170 | u32 net_boot_file_size; | |
171 | /* Boot file size in blocks as reported by the DHCP server */ | |
172 | u32 net_boot_file_expected_size_in_blocks; | |
2d966958 | 173 | |
643d1ab2 | 174 | #if defined(CONFIG_CMD_SNTP) |
3e38e429 | 175 | /* NTP server IP address */ |
049a95a7 | 176 | struct in_addr net_ntp_server; |
3e38e429 | 177 | /* offset time from UTC */ |
bc0571fc | 178 | int net_ntp_time_offset; |
ea287deb WD |
179 | #endif |
180 | ||
1203fcce | 181 | static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN]; |
2a504df0 JH |
182 | /* Receive packets */ |
183 | uchar *net_rx_packets[PKTBUFSRX]; | |
ece223b5 JH |
184 | /* Current UDP RX packet handler */ |
185 | static rxhand_f *udp_packet_handler; | |
186 | /* Current ARP RX packet handler */ | |
187 | static rxhand_f *arp_packet_handler; | |
39bccd21 | 188 | #ifdef CONFIG_CMD_TFTPPUT |
ece223b5 JH |
189 | /* Current ICMP rx handler */ |
190 | static rxhand_icmp_f *packet_icmp_handler; | |
39bccd21 | 191 | #endif |
3e38e429 | 192 | /* Current timeout handler */ |
bc0571fc | 193 | static thand_f *time_handler; |
3e38e429 | 194 | /* Time base value */ |
bc0571fc | 195 | static ulong time_start; |
3e38e429 | 196 | /* Current timeout value */ |
bc0571fc | 197 | static ulong time_delta; |
3e38e429 | 198 | /* THE transmit packet */ |
1203fcce | 199 | uchar *net_tx_packet; |
2d966958 | 200 | |
e4bf0c5c | 201 | static int net_check_prereq(enum proto_t protocol); |
2d966958 | 202 | |
bc0571fc | 203 | static int net_try_count; |
67b96e87 | 204 | |
b63056d6 JL |
205 | int __maybe_unused net_busy_flag; |
206 | ||
73a8b27c WD |
207 | /**********************************************************************/ |
208 | ||
a9f51c9b JH |
209 | static int on_bootfile(const char *name, const char *value, enum env_op op, |
210 | int flags) | |
211 | { | |
fd305633 JH |
212 | if (flags & H_PROGRAMMATIC) |
213 | return 0; | |
214 | ||
a9f51c9b JH |
215 | switch (op) { |
216 | case env_op_create: | |
217 | case env_op_overwrite: | |
1411157d JH |
218 | copy_filename(net_boot_file_name, value, |
219 | sizeof(net_boot_file_name)); | |
a9f51c9b JH |
220 | break; |
221 | default: | |
222 | break; | |
223 | } | |
224 | ||
225 | return 0; | |
226 | } | |
227 | U_BOOT_ENV_CALLBACK(bootfile, on_bootfile); | |
228 | ||
fd305633 JH |
229 | static int on_ipaddr(const char *name, const char *value, enum env_op op, |
230 | int flags) | |
231 | { | |
232 | if (flags & H_PROGRAMMATIC) | |
233 | return 0; | |
234 | ||
235 | net_ip = string_to_ip(value); | |
236 | ||
237 | return 0; | |
238 | } | |
239 | U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr); | |
240 | ||
241 | static int on_gatewayip(const char *name, const char *value, enum env_op op, | |
242 | int flags) | |
243 | { | |
244 | if (flags & H_PROGRAMMATIC) | |
245 | return 0; | |
246 | ||
247 | net_gateway = string_to_ip(value); | |
248 | ||
249 | return 0; | |
250 | } | |
251 | U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip); | |
252 | ||
253 | static int on_netmask(const char *name, const char *value, enum env_op op, | |
254 | int flags) | |
255 | { | |
256 | if (flags & H_PROGRAMMATIC) | |
257 | return 0; | |
258 | ||
259 | net_netmask = string_to_ip(value); | |
260 | ||
261 | return 0; | |
262 | } | |
263 | U_BOOT_ENV_CALLBACK(netmask, on_netmask); | |
264 | ||
265 | static int on_serverip(const char *name, const char *value, enum env_op op, | |
266 | int flags) | |
267 | { | |
268 | if (flags & H_PROGRAMMATIC) | |
269 | return 0; | |
270 | ||
271 | net_server_ip = string_to_ip(value); | |
272 | ||
273 | return 0; | |
274 | } | |
275 | U_BOOT_ENV_CALLBACK(serverip, on_serverip); | |
276 | ||
277 | static int on_nvlan(const char *name, const char *value, enum env_op op, | |
278 | int flags) | |
279 | { | |
280 | if (flags & H_PROGRAMMATIC) | |
281 | return 0; | |
282 | ||
283 | net_native_vlan = string_to_vlan(value); | |
284 | ||
285 | return 0; | |
286 | } | |
287 | U_BOOT_ENV_CALLBACK(nvlan, on_nvlan); | |
288 | ||
289 | static int on_vlan(const char *name, const char *value, enum env_op op, | |
290 | int flags) | |
291 | { | |
292 | if (flags & H_PROGRAMMATIC) | |
293 | return 0; | |
294 | ||
295 | net_our_vlan = string_to_vlan(value); | |
296 | ||
297 | return 0; | |
298 | } | |
299 | U_BOOT_ENV_CALLBACK(vlan, on_vlan); | |
300 | ||
301 | #if defined(CONFIG_CMD_DNS) | |
302 | static int on_dnsip(const char *name, const char *value, enum env_op op, | |
303 | int flags) | |
304 | { | |
305 | if (flags & H_PROGRAMMATIC) | |
306 | return 0; | |
307 | ||
308 | net_dns_server = string_to_ip(value); | |
309 | ||
310 | return 0; | |
311 | } | |
312 | U_BOOT_ENV_CALLBACK(dnsip, on_dnsip); | |
313 | #endif | |
314 | ||
e4a3d57d SG |
315 | /* |
316 | * Check if autoload is enabled. If so, use either NFS or TFTP to download | |
317 | * the boot file. | |
318 | */ | |
319 | void net_auto_load(void) | |
320 | { | |
ec8a252c | 321 | #if defined(CONFIG_CMD_NFS) |
e4a3d57d SG |
322 | const char *s = getenv("autoload"); |
323 | ||
ec8a252c JH |
324 | if (s != NULL && strcmp(s, "NFS") == 0) { |
325 | /* | |
326 | * Use NFS to load the bootfile. | |
327 | */ | |
68c76a3a | 328 | nfs_start(); |
ec8a252c JH |
329 | return; |
330 | } | |
e4a3d57d | 331 | #endif |
ec8a252c JH |
332 | if (getenv_yesno("autoload") == 0) { |
333 | /* | |
334 | * Just use BOOTP/RARP to configure system; | |
335 | * Do not use TFTP to load the bootfile. | |
336 | */ | |
337 | net_set_state(NETLOOP_SUCCESS); | |
338 | return; | |
e4a3d57d | 339 | } |
8885c5fe | 340 | tftp_start(TFTPGET); |
e4a3d57d SG |
341 | } |
342 | ||
bc0571fc | 343 | static void net_init_loop(void) |
2f70c49e | 344 | { |
7315cfd9 | 345 | if (eth_get_dev()) |
0adb5b76 | 346 | memcpy(net_ethaddr, eth_get_ethaddr(), 6); |
3c172c4f | 347 | |
da95427c | 348 | return; |
2f70c49e HS |
349 | } |
350 | ||
ece223b5 JH |
351 | static void net_clear_handlers(void) |
352 | { | |
353 | net_set_udp_handler(NULL); | |
354 | net_set_arp_handler(NULL); | |
bc0571fc | 355 | net_set_timeout_handler(0, NULL); |
ece223b5 JH |
356 | } |
357 | ||
358 | static void net_cleanup_loop(void) | |
359 | { | |
360 | net_clear_handlers(); | |
361 | } | |
362 | ||
46c495d5 JH |
363 | void net_init(void) |
364 | { | |
365 | static int first_call = 1; | |
366 | ||
367 | if (first_call) { | |
368 | /* | |
369 | * Setup packet buffers, aligned correctly. | |
370 | */ | |
371 | int i; | |
372 | ||
1203fcce JH |
373 | net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1); |
374 | net_tx_packet -= (ulong)net_tx_packet % PKTALIGN; | |
2a504df0 | 375 | for (i = 0; i < PKTBUFSRX; i++) { |
1203fcce JH |
376 | net_rx_packets[i] = net_tx_packet + |
377 | (i + 1) * PKTSIZE_ALIGN; | |
2a504df0 | 378 | } |
85d25e0e | 379 | arp_init(); |
46c495d5 JH |
380 | net_clear_handlers(); |
381 | ||
382 | /* Only need to setup buffer pointers once. */ | |
383 | first_call = 0; | |
384 | } | |
385 | ||
bc0571fc | 386 | net_init_loop(); |
46c495d5 JH |
387 | } |
388 | ||
2d966958 WD |
389 | /**********************************************************************/ |
390 | /* | |
391 | * Main network processing loop. | |
392 | */ | |
393 | ||
bc0571fc | 394 | int net_loop(enum proto_t protocol) |
2d966958 | 395 | { |
60304592 | 396 | int ret = -EINVAL; |
2d966958 | 397 | |
bc0571fc JH |
398 | net_restarted = 0; |
399 | net_dev_exists = 0; | |
400 | net_try_count = 1; | |
401 | debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n"); | |
73a8b27c | 402 | |
573f14fe | 403 | bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start"); |
46c495d5 | 404 | net_init(); |
f8be7d65 | 405 | if (eth_is_on_demand_init() || protocol != NETCONS) { |
b1bf6f2c | 406 | eth_halt(); |
f8be7d65 | 407 | eth_set_current(); |
60304592 JH |
408 | ret = eth_init(); |
409 | if (ret < 0) { | |
f8be7d65 | 410 | eth_halt(); |
60304592 | 411 | return ret; |
f8be7d65 | 412 | } |
bc0571fc | 413 | } else { |
d2eaec60 | 414 | eth_init_state_only(); |
bc0571fc | 415 | } |
2d966958 | 416 | restart: |
b63056d6 JL |
417 | #ifdef CONFIG_USB_KEYBOARD |
418 | net_busy_flag = 0; | |
419 | #endif | |
22f6e99d | 420 | net_set_state(NETLOOP_CONTINUE); |
2d966958 WD |
421 | |
422 | /* | |
423 | * Start the ball rolling with the given start function. From | |
424 | * here on, this code is a state machine driven by received | |
425 | * packets and timer events. | |
426 | */ | |
bc0571fc JH |
427 | debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n"); |
428 | net_init_loop(); | |
2d966958 | 429 | |
4f63acd0 | 430 | switch (net_check_prereq(protocol)) { |
2d966958 WD |
431 | case 1: |
432 | /* network not configured */ | |
b1bf6f2c | 433 | eth_halt(); |
60304592 | 434 | return -ENODEV; |
2d966958 | 435 | |
2d966958 WD |
436 | case 2: |
437 | /* network device not configured */ | |
438 | break; | |
2d966958 WD |
439 | |
440 | case 0: | |
bc0571fc | 441 | net_dev_exists = 1; |
1411157d | 442 | net_boot_file_size = 0; |
2d966958 | 443 | switch (protocol) { |
e4bf0c5c | 444 | case TFTPGET: |
1fb7cd49 SG |
445 | #ifdef CONFIG_CMD_TFTPPUT |
446 | case TFTPPUT: | |
447 | #endif | |
2d966958 | 448 | /* always use ARP to get server ethernet address */ |
8885c5fe | 449 | tftp_start(protocol); |
2d966958 | 450 | break; |
7a83af07 LC |
451 | #ifdef CONFIG_CMD_TFTPSRV |
452 | case TFTPSRV: | |
8885c5fe | 453 | tftp_start_server(); |
7a83af07 LC |
454 | break; |
455 | #endif | |
643d1ab2 | 456 | #if defined(CONFIG_CMD_DHCP) |
2d966958 | 457 | case DHCP: |
7044c6bb | 458 | bootp_reset(); |
049a95a7 | 459 | net_ip.s_addr = 0; |
7044c6bb | 460 | dhcp_request(); /* Basically same as BOOTP */ |
2d966958 | 461 | break; |
610f2e9c | 462 | #endif |
2d966958 WD |
463 | |
464 | case BOOTP: | |
7044c6bb | 465 | bootp_reset(); |
049a95a7 | 466 | net_ip.s_addr = 0; |
7044c6bb | 467 | bootp_request(); |
2d966958 WD |
468 | break; |
469 | ||
bf6cb247 | 470 | #if defined(CONFIG_CMD_RARP) |
2d966958 | 471 | case RARP: |
698d78e5 | 472 | rarp_try = 0; |
049a95a7 | 473 | net_ip.s_addr = 0; |
698d78e5 | 474 | rarp_request(); |
2d966958 | 475 | break; |
bf6cb247 | 476 | #endif |
643d1ab2 | 477 | #if defined(CONFIG_CMD_PING) |
73a8b27c | 478 | case PING: |
a36b12f9 | 479 | ping_start(); |
73a8b27c | 480 | break; |
cbd8a35c | 481 | #endif |
643d1ab2 | 482 | #if defined(CONFIG_CMD_NFS) |
cbd8a35c | 483 | case NFS: |
68c76a3a | 484 | nfs_start(); |
cbd8a35c | 485 | break; |
a3d991bd | 486 | #endif |
643d1ab2 | 487 | #if defined(CONFIG_CMD_CDP) |
a3d991bd | 488 | case CDP: |
6aede5b7 | 489 | cdp_start(); |
a3d991bd | 490 | break; |
68ceb29e | 491 | #endif |
66c89ee3 | 492 | #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD) |
68ceb29e | 493 | case NETCONS: |
6a38a5f3 | 494 | nc_start(); |
68ceb29e | 495 | break; |
ea287deb | 496 | #endif |
643d1ab2 | 497 | #if defined(CONFIG_CMD_SNTP) |
ea287deb | 498 | case SNTP: |
38ba2558 | 499 | sntp_start(); |
ea287deb | 500 | break; |
1a32bf41 RG |
501 | #endif |
502 | #if defined(CONFIG_CMD_DNS) | |
503 | case DNS: | |
786eac5f | 504 | dns_start(); |
1a32bf41 | 505 | break; |
d22c338e JH |
506 | #endif |
507 | #if defined(CONFIG_CMD_LINK_LOCAL) | |
508 | case LINKLOCAL: | |
509 | link_local_start(); | |
510 | break; | |
73a8b27c | 511 | #endif |
2d966958 WD |
512 | default: |
513 | break; | |
514 | } | |
515 | ||
2d966958 WD |
516 | break; |
517 | } | |
518 | ||
643d1ab2 | 519 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
3e38e429 | 520 | #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \ |
2d8d190c UM |
521 | defined(CONFIG_LED_STATUS) && \ |
522 | defined(CONFIG_LED_STATUS_RED) | |
fc3e2165 | 523 | /* |
42d1f039 | 524 | * Echo the inverted link state to the fault LED. |
fc3e2165 | 525 | */ |
d3c65b01 | 526 | if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR)) |
2d8d190c | 527 | status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF); |
d3c65b01 | 528 | else |
2d8d190c | 529 | status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON); |
6d0f6bcf | 530 | #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */ |
fc3e2165 | 531 | #endif /* CONFIG_MII, ... */ |
b63056d6 JL |
532 | #ifdef CONFIG_USB_KEYBOARD |
533 | net_busy_flag = 1; | |
534 | #endif | |
2d966958 WD |
535 | |
536 | /* | |
537 | * Main packet reception loop. Loop receiving packets until | |
22f6e99d | 538 | * someone sets `net_state' to a state that terminates. |
2d966958 WD |
539 | */ |
540 | for (;;) { | |
541 | WATCHDOG_RESET(); | |
542 | #ifdef CONFIG_SHOW_ACTIVITY | |
48522bb5 | 543 | show_activity(1); |
2d966958 | 544 | #endif |
c5a75339 JH |
545 | if (arp_timeout_check() > 0) |
546 | time_start = get_timer(0); | |
547 | ||
2d966958 WD |
548 | /* |
549 | * Check the ethernet for a new packet. The ethernet | |
550 | * receive routine will process it. | |
60304592 JH |
551 | * Most drivers return the most recent packet size, but not |
552 | * errors that may have happened. | |
2d966958 | 553 | */ |
40cb90ee | 554 | eth_rx(); |
2d966958 WD |
555 | |
556 | /* | |
557 | * Abort if ctrl-c was pressed. | |
558 | */ | |
559 | if (ctrlc()) { | |
e94070c4 | 560 | /* cancel any ARP that may not have completed */ |
049a95a7 | 561 | net_arp_wait_packet_ip.s_addr = 0; |
e94070c4 | 562 | |
ece223b5 | 563 | net_cleanup_loop(); |
8bde7f77 | 564 | eth_halt(); |
f8be7d65 JH |
565 | /* Invalidate the last protocol */ |
566 | eth_set_last_protocol(BOOTP); | |
567 | ||
4f63acd0 | 568 | puts("\nAbort\n"); |
4ef8d53c JH |
569 | /* include a debug print as well incase the debug |
570 | messages are directed to stderr */ | |
bc0571fc | 571 | debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n"); |
19a4fbaa | 572 | ret = -EINTR; |
4793ee65 | 573 | goto done; |
2d966958 WD |
574 | } |
575 | ||
2d966958 WD |
576 | /* |
577 | * Check for a timeout, and run the timeout handler | |
578 | * if we have one. | |
579 | */ | |
bc0571fc JH |
580 | if (time_handler && |
581 | ((get_timer(0) - time_start) > time_delta)) { | |
2d966958 WD |
582 | thand_f *x; |
583 | ||
643d1ab2 | 584 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
4f63acd0 | 585 | #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \ |
2d8d190c UM |
586 | defined(CONFIG_LED_STATUS) && \ |
587 | defined(CONFIG_LED_STATUS_RED) | |
fc3e2165 | 588 | /* |
42d1f039 | 589 | * Echo the inverted link state to the fault LED. |
fc3e2165 | 590 | */ |
4f63acd0 | 591 | if (miiphy_link(eth_get_dev()->name, |
bc0571fc | 592 | CONFIG_SYS_FAULT_MII_ADDR)) |
2d8d190c UM |
593 | status_led_set(CONFIG_LED_STATUS_RED, |
594 | CONFIG_LED_STATUS_OFF); | |
bc0571fc | 595 | else |
2d8d190c UM |
596 | status_led_set(CONFIG_LED_STATUS_RED, |
597 | CONFIG_LED_STATUS_ON); | |
4f63acd0 | 598 | #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */ |
fc3e2165 | 599 | #endif /* CONFIG_MII, ... */ |
bc0571fc JH |
600 | debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n"); |
601 | x = time_handler; | |
602 | time_handler = (thand_f *)0; | |
2d966958 WD |
603 | (*x)(); |
604 | } | |
605 | ||
5c421331 | 606 | if (net_state == NETLOOP_FAIL) |
bc0571fc | 607 | ret = net_start_again(); |
2d966958 | 608 | |
22f6e99d | 609 | switch (net_state) { |
2d966958 | 610 | case NETLOOP_RESTART: |
bc0571fc | 611 | net_restarted = 1; |
2d966958 WD |
612 | goto restart; |
613 | ||
614 | case NETLOOP_SUCCESS: | |
ece223b5 | 615 | net_cleanup_loop(); |
1411157d JH |
616 | if (net_boot_file_size > 0) { |
617 | printf("Bytes transferred = %d (%x hex)\n", | |
618 | net_boot_file_size, net_boot_file_size); | |
619 | setenv_hex("filesize", net_boot_file_size); | |
978226da | 620 | setenv_hex("fileaddr", load_addr); |
2d966958 | 621 | } |
f8be7d65 JH |
622 | if (protocol != NETCONS) |
623 | eth_halt(); | |
624 | else | |
625 | eth_halt_state_only(); | |
626 | ||
627 | eth_set_last_protocol(protocol); | |
628 | ||
1411157d | 629 | ret = net_boot_file_size; |
bc0571fc | 630 | debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n"); |
4793ee65 | 631 | goto done; |
2d966958 WD |
632 | |
633 | case NETLOOP_FAIL: | |
ece223b5 | 634 | net_cleanup_loop(); |
f8be7d65 JH |
635 | /* Invalidate the last protocol */ |
636 | eth_set_last_protocol(BOOTP); | |
bc0571fc | 637 | debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n"); |
4793ee65 | 638 | goto done; |
22f6e99d JH |
639 | |
640 | case NETLOOP_CONTINUE: | |
641 | continue; | |
2d966958 WD |
642 | } |
643 | } | |
4793ee65 SG |
644 | |
645 | done: | |
b63056d6 JL |
646 | #ifdef CONFIG_USB_KEYBOARD |
647 | net_busy_flag = 0; | |
648 | #endif | |
39bccd21 | 649 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 | 650 | /* Clear out the handlers */ |
ece223b5 | 651 | net_set_udp_handler(NULL); |
4793ee65 | 652 | net_set_icmp_handler(NULL); |
39bccd21 | 653 | #endif |
4793ee65 | 654 | return ret; |
2d966958 WD |
655 | } |
656 | ||
657 | /**********************************************************************/ | |
658 | ||
bc0571fc | 659 | static void start_again_timeout_handler(void) |
2d966958 | 660 | { |
22f6e99d | 661 | net_set_state(NETLOOP_RESTART); |
2d966958 WD |
662 | } |
663 | ||
bc0571fc | 664 | int net_start_again(void) |
2d966958 | 665 | { |
6e592385 | 666 | char *nretry; |
67b96e87 RB |
667 | int retry_forever = 0; |
668 | unsigned long retrycnt = 0; | |
60304592 | 669 | int ret; |
67b96e87 RB |
670 | |
671 | nretry = getenv("netretry"); | |
672 | if (nretry) { | |
673 | if (!strcmp(nretry, "yes")) | |
674 | retry_forever = 1; | |
675 | else if (!strcmp(nretry, "no")) | |
676 | retrycnt = 0; | |
677 | else if (!strcmp(nretry, "once")) | |
678 | retrycnt = 1; | |
679 | else | |
680 | retrycnt = simple_strtoul(nretry, NULL, 0); | |
5c421331 JH |
681 | } else { |
682 | retrycnt = 0; | |
683 | retry_forever = 0; | |
684 | } | |
67b96e87 | 685 | |
bc0571fc | 686 | if ((!retry_forever) && (net_try_count >= retrycnt)) { |
67b96e87 | 687 | eth_halt(); |
22f6e99d | 688 | net_set_state(NETLOOP_FAIL); |
60304592 JH |
689 | /* |
690 | * We don't provide a way for the protocol to return an error, | |
691 | * but this is almost always the reason. | |
692 | */ | |
693 | return -ETIMEDOUT; | |
a3d991bd | 694 | } |
67b96e87 | 695 | |
bc0571fc | 696 | net_try_count++; |
67b96e87 | 697 | |
4f63acd0 | 698 | eth_halt(); |
8b0c5c12 | 699 | #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER) |
bc0571fc | 700 | eth_try_another(!net_restarted); |
8b0c5c12 | 701 | #endif |
60304592 | 702 | ret = eth_init(); |
bc0571fc JH |
703 | if (net_restart_wrap) { |
704 | net_restart_wrap = 0; | |
705 | if (net_dev_exists) { | |
706 | net_set_timeout_handler(10000UL, | |
707 | start_again_timeout_handler); | |
ece223b5 | 708 | net_set_udp_handler(NULL); |
6e592385 | 709 | } else { |
22f6e99d | 710 | net_set_state(NETLOOP_FAIL); |
2d966958 | 711 | } |
6e592385 | 712 | } else { |
22f6e99d | 713 | net_set_state(NETLOOP_RESTART); |
2d966958 | 714 | } |
60304592 | 715 | return ret; |
2d966958 WD |
716 | } |
717 | ||
718 | /**********************************************************************/ | |
719 | /* | |
720 | * Miscelaneous bits. | |
721 | */ | |
722 | ||
ece223b5 | 723 | static void dummy_handler(uchar *pkt, unsigned dport, |
049a95a7 | 724 | struct in_addr sip, unsigned sport, |
ece223b5 | 725 | unsigned len) |
d280d3f4 | 726 | { |
d280d3f4 JH |
727 | } |
728 | ||
ece223b5 JH |
729 | rxhand_f *net_get_udp_handler(void) |
730 | { | |
731 | return udp_packet_handler; | |
732 | } | |
d280d3f4 | 733 | |
ece223b5 JH |
734 | void net_set_udp_handler(rxhand_f *f) |
735 | { | |
bc0571fc | 736 | debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f); |
ece223b5 JH |
737 | if (f == NULL) |
738 | udp_packet_handler = dummy_handler; | |
739 | else | |
740 | udp_packet_handler = f; | |
741 | } | |
742 | ||
743 | rxhand_f *net_get_arp_handler(void) | |
2d966958 | 744 | { |
ece223b5 JH |
745 | return arp_packet_handler; |
746 | } | |
747 | ||
748 | void net_set_arp_handler(rxhand_f *f) | |
749 | { | |
bc0571fc | 750 | debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f); |
ece223b5 JH |
751 | if (f == NULL) |
752 | arp_packet_handler = dummy_handler; | |
753 | else | |
754 | arp_packet_handler = f; | |
2d966958 WD |
755 | } |
756 | ||
39bccd21 | 757 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 SG |
758 | void net_set_icmp_handler(rxhand_icmp_f *f) |
759 | { | |
760 | packet_icmp_handler = f; | |
761 | } | |
39bccd21 | 762 | #endif |
2d966958 | 763 | |
bc0571fc | 764 | void net_set_timeout_handler(ulong iv, thand_f *f) |
2d966958 WD |
765 | { |
766 | if (iv == 0) { | |
4ef8d53c | 767 | debug_cond(DEBUG_INT_STATE, |
bc0571fc JH |
768 | "--- net_loop timeout handler cancelled\n"); |
769 | time_handler = (thand_f *)0; | |
2d966958 | 770 | } else { |
4ef8d53c | 771 | debug_cond(DEBUG_INT_STATE, |
bc0571fc JH |
772 | "--- net_loop timeout handler set (%p)\n", f); |
773 | time_handler = f; | |
774 | time_start = get_timer(0); | |
775 | time_delta = iv * CONFIG_SYS_HZ / 1000; | |
2d966958 WD |
776 | } |
777 | } | |
778 | ||
1203fcce | 779 | int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport, |
206d07fd | 780 | int payload_len) |
73a8b27c | 781 | { |
a3d991bd | 782 | uchar *pkt; |
9214637a JH |
783 | int eth_hdr_size; |
784 | int pkt_hdr_size; | |
a3d991bd | 785 | |
bc0571fc | 786 | /* make sure the net_tx_packet is initialized (net_init() was called) */ |
1203fcce JH |
787 | assert(net_tx_packet != NULL); |
788 | if (net_tx_packet == NULL) | |
46c495d5 JH |
789 | return -1; |
790 | ||
73a8b27c | 791 | /* convert to new style broadcast */ |
049a95a7 JH |
792 | if (dest.s_addr == 0) |
793 | dest.s_addr = 0xFFFFFFFF; | |
73a8b27c WD |
794 | |
795 | /* if broadcast, make the ether address a broadcast and don't do ARP */ | |
049a95a7 | 796 | if (dest.s_addr == 0xFFFFFFFF) |
0adb5b76 | 797 | ether = (uchar *)net_bcast_ethaddr; |
73a8b27c | 798 | |
1203fcce | 799 | pkt = (uchar *)net_tx_packet; |
9214637a | 800 | |
1203fcce | 801 | eth_hdr_size = net_set_ether(pkt, ether, PROT_IP); |
9214637a JH |
802 | pkt += eth_hdr_size; |
803 | net_set_udp_header(pkt, dest, dport, sport, payload_len); | |
804 | pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE; | |
73a8b27c | 805 | |
e94070c4 | 806 | /* if MAC address was not discovered yet, do an ARP request */ |
0adb5b76 | 807 | if (memcmp(ether, net_null_ethaddr, 6) == 0) { |
4ef8d53c | 808 | debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest); |
0ebf04c6 | 809 | |
9214637a | 810 | /* save the ip and eth addr for the packet to send after arp */ |
049a95a7 | 811 | net_arp_wait_packet_ip = dest; |
85d25e0e | 812 | arp_wait_packet_ethaddr = ether; |
a3d991bd | 813 | |
73a8b27c | 814 | /* size of the waiting packet */ |
85d25e0e | 815 | arp_wait_tx_packet_size = pkt_hdr_size + payload_len; |
73a8b27c WD |
816 | |
817 | /* and do the ARP request */ | |
85d25e0e JH |
818 | arp_wait_try = 1; |
819 | arp_wait_timer_start = get_timer(0); | |
820 | arp_request(); | |
73a8b27c | 821 | return 1; /* waiting */ |
9214637a | 822 | } else { |
4ef8d53c | 823 | debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n", |
bc0571fc | 824 | &dest, ether); |
1203fcce | 825 | net_send_packet(net_tx_packet, pkt_hdr_size + payload_len); |
9214637a | 826 | return 0; /* transmitted */ |
73a8b27c | 827 | } |
73a8b27c WD |
828 | } |
829 | ||
5cfaa4e5 AR |
830 | #ifdef CONFIG_IP_DEFRAG |
831 | /* | |
832 | * This function collects fragments in a single packet, according | |
833 | * to the algorithm in RFC815. It returns NULL or the pointer to | |
834 | * a complete packet, in static storage | |
835 | */ | |
836 | #ifndef CONFIG_NET_MAXDEFRAG | |
837 | #define CONFIG_NET_MAXDEFRAG 16384 | |
838 | #endif | |
aa7a6487 | 839 | #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG) |
5cfaa4e5 | 840 | |
c5c59df0 | 841 | #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE) |
5cfaa4e5 AR |
842 | |
843 | /* | |
844 | * this is the packet being assembled, either data or frag control. | |
845 | * Fragments go by 8 bytes, so this union must be 8 bytes long | |
846 | */ | |
847 | struct hole { | |
848 | /* first_byte is address of this structure */ | |
849 | u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */ | |
850 | u16 next_hole; /* index of next (in 8-b blocks), 0 == none */ | |
851 | u16 prev_hole; /* index of prev, 0 == none */ | |
852 | u16 unused; | |
853 | }; | |
854 | ||
bc0571fc | 855 | static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp) |
5cfaa4e5 | 856 | { |
48522bb5 | 857 | static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN); |
5cfaa4e5 AR |
858 | static u16 first_hole, total_len; |
859 | struct hole *payload, *thisfrag, *h, *newh; | |
594c26f8 | 860 | struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff; |
5cfaa4e5 AR |
861 | uchar *indata = (uchar *)ip; |
862 | int offset8, start, len, done = 0; | |
863 | u16 ip_off = ntohs(ip->ip_off); | |
864 | ||
865 | /* payload starts after IP header, this fragment is in there */ | |
c5c59df0 | 866 | payload = (struct hole *)(pkt_buff + IP_HDR_SIZE); |
5cfaa4e5 AR |
867 | offset8 = (ip_off & IP_OFFS); |
868 | thisfrag = payload + offset8; | |
869 | start = offset8 * 8; | |
c5c59df0 | 870 | len = ntohs(ip->ip_len) - IP_HDR_SIZE; |
5cfaa4e5 AR |
871 | |
872 | if (start + len > IP_MAXUDP) /* fragment extends too far */ | |
873 | return NULL; | |
874 | ||
875 | if (!total_len || localip->ip_id != ip->ip_id) { | |
876 | /* new (or different) packet, reset structs */ | |
877 | total_len = 0xffff; | |
878 | payload[0].last_byte = ~0; | |
879 | payload[0].next_hole = 0; | |
880 | payload[0].prev_hole = 0; | |
881 | first_hole = 0; | |
882 | /* any IP header will work, copy the first we received */ | |
c5c59df0 | 883 | memcpy(localip, ip, IP_HDR_SIZE); |
5cfaa4e5 AR |
884 | } |
885 | ||
886 | /* | |
887 | * What follows is the reassembly algorithm. We use the payload | |
888 | * array as a linked list of hole descriptors, as each hole starts | |
889 | * at a multiple of 8 bytes. However, last byte can be whatever value, | |
890 | * so it is represented as byte count, not as 8-byte blocks. | |
891 | */ | |
892 | ||
893 | h = payload + first_hole; | |
894 | while (h->last_byte < start) { | |
895 | if (!h->next_hole) { | |
896 | /* no hole that far away */ | |
897 | return NULL; | |
898 | } | |
899 | h = payload + h->next_hole; | |
900 | } | |
901 | ||
e397e59e FS |
902 | /* last fragment may be 1..7 bytes, the "+7" forces acceptance */ |
903 | if (offset8 + ((len + 7) / 8) <= h - payload) { | |
5cfaa4e5 AR |
904 | /* no overlap with holes (dup fragment?) */ |
905 | return NULL; | |
906 | } | |
907 | ||
908 | if (!(ip_off & IP_FLAGS_MFRAG)) { | |
909 | /* no more fragmentss: truncate this (last) hole */ | |
910 | total_len = start + len; | |
911 | h->last_byte = start + len; | |
912 | } | |
913 | ||
914 | /* | |
915 | * There is some overlap: fix the hole list. This code doesn't | |
916 | * deal with a fragment that overlaps with two different holes | |
917 | * (thus being a superset of a previously-received fragment). | |
918 | */ | |
919 | ||
4f63acd0 | 920 | if ((h >= thisfrag) && (h->last_byte <= start + len)) { |
5cfaa4e5 AR |
921 | /* complete overlap with hole: remove hole */ |
922 | if (!h->prev_hole && !h->next_hole) { | |
923 | /* last remaining hole */ | |
924 | done = 1; | |
925 | } else if (!h->prev_hole) { | |
926 | /* first hole */ | |
927 | first_hole = h->next_hole; | |
928 | payload[h->next_hole].prev_hole = 0; | |
929 | } else if (!h->next_hole) { | |
930 | /* last hole */ | |
931 | payload[h->prev_hole].next_hole = 0; | |
932 | } else { | |
933 | /* in the middle of the list */ | |
934 | payload[h->next_hole].prev_hole = h->prev_hole; | |
935 | payload[h->prev_hole].next_hole = h->next_hole; | |
936 | } | |
937 | ||
938 | } else if (h->last_byte <= start + len) { | |
939 | /* overlaps with final part of the hole: shorten this hole */ | |
940 | h->last_byte = start; | |
941 | ||
942 | } else if (h >= thisfrag) { | |
943 | /* overlaps with initial part of the hole: move this hole */ | |
944 | newh = thisfrag + (len / 8); | |
945 | *newh = *h; | |
946 | h = newh; | |
947 | if (h->next_hole) | |
948 | payload[h->next_hole].prev_hole = (h - payload); | |
949 | if (h->prev_hole) | |
950 | payload[h->prev_hole].next_hole = (h - payload); | |
951 | else | |
952 | first_hole = (h - payload); | |
953 | ||
954 | } else { | |
955 | /* fragment sits in the middle: split the hole */ | |
956 | newh = thisfrag + (len / 8); | |
957 | *newh = *h; | |
958 | h->last_byte = start; | |
959 | h->next_hole = (newh - payload); | |
960 | newh->prev_hole = (h - payload); | |
961 | if (newh->next_hole) | |
962 | payload[newh->next_hole].prev_hole = (newh - payload); | |
963 | } | |
964 | ||
965 | /* finally copy this fragment and possibly return whole packet */ | |
c5c59df0 | 966 | memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); |
5cfaa4e5 AR |
967 | if (!done) |
968 | return NULL; | |
969 | ||
970 | localip->ip_len = htons(total_len); | |
c5c59df0 | 971 | *lenp = total_len + IP_HDR_SIZE; |
5cfaa4e5 AR |
972 | return localip; |
973 | } | |
974 | ||
bc0571fc JH |
975 | static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip, |
976 | int *lenp) | |
5cfaa4e5 AR |
977 | { |
978 | u16 ip_off = ntohs(ip->ip_off); | |
979 | if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG))) | |
980 | return ip; /* not a fragment */ | |
bc0571fc | 981 | return __net_defragment(ip, lenp); |
5cfaa4e5 AR |
982 | } |
983 | ||
984 | #else /* !CONFIG_IP_DEFRAG */ | |
985 | ||
bc0571fc JH |
986 | static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip, |
987 | int *lenp) | |
5cfaa4e5 AR |
988 | { |
989 | u16 ip_off = ntohs(ip->ip_off); | |
990 | if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG))) | |
991 | return ip; /* not a fragment */ | |
992 | return NULL; | |
993 | } | |
994 | #endif | |
a3d991bd | 995 | |
8f79bb17 SG |
996 | /** |
997 | * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently | |
998 | * drop others. | |
999 | * | |
1000 | * @parma ip IP packet containing the ICMP | |
1001 | */ | |
594c26f8 | 1002 | static void receive_icmp(struct ip_udp_hdr *ip, int len, |
049a95a7 | 1003 | struct in_addr src_ip, struct ethernet_hdr *et) |
8f79bb17 | 1004 | { |
e0a63079 | 1005 | struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src; |
8f79bb17 SG |
1006 | |
1007 | switch (icmph->type) { | |
1008 | case ICMP_REDIRECT: | |
1009 | if (icmph->code != ICMP_REDIR_HOST) | |
1010 | return; | |
1011 | printf(" ICMP Host Redirect to %pI4 ", | |
bc0571fc | 1012 | &icmph->un.gateway); |
8f79bb17 | 1013 | break; |
a36b12f9 | 1014 | default: |
8f79bb17 | 1015 | #if defined(CONFIG_CMD_PING) |
a36b12f9 | 1016 | ping_receive(et, ip, len); |
8f79bb17 | 1017 | #endif |
39bccd21 | 1018 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 SG |
1019 | if (packet_icmp_handler) |
1020 | packet_icmp_handler(icmph->type, icmph->code, | |
bc0571fc JH |
1021 | ntohs(ip->udp_dst), src_ip, |
1022 | ntohs(ip->udp_src), icmph->un.data, | |
1023 | ntohs(ip->udp_len)); | |
39bccd21 | 1024 | #endif |
8f79bb17 SG |
1025 | break; |
1026 | } | |
1027 | } | |
1028 | ||
2a504df0 | 1029 | void net_process_received_packet(uchar *in_packet, int len) |
2d966958 | 1030 | { |
cb487f56 | 1031 | struct ethernet_hdr *et; |
594c26f8 | 1032 | struct ip_udp_hdr *ip; |
049a95a7 JH |
1033 | struct in_addr dst_ip; |
1034 | struct in_addr src_ip; | |
8d353eb8 | 1035 | int eth_proto; |
643d1ab2 | 1036 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
1037 | int iscdp; |
1038 | #endif | |
1039 | ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid; | |
1040 | ||
4ef8d53c | 1041 | debug_cond(DEBUG_NET_PKT, "packet received\n"); |
2d966958 | 1042 | |
1203fcce JH |
1043 | net_rx_packet = in_packet; |
1044 | net_rx_packet_len = len; | |
2a504df0 | 1045 | et = (struct ethernet_hdr *)in_packet; |
a3d991bd WD |
1046 | |
1047 | /* too small packet? */ | |
1048 | if (len < ETHER_HDR_SIZE) | |
1049 | return; | |
1050 | ||
0efe1bcf | 1051 | #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER) |
f85b6071 | 1052 | if (push_packet) { |
2a504df0 | 1053 | (*push_packet)(in_packet, len); |
f85b6071 RJ |
1054 | return; |
1055 | } | |
1056 | #endif | |
1057 | ||
643d1ab2 | 1058 | #if defined(CONFIG_CMD_CDP) |
a3d991bd | 1059 | /* keep track if packet is CDP */ |
17351883 | 1060 | iscdp = is_cdp_packet(et->et_dest); |
a3d991bd WD |
1061 | #endif |
1062 | ||
4fd5055f | 1063 | myvlanid = ntohs(net_our_vlan); |
a3d991bd WD |
1064 | if (myvlanid == (ushort)-1) |
1065 | myvlanid = VLAN_NONE; | |
4fd5055f | 1066 | mynvlanid = ntohs(net_native_vlan); |
a3d991bd WD |
1067 | if (mynvlanid == (ushort)-1) |
1068 | mynvlanid = VLAN_NONE; | |
2d966958 | 1069 | |
8d353eb8 | 1070 | eth_proto = ntohs(et->et_protlen); |
2d966958 | 1071 | |
8d353eb8 | 1072 | if (eth_proto < 1514) { |
cb487f56 | 1073 | struct e802_hdr *et802 = (struct e802_hdr *)et; |
2d966958 | 1074 | /* |
da5ebe2c JH |
1075 | * Got a 802.2 packet. Check the other protocol field. |
1076 | * XXX VLAN over 802.2+SNAP not implemented! | |
2d966958 | 1077 | */ |
8d353eb8 | 1078 | eth_proto = ntohs(et802->et_prot); |
a3d991bd | 1079 | |
2a504df0 | 1080 | ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE); |
2d966958 | 1081 | len -= E802_HDR_SIZE; |
a3d991bd | 1082 | |
8d353eb8 | 1083 | } else if (eth_proto != PROT_VLAN) { /* normal packet */ |
2a504df0 | 1084 | ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE); |
2d966958 | 1085 | len -= ETHER_HDR_SIZE; |
a3d991bd WD |
1086 | |
1087 | } else { /* VLAN packet */ | |
c68cca35 JH |
1088 | struct vlan_ethernet_hdr *vet = |
1089 | (struct vlan_ethernet_hdr *)et; | |
a3d991bd | 1090 | |
4ef8d53c | 1091 | debug_cond(DEBUG_NET_PKT, "VLAN packet received\n"); |
0ebf04c6 | 1092 | |
a3d991bd WD |
1093 | /* too small packet? */ |
1094 | if (len < VLAN_ETHER_HDR_SIZE) | |
1095 | return; | |
1096 | ||
1097 | /* if no VLAN active */ | |
4fd5055f | 1098 | if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE |
643d1ab2 | 1099 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
1100 | && iscdp == 0 |
1101 | #endif | |
1102 | ) | |
1103 | return; | |
1104 | ||
1105 | cti = ntohs(vet->vet_tag); | |
1106 | vlanid = cti & VLAN_IDMASK; | |
8d353eb8 | 1107 | eth_proto = ntohs(vet->vet_type); |
a3d991bd | 1108 | |
2a504df0 | 1109 | ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE); |
a3d991bd | 1110 | len -= VLAN_ETHER_HDR_SIZE; |
2d966958 WD |
1111 | } |
1112 | ||
4ef8d53c | 1113 | debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto); |
2d966958 | 1114 | |
643d1ab2 | 1115 | #if defined(CONFIG_CMD_CDP) |
a3d991bd | 1116 | if (iscdp) { |
0b4c5ff4 | 1117 | cdp_receive((uchar *)ip, len); |
a3d991bd WD |
1118 | return; |
1119 | } | |
1120 | #endif | |
1121 | ||
1122 | if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) { | |
1123 | if (vlanid == VLAN_NONE) | |
1124 | vlanid = (mynvlanid & VLAN_IDMASK); | |
1125 | /* not matched? */ | |
1126 | if (vlanid != (myvlanid & VLAN_IDMASK)) | |
1127 | return; | |
1128 | } | |
1129 | ||
8d353eb8 | 1130 | switch (eth_proto) { |
2d966958 | 1131 | case PROT_ARP: |
85d25e0e | 1132 | arp_receive(et, ip, len); |
289f932c | 1133 | break; |
2d966958 | 1134 | |
bf6cb247 | 1135 | #ifdef CONFIG_CMD_RARP |
2d966958 | 1136 | case PROT_RARP: |
8b9c5322 | 1137 | rarp_receive(ip, len); |
2d966958 | 1138 | break; |
bf6cb247 | 1139 | #endif |
2d966958 | 1140 | case PROT_IP: |
4ef8d53c | 1141 | debug_cond(DEBUG_NET_PKT, "Got IP\n"); |
5cfaa4e5 | 1142 | /* Before we start poking the header, make sure it is there */ |
594c26f8 JH |
1143 | if (len < IP_UDP_HDR_SIZE) { |
1144 | debug("len bad %d < %lu\n", len, | |
bc0571fc | 1145 | (ulong)IP_UDP_HDR_SIZE); |
2d966958 WD |
1146 | return; |
1147 | } | |
5cfaa4e5 | 1148 | /* Check the packet length */ |
2d966958 | 1149 | if (len < ntohs(ip->ip_len)) { |
4ef8d53c | 1150 | debug("len bad %d < %d\n", len, ntohs(ip->ip_len)); |
2d966958 WD |
1151 | return; |
1152 | } | |
1153 | len = ntohs(ip->ip_len); | |
4ef8d53c | 1154 | debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n", |
bc0571fc | 1155 | len, ip->ip_hl_v & 0xff); |
0ebf04c6 | 1156 | |
5cfaa4e5 | 1157 | /* Can't deal with anything except IPv4 */ |
d3c65b01 | 1158 | if ((ip->ip_hl_v & 0xf0) != 0x40) |
2d966958 | 1159 | return; |
5cfaa4e5 | 1160 | /* Can't deal with IP options (headers != 20 bytes) */ |
d3c65b01 | 1161 | if ((ip->ip_hl_v & 0x0f) > 0x05) |
6b52cfe1 | 1162 | return; |
5cfaa4e5 | 1163 | /* Check the Checksum of the header */ |
0da0fcd5 | 1164 | if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) { |
4ef8d53c | 1165 | debug("checksum bad\n"); |
2d966958 WD |
1166 | return; |
1167 | } | |
5cfaa4e5 | 1168 | /* If it is not for us, ignore it */ |
049a95a7 JH |
1169 | dst_ip = net_read_ip(&ip->ip_dst); |
1170 | if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr && | |
1171 | dst_ip.s_addr != 0xFFFFFFFF) { | |
53a5c424 | 1172 | #ifdef CONFIG_MCAST_TFTP |
049a95a7 | 1173 | if (net_mcast_addr != dst_ip) |
53a5c424 | 1174 | #endif |
c819abee | 1175 | return; |
2d966958 | 1176 | } |
03eb129f | 1177 | /* Read source IP address for later use */ |
049a95a7 | 1178 | src_ip = net_read_ip(&ip->ip_src); |
5cfaa4e5 AR |
1179 | /* |
1180 | * The function returns the unchanged packet if it's not | |
1181 | * a fragment, and either the complete packet or NULL if | |
1182 | * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL) | |
1183 | */ | |
bc0571fc | 1184 | ip = net_defragment(ip, &len); |
ccb9ebef | 1185 | if (!ip) |
5cfaa4e5 | 1186 | return; |
2d966958 WD |
1187 | /* |
1188 | * watch for ICMP host redirects | |
1189 | * | |
8bde7f77 WD |
1190 | * There is no real handler code (yet). We just watch |
1191 | * for ICMP host redirect messages. In case anybody | |
1192 | * sees these messages: please contact me | |
1193 | * ([email protected]), or - even better - send me the | |
1194 | * necessary fixes :-) | |
2d966958 | 1195 | * |
8bde7f77 WD |
1196 | * Note: in all cases where I have seen this so far |
1197 | * it was a problem with the router configuration, | |
1198 | * for instance when a router was configured in the | |
1199 | * BOOTP reply, but the TFTP server was on the same | |
1200 | * subnet. So this is probably a warning that your | |
1201 | * configuration might be wrong. But I'm not really | |
1202 | * sure if there aren't any other situations. | |
4793ee65 SG |
1203 | * |
1204 | * Simon Glass <[email protected]>: We get an ICMP when | |
1205 | * we send a tftp packet to a dead connection, or when | |
1206 | * there is no server at the other end. | |
2d966958 WD |
1207 | */ |
1208 | if (ip->ip_p == IPPROTO_ICMP) { | |
8f79bb17 SG |
1209 | receive_icmp(ip, len, src_ip, et); |
1210 | return; | |
2d966958 WD |
1211 | } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */ |
1212 | return; | |
1213 | } | |
1214 | ||
4ef8d53c | 1215 | debug_cond(DEBUG_DEV_PKT, |
bc0571fc JH |
1216 | "received UDP (to=%pI4, from=%pI4, len=%d)\n", |
1217 | &dst_ip, &src_ip, len); | |
4ef8d53c | 1218 | |
8534bf9a SR |
1219 | #ifdef CONFIG_UDP_CHECKSUM |
1220 | if (ip->udp_xsum != 0) { | |
b2f50807 | 1221 | ulong xsum; |
8534bf9a SR |
1222 | ushort *sumptr; |
1223 | ushort sumlen; | |
1224 | ||
1225 | xsum = ip->ip_p; | |
1226 | xsum += (ntohs(ip->udp_len)); | |
049a95a7 JH |
1227 | xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff; |
1228 | xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff; | |
1229 | xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff; | |
1230 | xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff; | |
8534bf9a SR |
1231 | |
1232 | sumlen = ntohs(ip->udp_len); | |
bc0571fc | 1233 | sumptr = (ushort *)&(ip->udp_src); |
8534bf9a SR |
1234 | |
1235 | while (sumlen > 1) { | |
b2f50807 | 1236 | ushort sumdata; |
8534bf9a SR |
1237 | |
1238 | sumdata = *sumptr++; | |
1239 | xsum += ntohs(sumdata); | |
1240 | sumlen -= 2; | |
1241 | } | |
1242 | if (sumlen > 0) { | |
b2f50807 | 1243 | ushort sumdata; |
8534bf9a | 1244 | |
bc0571fc | 1245 | sumdata = *(unsigned char *)sumptr; |
b2f50807 | 1246 | sumdata = (sumdata << 8) & 0xff00; |
8534bf9a SR |
1247 | xsum += sumdata; |
1248 | } | |
1249 | while ((xsum >> 16) != 0) { | |
3e38e429 LC |
1250 | xsum = (xsum & 0x0000ffff) + |
1251 | ((xsum >> 16) & 0x0000ffff); | |
8534bf9a SR |
1252 | } |
1253 | if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) { | |
9b55a253 | 1254 | printf(" UDP wrong checksum %08lx %08x\n", |
bc0571fc | 1255 | xsum, ntohs(ip->udp_xsum)); |
8534bf9a SR |
1256 | return; |
1257 | } | |
1258 | } | |
1259 | #endif | |
1260 | ||
66c89ee3 | 1261 | #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD) |
594c26f8 | 1262 | nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE, |
bc0571fc JH |
1263 | src_ip, |
1264 | ntohs(ip->udp_dst), | |
1265 | ntohs(ip->udp_src), | |
1266 | ntohs(ip->udp_len) - UDP_HDR_SIZE); | |
68ceb29e | 1267 | #endif |
2d966958 | 1268 | /* |
bc0571fc | 1269 | * IP header OK. Pass the packet to the current handler. |
2d966958 | 1270 | */ |
ece223b5 | 1271 | (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE, |
bc0571fc JH |
1272 | ntohs(ip->udp_dst), |
1273 | src_ip, | |
1274 | ntohs(ip->udp_src), | |
1275 | ntohs(ip->udp_len) - UDP_HDR_SIZE); | |
2d966958 WD |
1276 | break; |
1277 | } | |
1278 | } | |
1279 | ||
2d966958 WD |
1280 | /**********************************************************************/ |
1281 | ||
e4bf0c5c | 1282 | static int net_check_prereq(enum proto_t protocol) |
2d966958 WD |
1283 | { |
1284 | switch (protocol) { | |
6e592385 | 1285 | /* Fall through */ |
643d1ab2 | 1286 | #if defined(CONFIG_CMD_PING) |
73a8b27c | 1287 | case PING: |
049a95a7 | 1288 | if (net_ping_ip.s_addr == 0) { |
4f63acd0 | 1289 | puts("*** ERROR: ping address not given\n"); |
92895de9 | 1290 | return 1; |
6e592385 WD |
1291 | } |
1292 | goto common; | |
cbd8a35c | 1293 | #endif |
643d1ab2 | 1294 | #if defined(CONFIG_CMD_SNTP) |
ea287deb | 1295 | case SNTP: |
049a95a7 | 1296 | if (net_ntp_server.s_addr == 0) { |
4f63acd0 | 1297 | puts("*** ERROR: NTP server address not given\n"); |
92895de9 | 1298 | return 1; |
ea287deb WD |
1299 | } |
1300 | goto common; | |
1301 | #endif | |
1a32bf41 RG |
1302 | #if defined(CONFIG_CMD_DNS) |
1303 | case DNS: | |
049a95a7 | 1304 | if (net_dns_server.s_addr == 0) { |
1a32bf41 RG |
1305 | puts("*** ERROR: DNS server address not given\n"); |
1306 | return 1; | |
1307 | } | |
1308 | goto common; | |
1309 | #endif | |
643d1ab2 | 1310 | #if defined(CONFIG_CMD_NFS) |
cbd8a35c | 1311 | case NFS: |
73a8b27c | 1312 | #endif |
bc0571fc | 1313 | /* Fall through */ |
e4bf0c5c | 1314 | case TFTPGET: |
1fb7cd49 | 1315 | case TFTPPUT: |
049a95a7 | 1316 | if (net_server_ip.s_addr == 0) { |
4f63acd0 | 1317 | puts("*** ERROR: `serverip' not set\n"); |
92895de9 | 1318 | return 1; |
6e592385 | 1319 | } |
4f63acd0 LC |
1320 | #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \ |
1321 | defined(CONFIG_CMD_DNS) | |
1322 | common: | |
73a8b27c | 1323 | #endif |
8b6bbe10 | 1324 | /* Fall through */ |
73a8b27c | 1325 | |
8b6bbe10 | 1326 | case NETCONS: |
7a83af07 | 1327 | case TFTPSRV: |
049a95a7 | 1328 | if (net_ip.s_addr == 0) { |
4f63acd0 | 1329 | puts("*** ERROR: `ipaddr' not set\n"); |
92895de9 | 1330 | return 1; |
6e592385 WD |
1331 | } |
1332 | /* Fall through */ | |
2d966958 | 1333 | |
bf6cb247 | 1334 | #ifdef CONFIG_CMD_RARP |
2d966958 | 1335 | case RARP: |
bf6cb247 | 1336 | #endif |
2d966958 | 1337 | case BOOTP: |
a3d991bd | 1338 | case CDP: |
bf6cb247 | 1339 | case DHCP: |
d22c338e | 1340 | case LINKLOCAL: |
0adb5b76 | 1341 | if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) { |
4f63acd0 | 1342 | int num = eth_get_dev_index(); |
2d966958 | 1343 | |
6e592385 WD |
1344 | switch (num) { |
1345 | case -1: | |
4f63acd0 | 1346 | puts("*** ERROR: No ethernet found.\n"); |
92895de9 | 1347 | return 1; |
6e592385 | 1348 | case 0: |
4f63acd0 | 1349 | puts("*** ERROR: `ethaddr' not set\n"); |
2d966958 | 1350 | break; |
6e592385 | 1351 | default: |
4f63acd0 | 1352 | printf("*** ERROR: `eth%daddr' not set\n", |
bc0571fc | 1353 | num); |
2d966958 | 1354 | break; |
6e592385 | 1355 | } |
2d966958 | 1356 | |
bc0571fc | 1357 | net_start_again(); |
92895de9 | 1358 | return 2; |
6e592385 WD |
1359 | } |
1360 | /* Fall through */ | |
1361 | default: | |
92895de9 | 1362 | return 0; |
2d966958 | 1363 | } |
92895de9 | 1364 | return 0; /* OK */ |
2d966958 WD |
1365 | } |
1366 | /**********************************************************************/ | |
1367 | ||
a3d991bd | 1368 | int |
1203fcce | 1369 | net_eth_hdr_size(void) |
a3d991bd WD |
1370 | { |
1371 | ushort myvlanid; | |
2d966958 | 1372 | |
4fd5055f | 1373 | myvlanid = ntohs(net_our_vlan); |
a3d991bd WD |
1374 | if (myvlanid == (ushort)-1) |
1375 | myvlanid = VLAN_NONE; | |
1376 | ||
3e38e429 LC |
1377 | return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE : |
1378 | VLAN_ETHER_HDR_SIZE; | |
a3d991bd WD |
1379 | } |
1380 | ||
1203fcce | 1381 | int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot) |
2d966958 | 1382 | { |
cb487f56 | 1383 | struct ethernet_hdr *et = (struct ethernet_hdr *)xet; |
a3d991bd WD |
1384 | ushort myvlanid; |
1385 | ||
4fd5055f | 1386 | myvlanid = ntohs(net_our_vlan); |
a3d991bd WD |
1387 | if (myvlanid == (ushort)-1) |
1388 | myvlanid = VLAN_NONE; | |
2d966958 | 1389 | |
0adb5b76 JH |
1390 | memcpy(et->et_dest, dest_ethaddr, 6); |
1391 | memcpy(et->et_src, net_ethaddr, 6); | |
a3d991bd | 1392 | if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) { |
c819abee | 1393 | et->et_protlen = htons(prot); |
a3d991bd WD |
1394 | return ETHER_HDR_SIZE; |
1395 | } else { | |
c68cca35 JH |
1396 | struct vlan_ethernet_hdr *vet = |
1397 | (struct vlan_ethernet_hdr *)xet; | |
2d966958 | 1398 | |
a3d991bd WD |
1399 | vet->vet_vlan_type = htons(PROT_VLAN); |
1400 | vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK)); | |
1401 | vet->vet_type = htons(prot); | |
1402 | return VLAN_ETHER_HDR_SIZE; | |
1403 | } | |
1404 | } | |
2d966958 | 1405 | |
e7111015 JH |
1406 | int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot) |
1407 | { | |
1408 | ushort protlen; | |
1409 | ||
1410 | memcpy(et->et_dest, addr, 6); | |
0adb5b76 | 1411 | memcpy(et->et_src, net_ethaddr, 6); |
e7111015 JH |
1412 | protlen = ntohs(et->et_protlen); |
1413 | if (protlen == PROT_VLAN) { | |
1414 | struct vlan_ethernet_hdr *vet = | |
1415 | (struct vlan_ethernet_hdr *)et; | |
1416 | vet->vet_type = htons(prot); | |
1417 | return VLAN_ETHER_HDR_SIZE; | |
1418 | } else if (protlen > 1514) { | |
1419 | et->et_protlen = htons(prot); | |
1420 | return ETHER_HDR_SIZE; | |
1421 | } else { | |
1422 | /* 802.2 + SNAP */ | |
1423 | struct e802_hdr *et802 = (struct e802_hdr *)et; | |
1424 | et802->et_prot = htons(prot); | |
1425 | return E802_HDR_SIZE; | |
1426 | } | |
1427 | } | |
1428 | ||
049a95a7 | 1429 | void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source) |
2d966958 | 1430 | { |
4b11c916 | 1431 | struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt; |
2d966958 WD |
1432 | |
1433 | /* | |
4b11c916 | 1434 | * Construct an IP header. |
2d966958 | 1435 | */ |
3e38e429 LC |
1436 | /* IP_HDR_SIZE / 4 (not including UDP) */ |
1437 | ip->ip_hl_v = 0x45; | |
2d966958 | 1438 | ip->ip_tos = 0; |
4b11c916 | 1439 | ip->ip_len = htons(IP_HDR_SIZE); |
bc0571fc | 1440 | ip->ip_id = htons(net_ip_id++); |
e0c07b86 | 1441 | ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */ |
2d966958 | 1442 | ip->ip_ttl = 255; |
2d966958 | 1443 | ip->ip_sum = 0; |
3e38e429 | 1444 | /* already in network byte order */ |
049a95a7 | 1445 | net_copy_ip((void *)&ip->ip_src, &source); |
4b11c916 | 1446 | /* already in network byte order */ |
049a95a7 | 1447 | net_copy_ip((void *)&ip->ip_dst, &dest); |
4b11c916 JH |
1448 | } |
1449 | ||
049a95a7 | 1450 | void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport, |
4b11c916 JH |
1451 | int len) |
1452 | { | |
1453 | struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt; | |
1454 | ||
1455 | /* | |
1456 | * If the data is an odd number of bytes, zero the | |
1457 | * byte after the last byte so that the checksum | |
1458 | * will work. | |
1459 | */ | |
1460 | if (len & 1) | |
1461 | pkt[IP_UDP_HDR_SIZE + len] = 0; | |
1462 | ||
049a95a7 | 1463 | net_set_ip_header(pkt, dest, net_ip); |
4b11c916 JH |
1464 | ip->ip_len = htons(IP_UDP_HDR_SIZE + len); |
1465 | ip->ip_p = IPPROTO_UDP; | |
0da0fcd5 | 1466 | ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE); |
4b11c916 | 1467 | |
2d966958 WD |
1468 | ip->udp_src = htons(sport); |
1469 | ip->udp_dst = htons(dport); | |
594c26f8 | 1470 | ip->udp_len = htons(UDP_HDR_SIZE + len); |
2d966958 | 1471 | ip->udp_xsum = 0; |
2d966958 WD |
1472 | } |
1473 | ||
4f63acd0 | 1474 | void copy_filename(char *dst, const char *src, int size) |
2d966958 WD |
1475 | { |
1476 | if (*src && (*src == '"')) { | |
1477 | ++src; | |
1478 | --size; | |
1479 | } | |
1480 | ||
d3c65b01 | 1481 | while ((--size > 0) && *src && (*src != '"')) |
2d966958 | 1482 | *dst++ = *src++; |
2d966958 WD |
1483 | *dst = '\0'; |
1484 | } | |
1485 | ||
3e38e429 LC |
1486 | #if defined(CONFIG_CMD_NFS) || \ |
1487 | defined(CONFIG_CMD_SNTP) || \ | |
1488 | defined(CONFIG_CMD_DNS) | |
1a32bf41 | 1489 | /* |
9739946c RG |
1490 | * make port a little random (1024-17407) |
1491 | * This keeps the math somewhat trivial to compute, and seems to work with | |
1492 | * all supported protocols/clients/servers | |
1a32bf41 RG |
1493 | */ |
1494 | unsigned int random_port(void) | |
1495 | { | |
9739946c | 1496 | return 1024 + (get_timer(0) % 0x4000); |
1a32bf41 RG |
1497 | } |
1498 | #endif | |
1499 | ||
049a95a7 | 1500 | void ip_to_string(struct in_addr x, char *s) |
2d966958 | 1501 | { |
049a95a7 | 1502 | x.s_addr = ntohl(x.s_addr); |
4f63acd0 | 1503 | sprintf(s, "%d.%d.%d.%d", |
049a95a7 JH |
1504 | (int) ((x.s_addr >> 24) & 0xff), |
1505 | (int) ((x.s_addr >> 16) & 0xff), | |
1506 | (int) ((x.s_addr >> 8) & 0xff), | |
1507 | (int) ((x.s_addr >> 0) & 0xff) | |
6e592385 | 1508 | ); |
2d966958 WD |
1509 | } |
1510 | ||
4fd5055f | 1511 | void vlan_to_string(ushort x, char *s) |
a3d991bd WD |
1512 | { |
1513 | x = ntohs(x); | |
1514 | ||
1515 | if (x == (ushort)-1) | |
1516 | x = VLAN_NONE; | |
1517 | ||
1518 | if (x == VLAN_NONE) | |
1519 | strcpy(s, "none"); | |
1520 | else | |
1521 | sprintf(s, "%d", x & VLAN_IDMASK); | |
1522 | } | |
1523 | ||
4fd5055f | 1524 | ushort string_to_vlan(const char *s) |
a3d991bd WD |
1525 | { |
1526 | ushort id; | |
1527 | ||
1528 | if (s == NULL) | |
b9711de1 | 1529 | return htons(VLAN_NONE); |
a3d991bd WD |
1530 | |
1531 | if (*s < '0' || *s > '9') | |
1532 | id = VLAN_NONE; | |
1533 | else | |
1534 | id = (ushort)simple_strtoul(s, NULL, 10); | |
1535 | ||
b9711de1 | 1536 | return htons(id); |
a3d991bd WD |
1537 | } |
1538 | ||
4fd5055f | 1539 | ushort getenv_vlan(char *var) |
a3d991bd | 1540 | { |
4fd5055f | 1541 | return string_to_vlan(getenv(var)); |
a3d991bd | 1542 | } |