1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/skbuff.h>
6 #include <asm/byteorder.h>
8 /* Message types - V1 */
9 #define PIM_V1_VERSION cpu_to_be32(0x10000000)
10 #define PIM_V1_REGISTER 1
12 /* Message types - V2 */
17 * Types for specific PIM messages. PIM Types are:
19 * Message Type Destination
20 * ---------------------------------------------------------------------
21 * 0 = Hello Multicast to ALL-PIM-ROUTERS
22 * 1 = Register Unicast to RP
23 * 2 = Register-Stop Unicast to source of Register
25 * 3 = Join/Prune Multicast to ALL-PIM-ROUTERS
26 * 4 = Bootstrap Multicast to ALL-PIM-ROUTERS
27 * 5 = Assert Multicast to ALL-PIM-ROUTERS
28 * 6 = Graft (used in PIM-DM only) Unicast to RPF'(S)
29 * 7 = Graft-Ack (used in PIM-DM only) Unicast to source of Graft
31 * 8 = Candidate-RP-Advertisement Unicast to Domain's BSR
36 PIM_TYPE_REGISTER_STOP,
42 PIM_TYPE_CANDIDATE_RP_ADV
45 #define PIM_NULL_REGISTER cpu_to_be32(0x40000000)
48 * The PIM header common to all PIM messages is:
50 * 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
51 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
52 * |PIM Ver| Type | Reserved | Checksum |
53 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
61 /* PIMv2 register message header layout (ietf-draft-idmr-pimvsm-v2-00.ps */
69 int pim_rcv_v1(struct sk_buff *skb);
71 static inline bool ipmr_pimsm_enabled(void)
73 return IS_BUILTIN(CONFIG_IP_PIMSM_V1) || IS_BUILTIN(CONFIG_IP_PIMSM_V2);
76 static inline struct pimhdr *pim_hdr(const struct sk_buff *skb)
78 return (struct pimhdr *)skb_transport_header(skb);
81 static inline u8 pim_hdr_version(const struct pimhdr *pimhdr)
83 return pimhdr->type >> 4;
86 static inline u8 pim_hdr_type(const struct pimhdr *pimhdr)
88 return pimhdr->type & 0xf;
91 /* check if the address is 224.0.0.13, RFC7761 sec 4.3.1 */
92 static inline bool pim_ipv4_all_pim_routers(__be32 addr)
94 return addr == htonl(0xE000000D);