blob: cc0dd62230833b6c9b427443fa612ca31fec5331 [file] [log] [blame]
Jian Li7f70bb72018-07-06 23:35:30 +09001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.openstacknetworking.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Jian Lidb521c12018-11-19 17:42:35 +090020import org.apache.karaf.shell.api.action.Completion;
Ray Milkey7a2dee52018-09-28 10:58:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Jian Li7f70bb72018-07-06 23:35:30 +090022import org.onosproject.cfg.ComponentConfigService;
23import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.core.ApplicationId;
25import org.onosproject.core.CoreService;
26import org.onosproject.net.flow.FlowRuleService;
27import org.onosproject.openstacknetworking.api.Constants;
28import org.onosproject.openstacknetworking.impl.OpenstackRoutingArpHandler;
29import org.onosproject.openstacknetworking.impl.OpenstackSwitchingArpHandler;
30import org.onosproject.openstacknode.api.NodeState;
31import org.onosproject.openstacknode.api.OpenstackNode;
32import org.onosproject.openstacknode.api.OpenstackNodeAdminService;
33import org.onosproject.openstacknode.api.OpenstackNodeService;
34
35import static com.google.common.base.Strings.isNullOrEmpty;
Jian Li7f024de2018-07-07 03:51:02 +090036import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.checkArpMode;
Jian Li7f70bb72018-07-06 23:35:30 +090037import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.getPropertyValue;
38
39/**
40 * Configure ARP mode.
41 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070042@Service
Jian Li7f70bb72018-07-06 23:35:30 +090043@Command(scope = "onos", name = "openstack-config-arp-mode",
44 description = "Re-configure ARP mode (proxy | broadcast)")
45public class OpenstackConfigArpModeCommand extends AbstractShellCommand {
46
47 private static final String ARP_MODE_NAME = "arpMode";
Jian Li7f70bb72018-07-06 23:35:30 +090048
49 @Argument(index = 0, name = "arpMode",
50 description = "ARP mode (proxy | broadcast)",
51 required = true, multiValued = false)
Jian Lidb521c12018-11-19 17:42:35 +090052 @Completion(ArpModeCompleter.class)
Jian Li7f70bb72018-07-06 23:35:30 +090053 String arpMode = null;
54
55 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070056 protected void doExecute() {
Jian Li7f70bb72018-07-06 23:35:30 +090057
58 if (checkArpMode(arpMode)) {
Jian Li7f024de2018-07-07 03:51:02 +090059 configArpMode(arpMode);
Jian Li7f70bb72018-07-06 23:35:30 +090060
61 ComponentConfigService service = get(ComponentConfigService.class);
62 String switchingComponent = OpenstackSwitchingArpHandler.class.getName();
63 String routingComponent = OpenstackRoutingArpHandler.class.getName();
64
65 // we check the arpMode configured in each component, and purge and
66 // reinstall all rules only if the arpMode is changed to the configured one
67 while (true) {
68 String switchingValue =
Jian Li5ecfd1a2018-12-10 11:41:03 +090069 getPropertyValue(
70 service.getProperties(switchingComponent), ARP_MODE_NAME);
Jian Li7f70bb72018-07-06 23:35:30 +090071 String routingValue =
Jian Li5ecfd1a2018-12-10 11:41:03 +090072 getPropertyValue(
73 service.getProperties(routingComponent), ARP_MODE_NAME);
Jian Li7f70bb72018-07-06 23:35:30 +090074
75 if (arpMode.equals(switchingValue) && arpMode.equals(routingValue)) {
76 break;
77 }
78 }
79
80 purgeRules();
81 syncRules();
82 }
83 }
84
Jian Li7f70bb72018-07-06 23:35:30 +090085 private void purgeRules() {
Jian Lif1efbe52018-07-17 23:20:16 +090086 FlowRuleService flowRuleService = get(FlowRuleService.class);
87 CoreService coreService = get(CoreService.class);
Jian Li7f70bb72018-07-06 23:35:30 +090088 ApplicationId appId = coreService.getAppId(Constants.OPENSTACK_NETWORKING_APP_ID);
89 if (appId == null) {
90 error("Failed to purge OpenStack networking flow rules.");
91 return;
92 }
93 flowRuleService.removeFlowRulesById(appId);
94 }
95
Jian Li7f024de2018-07-07 03:51:02 +090096 private void configArpMode(String arpMode) {
Jian Li7f70bb72018-07-06 23:35:30 +090097 ComponentConfigService service = get(ComponentConfigService.class);
98 String switchingComponent = OpenstackSwitchingArpHandler.class.getName();
99 String routingComponent = OpenstackRoutingArpHandler.class.getName();
100
101 if (!isNullOrEmpty(arpMode)) {
102 service.setProperty(switchingComponent, ARP_MODE_NAME, arpMode);
103 service.setProperty(routingComponent, ARP_MODE_NAME, arpMode);
104 }
105 }
106
107 private void syncRules() {
108 // All handlers in this application reacts the node complete event and
109 // tries to re-configure flow rules for the complete node.
Jian Lif1efbe52018-07-17 23:20:16 +0900110 OpenstackNodeService osNodeService = get(OpenstackNodeService.class);
111 OpenstackNodeAdminService osNodeAdminService = get(OpenstackNodeAdminService.class);
Jian Li7f70bb72018-07-06 23:35:30 +0900112 if (osNodeService == null) {
113 error("Failed to re-install flow rules for OpenStack networking.");
114 return;
115 }
116 osNodeService.completeNodes().forEach(osNode -> {
117 OpenstackNode updated = osNode.updateState(NodeState.INIT);
118 osNodeAdminService.updateNode(updated);
119 });
120 }
121}