blob: e301c95790204625b3a225681c22a991396b03c2 [file] [log] [blame]
Hyunsun Moon34bbe172016-06-28 19:18:40 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Hyunsun Moon34bbe172016-06-28 19:18:40 -07003 *
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 */
16
17package org.onosproject.openstacknode.cli;
18
Ray Milkey86ad7bb2018-09-27 12:32:28 -070019import org.apache.karaf.shell.api.action.Argument;
20import org.apache.karaf.shell.api.action.Command;
Jian Lidb521c12018-11-19 17:42:35 +090021import org.apache.karaf.shell.api.action.Completion;
Ray Milkey7a2dee52018-09-28 10:58:28 -070022import org.apache.karaf.shell.api.action.lifecycle.Service;
Hyunsun Moon34bbe172016-06-28 19:18:40 -070023import org.onosproject.cli.AbstractShellCommand;
Jian Li5ecfd1a2018-12-10 11:41:03 +090024import org.onosproject.net.Device;
Hyunsun Moon34bbe172016-06-28 19:18:40 -070025import org.onosproject.net.DeviceId;
26import org.onosproject.net.Port;
Hyunsun Moon34bbe172016-06-28 19:18:40 -070027import org.onosproject.net.device.DeviceService;
Jian Lia09f3c32018-10-08 10:48:34 +090028import org.onosproject.openstacknode.api.NodeState;
Hyunsun Moon0d457362017-06-27 17:19:41 +090029import org.onosproject.openstacknode.api.OpenstackNode;
30import org.onosproject.openstacknode.api.OpenstackNodeService;
Jian Lia09f3c32018-10-08 10:48:34 +090031import org.openstack4j.api.OSClient;
Hyunsun Moon34bbe172016-06-28 19:18:40 -070032
33import static org.onosproject.net.AnnotationKeys.PORT_NAME;
Jian Li2d68c192018-12-13 15:52:59 +090034import static org.onosproject.openstacknode.api.Constants.GRE_TUNNEL;
Jian Li5afbea42018-02-28 10:37:03 +090035import static org.onosproject.openstacknode.api.Constants.INTEGRATION_BRIDGE;
Jian Li62116942019-09-03 23:10:20 +090036import static org.onosproject.openstacknode.api.Constants.INTEGRATION_TO_PHYSICAL_PREFIX;
37import static org.onosproject.openstacknode.api.Constants.VXLAN_TUNNEL;
Jian Lia09f3c32018-10-08 10:48:34 +090038import static org.onosproject.openstacknode.api.OpenstackNode.NodeType.CONTROLLER;
39import static org.onosproject.openstacknode.api.OpenstackNode.NodeType.GATEWAY;
40import static org.onosproject.openstacknode.util.OpenstackNodeUtil.getConnectedClient;
Jian Li62116942019-09-03 23:10:20 +090041import static org.onosproject.openstacknode.util.OpenstackNodeUtil.structurePortName;
Hyunsun Moon34bbe172016-06-28 19:18:40 -070042
43/**
44 * Checks detailed node init state.
45 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070046@Service
Hyunsun Moon34bbe172016-06-28 19:18:40 -070047@Command(scope = "onos", name = "openstack-node-check",
48 description = "Shows detailed node init state")
49public class OpenstackNodeCheckCommand extends AbstractShellCommand {
50
51 @Argument(index = 0, name = "hostname", description = "Hostname",
52 required = true, multiValued = false)
Jian Lidb521c12018-11-19 17:42:35 +090053 @Completion(OpenstackHostnameCompleter.class)
Hyunsun Moon34bbe172016-06-28 19:18:40 -070054 private String hostname = null;
55
56 private static final String MSG_OK = "OK";
Jian Lia09f3c32018-10-08 10:48:34 +090057 private static final String MSG_ERROR = "ERROR";
Hyunsun Moon34bbe172016-06-28 19:18:40 -070058
59 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070060 protected void doExecute() {
Jian Li5ecfd1a2018-12-10 11:41:03 +090061 OpenstackNodeService osNodeService = get(OpenstackNodeService.class);
62 DeviceService deviceService = get(DeviceService.class);
Hyunsun Moon34bbe172016-06-28 19:18:40 -070063
Hyunsun Moon0d457362017-06-27 17:19:41 +090064 OpenstackNode osNode = osNodeService.node(hostname);
65 if (osNode == null) {
Hyunsun Moona9465642017-06-29 16:28:58 +090066 print("Cannot find %s from registered nodes", hostname);
Hyunsun Moon34bbe172016-06-28 19:18:40 -070067 return;
68 }
69
Jian Lia09f3c32018-10-08 10:48:34 +090070 if (osNode.type() == CONTROLLER) {
71 print("[Openstack Controller Status]");
72
73 OSClient client = getConnectedClient(osNode);
74 if (client == null) {
75 error("The given keystone info is incorrect to get authorized to openstack");
76 print("keystoneConfig=%s", osNode.keystoneConfig());
Hyunsun Moon0d457362017-06-27 17:19:41 +090077 }
Jian Lia09f3c32018-10-08 10:48:34 +090078
79 if (osNode.keystoneConfig() != null) {
80 print("%s keystoneConfig=%s, neutronConfig=%s",
81 osNode.state() == NodeState.COMPLETE && client != null ?
82 MSG_OK : MSG_ERROR,
83 osNode.keystoneConfig(),
84 osNode.neutronConfig());
85 } else {
86 print("%s keystoneConfig is missing", MSG_ERROR);
daniel parkb18424c2018-02-05 15:43:43 +090087 }
Hyunsun Moon34bbe172016-06-28 19:18:40 -070088 } else {
Jian Lia09f3c32018-10-08 10:48:34 +090089 print("[Integration Bridge Status]");
90 Device device = deviceService.getDevice(osNode.intgBridge());
Daniel Park0ba22e42019-04-11 18:22:50 +090091 Device ovsdbDevice = deviceService.getDevice(osNode.ovsdb());
Jian Lia09f3c32018-10-08 10:48:34 +090092 if (device != null) {
Daniel Park0ba22e42019-04-11 18:22:50 +090093 print("%s OvsdbDeviceId=%s available=%s",
94 deviceService.isAvailable(ovsdbDevice.id()) ? MSG_OK : MSG_ERROR,
95 ovsdbDevice.id(),
96 deviceService.isAvailable(ovsdbDevice.id()));
Jian Lia09f3c32018-10-08 10:48:34 +090097 print("%s %s=%s available=%s %s",
98 deviceService.isAvailable(device.id()) ? MSG_OK : MSG_ERROR,
99 INTEGRATION_BRIDGE,
100 device.id(),
101 deviceService.isAvailable(device.id()),
102 device.annotations());
103 if (osNode.dataIp() != null) {
Jian Li2d68c192018-12-13 15:52:59 +0900104 printPortState(deviceService, osNode.intgBridge(), VXLAN_TUNNEL);
105 printPortState(deviceService, osNode.intgBridge(), GRE_TUNNEL);
Jian Lia09f3c32018-10-08 10:48:34 +0900106 }
107 if (osNode.vlanIntf() != null) {
108 printPortState(deviceService, osNode.intgBridge(), osNode.vlanIntf());
109 }
Daniel Parkd45f0042019-03-27 14:48:33 +0900110 osNode.phyIntfs().forEach(intf -> {
Jian Li62116942019-09-03 23:10:20 +0900111 printPortState(deviceService, osNode.intgBridge(),
112 structurePortName(INTEGRATION_TO_PHYSICAL_PREFIX + intf.network()));
Daniel Parkd45f0042019-03-27 14:48:33 +0900113 });
Jian Lia09f3c32018-10-08 10:48:34 +0900114 if (osNode.type() == GATEWAY) {
115 printPortState(deviceService, osNode.intgBridge(), osNode.uplinkPort());
116 }
117 } else {
118 print("%s %s=%s is not available",
119 MSG_ERROR,
120 INTEGRATION_BRIDGE,
121 osNode.intgBridge());
122 }
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700123 }
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700124 }
125
Jian Li5ecfd1a2018-12-10 11:41:03 +0900126 private void printPortState(DeviceService deviceService,
127 DeviceId deviceId, String portName) {
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700128 Port port = deviceService.getPorts(deviceId).stream()
129 .filter(p -> p.annotations().value(PORT_NAME).equals(portName) &&
130 p.isEnabled())
131 .findAny().orElse(null);
132
133 if (port != null) {
Hyunsun Moona9465642017-06-29 16:28:58 +0900134 print("%s %s portNum=%s enabled=%s %s",
Jian Lia09f3c32018-10-08 10:48:34 +0900135 port.isEnabled() ? MSG_OK : MSG_ERROR,
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700136 portName,
137 port.number(),
138 port.isEnabled() ? Boolean.TRUE : Boolean.FALSE,
139 port.annotations());
140 } else {
Jian Lia09f3c32018-10-08 10:48:34 +0900141 print("%s %s does not exist", MSG_ERROR, portName);
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700142 }
143 }
Hyunsun Moon34bbe172016-06-28 19:18:40 -0700144}