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