ip_icmp.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /* Copyright (C) 1991, 92, 93, 95, 96, 97, 99 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef __NETINET_IP_ICMP_H
  16. #define __NETINET_IP_ICMP_H 1
  17. #include <sys/cdefs.h>
  18. #include <sys/types.h>
  19. __BEGIN_DECLS
  20. struct icmphdr
  21. {
  22. u_int8_t type; /* message type */
  23. u_int8_t code; /* type sub-code */
  24. u_int16_t checksum;
  25. union
  26. {
  27. struct
  28. {
  29. u_int16_t id;
  30. u_int16_t sequence;
  31. } echo; /* echo datagram */
  32. u_int32_t gateway; /* gateway address */
  33. struct
  34. {
  35. u_int16_t __unused;
  36. u_int16_t mtu;
  37. } frag; /* path mtu discovery */
  38. } un;
  39. };
  40. #define ICMP_ECHOREPLY 0 /* Echo Reply */
  41. #define ICMP_DEST_UNREACH 3 /* Destination Unreachable */
  42. #define ICMP_SOURCE_QUENCH 4 /* Source Quench */
  43. #define ICMP_REDIRECT 5 /* Redirect (change route) */
  44. #define ICMP_ECHO 8 /* Echo Request */
  45. #define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */
  46. #define ICMP_PARAMETERPROB 12 /* Parameter Problem */
  47. #define ICMP_TIMESTAMP 13 /* Timestamp Request */
  48. #define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */
  49. #define ICMP_INFO_REQUEST 15 /* Information Request */
  50. #define ICMP_INFO_REPLY 16 /* Information Reply */
  51. #define ICMP_ADDRESS 17 /* Address Mask Request */
  52. #define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */
  53. #define NR_ICMP_TYPES 18
  54. /* Codes for UNREACH. */
  55. #define ICMP_NET_UNREACH 0 /* Network Unreachable */
  56. #define ICMP_HOST_UNREACH 1 /* Host Unreachable */
  57. #define ICMP_PROT_UNREACH 2 /* Protocol Unreachable */
  58. #define ICMP_PORT_UNREACH 3 /* Port Unreachable */
  59. #define ICMP_FRAG_NEEDED 4 /* Fragmentation Needed/DF set */
  60. #define ICMP_SR_FAILED 5 /* Source Route failed */
  61. #define ICMP_NET_UNKNOWN 6
  62. #define ICMP_HOST_UNKNOWN 7
  63. #define ICMP_HOST_ISOLATED 8
  64. #define ICMP_NET_ANO 9
  65. #define ICMP_HOST_ANO 10
  66. #define ICMP_NET_UNR_TOS 11
  67. #define ICMP_HOST_UNR_TOS 12
  68. #define ICMP_PKT_FILTERED 13 /* Packet filtered */
  69. #define ICMP_PREC_VIOLATION 14 /* Precedence violation */
  70. #define ICMP_PREC_CUTOFF 15 /* Precedence cut off */
  71. #define NR_ICMP_UNREACH 15 /* instead of hardcoding immediate value */
  72. /* Codes for REDIRECT. */
  73. #define ICMP_REDIR_NET 0 /* Redirect Net */
  74. #define ICMP_REDIR_HOST 1 /* Redirect Host */
  75. #define ICMP_REDIR_NETTOS 2 /* Redirect Net for TOS */
  76. #define ICMP_REDIR_HOSTTOS 3 /* Redirect Host for TOS */
  77. /* Codes for TIME_EXCEEDED. */
  78. #define ICMP_EXC_TTL 0 /* TTL count exceeded */
  79. #define ICMP_EXC_FRAGTIME 1 /* Fragment Reass time exceeded */
  80. #ifdef __USE_BSD
  81. /*
  82. * Copyright (c) 1982, 1986, 1993
  83. * The Regents of the University of California. All rights reserved.
  84. *
  85. * Redistribution and use in source and binary forms, with or without
  86. * modification, are permitted provided that the following conditions
  87. * are met:
  88. * 1. Redistributions of source code must retain the above copyright
  89. * notice, this list of conditions and the following disclaimer.
  90. * 2. Redistributions in binary form must reproduce the above copyright
  91. * notice, this list of conditions and the following disclaimer in the
  92. * documentation and/or other materials provided with the distribution.
  93. * 4. Neither the name of the University nor the names of its contributors
  94. * may be used to endorse or promote products derived from this software
  95. * without specific prior written permission.
  96. *
  97. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  98. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  99. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  100. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  101. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  102. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  103. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  104. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  105. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  106. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  107. * SUCH DAMAGE.
  108. *
  109. * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93
  110. */
  111. #include <netinet/in.h>
  112. #include <netinet/ip.h>
  113. /*
  114. * Internal of an ICMP Router Advertisement
  115. */
  116. struct icmp_ra_addr
  117. {
  118. u_int32_t ira_addr;
  119. u_int32_t ira_preference;
  120. };
  121. struct icmp
  122. {
  123. u_int8_t icmp_type; /* type of message, see below */
  124. u_int8_t icmp_code; /* type sub code */
  125. u_int16_t icmp_cksum; /* ones complement checksum of struct */
  126. union
  127. {
  128. u_char ih_pptr; /* ICMP_PARAMPROB */
  129. struct in_addr ih_gwaddr; /* gateway address */
  130. struct ih_idseq /* echo datagram */
  131. {
  132. u_int16_t icd_id;
  133. u_int16_t icd_seq;
  134. } ih_idseq;
  135. u_int32_t ih_void;
  136. /* ICMP_UNREACH_NEEDFRAG -- Path MTU Discovery (RFC1191) */
  137. struct ih_pmtu
  138. {
  139. u_int16_t ipm_void;
  140. u_int16_t ipm_nextmtu;
  141. } ih_pmtu;
  142. struct ih_rtradv
  143. {
  144. u_int8_t irt_num_addrs;
  145. u_int8_t irt_wpa;
  146. u_int16_t irt_lifetime;
  147. } ih_rtradv;
  148. } icmp_hun;
  149. #define icmp_pptr icmp_hun.ih_pptr
  150. #define icmp_gwaddr icmp_hun.ih_gwaddr
  151. #define icmp_id icmp_hun.ih_idseq.icd_id
  152. #define icmp_seq icmp_hun.ih_idseq.icd_seq
  153. #define icmp_void icmp_hun.ih_void
  154. #define icmp_pmvoid icmp_hun.ih_pmtu.ipm_void
  155. #define icmp_nextmtu icmp_hun.ih_pmtu.ipm_nextmtu
  156. #define icmp_num_addrs icmp_hun.ih_rtradv.irt_num_addrs
  157. #define icmp_wpa icmp_hun.ih_rtradv.irt_wpa
  158. #define icmp_lifetime icmp_hun.ih_rtradv.irt_lifetime
  159. union
  160. {
  161. struct
  162. {
  163. u_int32_t its_otime;
  164. u_int32_t its_rtime;
  165. u_int32_t its_ttime;
  166. } id_ts;
  167. struct
  168. {
  169. struct ip idi_ip;
  170. /* options and then 64 bits of data */
  171. } id_ip;
  172. struct icmp_ra_addr id_radv;
  173. u_int32_t id_mask;
  174. u_int8_t id_data[1];
  175. } icmp_dun;
  176. #define icmp_otime icmp_dun.id_ts.its_otime
  177. #define icmp_rtime icmp_dun.id_ts.its_rtime
  178. #define icmp_ttime icmp_dun.id_ts.its_ttime
  179. #define icmp_ip icmp_dun.id_ip.idi_ip
  180. #define icmp_radv icmp_dun.id_radv
  181. #define icmp_mask icmp_dun.id_mask
  182. #define icmp_data icmp_dun.id_data
  183. };
  184. /*
  185. * Lower bounds on packet lengths for various types.
  186. * For the error advice packets must first insure that the
  187. * packet is large enough to contain the returned ip header.
  188. * Only then can we do the check to see if 64 bits of packet
  189. * data have been returned, since we need to check the returned
  190. * ip header length.
  191. */
  192. #define ICMP_MINLEN 8 /* abs minimum */
  193. #define ICMP_TSLEN (8 + 3 * sizeof (n_time)) /* timestamp */
  194. #define ICMP_MASKLEN 12 /* address mask */
  195. #define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */
  196. #ifndef _IP_VHL
  197. #define ICMP_ADVLEN(p) (8 + ((p)->icmp_ip.ip_hl << 2) + 8)
  198. /* N.B.: must separately check that ip_hl >= 5 */
  199. #else
  200. #define ICMP_ADVLEN(p) (8 + (IP_VHL_HL((p)->icmp_ip.ip_vhl) << 2) + 8)
  201. /* N.B.: must separately check that header length >= 5 */
  202. #endif
  203. /* Definition of type and code fields. */
  204. /* defined above: ICMP_ECHOREPLY, ICMP_REDIRECT, ICMP_ECHO */
  205. #define ICMP_UNREACH 3 /* dest unreachable, codes: */
  206. #define ICMP_SOURCEQUENCH 4 /* packet lost, slow down */
  207. #define ICMP_ROUTERADVERT 9 /* router advertisement */
  208. #define ICMP_ROUTERSOLICIT 10 /* router solicitation */
  209. #define ICMP_TIMXCEED 11 /* time exceeded, code: */
  210. #define ICMP_PARAMPROB 12 /* ip header bad */
  211. #define ICMP_TSTAMP 13 /* timestamp request */
  212. #define ICMP_TSTAMPREPLY 14 /* timestamp reply */
  213. #define ICMP_IREQ 15 /* information request */
  214. #define ICMP_IREQREPLY 16 /* information reply */
  215. #define ICMP_MASKREQ 17 /* address mask request */
  216. #define ICMP_MASKREPLY 18 /* address mask reply */
  217. #define ICMP_MAXTYPE 18
  218. /* UNREACH codes */
  219. #define ICMP_UNREACH_NET 0 /* bad net */
  220. #define ICMP_UNREACH_HOST 1 /* bad host */
  221. #define ICMP_UNREACH_PROTOCOL 2 /* bad protocol */
  222. #define ICMP_UNREACH_PORT 3 /* bad port */
  223. #define ICMP_UNREACH_NEEDFRAG 4 /* IP_DF caused drop */
  224. #define ICMP_UNREACH_SRCFAIL 5 /* src route failed */
  225. #define ICMP_UNREACH_NET_UNKNOWN 6 /* unknown net */
  226. #define ICMP_UNREACH_HOST_UNKNOWN 7 /* unknown host */
  227. #define ICMP_UNREACH_ISOLATED 8 /* src host isolated */
  228. #define ICMP_UNREACH_NET_PROHIB 9 /* net denied */
  229. #define ICMP_UNREACH_HOST_PROHIB 10 /* host denied */
  230. #define ICMP_UNREACH_TOSNET 11 /* bad tos for net */
  231. #define ICMP_UNREACH_TOSHOST 12 /* bad tos for host */
  232. #define ICMP_UNREACH_FILTER_PROHIB 13 /* admin prohib */
  233. #define ICMP_UNREACH_HOST_PRECEDENCE 14 /* host prec vio. */
  234. #define ICMP_UNREACH_PRECEDENCE_CUTOFF 15 /* prec cutoff */
  235. /* REDIRECT codes */
  236. #define ICMP_REDIRECT_NET 0 /* for network */
  237. #define ICMP_REDIRECT_HOST 1 /* for host */
  238. #define ICMP_REDIRECT_TOSNET 2 /* for tos and net */
  239. #define ICMP_REDIRECT_TOSHOST 3 /* for tos and host */
  240. /* TIMEXCEED codes */
  241. #define ICMP_TIMXCEED_INTRANS 0 /* ttl==0 in transit */
  242. #define ICMP_TIMXCEED_REASS 1 /* ttl==0 in reass */
  243. /* PARAMPROB code */
  244. #define ICMP_PARAMPROB_OPTABSENT 1 /* req. opt. absent */
  245. #define ICMP_INFOTYPE(type) \
  246. ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \
  247. (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT || \
  248. (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY || \
  249. (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \
  250. (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY)
  251. #endif /* __USE_BSD */
  252. __END_DECLS
  253. #endif /* netinet/ip_icmp.h */