icmp.c,v
上传用户:lywr2008
上传日期:2022-05-26
资源大小:9k
文件大小:2k
源码类别:

网络

开发平台:

Unix_Linux

  1. head 1.1;
  2. access;
  3. symbols;
  4. locks
  5. dls:1.1; strict;
  6. comment @ * @;
  7. 1.1
  8. date 97.09.21.19.26.41; author dls; state Dist;
  9. branches;
  10. next ;
  11. desc
  12. @@
  13. 1.1
  14. log
  15. @pre-3e code
  16. @
  17. text
  18. @/* icmp.c - icmp */
  19. #include <conf.h>
  20. #include <kernel.h>
  21. #include <network.h>
  22. struct ep *icsetbuf();
  23. /*
  24.  * ICT_REDIRECT - pa2 == gateway address
  25.  * ICT_PARAMP - pa2 == (packet) pointer to parameter error
  26.  * ICT_MASKRP - pa2 == mask address
  27.  * ICT_ECHORQ - pa1 == seq, pa2 == data size
  28.  */
  29. /*------------------------------------------------------------------------
  30.  *  icmp -  send an ICMP message
  31.  *------------------------------------------------------------------------
  32.  */
  33. icmp(type, code, dst, pa1, pa2)
  34. short type, code;
  35. IPaddr dst;
  36. char *pa1, *pa2;
  37. {
  38. struct ep *pep;
  39. struct ip *pip;
  40. struct icmp *pic;
  41. Bool isresp, iserr;
  42. int datalen;
  43. IcmpOutMsgs++;
  44. pep = icsetbuf(type, pa1, &isresp, &iserr);
  45. if (pep == 0) {
  46. IcmpOutErrors++;
  47. return SYSERR;
  48. }
  49. pip = (struct ip *)pep->ep_data;
  50. pic = (struct icmp *) pip->ip_data;
  51. datalen = IC_HLEN;
  52. /* we fill in the source here, so routing won't break it */
  53. if (isresp) {
  54. if (iserr) {
  55. if (!icerrok(pep)) {
  56. freebuf(pep);
  57. return OK;
  58. }
  59. blkcopy(pic->ic_data, pip, IP_HLEN(pip)+8);
  60. datalen += IP_HLEN(pip)+8;
  61. }
  62. icsetsrc(pip);
  63. } else
  64. pip->ip_src = ip_anyaddr;
  65. pip->ip_dst = dst;
  66. pic->ic_type = (char) type;
  67. pic->ic_code = (char) code;
  68. if (!isresp) {
  69. if (type == ICT_ECHORQ)
  70. pic->ic_seq = (int) pa1;
  71. else
  72. pic->ic_seq = 0;
  73. pic->ic_id = getpid();
  74. }
  75. datalen += icsetdata(type, pip, pa2);
  76. pic->ic_cksum = 0;
  77. pic->ic_cksum = cksum(pic, datalen);
  78. ipsend(dst, pep, datalen, IPT_ICMP, IPP_INCTL, IP_TTL);
  79. return OK;
  80. }
  81. @