mroute.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_MROUTE_H
  2. #define __LINUX_MROUTE_H
  3. #include <linux/sockios.h>
  4. #include <linux/in.h>
  5. /*
  6.  * Based on the MROUTING 3.5 defines primarily to keep
  7.  * source compatibility with BSD.
  8.  *
  9.  * See the mrouted code for the original history.
  10.  *
  11.  *      Protocol Independent Multicast (PIM) data structures included
  12.  *      Carlos Picoto (cap@di.fc.ul.pt)
  13.  *
  14.  */
  15. #define MRT_BASE 200
  16. #define MRT_INIT (MRT_BASE) /* Activate the kernel mroute code  */
  17. #define MRT_DONE (MRT_BASE+1) /* Shutdown the kernel mroute */
  18. #define MRT_ADD_VIF (MRT_BASE+2) /* Add a virtual interface */
  19. #define MRT_DEL_VIF (MRT_BASE+3) /* Delete a virtual interface */
  20. #define MRT_ADD_MFC (MRT_BASE+4) /* Add a multicast forwarding entry */
  21. #define MRT_DEL_MFC (MRT_BASE+5) /* Delete a multicast forwarding entry */
  22. #define MRT_VERSION (MRT_BASE+6) /* Get the kernel multicast version */
  23. #define MRT_ASSERT (MRT_BASE+7) /* Activate PIM assert mode */
  24. #define MRT_PIM (MRT_BASE+8) /* enable PIM code */
  25. #define SIOCGETVIFCNT SIOCPROTOPRIVATE /* IP protocol privates */
  26. #define SIOCGETSGCNT (SIOCPROTOPRIVATE+1)
  27. #define SIOCGETRPF (SIOCPROTOPRIVATE+2)
  28. #define MAXVIFS 32
  29. typedef unsigned long vifbitmap_t; /* User mode code depends on this lot */
  30. typedef unsigned short vifi_t;
  31. #define ALL_VIFS ((vifi_t)(-1))
  32. /*
  33.  * Same idea as select
  34.  */
  35.  
  36. #define VIFM_SET(n,m) ((m)|=(1<<(n)))
  37. #define VIFM_CLR(n,m) ((m)&=~(1<<(n)))
  38. #define VIFM_ISSET(n,m) ((m)&(1<<(n)))
  39. #define VIFM_CLRALL(m) ((m)=0)
  40. #define VIFM_COPY(mfrom,mto) ((mto)=(mfrom))
  41. #define VIFM_SAME(m1,m2) ((m1)==(m2))
  42. /*
  43.  * Passed by mrouted for an MRT_ADD_VIF - again we use the
  44.  * mrouted 3.6 structures for compatibility
  45.  */
  46.  
  47. struct vifctl {
  48. vifi_t vifc_vifi; /* Index of VIF */
  49. unsigned char vifc_flags; /* VIFF_ flags */
  50. unsigned char vifc_threshold; /* ttl limit */
  51. unsigned int vifc_rate_limit; /* Rate limiter values (NI) */
  52. struct in_addr vifc_lcl_addr; /* Our address */
  53. struct in_addr vifc_rmt_addr; /* IPIP tunnel addr */
  54. };
  55. #define VIFF_TUNNEL 0x1 /* IPIP tunnel */
  56. #define VIFF_SRCRT 0x2 /* NI */
  57. #define VIFF_REGISTER 0x4 /* register vif */
  58. /*
  59.  * Cache manipulation structures for mrouted and PIMd
  60.  */
  61.  
  62. struct mfcctl
  63. {
  64. struct in_addr mfcc_origin; /* Origin of mcast */
  65. struct in_addr mfcc_mcastgrp; /* Group in question */
  66. vifi_t mfcc_parent; /* Where it arrived */
  67. unsigned char mfcc_ttls[MAXVIFS]; /* Where it is going */
  68. unsigned int mfcc_pkt_cnt; /* pkt count for src-grp */
  69. unsigned int mfcc_byte_cnt;
  70. unsigned int mfcc_wrong_if;
  71. int      mfcc_expire;
  72. };
  73. /* 
  74.  * Group count retrieval for mrouted
  75.  */
  76.  
  77. struct sioc_sg_req
  78. {
  79. struct in_addr src;
  80. struct in_addr grp;
  81. unsigned long pktcnt;
  82. unsigned long bytecnt;
  83. unsigned long wrong_if;
  84. };
  85. /*
  86.  * To get vif packet counts
  87.  */
  88. struct sioc_vif_req
  89. {
  90. vifi_t vifi; /* Which iface */
  91. unsigned long icount; /* In packets */
  92. unsigned long ocount; /* Out packets */
  93. unsigned long ibytes; /* In bytes */
  94. unsigned long obytes; /* Out bytes */
  95. };
  96. /*
  97.  * This is the format the mroute daemon expects to see IGMP control
  98.  * data. Magically happens to be like an IP packet as per the original
  99.  */
  100.  
  101. struct igmpmsg
  102. {
  103. __u32 unused1,unused2;
  104. unsigned char im_msgtype; /* What is this */
  105. unsigned char im_mbz; /* Must be zero */
  106. unsigned char im_vif; /* Interface (this ought to be a vifi_t!) */
  107. unsigned char unused3;
  108. struct in_addr im_src,im_dst;
  109. };
  110. /*
  111.  * That's all usermode folks
  112.  */
  113. #ifdef __KERNEL__
  114. #include <net/sock.h>
  115. extern int ip_mroute_setsockopt(struct sock *, int, char __user *, int);
  116. extern int ip_mroute_getsockopt(struct sock *, int, char __user *, int __user *);
  117. extern int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg);
  118. extern void ip_mr_init(void);
  119. struct vif_device
  120. {
  121. struct net_device  *dev; /* Device we are using */
  122. unsigned long bytes_in,bytes_out;
  123. unsigned long pkt_in,pkt_out; /* Statistics  */
  124. unsigned long rate_limit; /* Traffic shaping (NI)  */
  125. unsigned char threshold; /* TTL threshold  */
  126. unsigned short flags; /* Control flags  */
  127. __u32 local,remote; /* Addresses(remote for tunnels)*/
  128. int link; /* Physical interface index */
  129. };
  130. #define VIFF_STATIC 0x8000
  131. struct mfc_cache 
  132. {
  133. struct mfc_cache *next; /* Next entry on cache line  */
  134. __u32 mfc_mcastgrp; /* Group the entry belongs to  */
  135. __u32 mfc_origin; /* Source of packet  */
  136. vifi_t mfc_parent; /* Source interface */
  137. int mfc_flags; /* Flags on line */
  138. union {
  139. struct {
  140. unsigned long expires;
  141. struct sk_buff_head unresolved; /* Unresolved buffers */
  142. } unres;
  143. struct {
  144. unsigned long last_assert;
  145. int minvif;
  146. int maxvif;
  147. unsigned long bytes;
  148. unsigned long pkt;
  149. unsigned long wrong_if;
  150. unsigned char ttls[MAXVIFS]; /* TTL thresholds */
  151. } res;
  152. } mfc_un;
  153. };
  154. #define MFC_STATIC 1
  155. #define MFC_NOTIFY 2
  156. #define MFC_LINES 64
  157. #ifdef __BIG_ENDIAN
  158. #define MFC_HASH(a,b) ((((a)>>24)^((b)>>26))&(MFC_LINES-1))
  159. #else
  160. #define MFC_HASH(a,b) (((a)^((b)>>2))&(MFC_LINES-1))
  161. #endif
  162. #endif
  163. #define MFC_ASSERT_THRESH (3*HZ) /* Maximal freq. of asserts */
  164. /*
  165.  * Pseudo messages used by mrouted
  166.  */
  167. #define IGMPMSG_NOCACHE 1 /* Kern cache fill request to mrouted */
  168. #define IGMPMSG_WRONGVIF 2 /* For PIM assert processing (unused) */
  169. #define IGMPMSG_WHOLEPKT 3 /* For PIM Register processing */
  170. #ifdef __KERNEL__
  171. #define PIM_V1_VERSION __constant_htonl(0x10000000)
  172. #define PIM_V1_REGISTER 1
  173. #define PIM_VERSION 2
  174. #define PIM_REGISTER 1
  175. #define PIM_NULL_REGISTER __constant_htonl(0x40000000)
  176. /* PIMv2 register message header layout (ietf-draft-idmr-pimvsm-v2-00.ps */
  177. struct pimreghdr
  178. {
  179. __u8 type;
  180. __u8 reserved;
  181. __u16 csum;
  182. __u32 flags;
  183. };
  184. extern int pim_rcv_v1(struct sk_buff *);
  185. struct rtmsg;
  186. extern int ipmr_get_route(struct sk_buff *skb, struct rtmsg *rtm, int nowait);
  187. #endif
  188. #endif