X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fprotocol_plugins%2Fopenflow%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotocol_plugin%2Fopenflow%2Fcore%2Finternal%2FSwitchHandler.java;h=6fddef06a8388a80a5278ce2f9a3234ae4461982;hb=582da55f82ee5d83af2e7a327044c62ef3a76285;hp=91909d20f53a5bde5adea2b7020c38a78406f080;hpb=78ef04c45c5a7fbee9bbb9ae77ecb1882add8623;p=controller.git diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SwitchHandler.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SwitchHandler.java index 91909d20f5..6fddef06a8 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SwitchHandler.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/SwitchHandler.java @@ -359,8 +359,6 @@ public class SwitchHandler implements ISwitch { } if (msgs == null) { - logger.info("{} is down", this); - reportSwitchStateChange(false); return; } for (OFMessage msg : msgs) { @@ -369,22 +367,15 @@ public class SwitchHandler implements ISwitch { OFType type = msg.getType(); switch (type) { case HELLO: - // send feature request - OFMessage featureRequest = factory.getMessage(OFType.FEATURES_REQUEST); - asyncFastSend(featureRequest); - // delete all pre-existing flows - OFMatch match = new OFMatch().setWildcards(OFMatch.OFPFW_ALL); - OFFlowMod flowMod = (OFFlowMod) factory.getMessage(OFType.FLOW_MOD); - flowMod.setMatch(match).setCommand(OFFlowMod.OFPFC_DELETE).setOutPort(OFPort.OFPP_NONE) - .setLength((short) OFFlowMod.MINIMUM_LENGTH); - asyncFastSend(flowMod); - this.state = SwitchState.WAIT_FEATURES_REPLY; - startSwitchTimer(); + sendFeaturesRequest(); break; case ECHO_REQUEST: OFEchoReply echoReply = (OFEchoReply) factory.getMessage(OFType.ECHO_REPLY); // respond immediately asyncSendNow(echoReply, msg.getXid()); + + // send features request if not sent yet + sendFeaturesRequest(); break; case ECHO_REPLY: this.probeSent = false; @@ -513,6 +504,16 @@ public class SwitchHandler implements ISwitch { return this.sid; } + private void sendFeaturesRequest() { + if (!isOperational() && (this.state != SwitchState.WAIT_FEATURES_REPLY)) { + // send feature request + OFMessage featureRequest = factory.getMessage(OFType.FEATURES_REQUEST); + asyncFastSend(featureRequest); + this.state = SwitchState.WAIT_FEATURES_REPLY; + startSwitchTimer(); + } + } + private void processFeaturesReply(OFFeaturesReply reply) { if (this.state == SwitchState.WAIT_FEATURES_REPLY) { this.sid = reply.getDatapathId(); @@ -925,4 +926,14 @@ public class SwitchHandler implements ISwitch { return result; } } + + @Override + public void deleteAllFlows() { + logger.trace("deleteAllFlows on switch {}", HexString.toHexString(this.sid)); + OFMatch match = new OFMatch().setWildcards(OFMatch.OFPFW_ALL); + OFFlowMod flowMod = (OFFlowMod) factory.getMessage(OFType.FLOW_MOD); + flowMod.setMatch(match).setCommand(OFFlowMod.OFPFC_DELETE).setOutPort(OFPort.OFPP_NONE) + .setLength((short) OFFlowMod.MINIMUM_LENGTH); + asyncFastSend(flowMod); + } }