/kern_2.6.32/include/linux/igmp.h

http://omnia2droid.googlecode.com/ · C++ Header · 243 lines · 172 code · 36 blank · 35 comment · 0 complexity · 9e226c003112e5c023a03dfd7017865f MD5 · raw file

  1. /*
  2. * Linux NET3: Internet Group Management Protocol [IGMP]
  3. *
  4. * Authors:
  5. * Alan Cox <alan@lxorguk.ukuu.org.uk>
  6. *
  7. * Extended to talk the BSD extended IGMP protocol of mrouted 3.6
  8. *
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #ifndef _LINUX_IGMP_H
  16. #define _LINUX_IGMP_H
  17. #include <linux/types.h>
  18. #include <asm/byteorder.h>
  19. /*
  20. * IGMP protocol structures
  21. */
  22. /*
  23. * Header in on cable format
  24. */
  25. struct igmphdr
  26. {
  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. __be16 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. __be16 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 0x11 */
  80. #define IGMP_HOST_LEAVE_MESSAGE 0x17
  81. #define IGMPV3_HOST_MEMBERSHIP_REPORT 0x22 /* V3 version of 0x11 */
  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. #ifdef __KERNEL__
  109. #include <linux/skbuff.h>
  110. #include <linux/timer.h>
  111. #include <linux/in.h>
  112. static inline struct igmphdr *igmp_hdr(const struct sk_buff *skb)
  113. {
  114. return (struct igmphdr *)skb_transport_header(skb);
  115. }
  116. static inline struct igmpv3_report *
  117. igmpv3_report_hdr(const struct sk_buff *skb)
  118. {
  119. return (struct igmpv3_report *)skb_transport_header(skb);
  120. }
  121. static inline struct igmpv3_query *
  122. igmpv3_query_hdr(const struct sk_buff *skb)
  123. {
  124. return (struct igmpv3_query *)skb_transport_header(skb);
  125. }
  126. extern int sysctl_igmp_max_memberships;
  127. extern int sysctl_igmp_max_msf;
  128. struct ip_sf_socklist
  129. {
  130. unsigned int sl_max;
  131. unsigned int sl_count;
  132. __be32 sl_addr[0];
  133. };
  134. #define IP_SFLSIZE(count) (sizeof(struct ip_sf_socklist) + \
  135. (count) * sizeof(__be32))
  136. #define IP_SFBLOCK 10 /* allocate this many at once */
  137. /* ip_mc_socklist is real list now. Speed is not argument;
  138. this list never used in fast path code
  139. */
  140. struct ip_mc_socklist
  141. {
  142. struct ip_mc_socklist *next;
  143. struct ip_mreqn multi;
  144. unsigned int sfmode; /* MCAST_{INCLUDE,EXCLUDE} */
  145. struct ip_sf_socklist *sflist;
  146. };
  147. struct ip_sf_list
  148. {
  149. struct ip_sf_list *sf_next;
  150. __be32 sf_inaddr;
  151. unsigned long sf_count[2]; /* include/exclude counts */
  152. unsigned char sf_gsresp; /* include in g & s response? */
  153. unsigned char sf_oldin; /* change state */
  154. unsigned char sf_crcount; /* retrans. left to send */
  155. };
  156. struct ip_mc_list
  157. {
  158. struct in_device *interface;
  159. __be32 multiaddr;
  160. struct ip_sf_list *sources;
  161. struct ip_sf_list *tomb;
  162. unsigned int sfmode;
  163. unsigned long sfcount[2];
  164. struct ip_mc_list *next;
  165. struct timer_list timer;
  166. int users;
  167. atomic_t refcnt;
  168. spinlock_t lock;
  169. char tm_running;
  170. char reporter;
  171. char unsolicit_count;
  172. char loaded;
  173. unsigned char gsquery; /* check source marks? */
  174. unsigned char crcount;
  175. };
  176. /* V3 exponential field decoding */
  177. #define IGMPV3_MASK(value, nb) ((nb)>=32 ? (value) : ((1<<(nb))-1) & (value))
  178. #define IGMPV3_EXP(thresh, nbmant, nbexp, value) \
  179. ((value) < (thresh) ? (value) : \
  180. ((IGMPV3_MASK(value, nbmant) | (1<<(nbmant))) << \
  181. (IGMPV3_MASK((value) >> (nbmant), nbexp) + (nbexp))))
  182. #define IGMPV3_QQIC(value) IGMPV3_EXP(0x80, 4, 3, value)
  183. #define IGMPV3_MRC(value) IGMPV3_EXP(0x80, 4, 3, value)
  184. extern int ip_check_mc(struct in_device *dev, __be32 mc_addr, __be32 src_addr, u16 proto);
  185. extern int igmp_rcv(struct sk_buff *);
  186. extern int ip_mc_join_group(struct sock *sk, struct ip_mreqn *imr);
  187. extern int ip_mc_leave_group(struct sock *sk, struct ip_mreqn *imr);
  188. extern void ip_mc_drop_socket(struct sock *sk);
  189. extern int ip_mc_source(int add, int omode, struct sock *sk,
  190. struct ip_mreq_source *mreqs, int ifindex);
  191. extern int ip_mc_msfilter(struct sock *sk, struct ip_msfilter *msf,int ifindex);
  192. extern int ip_mc_msfget(struct sock *sk, struct ip_msfilter *msf,
  193. struct ip_msfilter __user *optval, int __user *optlen);
  194. extern int ip_mc_gsfget(struct sock *sk, struct group_filter *gsf,
  195. struct group_filter __user *optval, int __user *optlen);
  196. extern int ip_mc_sf_allow(struct sock *sk, __be32 local, __be32 rmt, int dif);
  197. extern void ip_mc_init_dev(struct in_device *);
  198. extern void ip_mc_destroy_dev(struct in_device *);
  199. extern void ip_mc_up(struct in_device *);
  200. extern void ip_mc_down(struct in_device *);
  201. extern void ip_mc_unmap(struct in_device *);
  202. extern void ip_mc_remap(struct in_device *);
  203. extern void ip_mc_dec_group(struct in_device *in_dev, __be32 addr);
  204. extern void ip_mc_inc_group(struct in_device *in_dev, __be32 addr);
  205. extern void ip_mc_rejoin_group(struct ip_mc_list *im);
  206. #endif
  207. #endif