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