2008-04-03 08:22:09 +08:00
|
|
|
#ifndef __LINUX_PIM_H
|
|
|
|
#define __LINUX_PIM_H
|
|
|
|
|
2016-10-31 20:21:02 +08:00
|
|
|
#include <linux/skbuff.h>
|
2008-04-03 08:22:09 +08:00
|
|
|
#include <asm/byteorder.h>
|
|
|
|
|
|
|
|
/* Message types - V1 */
|
2009-02-15 14:58:35 +08:00
|
|
|
#define PIM_V1_VERSION cpu_to_be32(0x10000000)
|
2008-04-03 08:22:09 +08:00
|
|
|
#define PIM_V1_REGISTER 1
|
|
|
|
|
|
|
|
/* Message types - V2 */
|
|
|
|
#define PIM_VERSION 2
|
|
|
|
#define PIM_REGISTER 1
|
|
|
|
|
2009-02-15 14:58:35 +08:00
|
|
|
#define PIM_NULL_REGISTER cpu_to_be32(0x40000000)
|
2008-04-03 08:22:09 +08:00
|
|
|
|
2016-10-31 20:21:02 +08:00
|
|
|
/* RFC7761, sec 4.9:
|
|
|
|
* The PIM header common to all PIM messages is:
|
|
|
|
* 0 1 2 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* |PIM Ver| Type | Reserved | Checksum |
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
*/
|
|
|
|
struct pimhdr {
|
|
|
|
__u8 type;
|
|
|
|
__u8 reserved;
|
|
|
|
__be16 csum;
|
|
|
|
};
|
2015-11-26 22:23:48 +08:00
|
|
|
|
2008-04-03 08:22:09 +08:00
|
|
|
/* PIMv2 register message header layout (ietf-draft-idmr-pimvsm-v2-00.ps */
|
2016-10-31 20:21:02 +08:00
|
|
|
struct pimreghdr {
|
2008-04-03 08:22:09 +08:00
|
|
|
__u8 type;
|
|
|
|
__u8 reserved;
|
|
|
|
__be16 csum;
|
|
|
|
__be32 flags;
|
|
|
|
};
|
|
|
|
|
2016-10-31 20:21:02 +08:00
|
|
|
int pim_rcv_v1(struct sk_buff *skb);
|
|
|
|
|
|
|
|
static inline bool ipmr_pimsm_enabled(void)
|
|
|
|
{
|
|
|
|
return IS_BUILTIN(CONFIG_IP_PIMSM_V1) || IS_BUILTIN(CONFIG_IP_PIMSM_V2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct pimhdr *pim_hdr(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct pimhdr *)skb_transport_header(skb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u8 pim_hdr_version(const struct pimhdr *pimhdr)
|
|
|
|
{
|
|
|
|
return pimhdr->type >> 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u8 pim_hdr_type(const struct pimhdr *pimhdr)
|
|
|
|
{
|
|
|
|
return pimhdr->type & 0xf;
|
|
|
|
}
|
2008-04-03 08:22:09 +08:00
|
|
|
#endif
|