blob: c52563566900e01f336019d18878c97da36f0a9f [file] [log] [blame]
Joe Hershbergera36b12f2012-05-23 07:58:02 +00001/*
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, wd@denx.de
9 */
10
11#include "ping.h"
12#include "arp.h"
13
14static ushort PingSeqNo;
15
16/* The ip address to ping */
17IPaddr_t NetPingIP;
18
Joe Hershberger4b11c912012-05-23 07:59:07 +000019static void set_icmp_header(uchar *pkt, IPaddr_t dest)
20{
21 /*
22 * Construct an IP and ICMP header.
23 */
24 struct ip_hdr *ip = (struct ip_hdr *)pkt;
25 struct icmp_hdr *icmp = (struct icmp_hdr *)(pkt + IP_HDR_SIZE);
26
27 net_set_ip_header(pkt, dest, NetOurIP);
28
29 ip->ip_len = htons(IP_ICMP_HDR_SIZE);
30 ip->ip_p = IPPROTO_ICMP;
31 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
32
33 icmp->type = ICMP_ECHO_REQUEST;
34 icmp->code = 0;
35 icmp->checksum = 0;
36 icmp->un.echo.id = 0;
37 icmp->un.echo.sequence = htons(PingSeqNo++);
38 icmp->checksum = ~NetCksum((uchar *)icmp, ICMP_HDR_SIZE >> 1);
39}
40
Joe Hershbergera36b12f2012-05-23 07:58:02 +000041static int ping_send(void)
42{
43 static uchar mac[6];
Joe Hershbergera36b12f2012-05-23 07:58:02 +000044 uchar *pkt;
45
46 /* XXX always send arp request */
47
48 memcpy(mac, NetEtherNullAddr, 6);
49
50 debug("sending ARP for %pI4\n", &NetPingIP);
51
52 NetArpWaitPacketIP = NetPingIP;
53 NetArpWaitPacketMAC = mac;
54
55 pkt = NetArpWaitTxPacket;
56 pkt += NetSetEther(pkt, mac, PROT_IP);
57
Joe Hershberger4b11c912012-05-23 07:59:07 +000058 set_icmp_header(pkt, NetPingIP);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000059
60 /* size of the waiting packet */
61 NetArpWaitTxPacketSize =
Joe Hershbergerc5c59df2012-05-23 07:58:05 +000062 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE + 8;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000063
64 /* and do the ARP request */
65 NetArpWaitTry = 1;
66 NetArpWaitTimerStart = get_timer(0);
67 ArpRequest();
68 return 1; /* waiting */
69}
70
71static void ping_timeout(void)
72{
73 eth_halt();
74 NetState = NETLOOP_FAIL; /* we did not get the reply */
75}
76
77static void ping_handler(uchar *pkt, unsigned dest, IPaddr_t sip,
78 unsigned src, unsigned len)
79{
80 if (sip != NetPingIP)
81 return;
82
83 NetState = NETLOOP_SUCCESS;
84}
85
86void ping_start(void)
87{
88 printf("Using %s device\n", eth_get_name());
89 NetSetTimeout(10000UL, ping_timeout);
90 NetSetHandler(ping_handler);
91
92 ping_send();
93}
94
Joe Hershbergercb487f52012-05-23 07:58:06 +000095void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
Joe Hershbergera36b12f2012-05-23 07:58:02 +000096{
Joe Hershbergere0a63072012-05-23 07:58:09 +000097 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000098 IPaddr_t src_ip;
99
100 switch (icmph->type) {
101 case ICMP_ECHO_REPLY:
102 /*
103 * IP header OK. Pass the packet to the
104 * current handler.
105 */
106 /* XXX point to ip packet */
107 src_ip = NetReadIP((void *)&ip->ip_src);
108 NetGetHandler()((uchar *)ip, 0, src_ip, 0, 0);
109 return;
110 case ICMP_ECHO_REQUEST:
111 debug("Got ICMP ECHO REQUEST, return "
112 "%d bytes\n", ETHER_HDR_SIZE + len);
113
114 memcpy(&et->et_dest[0], &et->et_src[0], 6);
115 memcpy(&et->et_src[0], NetOurEther, 6);
116
117 ip->ip_sum = 0;
118 ip->ip_off = 0;
119 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
120 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
121 ip->ip_sum = ~NetCksum((uchar *)ip,
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000122 IP_HDR_SIZE >> 1);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000123
124 icmph->type = ICMP_ECHO_REPLY;
125 icmph->checksum = 0;
126 icmph->checksum = ~NetCksum((uchar *)icmph,
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000127 (len - IP_HDR_SIZE) >> 1);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000128 (void) eth_send((uchar *)et,
129 ETHER_HDR_SIZE + len);
130 return;
131/* default:
132 return;*/
133 }
134}