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