Merge "Fix junit dependencies in poms. Reuse existing from parent, add missing ones."
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPSessionNegotiator.java
index 718a0d4b8fbaf722e4cb94f6180ab19632b94004..e536ba54f7e18157fc43767ae62a982063c34681 100644 (file)
@@ -13,27 +13,41 @@ import io.netty.util.Timer;
 import io.netty.util.TimerTask;
 import io.netty.util.concurrent.Promise;
 
+import java.util.List;
 import java.util.concurrent.TimeUnit;
 
+import javax.annotation.concurrent.GuardedBy;
+
 import org.opendaylight.protocol.bgp.parser.BGPDocumentedException;
 import org.opendaylight.protocol.bgp.parser.BGPError;
-import org.opendaylight.protocol.bgp.parser.BGPMessage;
 import org.opendaylight.protocol.bgp.parser.BGPSessionListener;
-import org.opendaylight.protocol.bgp.parser.message.BGPKeepAliveMessage;
-import org.opendaylight.protocol.bgp.parser.message.BGPNotificationMessage;
-import org.opendaylight.protocol.bgp.parser.message.BGPOpenMessage;
 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPSessionPreferences;
 import org.opendaylight.protocol.framework.AbstractSessionNegotiator;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev130918.LinkstateAddressFamily;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.linkstate.rev130918.LinkstateSubsequentAddressFamily;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.Keepalive;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.KeepaliveBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.Notify;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.NotifyBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.Open;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.OpenBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.open.BgpParameters;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.open.bgp.parameters.CParameters;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev130918.open.bgp.parameters.c.parameters.CMultiprotocol;
+import org.opendaylight.yangtools.yang.binding.Notification;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import com.google.common.annotations.VisibleForTesting;
 import com.google.common.base.Preconditions;
 
