ping.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  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. #include "ping.h"
  12. #include "arp.h"
  13. #include <log.h>
  14. #include <net.h>
  15. static ushort ping_seq_number;
  16. /* The ip address to ping */
  17. struct in_addr net_ping_ip;
  18. static void set_icmp_header(uchar *pkt, struct in_addr dest)
  19. {
  20. /*
  21. * Construct an IP and ICMP header.
  22. */
  23. struct icmp_hdr *icmp = (struct icmp_hdr *)(pkt + IP_HDR_SIZE);
  24. net_set_ip_header(pkt, dest, net_ip, IP_ICMP_HDR_SIZE, IPPROTO_ICMP);
  25. icmp->type = ICMP_ECHO_REQUEST;
  26. icmp->code = 0;
  27. icmp->checksum = 0;
  28. icmp->un.echo.id = 0;
  29. icmp->un.echo.sequence = htons(ping_seq_number++);
  30. icmp->checksum = compute_ip_checksum(icmp, ICMP_HDR_SIZE);
  31. }
  32. static int ping_send(void)
  33. {
  34. uchar *pkt;
  35. int eth_hdr_size;
  36. /* XXX always send arp request */
  37. debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &net_ping_ip);
  38. net_arp_wait_packet_ip = net_ping_ip;
  39. eth_hdr_size = net_set_ether(net_tx_packet, net_null_ethaddr, PROT_IP);
  40. pkt = (uchar *)net_tx_packet + eth_hdr_size;
  41. set_icmp_header(pkt, net_ping_ip);
  42. /* size of the waiting packet */
  43. arp_wait_tx_packet_size = eth_hdr_size + IP_ICMP_HDR_SIZE;
  44. /* and do the ARP request */
  45. arp_wait_try = 1;
  46. arp_wait_timer_start = get_timer(0);
  47. arp_request();
  48. return 1; /* waiting */
  49. }
  50. static void ping_timeout_handler(void)
  51. {
  52. eth_halt();
  53. net_set_state(NETLOOP_FAIL); /* we did not get the reply */
  54. }
  55. void ping_start(void)
  56. {
  57. printf("Using %s device\n", eth_get_name());
  58. net_set_timeout_handler(10000UL, ping_timeout_handler);
  59. ping_send();
  60. }
  61. void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
  62. {
  63. struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
  64. struct in_addr src_ip;
  65. int eth_hdr_size;
  66. uchar *tx_packet;
  67. switch (icmph->type) {
  68. case ICMP_ECHO_REPLY:
  69. src_ip = net_read_ip((void *)&ip->ip_src);
  70. if (src_ip.s_addr == net_ping_ip.s_addr)
  71. net_set_state(NETLOOP_SUCCESS);
  72. return;
  73. case ICMP_ECHO_REQUEST:
  74. if (net_ip.s_addr == 0)
  75. return;
  76. eth_hdr_size = net_update_ether(et, et->et_src, PROT_IP);
  77. debug_cond(DEBUG_DEV_PKT,
  78. "Got ICMP ECHO REQUEST, return %d bytes\n",
  79. eth_hdr_size + len);
  80. ip->ip_sum = 0;
  81. ip->ip_off = 0;
  82. net_copy_ip((void *)&ip->ip_dst, &ip->ip_src);
  83. net_copy_ip((void *)&ip->ip_src, &net_ip);
  84. ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
  85. icmph->type = ICMP_ECHO_REPLY;
  86. icmph->checksum = 0;
  87. icmph->checksum = compute_ip_checksum(icmph, len - IP_HDR_SIZE);
  88. tx_packet = net_get_async_tx_pkt_buf();
  89. memcpy(tx_packet, et, eth_hdr_size + len);
  90. net_send_packet(tx_packet, eth_hdr_size + len);
  91. return;
  92. /* default:
  93. return;*/
  94. }
  95. }