blob: 0b5d226add0582b01500b05b4f375799c0b97602 [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;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
Jian Li7f70bb72018-07-06 23:35:30 +090021import org.onosproject.cfg.ComponentConfigService;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.core.ApplicationId;
24import org.onosproject.core.CoreService;
25import org.onosproject.net.flow.FlowRuleService;
26import org.onosproject.openstacknetworking.api.Constants;
27import org.onosproject.openstacknetworking.impl.OpenstackRoutingArpHandler;
28import org.onosproject.openstacknetworking.impl.OpenstackSwitchingArpHandler;
29import org.onosproject.openstacknode.api.NodeState;
30import org.onosproject.openstacknode.api.OpenstackNode;
31import org.onosproject.openstacknode.api.OpenstackNodeAdminService;
32import org.onosproject.openstacknode.api.OpenstackNodeService;
33
34import static com.google.common.base.Strings.isNullOrEmpty;
Jian Li7f024de2018-07-07 03:51:02 +090035import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.checkArpMode;
Jian Li7f70bb72018-07-06 23:35:30 +090036import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.getPropertyValue;
37
38/**
39 * Configure ARP mode.
40 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070041@Service
Jian Li7f70bb72018-07-06 23:35:30 +090042@Command(scope = "onos", name = "openstack-config-arp-mode",
43 description = "Re-configure ARP mode (proxy | broadcast)")
44public class OpenstackConfigArpModeCommand extends AbstractShellCommand {
45
46 private static final String ARP_MODE_NAME = "arpMode";
Jian Li7f70bb72018-07-06 23:35:30 +090047
48 @Argument(index = 0, name = "arpMode",
49 description = "ARP mode (proxy | broadcast)",
50 required = true, multiValued = false)
51 String arpMode = null;
52
53 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070054 protected void doExecute() {
Jian Li7f70bb72018-07-06 23:35:30 +090055
56 if (checkArpMode(arpMode)) {
Jian Li7f024de2018-07-07 03:51:02 +090057 configArpMode(arpMode);
Jian Li7f70bb72018-07-06 23:35:30 +090058
59 ComponentConfigService service = get(ComponentConfigService.class);
60 String switchingComponent = OpenstackSwitchingArpHandler.class.getName();
61 String routingComponent = OpenstackRoutingArpHandler.class.getName();
62
63 // we check the arpMode configured in each component, and purge and
64 // reinstall all rules only if the arpMode is changed to the configured one
65 while (true) {
66 String switchingValue =
67 getPropertyValue(service.getProperties(switchingComponent), ARP_MODE_NAME);
68 String routingValue =
69 getPropertyValue(service.getProperties(routingComponent), ARP_MODE_NAME);
70
71 if (arpMode.equals(switchingValue) && arpMode.equals(routingValue)) {
72 break;
73 }
74 }
75
76 purgeRules();
77 syncRules();
78 }
79 }
80
Jian Li7f70bb72018-07-06 23:35:30 +090081 private void purgeRules() {
Jian Lif1efbe52018-07-17 23:20:16 +090082 FlowRuleService flowRuleService = get(FlowRuleService.class);
83 CoreService coreService = get(CoreService.class);
Jian Li7f70bb72018-07-06 23:35:30 +090084 ApplicationId appId = coreService.getAppId(Constants.OPENSTACK_NETWORKING_APP_ID);
85 if (appId == null) {
86 error("Failed to purge OpenStack networking flow rules.");
87 return;
88 }
89 flowRuleService.removeFlowRulesById(appId);
90 }
91
Jian Li7f024de2018-07-07 03:51:02 +090092 private void configArpMode(String arpMode) {
Jian Li7f70bb72018-07-06 23:35:30 +090093 ComponentConfigService service = get(ComponentConfigService.class);
94 String switchingComponent = OpenstackSwitchingArpHandler.class.getName();
95 String routingComponent = OpenstackRoutingArpHandler.class.getName();
96
97 if (!isNullOrEmpty(arpMode)) {
98 service.setProperty(switchingComponent, ARP_MODE_NAME, arpMode);
99 service.setProperty(routingComponent, ARP_MODE_NAME, arpMode);
100 }
101 }
102
103 private void syncRules() {
104 // All handlers in this application reacts the node complete event and
105 // tries to re-configure flow rules for the complete node.
Jian Lif1efbe52018-07-17 23:20:16 +0900106 OpenstackNodeService osNodeService = get(OpenstackNodeService.class);
107 OpenstackNodeAdminService osNodeAdminService = get(OpenstackNodeAdminService.class);
Jian Li7f70bb72018-07-06 23:35:30 +0900108 if (osNodeService == null) {
109 error("Failed to re-install flow rules for OpenStack networking.");
110 return;
111 }
112 osNodeService.completeNodes().forEach(osNode -> {
113 OpenstackNode updated = osNode.updateState(NodeState.INIT);
114 osNodeAdminService.updateNode(updated);
115 });
116 }
117}