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