use of org.openkilda.server42.control.messaging.flowrtt.FlowRttControl.AddFlow in project open-kilda by telstra.
the class Gate method listen.
@KafkaHandler
void listen(@Payload AddFlow data, @Header(KafkaHeaders.RECEIVED_MESSAGE_KEY) String switchIdKey) {
SwitchId switchId = new SwitchId(switchIdKey);
Builder builder = CommandPacket.newBuilder();
Flow flow = Flow.newBuilder().setFlowId(data.getFlowId()).setEncapsulationType(Flow.EncapsulationType.VLAN).setTunnelId(data.getTunnelId()).setTransitEncapsulationType(Flow.EncapsulationType.VLAN).setInnerTunnelId(data.getInnerTunnelId()).setTransitTunnelId(switchToVlanMap.get(switchIdKey)).setDirection(FlowDirection.toBoolean(data.getDirection())).setUdpSrcPort(flowRttUdpSrcPortOffset + data.getPort()).setDstMac(switchId.toMacAddress()).setHashCode(data.hashCode()).build();
FlowRttControl.AddFlow addFlow = FlowRttControl.AddFlow.newBuilder().setFlow(flow).build();
builder.setType(Type.ADD_FLOW);
builder.addCommand(Any.pack(addFlow));
CommandPacket packet = builder.build();
try {
zeroMqClient.send(packet);
} catch (InvalidProtocolBufferException e) {
log.error("Marshalling error on {}", data);
}
}
use of org.openkilda.server42.control.messaging.flowrtt.FlowRttControl.AddFlow in project open-kilda by telstra.
the class ControlServer method run.
/**
* We get commands from zmq socket and execute them one by one.
*/
@Override
public void run() {
log.info("started");
try (ZContext context = new ZContext()) {
Socket server = context.createSocket(ZMQ.REP);
server.bind(bindEndpoint);
while (!isInterrupted()) {
byte[] request = server.recv();
try {
CommandPacket commandPacket = CommandPacket.parseFrom(request);
Builder builder = CommandPacketResponse.newBuilder();
builder.setCommunicationId(commandPacket.getCommunicationId());
log.info("command type {}", commandPacket.getType().toString());
log.info("flow list before {}", flows.keySet().toString());
switch(commandPacket.getType()) {
case ADD_FLOW:
for (Any any : commandPacket.getCommandList()) {
AddFlow addFlow = any.unpack(AddFlow.class);
flows.put(FlowKey.fromFlow(addFlow.getFlow()), addFlow.getFlow());
statsServer.addFlow(addFlow.getFlow());
}
break;
case REMOVE_FLOW:
for (Any any : commandPacket.getCommandList()) {
RemoveFlow removeFlow = any.unpack(RemoveFlow.class);
FlowKey flowKey = FlowKey.fromFlow(removeFlow.getFlow());
flows.remove(flowKey);
statsServer.removeFlow(flowKey);
}
break;
case CLEAR_FLOWS:
if (commandPacket.getCommandCount() > 0) {
Any command = commandPacket.getCommand(0);
ClearFlowsFilter filter = command.unpack(ClearFlowsFilter.class);
List<FlowKey> keys = flows.values().stream().filter(flow -> flow.getDstMac().equals(filter.getDstMac())).map(FlowKey::fromFlow).collect(Collectors.toList());
flows.keySet().removeAll(keys);
keys.forEach(statsServer::removeFlow);
} else {
flows.clear();
statsServer.clearFlows();
}
break;
case LIST_FLOWS:
if (commandPacket.getCommandCount() > 0) {
Any command = commandPacket.getCommand(0);
ListFlowsFilter filter = command.unpack(ListFlowsFilter.class);
flows.values().stream().filter(flow -> flow.getDstMac().equals(filter.getDstMac())).forEach(flow -> builder.addResponse(Any.pack(flow)));
} else {
for (Flow flow : flows.values()) {
builder.addResponse(Any.pack(flow));
}
}
break;
case PUSH_SETTINGS:
log.warn("will be shipped with stats application");
Any command = commandPacket.getCommand(0);
PushSettings settings = command.unpack(PushSettings.class);
log.info(settings.toString());
break;
case ADD_ISL:
for (Any any : commandPacket.getCommandList()) {
AddIsl addIsl = any.unpack(AddIsl.class);
IslEndpoint endpoint = addIsl.getIsl();
isls.computeIfAbsent(endpoint.getSwitchId(), k -> new HashSet<>()).add(endpoint.getPort());
statsServer.addIsl(endpoint.getSwitchId(), endpoint.getPort());
}
break;
case REMOVE_ISL:
for (Any any : commandPacket.getCommandList()) {
RemoveIsl removeIsl = any.unpack(RemoveIsl.class);
IslEndpoint endpoint = removeIsl.getIsl();
isls.getOrDefault(endpoint.getSwitchId(), emptySet()).remove(endpoint.getPort());
statsServer.removeIsl(endpoint.getSwitchId(), endpoint.getPort());
}
break;
case CLEAR_ISLS:
if (commandPacket.getCommandCount() > 0) {
ClearIslsFilter filter = commandPacket.getCommand(0).unpack(ClearIslsFilter.class);
Set<Integer> ports = Optional.ofNullable(isls.get(filter.getSwitchId())).orElse(emptySet());
isls.remove(filter.getSwitchId());
ports.forEach(p -> statsServer.removeIsl(filter.getSwitchId(), p));
} else {
isls.clear();
statsServer.clearIsls();
}
break;
case LIST_ISLS:
if (commandPacket.getCommandCount() > 0) {
ListIslsFilter filter = commandPacket.getCommand(0).unpack(ListIslsFilter.class);
Optional.ofNullable(isls.get(filter.getSwitchId())).orElse(emptySet()).forEach(port -> builder.addResponse(Any.pack(IslEndpoint.newBuilder().setSwitchId(filter.getSwitchId()).setPort(port).build())));
} else {
isls.forEach((switchId, ports) -> ports.forEach(port -> builder.addResponse(Any.pack(IslEndpoint.newBuilder().setSwitchId(switchId).setPort(port).build()))));
}
break;
case UNRECOGNIZED:
default:
log.error("Unknown command type");
break;
}
log.info("flow list after {}", flows.keySet().toString());
server.send(builder.build().toByteArray());
} catch (InvalidProtocolBufferException e) {
log.error("marshalling error");
}
}
}
}
use of org.openkilda.server42.control.messaging.flowrtt.FlowRttControl.AddFlow in project open-kilda by telstra.
the class GateTest method addFlow.
@Test
public void addFlow() throws Exception {
AddFlow addFlow = AddFlow.builder().flowId("some-flow-id").tunnelId(1001L).innerTunnelId(1002L).direction(FlowDirection.REVERSE).port(42).build();
String switchId = "00:00:1b:45:18:d6:71:5a";
gate.listen(addFlow, switchId);
CommandPacket commandPacket = getCommandPacket();
assertThat(commandPacket.getType()).isEqualTo(Type.ADD_FLOW);
assertThat(commandPacket.getCommandCount()).isEqualTo(1);
Any command = commandPacket.getCommand(0);
assertThat(command.is(FlowRttControl.AddFlow.class)).isTrue();
FlowRttControl.AddFlow unpack = command.unpack(FlowRttControl.AddFlow.class);
Flow flow = unpack.getFlow();
assertThat(flow.getFlowId()).isEqualTo(addFlow.getFlowId());
assertThat(flow.getTunnelId()).isEqualTo(addFlow.getTunnelId());
assertThat(flow.getInnerTunnelId()).isEqualTo(addFlow.getInnerTunnelId());
assertThat(flow.getDirection()).isEqualTo(FlowDirection.toBoolean(addFlow.getDirection()));
assertThat(flow.getUdpSrcPort()).isEqualTo(flowRttUdpSrcPortOffset + addFlow.getPort());
Map<Long, List<String>> vlanToSwitch = switchToVlanMapping.getVlan();
vlanToSwitch.forEach((vlan, switches) -> {
if (switches.contains(switchId)) {
assertThat(flow.getTransitTunnelId()).isEqualTo(vlan);
}
});
assertThat(flow.getDstMac()).isSubstringOf(switchId).isNotEqualTo(switchId);
}
use of org.openkilda.server42.control.messaging.flowrtt.FlowRttControl.AddFlow in project open-kilda by telstra.
the class FlowHandler method notifyActivateFlowMonitoring.
@Override
public void notifyActivateFlowMonitoring(String flowId, SwitchId switchId, Integer port, Integer vlan, Integer innerVlan, boolean isForward) {
AddFlow addFlow = AddFlow.builder().flowId(flowId).port(port).tunnelId(vlan.longValue()).innerTunnelId(innerVlan.longValue()).direction(isForward ? FlowDirection.FORWARD : FlowDirection.REVERSE).headers(buildHeader()).build();
emit(STREAM_CONTROL_COMMANDS_ID, getCurrentTuple(), new Values(switchId.toString(), addFlow));
}
Aggregations