]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: pim: add all RFC7761 message types
authorNikolay Aleksandrov <nikolay@cumulusnetworks.com>
Mon, 31 Oct 2016 12:21:04 +0000 (13:21 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Oct 2016 20:18:30 +0000 (16:18 -0400)
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/pim.h
net/ipv4/ipmr.c
net/ipv6/ip6mr.c

index 1b6c0dbba94eef865d87dc19496c1541ebf67408..0e81b2778ae0e15790cce8308a6aba2c84bf514a 100644 (file)
 
 /* Message types - V2 */
 #define PIM_VERSION            2
-#define PIM_REGISTER           1
+
+/* RFC7761, sec 4.9:
+ *  Type
+ *        Types for specific PIM messages.  PIM Types are:
+ *
+ *  Message Type                          Destination
+ *  ---------------------------------------------------------------------
+ *  0 = Hello                             Multicast to ALL-PIM-ROUTERS
+ *  1 = Register                          Unicast to RP
+ *  2 = Register-Stop                     Unicast to source of Register
+ *                                        packet
+ *  3 = Join/Prune                        Multicast to ALL-PIM-ROUTERS
+ *  4 = Bootstrap                         Multicast to ALL-PIM-ROUTERS
+ *  5 = Assert                            Multicast to ALL-PIM-ROUTERS
+ *  6 = Graft (used in PIM-DM only)       Unicast to RPF'(S)
+ *  7 = Graft-Ack (used in PIM-DM only)   Unicast to source of Graft
+ *                                        packet
+ *  8 = Candidate-RP-Advertisement        Unicast to Domain's BSR
+ */
+enum {
+       PIM_TYPE_HELLO,
+       PIM_TYPE_REGISTER,
+       PIM_TYPE_REGISTER_STOP,
+       PIM_TYPE_JOIN_PRUNE,
+       PIM_TYPE_BOOTSTRAP,
+       PIM_TYPE_ASSERT,
+       PIM_TYPE_GRAFT,
+       PIM_TYPE_GRAFT_ACK,
+       PIM_TYPE_CANDIDATE_RP_ADV
+};
 
 #define PIM_NULL_REGISTER      cpu_to_be32(0x40000000)
 
index 5f006e13de567ad65ce856a47c118f5ea91ac671..51d71a70fbbeb24477b7c890fc5495de7a3b1961 100644 (file)
@@ -2053,7 +2053,7 @@ static int pim_rcv(struct sk_buff *skb)
                goto drop;
 
        pim = (struct pimreghdr *)skb_transport_header(skb);
-       if (pim->type != ((PIM_VERSION << 4) | (PIM_REGISTER)) ||
+       if (pim->type != ((PIM_VERSION << 4) | (PIM_TYPE_REGISTER)) ||
            (pim->flags & PIM_NULL_REGISTER) ||
            (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
             csum_fold(skb_checksum(skb, 0, skb->len, 0))))
index 7f4265b1649b60eff007b61c0a59bdb244de03d3..52101b37ad6e48c65dae320f44c1ad6ce0ac098c 100644 (file)
@@ -636,7 +636,7 @@ static int pim6_rcv(struct sk_buff *skb)
                goto drop;
 
        pim = (struct pimreghdr *)skb_transport_header(skb);
-       if (pim->type != ((PIM_VERSION << 4) | PIM_REGISTER) ||
+       if (pim->type != ((PIM_VERSION << 4) | PIM_TYPE_REGISTER) ||
            (pim->flags & PIM_NULL_REGISTER) ||
            (csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
                             sizeof(*pim), IPPROTO_PIM,