bcmicmp.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Fundamental constants relating to ICMP Protocol
  3. *
  4. * Portions of this code are copyright (c) 2020 Cypress Semiconductor Corporation
  5. *
  6. * Copyright (C) 1999-2020, Broadcom Corporation
  7. *
  8. * Unless you and Broadcom execute a separate written software license
  9. * agreement governing use of this software, this software is licensed to you
  10. * under the terms of the GNU General Public License version 2 (the "GPL"),
  11. * available at http://www.broadcom.com/licenses/GPLv2.php, with the
  12. * following added to such license:
  13. *
  14. * As a special exception, the copyright holders of this software give you
  15. * permission to link this software with independent modules, and to copy and
  16. * distribute the resulting executable under terms of your choice, provided that
  17. * you also meet, for each linked independent module, the terms and conditions of
  18. * the license of that module. An independent module is a module which is not
  19. * derived from this software. The special exception does not apply to any
  20. * modifications of the software.
  21. *
  22. * Notwithstanding the above, under no circumstances may you combine this
  23. * software in any way with any other Broadcom software provided under a license
  24. * other than the GPL, without Broadcom's express prior written consent.
  25. *
  26. *
  27. * <<Broadcom-WL-IPTag/Open:>>
  28. *
  29. * $Id: bcmicmp.h 681862 2018-01-03 12:34:14Z $
  30. */
  31. #ifndef _bcmicmp_h_
  32. #define _bcmicmp_h_
  33. #ifndef _TYPEDEFS_H_
  34. #include <typedefs.h>
  35. #endif // endif
  36. /* This marks the start of a packed structure section. */
  37. #include <packed_section_start.h>
  38. #define ICMP_TYPE_ECHO_REQUEST 8 /* ICMP type echo request */
  39. #define ICMP_TYPE_ECHO_REPLY 0 /* ICMP type echo reply */
  40. #define ICMP_CHKSUM_OFFSET 2 /* ICMP body checksum offset */
  41. /* ICMP6 error and control message types */
  42. #define ICMP6_DEST_UNREACHABLE 1
  43. #define ICMP6_PKT_TOO_BIG 2
  44. #define ICMP6_TIME_EXCEEDED 3
  45. #define ICMP6_PARAM_PROBLEM 4
  46. #define ICMP6_ECHO_REQUEST 128
  47. #define ICMP6_ECHO_REPLY 129
  48. #define ICMP_MCAST_LISTENER_QUERY 130
  49. #define ICMP_MCAST_LISTENER_REPORT 131
  50. #define ICMP_MCAST_LISTENER_DONE 132
  51. #define ICMP6_RTR_SOLICITATION 133
  52. #define ICMP6_RTR_ADVERTISEMENT 134
  53. #define ICMP6_NEIGH_SOLICITATION 135
  54. #define ICMP6_NEIGH_ADVERTISEMENT 136
  55. #define ICMP6_REDIRECT 137
  56. #define ICMP6_RTRSOL_OPT_OFFSET 8
  57. #define ICMP6_RTRADV_OPT_OFFSET 16
  58. #define ICMP6_NEIGHSOL_OPT_OFFSET 24
  59. #define ICMP6_NEIGHADV_OPT_OFFSET 24
  60. #define ICMP6_REDIRECT_OPT_OFFSET 40
  61. BWL_PRE_PACKED_STRUCT struct icmp6_opt {
  62. uint8 type; /* Option identifier */
  63. uint8 length; /* Lenth including type and length */
  64. uint8 data[0]; /* Variable length data */
  65. } BWL_POST_PACKED_STRUCT;
  66. #define ICMP6_OPT_TYPE_SRC_LINK_LAYER 1
  67. #define ICMP6_OPT_TYPE_TGT_LINK_LAYER 2
  68. #define ICMP6_OPT_TYPE_PREFIX_INFO 3
  69. #define ICMP6_OPT_TYPE_REDIR_HDR 4
  70. #define ICMP6_OPT_TYPE_MTU 5
  71. /* These fields are stored in network order */
  72. BWL_PRE_PACKED_STRUCT struct bcmicmp_hdr {
  73. uint8 type; /* Echo or Echo-reply */
  74. uint8 code; /* Always 0 */
  75. uint16 chksum; /* Icmp packet checksum */
  76. } BWL_POST_PACKED_STRUCT;
  77. /* This marks the end of a packed structure section. */
  78. #include <packed_section_end.h>
  79. #endif /* #ifndef _bcmicmp_h_ */