blob: 0e81b2778ae0e15790cce8308a6aba2c84bf514a [file] [log] [blame]
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +09001#ifndef __LINUX_PIM_H
2#define __LINUX_PIM_H
3
Nikolay Aleksandrov556d2992016-10-31 13:21:02 +01004#include <linux/skbuff.h>
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +09005#include <asm/byteorder.h>
6
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +09007/* Message types - V1 */
Harvey Harrisonf3a7c662009-02-14 22:58:35 -08008#define PIM_V1_VERSION cpu_to_be32(0x10000000)
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +09009#define PIM_V1_REGISTER 1
10
11/* Message types - V2 */
12#define PIM_VERSION 2
Nikolay Aleksandrov56245ca2016-10-31 13:21:04 +010013
14/* RFC7761, sec 4.9:
15 * Type
16 * Types for specific PIM messages. PIM Types are:
17 *
18 * Message Type Destination
19 * ---------------------------------------------------------------------
20 * 0 = Hello Multicast to ALL-PIM-ROUTERS
21 * 1 = Register Unicast to RP
22 * 2 = Register-Stop Unicast to source of Register
23 * packet
24 * 3 = Join/Prune Multicast to ALL-PIM-ROUTERS
25 * 4 = Bootstrap Multicast to ALL-PIM-ROUTERS
26 * 5 = Assert Multicast to ALL-PIM-ROUTERS
27 * 6 = Graft (used in PIM-DM only) Unicast to RPF'(S)
28 * 7 = Graft-Ack (used in PIM-DM only) Unicast to source of Graft
29 * packet
30 * 8 = Candidate-RP-Advertisement Unicast to Domain's BSR
31 */
32enum {
33 PIM_TYPE_HELLO,
34 PIM_TYPE_REGISTER,
35 PIM_TYPE_REGISTER_STOP,
36 PIM_TYPE_JOIN_PRUNE,
37 PIM_TYPE_BOOTSTRAP,
38 PIM_TYPE_ASSERT,
39 PIM_TYPE_GRAFT,
40 PIM_TYPE_GRAFT_ACK,
41 PIM_TYPE_CANDIDATE_RP_ADV
42};
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +090043
Harvey Harrisonf3a7c662009-02-14 22:58:35 -080044#define PIM_NULL_REGISTER cpu_to_be32(0x40000000)
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +090045
Nikolay Aleksandrov556d2992016-10-31 13:21:02 +010046/* RFC7761, sec 4.9:
47 * The PIM header common to all PIM messages is:
48 * 0 1 2 3
49 * 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
50 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
51 * |PIM Ver| Type | Reserved | Checksum |
52 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
53 */
54struct pimhdr {
55 __u8 type;
56 __u8 reserved;
57 __be16 csum;
58};
Nikolay Aleksandrov1973a4e2015-11-26 15:23:48 +010059
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +090060/* PIMv2 register message header layout (ietf-draft-idmr-pimvsm-v2-00.ps */
Nikolay Aleksandrov556d2992016-10-31 13:21:02 +010061struct pimreghdr {
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +090062 __u8 type;
63 __u8 reserved;
64 __be16 csum;
65 __be32 flags;
66};
67
Nikolay Aleksandrov556d2992016-10-31 13:21:02 +010068int pim_rcv_v1(struct sk_buff *skb);
69
70static inline bool ipmr_pimsm_enabled(void)
71{
72 return IS_BUILTIN(CONFIG_IP_PIMSM_V1) || IS_BUILTIN(CONFIG_IP_PIMSM_V2);
73}
74
75static inline struct pimhdr *pim_hdr(const struct sk_buff *skb)
76{
77 return (struct pimhdr *)skb_transport_header(skb);
78}
79
80static inline u8 pim_hdr_version(const struct pimhdr *pimhdr)
81{
82 return pimhdr->type >> 4;
83}
84
85static inline u8 pim_hdr_type(const struct pimhdr *pimhdr)
86{
87 return pimhdr->type & 0xf;
88}
Nikolay Aleksandrov20bb6ce2016-10-31 13:21:03 +010089
90/* check if the address is 224.0.0.13, RFC7761 sec 4.3.1 */
91static inline bool pim_ipv4_all_pim_routers(__be32 addr)
92{
93 return addr == htonl(0xE000000D);
94}
YOSHIFUJI Hideaki2e804622008-04-03 09:22:09 +090095#endif