blob: 633c942e67839f3157790ef3bd0001ac568d7df3 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0
Joe Hershbergera36b12f2012-05-23 07:58:02 +00002/*
3 * Copied from Linux Monitor (LiMon) - Networking.
4 *
5 * Copyright 1994 - 2000 Neil Russell.
6 * (See License)
7 * Copyright 2000 Roland Borde
8 * Copyright 2000 Paolo Scaffardi
9 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
10 */
11
12#include "ping.h"
13#include "arp.h"
14
Joe Hershberger331db5a2015-04-08 01:41:13 -050015static ushort ping_seq_number;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000016
17/* The ip address to ping */
Joe Hershberger049a95a2015-04-08 01:41:01 -050018struct in_addr net_ping_ip;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000019
Joe Hershberger049a95a2015-04-08 01:41:01 -050020static void set_icmp_header(uchar *pkt, struct in_addr dest)
Joe Hershberger4b11c912012-05-23 07:59:07 +000021{
22 /*
23 * Construct an IP and ICMP header.
24 */
Joe Hershberger4b11c912012-05-23 07:59:07 +000025 struct icmp_hdr *icmp = (struct icmp_hdr *)(pkt + IP_HDR_SIZE);
26
Duncan Hare5d457ec2018-06-24 15:40:41 -070027 net_set_ip_header(pkt, dest, net_ip, IP_ICMP_HDR_SIZE, IPPROTO_ICMP);
Joe Hershberger4b11c912012-05-23 07:59:07 +000028
29 icmp->type = ICMP_ECHO_REQUEST;
30 icmp->code = 0;
31 icmp->checksum = 0;
32 icmp->un.echo.id = 0;
Joe Hershberger331db5a2015-04-08 01:41:13 -050033 icmp->un.echo.sequence = htons(ping_seq_number++);
Simon Glass0da0fcd2015-01-19 22:16:08 -070034 icmp->checksum = compute_ip_checksum(icmp, ICMP_HDR_SIZE);
Joe Hershberger4b11c912012-05-23 07:59:07 +000035}
36
Joe Hershbergera36b12f2012-05-23 07:58:02 +000037static int ping_send(void)
38{
Joe Hershbergera36b12f2012-05-23 07:58:02 +000039 uchar *pkt;
Joe Hershberger00f33262012-05-23 07:59:09 +000040 int eth_hdr_size;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000041
42 /* XXX always send arp request */
43
Joe Hershberger049a95a2015-04-08 01:41:01 -050044 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &net_ping_ip);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000045
Joe Hershberger049a95a2015-04-08 01:41:01 -050046 net_arp_wait_packet_ip = net_ping_ip;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000047
Joe Hershberger1203fcc2015-04-08 01:41:05 -050048 eth_hdr_size = net_set_ether(net_tx_packet, net_null_ethaddr, PROT_IP);
49 pkt = (uchar *)net_tx_packet + eth_hdr_size;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000050
Joe Hershberger049a95a2015-04-08 01:41:01 -050051 set_icmp_header(pkt, net_ping_ip);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000052
53 /* size of the waiting packet */
Joe Hershberger85d25e02015-04-08 01:41:08 -050054 arp_wait_tx_packet_size = eth_hdr_size + IP_ICMP_HDR_SIZE;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000055
56 /* and do the ARP request */
Joe Hershberger85d25e02015-04-08 01:41:08 -050057 arp_wait_try = 1;
58 arp_wait_timer_start = get_timer(0);
59 arp_request();
Joe Hershbergera36b12f2012-05-23 07:58:02 +000060 return 1; /* waiting */
61}
62
Joe Hershberger331db5a2015-04-08 01:41:13 -050063static void ping_timeout_handler(void)
Joe Hershbergera36b12f2012-05-23 07:58:02 +000064{
65 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +000066 net_set_state(NETLOOP_FAIL); /* we did not get the reply */
Joe Hershbergera36b12f2012-05-23 07:58:02 +000067}
68
Joe Hershbergera36b12f2012-05-23 07:58:02 +000069void ping_start(void)
70{
71 printf("Using %s device\n", eth_get_name());
Joe Hershbergerbc0571f2015-04-08 01:41:21 -050072 net_set_timeout_handler(10000UL, ping_timeout_handler);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000073
74 ping_send();
75}
76
Joe Hershbergercb487f52012-05-23 07:58:06 +000077void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
Joe Hershbergera36b12f2012-05-23 07:58:02 +000078{
Joe Hershbergere0a63072012-05-23 07:58:09 +000079 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Joe Hershberger049a95a2015-04-08 01:41:01 -050080 struct in_addr src_ip;
Joe Hershbergere7111012012-05-23 07:59:16 +000081 int eth_hdr_size;
Joe Hershbergerac3f26c2018-09-26 16:49:02 -050082 uchar *tx_packet;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000083
84 switch (icmph->type) {
85 case ICMP_ECHO_REPLY:
Joe Hershberger049a95a2015-04-08 01:41:01 -050086 src_ip = net_read_ip((void *)&ip->ip_src);
87 if (src_ip.s_addr == net_ping_ip.s_addr)
Joe Hershberger22f6e992012-05-23 07:59:14 +000088 net_set_state(NETLOOP_SUCCESS);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000089 return;
90 case ICMP_ECHO_REQUEST:
Joe Hershbergere7111012012-05-23 07:59:16 +000091 eth_hdr_size = net_update_ether(et, et->et_src, PROT_IP);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000092
Joe Hershberger331db5a2015-04-08 01:41:13 -050093 debug_cond(DEBUG_DEV_PKT,
94 "Got ICMP ECHO REQUEST, return %d bytes\n",
95 eth_hdr_size + len);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000096
97 ip->ip_sum = 0;
98 ip->ip_off = 0;
Joe Hershberger049a95a2015-04-08 01:41:01 -050099 net_copy_ip((void *)&ip->ip_dst, &ip->ip_src);
100 net_copy_ip((void *)&ip->ip_src, &net_ip);
Simon Glass0da0fcd2015-01-19 22:16:08 -0700101 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000102
103 icmph->type = ICMP_ECHO_REPLY;
104 icmph->checksum = 0;
Simon Glass0da0fcd2015-01-19 22:16:08 -0700105 icmph->checksum = compute_ip_checksum(icmph, len - IP_HDR_SIZE);
Joe Hershbergerac3f26c2018-09-26 16:49:02 -0500106
107 tx_packet = net_get_async_tx_pkt_buf();
108 memcpy(tx_packet, et, eth_hdr_size + len);
109 net_send_packet(tx_packet, eth_hdr_size + len);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000110 return;
111/* default:
112 return;*/
113 }
114}