c0af0f37e9fecf8a5fcebae2d73c1289fc1be335
[bgpcep.git] / bgp / extensions / linkstate / src / main / java / org / opendaylight / protocol / bgp / linkstate / impl / attribute / LinkstateAttributeParser.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.linkstate.impl.attribute;
9
10 import com.google.common.collect.HashMultimap;
11 import com.google.common.collect.Multimap;
12 import io.netty.buffer.ByteBuf;
13 import io.netty.buffer.Unpooled;
14 import org.opendaylight.protocol.bgp.parser.BGPParsingException;
15 import org.opendaylight.protocol.bgp.parser.spi.AbstractAttributeParser;
16 import org.opendaylight.protocol.bgp.parser.spi.AttributeSerializer;
17 import org.opendaylight.protocol.bgp.parser.spi.AttributeUtil;
18 import org.opendaylight.protocol.bgp.parser.spi.PeerSpecificParserConstraint;
19 import org.opendaylight.protocol.bgp.parser.spi.RevisedErrorHandling;
20 import org.opendaylight.protocol.rsvp.parser.spi.RSVPTeObjectRegistry;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.Attributes1;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.Attributes1Builder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.ProtocolId;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.ObjectType;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.destination.CLinkstateDestination;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.object.type.LinkCase;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.object.type.NodeCase;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.object.type.PrefixCase;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.object.type.TeLspCase;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.path.attribute.LinkStateAttribute;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.path.attribute.link.state.attribute.LinkAttributesCase;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.path.attribute.link.state.attribute.NodeAttributesCase;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.path.attribute.link.state.attribute.PrefixAttributesCase;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.linkstate.path.attribute.link.state.attribute.TeLspAttributesCase;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.update.attributes.mp.reach.nlri.advertized.routes.destination.type.DestinationLinkstateCase;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.path.attributes.Attributes;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.path.attributes.AttributesBuilder;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.Attributes2;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.destination.DestinationType;
40 import org.slf4j.Logger;
41 import org.slf4j.LoggerFactory;
42
43 /**
44  * Parser for Link State Path Attribute.
45  *
46  * @see <a href="http://tools.ietf.org/html/draft-gredler-idr-ls-distribution-04">BGP-LS draft</a>
47  */
48 public final class LinkstateAttributeParser extends AbstractAttributeParser implements AttributeSerializer {
49
50     private static final Logger LOG = LoggerFactory.getLogger(LinkstateAttributeParser.class);
51
52     private static final int TYPE = 29;
53
54     private static final int LEGACY_TYPE = 99;
55
56     private final int type;
57
58     private final RSVPTeObjectRegistry rsvpTeObjectRegistry;
59
60     public LinkstateAttributeParser(final boolean isIanaAssignedType, final RSVPTeObjectRegistry rsvpTeObjectRegistry) {
61         this.type = isIanaAssignedType ? TYPE : LEGACY_TYPE;
62         this.rsvpTeObjectRegistry = rsvpTeObjectRegistry;
63     }
64
65     private static Multimap<Integer, ByteBuf> getAttributesMap(final ByteBuf buffer) {
66         /*
67          * e.g. IS-IS Area Identifier TLV can occur multiple times
68          */
69         final Multimap<Integer, ByteBuf> map = HashMultimap.create();
70         while (buffer.isReadable()) {
71             final int type = buffer.readUnsignedShort();
72             final int length = buffer.readUnsignedShort();
73             final ByteBuf value = buffer.readSlice(length);
74             map.put(type, value);
75         }
76         return map;
77     }
78
79     public int getType() {
80         return this.type;
81     }
82
83     @Override
84     public void parseAttribute(final ByteBuf buffer, final AttributesBuilder builder,
85             final RevisedErrorHandling errorHandling, final PeerSpecificParserConstraint constraint)
86                     throws BGPParsingException {
87         // FIXME: BGPCEP-359: we need an updated link-state spec for RFC7606
88         final CLinkstateDestination lsDestination = getNlriType(builder);
89         if (lsDestination == null) {
90             LOG.warn("No Linkstate NLRI found, not parsing Linkstate attribute");
91             return;
92         }
93         final ObjectType nlriType = lsDestination.getObjectType();
94         final ProtocolId protocolId = lsDestination.getProtocolId();
95         final Attributes1 a = new Attributes1Builder().setLinkStateAttribute(parseLinkState(nlriType, protocolId, buffer)).build();
96         builder.addAugmentation(Attributes1.class, a);
97     }
98
99     private static CLinkstateDestination getNlriType(final AttributesBuilder pab) {
100         final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.Attributes1 mpr = pab.augmentation(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.Attributes1.class);
101         if (mpr != null && mpr.getMpReachNlri() != null) {
102             final DestinationType dt = mpr.getMpReachNlri().getAdvertizedRoutes().getDestinationType();
103             if (dt instanceof DestinationLinkstateCase) {
104                 for (final CLinkstateDestination d : ((DestinationLinkstateCase) dt).getDestinationLinkstate().getCLinkstateDestination()) {
105                     return d;
106                 }
107             }
108         }
109         final Attributes2 mpu = pab.augmentation(Attributes2.class);
110         if (mpu != null && mpu.getMpUnreachNlri() != null) {
111             final DestinationType dt = mpu.getMpUnreachNlri().getWithdrawnRoutes().getDestinationType();
112             if (dt instanceof org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.update.attributes.mp.unreach.nlri.withdrawn.routes.destination.type.DestinationLinkstateCase) {
113                 for(final CLinkstateDestination d :((org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev180329.update.attributes.mp.unreach.nlri.withdrawn.
114                     routes.destination.type.DestinationLinkstateCase) dt).getDestinationLinkstate().getCLinkstateDestination()) {
115                     return d;
116                 }
117             }
118         }
119         return null;
120     }
121
122     private LinkStateAttribute parseLinkState(final ObjectType nlri, final ProtocolId protocolId, final ByteBuf buffer) throws BGPParsingException {
123
124         if (nlri instanceof PrefixCase) {
125             return PrefixAttributesParser.parsePrefixAttributes(getAttributesMap(buffer), protocolId);
126         } else if (nlri instanceof LinkCase) {
127             return LinkAttributesParser.parseLinkAttributes(getAttributesMap(buffer), protocolId);
128         } else if (nlri instanceof NodeCase) {
129             return NodeAttributesParser.parseNodeAttributes(getAttributesMap(buffer), protocolId);
130         } else if (nlri instanceof TeLspCase) {
131             return TeLspAttributesParser.parseTeLspAttributes(this.rsvpTeObjectRegistry, getAttributesMap(buffer)
132                 .entries().iterator().next().getValue());
133         } else {
134             throw new IllegalStateException("Unhandled NLRI type " + nlri);
135         }
136     }
137
138     /**
139      * Serialize linkstate attributes.
140      *
141      * @param attribute DataObject representing LinkstatePathAttribute
142      * @param byteAggregator ByteBuf where all serialized data are aggregated
143      */
144
145     @Override
146     public void serializeAttribute(final Attributes attribute, final ByteBuf byteAggregator) {
147         final Attributes1 pathAttributes1 = attribute.augmentation(Attributes1.class);
148         if (pathAttributes1 == null) {
149             return;
150         }
151         final LinkStateAttribute linkState = pathAttributes1.getLinkStateAttribute();
152         final ByteBuf lsBuffer = Unpooled.buffer();
153         if (linkState instanceof LinkAttributesCase) {
154             LinkAttributesParser.serializeLinkAttributes((LinkAttributesCase) linkState, lsBuffer);
155         } else if (linkState instanceof NodeAttributesCase) {
156             NodeAttributesParser.serializeNodeAttributes((NodeAttributesCase) linkState, lsBuffer);
157         } else if (linkState instanceof PrefixAttributesCase) {
158             PrefixAttributesParser.serializePrefixAttributes((PrefixAttributesCase) linkState, lsBuffer);
159         } else if (linkState instanceof TeLspAttributesCase) {
160             TeLspAttributesParser.serializeLspAttributes(this.rsvpTeObjectRegistry, (TeLspAttributesCase) linkState, lsBuffer);
161             byteAggregator.writeBytes(lsBuffer);
162             return;
163         }
164         AttributeUtil.formatAttribute(AttributeUtil.OPTIONAL, getType(), lsBuffer, byteAggregator);
165     }
166 }