-public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMessage, BGPSessionImpl> {
+public final class BGPSessionNegotiator extends AbstractSessionNegotiator<Notification, BGPSessionImpl> {
        // 4 minutes recommended in http://tools.ietf.org/html/rfc4271#section-8.2.2
-       private static final int INITIAL_HOLDTIMER = 4;
+       // FIXME to actual value
+       protected static final int INITIAL_HOLDTIMER = 1;
 
-       private enum State {
+       @VisibleForTesting
+       public enum State {
                /**
                 * Negotiation has not started yet.
                 */
@@ -57,9 +71,15 @@ public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMes
        private final BGPSessionListener listener;
        private final Timer timer;
        private final BGPSessionPreferences localPref;
-       private BGPOpenMessage remotePref;
+
+       @GuardedBy("this")
+       private Open remotePref;
+
+       @GuardedBy("this")
        private State state = State.Idle;
-       private final short keepAlive = 15;
+
+       @GuardedBy("this")
+       private BGPSessionImpl session;
 
        public BGPSessionNegotiator(final Timer timer, final Promise<BGPSessionImpl> promise, final Channel channel,
                        final BGPSessionPreferences initialPrefs, final BGPSessionListener listener) {
@@ -72,7 +92,8 @@ public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMes
        @Override
        protected void startNegotiation() {
                Preconditions.checkState(this.state == State.Idle);
-               this.channel.writeAndFlush(new BGPOpenMessage(this.localPref.getMyAs(), (short) this.localPref.getHoldTime(), this.localPref.getBgpId(), this.localPref.getParams()));
+               this.channel.writeAndFlush(new OpenBuilder().setMyAsNumber(this.localPref.getMyAs()).setHoldTimer(this.localPref.getHoldTime()).setBgpIdentifier(
+                               this.localPref.getBgpId()).setBgpParameters(this.localPref.getParams()).build());
                this.state = State.OpenSent;
 
                final Object lock = this;
@@ -82,6 +103,8 @@ public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMes
                                synchronized (lock) {
                                        if (BGPSessionNegotiator.this.state != State.Finished) {
                                                negotiationFailed(new BGPDocumentedException("HoldTimer expired", BGPError.FSM_ERROR));
+                                               BGPSessionNegotiator.this.channel.writeAndFlush(new NotifyBuilder().setErrorCode(
+                                                               BGPError.HOLD_TIMER_EXPIRED.getCode()).setErrorSubcode(BGPError.HOLD_TIMER_EXPIRED.getSubcode()).build());
                                                BGPSessionNegotiator.this.state = State.Finished;
                                        }
                                }
@@ -90,40 +113,28 @@ public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMes
        }
 
        @Override
-       protected synchronized void handleMessage(final BGPMessage msg) {
+       protected synchronized void handleMessage(final Notification msg) {
                logger.debug("Channel {} handling message in state {}", this.channel, this.state);
 
                switch (this.state) {
                case Finished:
                case Idle:
-                       throw new IllegalStateException("Unexpected state " + this.state);
+                       final Notify fsmError = new NotifyBuilder().setErrorCode(BGPError.FSM_ERROR.getCode()).setErrorSubcode(
+                                       BGPError.FSM_ERROR.getSubcode()).build();
+                       this.channel.writeAndFlush(fsmError);
                case OpenConfirm:
-                       if (msg instanceof BGPKeepAliveMessage) {
-                               final BGPKeepAliveMessage ka = (BGPKeepAliveMessage) msg;
-
-                               // FIXME: we miss some stuff over here
-
-                               negotiationSuccessful(new BGPSessionImpl(this.timer, this.listener, this.channel, this.keepAlive, this.remotePref));
-                               this.state = State.Finished;
-                               return;
-                       } else if (msg instanceof BGPNotificationMessage) {
-                               final BGPNotificationMessage ntf = (BGPNotificationMessage) msg;
-                               negotiationFailed(new BGPDocumentedException("Peer refusal", ntf.getError()));
-                               this.state = State.Finished;
-                               return;
+                       if (msg instanceof Keepalive) {
+                               negotiationSuccessful(this.session);
+                       } else if (msg instanceof Notify) {
+                               final Notify ntf = (Notify) msg;
+                               negotiationFailed(new BGPDocumentedException("Peer refusal", BGPError.forValue(ntf.getErrorCode(), ntf.getErrorSubcode())));
                        }
-
-                       break;
+                       this.state = State.Finished;
+                       return;
                case OpenSent:
-                       if (msg instanceof BGPOpenMessage) {
-                               final BGPOpenMessage open = (BGPOpenMessage) msg;
-
-                               // TODO: validate the open message
-
-                               this.remotePref = open;
-                               this.channel.writeAndFlush(new BGPKeepAliveMessage());
-                               this.state = State.OpenConfirm;
-                               logger.debug("Channel {} moved to OpenConfirm state with remote proposal {}", this.channel, this.remotePref);
+                       if (msg instanceof Open) {
+                               final Open openObj = (Open) msg;
+                               handleOpen(openObj);
                                return;
                        }
                        break;
@@ -131,8 +142,38 @@ public final class BGPSessionNegotiator extends AbstractSessionNegotiator<BGPMes
 
                // Catch-all for unexpected message
                logger.warn("Channel {} state {} unexpected message {}", this.channel, this.state, msg);
-               this.channel.writeAndFlush(new BGPNotificationMessage(BGPError.FSM_ERROR));
+               this.channel.writeAndFlush(new NotifyBuilder().setErrorCode(BGPError.FSM_ERROR.getCode()).setErrorSubcode(
+                               BGPError.FSM_ERROR.getSubcode()).build());
                negotiationFailed(new BGPDocumentedException("Unexpected message", BGPError.FSM_ERROR));
                this.state = State.Finished;
        }
+
+       private void handleOpen(final Open openObj) {
+               final List<BgpParameters> prefs = openObj.getBgpParameters();
+               if (prefs != null && !prefs.isEmpty()) {
+                       for (final BgpParameters param : openObj.getBgpParameters()) {
+                               final CParameters cap = param.getCParameters();
+                               if (cap instanceof CMultiprotocol
+                                               && ((CMultiprotocol) cap).getMultiprotocolCapability().getAfi() == LinkstateAddressFamily.class
+                                               && ((CMultiprotocol) cap).getMultiprotocolCapability().getSafi() == LinkstateSubsequentAddressFamily.class) {
+                                       this.remotePref = openObj;
+                                       this.channel.writeAndFlush(new KeepaliveBuilder().build());
+                                       this.session = new BGPSessionImpl(this.timer, this.listener, this.channel, this.remotePref);
+                                       this.state = State.OpenConfirm;
+                                       logger.debug("Channel {} moved to OpenConfirm state with remote proposal {}", this.channel, this.remotePref);
+                                       return;
+                               }
+                       }
+               }
+               final Notify ntf = new NotifyBuilder().setErrorCode(BGPError.UNSPECIFIC_OPEN_ERROR.getCode()).setErrorSubcode(
+                               BGPError.UNSPECIFIC_OPEN_ERROR.getSubcode()).build();
+               this.channel.writeAndFlush(ntf);
+               negotiationFailed(new BGPDocumentedException("Linkstate capability is not configured on router. Check the configuration of BGP speaker.", BGPError.forValue(
+                               ntf.getErrorCode(), ntf.getErrorSubcode())));
+               this.state = State.Finished;
+       }
+
+       public synchronized State getState() {
+               return this.state;
+       }
 }