ping.c 2.7 KB

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