mroute6.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #ifndef __LINUX_MROUTE6_H
  2. #define __LINUX_MROUTE6_H
  3. #include <linux/types.h>
  4. #include <linux/sockios.h>
  5. /*
  6. * Based on the MROUTING 3.5 defines primarily to keep
  7. * source compatibility with BSD.
  8. *
  9. * See the pim6sd 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 MRT6_BASE 200
  16. #define MRT6_INIT (MRT6_BASE) /* Activate the kernel mroute code */
  17. #define MRT6_DONE (MRT6_BASE+1) /* Shutdown the kernel mroute */
  18. #define MRT6_ADD_MIF (MRT6_BASE+2) /* Add a virtual interface */
  19. #define MRT6_DEL_MIF (MRT6_BASE+3) /* Delete a virtual interface */
  20. #define MRT6_ADD_MFC (MRT6_BASE+4) /* Add a multicast forwarding entry */
  21. #define MRT6_DEL_MFC (MRT6_BASE+5) /* Delete a multicast forwarding entry */
  22. #define MRT6_VERSION (MRT6_BASE+6) /* Get the kernel multicast version */
  23. #define MRT6_ASSERT (MRT6_BASE+7) /* Activate PIM assert mode */
  24. #define MRT6_PIM (MRT6_BASE+8) /* enable PIM code */
  25. #define SIOCGETMIFCNT_IN6 SIOCPROTOPRIVATE /* IP protocol privates */
  26. #define SIOCGETSGCNT_IN6 (SIOCPROTOPRIVATE+1)
  27. #define SIOCGETRPF (SIOCPROTOPRIVATE+2)
  28. #define MAXMIFS 32
  29. typedef unsigned long mifbitmap_t; /* User mode code depends on this lot */
  30. typedef unsigned short mifi_t;
  31. #define ALL_MIFS ((mifi_t)(-1))
  32. #ifndef IF_SETSIZE
  33. #define IF_SETSIZE 256
  34. #endif
  35. typedef __u32 if_mask;
  36. #define NIFBITS (sizeof(if_mask) * 8) /* bits per mask */
  37. #if !defined(__KERNEL__) && !defined(DIV_ROUND_UP)
  38. #define DIV_ROUND_UP(x,y) (((x) + ((y) - 1)) / (y))
  39. #endif
  40. typedef struct if_set {
  41. if_mask ifs_bits[DIV_ROUND_UP(IF_SETSIZE, NIFBITS)];
  42. } if_set;
  43. #define IF_SET(n, p) ((p)->ifs_bits[(n)/NIFBITS] |= (1 << ((n) % NIFBITS)))
  44. #define IF_CLR(n, p) ((p)->ifs_bits[(n)/NIFBITS] &= ~(1 << ((n) % NIFBITS)))
  45. #define IF_ISSET(n, p) ((p)->ifs_bits[(n)/NIFBITS] & (1 << ((n) % NIFBITS)))
  46. #define IF_COPY(f, t) bcopy(f, t, sizeof(*(f)))
  47. #define IF_ZERO(p) bzero(p, sizeof(*(p)))
  48. /*
  49. * Passed by mrouted for an MRT_ADD_MIF - again we use the
  50. * mrouted 3.6 structures for compatibility
  51. */
  52. struct mif6ctl {
  53. mifi_t mif6c_mifi; /* Index of MIF */
  54. unsigned char mif6c_flags; /* MIFF_ flags */
  55. unsigned char vifc_threshold; /* ttl limit */
  56. __u16 mif6c_pifi; /* the index of the physical IF */
  57. unsigned int vifc_rate_limit; /* Rate limiter values (NI) */
  58. };
  59. #define MIFF_REGISTER 0x1 /* register vif */
  60. /*
  61. * Cache manipulation structures for mrouted and PIMd
  62. */
  63. struct mf6cctl
  64. {
  65. struct sockaddr_in6 mf6cc_origin; /* Origin of mcast */
  66. struct sockaddr_in6 mf6cc_mcastgrp; /* Group in question */
  67. mifi_t mf6cc_parent; /* Where it arrived */
  68. struct if_set mf6cc_ifset; /* Where it is going */
  69. };
  70. /*
  71. * Group count retrieval for pim6sd
  72. */
  73. struct sioc_sg_req6
  74. {
  75. struct sockaddr_in6 src;
  76. struct sockaddr_in6 grp;
  77. unsigned long pktcnt;
  78. unsigned long bytecnt;
  79. unsigned long wrong_if;
  80. };
  81. /*
  82. * To get vif packet counts
  83. */
  84. struct sioc_mif_req6
  85. {
  86. mifi_t mifi; /* Which iface */
  87. unsigned long icount; /* In packets */
  88. unsigned long ocount; /* Out packets */
  89. unsigned long ibytes; /* In bytes */
  90. unsigned long obytes; /* Out bytes */
  91. };
  92. /*
  93. * That's all usermode folks
  94. */
  95. /*
  96. * Structure used to communicate from kernel to multicast router.
  97. * We'll overlay the structure onto an MLD header (not an IPv6 heder like igmpmsg{}
  98. * used for IPv4 implementation). This is because this structure will be passed via an
  99. * IPv6 raw socket, on wich an application will only receiver the payload i.e the data after
  100. * the IPv6 header and all the extension headers. (See section 3 of RFC 3542)
  101. */
  102. struct mrt6msg {
  103. #define MRT6MSG_NOCACHE 1
  104. #define MRT6MSG_WRONGMIF 2
  105. #define MRT6MSG_WHOLEPKT 3 /* used for use level encap */
  106. __u8 im6_mbz; /* must be zero */
  107. __u8 im6_msgtype; /* what type of message */
  108. __u16 im6_mif; /* mif rec'd on */
  109. __u32 im6_pad; /* padding for 64 bit arch */
  110. struct in6_addr im6_src, im6_dst;
  111. };
  112. #endif