]>
Commit | Line | Data |
---|---|---|
a36b12f9 JH |
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 |
a36b12f9 JH |
10 | */ |
11 | ||
12 | #include "ping.h" | |
13 | #include "arp.h" | |
14 | ||
15 | static ushort PingSeqNo; | |
16 | ||
17 | /* The ip address to ping */ | |
18 | IPaddr_t NetPingIP; | |
19 | ||
4b11c916 JH |
20 | static void set_icmp_header(uchar *pkt, IPaddr_t dest) |
21 | { | |
22 | /* | |
23 | * Construct an IP and ICMP header. | |
24 | */ | |
25 | struct ip_hdr *ip = (struct ip_hdr *)pkt; | |
26 | struct icmp_hdr *icmp = (struct icmp_hdr *)(pkt + IP_HDR_SIZE); | |
27 | ||
28 | net_set_ip_header(pkt, dest, NetOurIP); | |
29 | ||
30 | ip->ip_len = htons(IP_ICMP_HDR_SIZE); | |
31 | ip->ip_p = IPPROTO_ICMP; | |
0da0fcd5 | 32 | ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE); |
4b11c916 JH |
33 | |
34 | icmp->type = ICMP_ECHO_REQUEST; | |
35 | icmp->code = 0; | |
36 | icmp->checksum = 0; | |
37 | icmp->un.echo.id = 0; | |
38 | icmp->un.echo.sequence = htons(PingSeqNo++); | |
0da0fcd5 | 39 | icmp->checksum = compute_ip_checksum(icmp, ICMP_HDR_SIZE); |
4b11c916 JH |
40 | } |
41 | ||
a36b12f9 JH |
42 | static int ping_send(void) |
43 | { | |
a36b12f9 | 44 | uchar *pkt; |
00f33268 | 45 | int eth_hdr_size; |
a36b12f9 JH |
46 | |
47 | /* XXX always send arp request */ | |
48 | ||
4ef8d53c | 49 | debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &NetPingIP); |
a36b12f9 JH |
50 | |
51 | NetArpWaitPacketIP = NetPingIP; | |
a36b12f9 | 52 | |
e94070c4 JH |
53 | eth_hdr_size = NetSetEther(NetTxPacket, NetEtherNullAddr, PROT_IP); |
54 | pkt = (uchar *)NetTxPacket + eth_hdr_size; | |
a36b12f9 | 55 | |
4b11c916 | 56 | set_icmp_header(pkt, NetPingIP); |
a36b12f9 JH |
57 | |
58 | /* size of the waiting packet */ | |
00f33268 | 59 | NetArpWaitTxPacketSize = eth_hdr_size + IP_ICMP_HDR_SIZE; |
a36b12f9 JH |
60 | |
61 | /* and do the ARP request */ | |
62 | NetArpWaitTry = 1; | |
63 | NetArpWaitTimerStart = get_timer(0); | |
64 | ArpRequest(); | |
65 | return 1; /* waiting */ | |
66 | } | |
67 | ||
68 | static void ping_timeout(void) | |
69 | { | |
70 | eth_halt(); | |
22f6e99d | 71 | net_set_state(NETLOOP_FAIL); /* we did not get the reply */ |
a36b12f9 JH |
72 | } |
73 | ||
a36b12f9 JH |
74 | void ping_start(void) |
75 | { | |
76 | printf("Using %s device\n", eth_get_name()); | |
77 | NetSetTimeout(10000UL, ping_timeout); | |
a36b12f9 JH |
78 | |
79 | ping_send(); | |
80 | } | |
81 | ||
cb487f56 | 82 | void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len) |
a36b12f9 | 83 | { |
e0a63079 | 84 | struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src; |
a36b12f9 | 85 | IPaddr_t src_ip; |
e7111015 | 86 | int eth_hdr_size; |
a36b12f9 JH |
87 | |
88 | switch (icmph->type) { | |
89 | case ICMP_ECHO_REPLY: | |
a36b12f9 | 90 | src_ip = NetReadIP((void *)&ip->ip_src); |
61da3c2a | 91 | if (src_ip == NetPingIP) |
22f6e99d | 92 | net_set_state(NETLOOP_SUCCESS); |
a36b12f9 JH |
93 | return; |
94 | case ICMP_ECHO_REQUEST: | |
e7111015 | 95 | eth_hdr_size = net_update_ether(et, et->et_src, PROT_IP); |
a36b12f9 | 96 | |
4ef8d53c | 97 | debug_cond(DEBUG_DEV_PKT, "Got ICMP ECHO REQUEST, return " |
e7111015 | 98 | "%d bytes\n", eth_hdr_size + len); |
a36b12f9 JH |
99 | |
100 | ip->ip_sum = 0; | |
101 | ip->ip_off = 0; | |
102 | NetCopyIP((void *)&ip->ip_dst, &ip->ip_src); | |
103 | NetCopyIP((void *)&ip->ip_src, &NetOurIP); | |
0da0fcd5 | 104 | ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE); |
a36b12f9 JH |
105 | |
106 | icmph->type = ICMP_ECHO_REPLY; | |
107 | icmph->checksum = 0; | |
0da0fcd5 | 108 | icmph->checksum = compute_ip_checksum(icmph, len - IP_HDR_SIZE); |
e7111015 | 109 | NetSendPacket((uchar *)et, eth_hdr_size + len); |
a36b12f9 JH |
110 | return; |
111 | /* default: | |
112 | return;*/ | |
113 | } | |
114 | } |