igmp.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2. /*
  3. * Linux NET3: Internet Group Management Protocol [IGMP]
  4. *
  5. * Authors:
  6. * Alan Cox <alan@lxorguk.ukuu.org.uk>
  7. *
  8. * Extended to talk the BSD extended IGMP protocol of mrouted 3.6
  9. *
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version
  14. * 2 of the License, or (at your option) any later version.
  15. */
  16. #ifndef _UAPI_LINUX_IGMP_H
  17. #define _UAPI_LINUX_IGMP_H
  18. #include <linux/types.h>
  19. #include <asm/byteorder.h>
  20. /*
  21. * IGMP protocol structures
  22. */
  23. /*
  24. * Header in on cable format
  25. */
  26. struct igmphdr {
  27. __u8 type;
  28. __u8 code; /* For newer IGMP */
  29. __sum16 csum;
  30. __be32 group;
  31. };
  32. /* V3 group record types [grec_type] */
  33. #define IGMPV3_MODE_IS_INCLUDE 1
  34. #define IGMPV3_MODE_IS_EXCLUDE 2
  35. #define IGMPV3_CHANGE_TO_INCLUDE 3
  36. #define IGMPV3_CHANGE_TO_EXCLUDE 4
  37. #define IGMPV3_ALLOW_NEW_SOURCES 5
  38. #define IGMPV3_BLOCK_OLD_SOURCES 6
  39. struct igmpv3_grec {
  40. __u8 grec_type;
  41. __u8 grec_auxwords;
  42. __be16 grec_nsrcs;
  43. __be32 grec_mca;
  44. __be32 grec_src[0];
  45. };
  46. struct igmpv3_report {
  47. __u8 type;
  48. __u8 resv1;
  49. __sum16 csum;
  50. __be16 resv2;
  51. __be16 ngrec;
  52. struct igmpv3_grec grec[0];
  53. };
  54. struct igmpv3_query {
  55. __u8 type;
  56. __u8 code;
  57. __sum16 csum;
  58. __be32 group;
  59. #if defined(__LITTLE_ENDIAN_BITFIELD)
  60. __u8 qrv:3,
  61. suppress:1,
  62. resv:4;
  63. #elif defined(__BIG_ENDIAN_BITFIELD)
  64. __u8 resv:4,
  65. suppress:1,
  66. qrv:3;
  67. #else
  68. #error "Please fix <asm/byteorder.h>"
  69. #endif
  70. __u8 qqic;
  71. __be16 nsrcs;
  72. __be32 srcs[0];
  73. };
  74. #define IGMP_HOST_MEMBERSHIP_QUERY 0x11 /* From RFC1112 */
  75. #define IGMP_HOST_MEMBERSHIP_REPORT 0x12 /* Ditto */
  76. #define IGMP_DVMRP 0x13 /* DVMRP routing */
  77. #define IGMP_PIM 0x14 /* PIM routing */
  78. #define IGMP_TRACE 0x15
  79. #define IGMPV2_HOST_MEMBERSHIP_REPORT 0x16 /* V2 version of 0x12 */
  80. #define IGMP_HOST_LEAVE_MESSAGE 0x17
  81. #define IGMPV3_HOST_MEMBERSHIP_REPORT 0x22 /* V3 version of 0x12 */
  82. #define IGMP_MTRACE_RESP 0x1e
  83. #define IGMP_MTRACE 0x1f
  84. /*
  85. * Use the BSD names for these for compatibility
  86. */
  87. #define IGMP_DELAYING_MEMBER 0x01
  88. #define IGMP_IDLE_MEMBER 0x02
  89. #define IGMP_LAZY_MEMBER 0x03
  90. #define IGMP_SLEEPING_MEMBER 0x04
  91. #define IGMP_AWAKENING_MEMBER 0x05
  92. #define IGMP_MINLEN 8
  93. #define IGMP_MAX_HOST_REPORT_DELAY 10 /* max delay for response to */
  94. /* query (in seconds) */
  95. #define IGMP_TIMER_SCALE 10 /* denotes that the igmphdr->timer field */
  96. /* specifies time in 10th of seconds */
  97. #define IGMP_AGE_THRESHOLD 400 /* If this host don't hear any IGMP V1 */
  98. /* message in this period of time, */
  99. /* revert to IGMP v2 router. */
  100. #define IGMP_ALL_HOSTS htonl(0xE0000001L)
  101. #define IGMP_ALL_ROUTER htonl(0xE0000002L)
  102. #define IGMPV3_ALL_MCR htonl(0xE0000016L)
  103. #define IGMP_LOCAL_GROUP htonl(0xE0000000L)
  104. #define IGMP_LOCAL_GROUP_MASK htonl(0xFFFFFF00L)
  105. /*
  106. * struct for keeping the multicast list in
  107. */
  108. #endif /* _UAPI_LINUX_IGMP_H */