blob: 024e8eab90911076b53454cae057c778751c8b7a [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"
Simon Glass90526e92020-05-10 11:39:56 -060014#include <net.h>
Joe Hershbergera36b12f2012-05-23 07:58:02 +000015
Joe Hershberger331db5a2015-04-08 01:41:13 -050016static ushort ping_seq_number;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000017
18/* The ip address to ping */
Joe Hershberger049a95a2015-04-08 01:41:01 -050019struct in_addr net_ping_ip;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000020
Joe Hershberger049a95a2015-04-08 01:41:01 -050021static void set_icmp_header(uchar *pkt, struct in_addr dest)
Joe Hershberger4b11c912012-05-23 07:59:07 +000022{
23 /*
24 * Construct an IP and ICMP header.
25 */
Joe Hershberger4b11c912012-05-23 07:59:07 +000026 struct icmp_hdr *icmp = (struct icmp_hdr *)(pkt + IP_HDR_SIZE);
27
Duncan Hare5d457ec2018-06-24 15:40:41 -070028 net_set_ip_header(pkt, dest, net_ip, IP_ICMP_HDR_SIZE, IPPROTO_ICMP);
Joe Hershberger4b11c912012-05-23 07:59:07 +000029
30 icmp->type = ICMP_ECHO_REQUEST;
31 icmp->code = 0;
32 icmp->checksum = 0;
33 icmp->un.echo.id = 0;
Joe Hershberger331db5a2015-04-08 01:41:13 -050034 icmp->un.echo.sequence = htons(ping_seq_number++);
Simon Glass0da0fcd2015-01-19 22:16:08 -070035 icmp->checksum = compute_ip_checksum(icmp, ICMP_HDR_SIZE);
Joe Hershberger4b11c912012-05-23 07:59:07 +000036}
37
Joe Hershbergera36b12f2012-05-23 07:58:02 +000038static int ping_send(void)
39{
Joe Hershbergera36b12f2012-05-23 07:58:02 +000040 uchar *pkt;
Joe Hershberger00f33262012-05-23 07:59:09 +000041 int eth_hdr_size;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000042
43 /* XXX always send arp request */
44
Joe Hershberger049a95a2015-04-08 01:41:01 -050045 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &net_ping_ip);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000046
Joe Hershberger049a95a2015-04-08 01:41:01 -050047 net_arp_wait_packet_ip = net_ping_ip;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000048
Joe Hershberger1203fcc2015-04-08 01:41:05 -050049 eth_hdr_size = net_set_ether(net_tx_packet, net_null_ethaddr, PROT_IP);
50 pkt = (uchar *)net_tx_packet + eth_hdr_size;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000051
Joe Hershberger049a95a2015-04-08 01:41:01 -050052 set_icmp_header(pkt, net_ping_ip);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000053
54 /* size of the waiting packet */
Joe Hershberger85d25e02015-04-08 01:41:08 -050055 arp_wait_tx_packet_size = eth_hdr_size + IP_ICMP_HDR_SIZE;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000056
57 /* and do the ARP request */
Joe Hershberger85d25e02015-04-08 01:41:08 -050058 arp_wait_try = 1;
59 arp_wait_timer_start = get_timer(0);
60 arp_request();
Joe Hershbergera36b12f2012-05-23 07:58:02 +000061 return 1; /* waiting */
62}
63
Joe Hershberger331db5a2015-04-08 01:41:13 -050064static void ping_timeout_handler(void)
Joe Hershbergera36b12f2012-05-23 07:58:02 +000065{
66 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +000067 net_set_state(NETLOOP_FAIL); /* we did not get the reply */
Joe Hershbergera36b12f2012-05-23 07:58:02 +000068}
69
Joe Hershbergera36b12f2012-05-23 07:58:02 +000070void ping_start(void)
71{
72 printf("Using %s device\n", eth_get_name());
Joe Hershbergerbc0571f2015-04-08 01:41:21 -050073 net_set_timeout_handler(10000UL, ping_timeout_handler);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000074
75 ping_send();
76}
77
Joe Hershbergercb487f52012-05-23 07:58:06 +000078void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
Joe Hershbergera36b12f2012-05-23 07:58:02 +000079{
Joe Hershbergere0a63072012-05-23 07:58:09 +000080 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Joe Hershberger049a95a2015-04-08 01:41:01 -050081 struct in_addr src_ip;
Joe Hershbergere7111012012-05-23 07:59:16 +000082 int eth_hdr_size;
Joe Hershbergerac3f26c2018-09-26 16:49:02 -050083 uchar *tx_packet;
Joe Hershbergera36b12f2012-05-23 07:58:02 +000084
85 switch (icmph->type) {
86 case ICMP_ECHO_REPLY:
Joe Hershberger049a95a2015-04-08 01:41:01 -050087 src_ip = net_read_ip((void *)&ip->ip_src);
88 if (src_ip.s_addr == net_ping_ip.s_addr)
Joe Hershberger22f6e992012-05-23 07:59:14 +000089 net_set_state(NETLOOP_SUCCESS);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000090 return;
91 case ICMP_ECHO_REQUEST:
Joe Hershbergere7111012012-05-23 07:59:16 +000092 eth_hdr_size = net_update_ether(et, et->et_src, PROT_IP);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000093
Joe Hershberger331db5a2015-04-08 01:41:13 -050094 debug_cond(DEBUG_DEV_PKT,
95 "Got ICMP ECHO REQUEST, return %d bytes\n",
96 eth_hdr_size + len);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000097
98 ip->ip_sum = 0;
99 ip->ip_off = 0;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500100 net_copy_ip((void *)&ip->ip_dst, &ip->ip_src);
101 net_copy_ip((void *)&ip->ip_src, &net_ip);
Simon Glass0da0fcd2015-01-19 22:16:08 -0700102 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000103
104 icmph->type = ICMP_ECHO_REPLY;
105 icmph->checksum = 0;
Simon Glass0da0fcd2015-01-19 22:16:08 -0700106 icmph->checksum = compute_ip_checksum(icmph, len - IP_HDR_SIZE);
Joe Hershbergerac3f26c2018-09-26 16:49:02 -0500107
108 tx_packet = net_get_async_tx_pkt_buf();
109 memcpy(tx_packet, et, eth_hdr_size + len);
110 net_send_packet(tx_packet, eth_hdr_size + len);
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000111 return;
112/* default:
113 return;*/
114 }
115}