blob: 029108a2c3dcc01c41dab1a95df0f0b268e6e7ed [file] [log] [blame]
Ray Milkey1f95bd32014-12-10 11:11:00 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Ray Milkey1f95bd32014-12-10 11:11:00 -08003 *
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 */
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070016package org.onosproject.rest.resources;
17
Kedar Gupta47bd4802015-07-15 09:43:26 -070018import com.fasterxml.jackson.databind.JsonNode;
Jian Li43c956b2015-11-26 03:02:46 -080019import com.fasterxml.jackson.databind.ObjectMapper;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070020import com.fasterxml.jackson.databind.node.ObjectNode;
Charles Chan62851132020-01-14 16:29:43 -080021import org.onlab.packet.EthType;
Kedar Gupta47bd4802015-07-15 09:43:26 -070022import org.onlab.packet.IpAddress;
23import org.onlab.packet.MacAddress;
24import org.onlab.packet.VlanId;
25import org.onosproject.net.ConnectPoint;
26import org.onosproject.net.DefaultAnnotations;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070027import org.onosproject.net.Host;
Kedar Gupta47bd4802015-07-15 09:43:26 -070028import org.onosproject.net.HostId;
29import org.onosproject.net.HostLocation;
30import org.onosproject.net.SparseAnnotations;
31import org.onosproject.net.host.DefaultHostDescription;
Thomas Vachuska58a7c342016-12-13 01:10:56 -080032import org.onosproject.net.host.HostAdminService;
Kedar Gupta47bd4802015-07-15 09:43:26 -070033import org.onosproject.net.host.HostProvider;
34import org.onosproject.net.host.HostProviderRegistry;
35import org.onosproject.net.host.HostProviderService;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070036import org.onosproject.net.host.HostService;
Kedar Gupta47bd4802015-07-15 09:43:26 -070037import org.onosproject.net.provider.ProviderId;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070038import org.onosproject.rest.AbstractWebResource;
Ray Milkey1f95bd32014-12-10 11:11:00 -080039
Kedar Gupta47bd4802015-07-15 09:43:26 -070040import javax.ws.rs.Consumes;
Thomas Vachuska58a7c342016-12-13 01:10:56 -080041import javax.ws.rs.DELETE;
Ray Milkey1f95bd32014-12-10 11:11:00 -080042import javax.ws.rs.GET;
Kedar Gupta47bd4802015-07-15 09:43:26 -070043import javax.ws.rs.POST;
Ray Milkey1f95bd32014-12-10 11:11:00 -080044import javax.ws.rs.Path;
45import javax.ws.rs.PathParam;
46import javax.ws.rs.Produces;
Kedar Gupta47bd4802015-07-15 09:43:26 -070047import javax.ws.rs.core.Context;
Ray Milkey1f95bd32014-12-10 11:11:00 -080048import javax.ws.rs.core.MediaType;
49import javax.ws.rs.core.Response;
Kedar Gupta47bd4802015-07-15 09:43:26 -070050import javax.ws.rs.core.UriBuilder;
51import javax.ws.rs.core.UriInfo;
52import java.io.IOException;
53import java.io.InputStream;
54import java.net.URI;
55import java.util.HashSet;
56import java.util.Iterator;
Jian Li43c956b2015-11-26 03:02:46 -080057import java.util.Map;
Kedar Gupta47bd4802015-07-15 09:43:26 -070058import java.util.Set;
Ray Milkey1f95bd32014-12-10 11:11:00 -080059
Thomas Vachuskaf8cac482015-04-08 19:40:12 -070060import static org.onlab.util.Tools.nullIsNotFound;
Ray Milkey86ee5e82018-04-02 15:33:07 -070061import static org.onlab.util.Tools.readTreeFromStream;
Ray Milkey1f95bd32014-12-10 11:11:00 -080062import static org.onosproject.net.HostId.hostId;
63
64/**
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070065 * Manage inventory of end-station hosts.
Ray Milkey1f95bd32014-12-10 11:11:00 -080066 */
67@Path("hosts")
68public class HostsWebResource extends AbstractWebResource {
69
Kedar Gupta47bd4802015-07-15 09:43:26 -070070 @Context
Jian Licc730a62016-05-10 16:36:16 -070071 private UriInfo uriInfo;
72 private static final String HOST_NOT_FOUND = "Host is not found";
Charles Chan62851132020-01-14 16:29:43 -080073 private static final String[] REMOVAL_KEYS = {"mac", "vlan", "locations", "ipAddresses", "innerVlan", "outerTpid"};
Ray Milkey1f95bd32014-12-10 11:11:00 -080074
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070075 /**
76 * Get all end-station hosts.
77 * Returns array of all known end-station hosts.
78 *
Jian Licc730a62016-05-10 16:36:16 -070079 * @return 200 OK with array of all known end-station hosts.
Andrea Campanella10c4adc2015-12-03 15:27:54 -080080 * @onos.rsModel Hosts
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070081 */
Ray Milkey1f95bd32014-12-10 11:11:00 -080082 @GET
83 @Produces(MediaType.APPLICATION_JSON)
84 public Response getHosts() {
85 final Iterable<Host> hosts = get(HostService.class).getHosts();
86 final ObjectNode root = encodeArray(Host.class, "hosts", hosts);
Ray Milkey3f025692015-01-26 11:15:41 -080087 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -080088 }
89
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070090 /**
91 * Get details of end-station host.
92 * Returns detailed properties of the specified end-station host.
93 *
94 * @param id host identifier
Jian Licc730a62016-05-10 16:36:16 -070095 * @return 200 OK with detailed properties of the specified end-station host
Andrea Campanella10c4adc2015-12-03 15:27:54 -080096 * @onos.rsModel Host
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070097 */
Ray Milkey1f95bd32014-12-10 11:11:00 -080098 @GET
99 @Produces(MediaType.APPLICATION_JSON)
100 @Path("{id}")
101 public Response getHostById(@PathParam("id") String id) {
102 final Host host = nullIsNotFound(get(HostService.class).getHost(hostId(id)),
Kedar Gupta47bd4802015-07-15 09:43:26 -0700103 HOST_NOT_FOUND);
Ray Milkey1f95bd32014-12-10 11:11:00 -0800104 final ObjectNode root = codec(Host.class).encode(host, this);
Ray Milkey3f025692015-01-26 11:15:41 -0800105 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -0800106 }
107
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700108 /**
109 * Get details of end-station host with MAC/VLAN.
110 * Returns detailed properties of the specified end-station host.
111 *
112 * @param mac host MAC address
113 * @param vlan host VLAN identifier
Jian Licc730a62016-05-10 16:36:16 -0700114 * @return 200 OK with detailed properties of the specified end-station host
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800115 * @onos.rsModel Host
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700116 */
Ray Milkey1f95bd32014-12-10 11:11:00 -0800117 @GET
118 @Produces(MediaType.APPLICATION_JSON)
119 @Path("{mac}/{vlan}")
120 public Response getHostByMacAndVlan(@PathParam("mac") String mac,
121 @PathParam("vlan") String vlan) {
122 final Host host = nullIsNotFound(get(HostService.class).getHost(hostId(mac + "/" + vlan)),
Kedar Gupta47bd4802015-07-15 09:43:26 -0700123 HOST_NOT_FOUND);
Ray Milkey1f95bd32014-12-10 11:11:00 -0800124 final ObjectNode root = codec(Host.class).encode(host, this);
Ray Milkey3f025692015-01-26 11:15:41 -0800125 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -0800126 }
Kedar Gupta47bd4802015-07-15 09:43:26 -0700127
128 /**
129 * Creates a new host based on JSON input and adds it to the current
130 * host inventory.
131 *
132 * @param stream input JSON
133 * @return status of the request - CREATED if the JSON is correct,
134 * BAD_REQUEST if the JSON is invalid
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800135 * @onos.rsModel HostPut
Kedar Gupta47bd4802015-07-15 09:43:26 -0700136 */
137 @POST
138 @Consumes(MediaType.APPLICATION_JSON)
139 @Produces(MediaType.APPLICATION_JSON)
140 public Response createAndAddHost(InputStream stream) {
141 URI location;
142 try {
143 // Parse the input stream
Ray Milkey86ee5e82018-04-02 15:33:07 -0700144 ObjectNode root = readTreeFromStream(mapper(), stream);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700145
146 HostProviderRegistry hostProviderRegistry = get(HostProviderRegistry.class);
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700147 InternalHostProvider hostProvider = new InternalHostProvider();
148 HostProviderService hostProviderService = hostProviderRegistry.register(hostProvider);
149 hostProvider.setHostProviderService(hostProviderService);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700150 HostId hostId = hostProvider.parseHost(root);
151
152 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
153 .path("hosts")
154 .path(hostId.mac().toString())
155 .path(hostId.vlanId().toString());
156 location = locationBuilder.build();
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700157 hostProviderRegistry.unregister(hostProvider);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700158
159 } catch (IOException ex) {
Ray Milkey5d915f42015-08-13 10:27:53 -0700160 throw new IllegalArgumentException(ex);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700161 }
162 return Response
163 .created(location)
164 .build();
165 }
166
Jian Licc730a62016-05-10 16:36:16 -0700167 /**
Thomas Vachuska58a7c342016-12-13 01:10:56 -0800168 * Removes infrastructure device.
169 * Administratively deletes the specified device from the inventory of
170 * known devices.
171 *
172 * @param mac host MAC address
173 * @param vlan host VLAN identifier
174 * @return 204 OK
175 * @onos.rsModel Host
176 */
177 @DELETE
178 @Path("{mac}/{vlan}")
179 @Produces(MediaType.APPLICATION_JSON)
180 public Response removeHost(@PathParam("mac") String mac,
181 @PathParam("vlan") String vlan) {
182 get(HostAdminService.class).removeHost(hostId(mac + "/" + vlan));
183 return Response.noContent().build();
184 }
185
186 /**
Jian Licc730a62016-05-10 16:36:16 -0700187 * Internal host provider that provides host events.
188 */
Kedar Gupta47bd4802015-07-15 09:43:26 -0700189 private final class InternalHostProvider implements HostProvider {
190 private final ProviderId providerId =
191 new ProviderId("host", "org.onosproject.rest", true);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700192 private HostProviderService hostProviderService;
193
Jian Licc730a62016-05-10 16:36:16 -0700194 /**
195 * Prevents from instantiation.
196 */
Ray Milkey5d915f42015-08-13 10:27:53 -0700197 private InternalHostProvider() {
Kedar Gupta47bd4802015-07-15 09:43:26 -0700198 }
199
Ray Milkey5d915f42015-08-13 10:27:53 -0700200 public void triggerProbe(Host host) {
201 // Not implemented since there is no need to check for hosts on network
Kedar Gupta47bd4802015-07-15 09:43:26 -0700202 }
203
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700204 public void setHostProviderService(HostProviderService service) {
205 this.hostProviderService = service;
Kedar Gupta47bd4802015-07-15 09:43:26 -0700206 }
207
Ray Milkey5d915f42015-08-13 10:27:53 -0700208 /*
209 * Return the ProviderId of "this"
210 */
Kedar Gupta47bd4802015-07-15 09:43:26 -0700211 public ProviderId id() {
212 return providerId;
213 }
214
215 /**
216 * Creates and adds new host based on given data and returns its host ID.
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700217 *
Kedar Gupta47bd4802015-07-15 09:43:26 -0700218 * @param node JsonNode containing host information
219 * @return host ID of new host created
220 */
221 private HostId parseHost(JsonNode node) {
222 MacAddress mac = MacAddress.valueOf(node.get("mac").asText());
Ray Milkey5d915f42015-08-13 10:27:53 -0700223 VlanId vlanId = VlanId.vlanId((short) node.get("vlan").asInt(VlanId.UNTAGGED));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700224
Charles Chan62851132020-01-14 16:29:43 -0800225 // Parse locations
Charles Chancd06c692017-04-27 20:46:06 -0700226 Iterator<JsonNode> locationNodes = node.get("locations").elements();
227 Set<HostLocation> locations = new HashSet<>();
228 while (locationNodes.hasNext()) {
229 JsonNode locationNode = locationNodes.next();
230 String deviceAndPort = locationNode.get("elementId").asText() + "/" +
231 locationNode.get("port").asText();
232 HostLocation hostLocation = new HostLocation(ConnectPoint.deviceConnectPoint(deviceAndPort), 0);
233 locations.add(hostLocation);
234 }
235
Charles Chan62851132020-01-14 16:29:43 -0800236 // Parse ipAddresses
Charles Chancd06c692017-04-27 20:46:06 -0700237 Iterator<JsonNode> ipNodes = node.get("ipAddresses").elements();
Kedar Gupta47bd4802015-07-15 09:43:26 -0700238 Set<IpAddress> ips = new HashSet<>();
Charles Chancd06c692017-04-27 20:46:06 -0700239 while (ipNodes.hasNext()) {
240 ips.add(IpAddress.valueOf(ipNodes.next().asText()));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700241 }
Jian Li43c956b2015-11-26 03:02:46 -0800242
Charles Chan62851132020-01-14 16:29:43 -0800243 // Parse innerVlan
244 JsonNode innerVlanNode = node.get("innerVlan");
245 VlanId innerVlan = (null == innerVlanNode) ? VlanId.NONE : VlanId.vlanId(innerVlanNode.asText());
246
247 // Parse outerTpid
248 JsonNode outerTpidNode = node.get("outerTpid");
249 EthType outerTpid = (null == outerTpidNode) ? EthType.EtherType.UNKNOWN.ethType() :
250 EthType.EtherType.lookup((short) (Integer.decode(outerTpidNode.asText()) & 0xFFFF)).ethType();
251
Jian Li43c956b2015-11-26 03:02:46 -0800252 // try to remove elements from json node after reading them
253 SparseAnnotations annotations = annotations(removeElements(node, REMOVAL_KEYS));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700254 // Update host inventory
255
256 HostId hostId = HostId.hostId(mac, vlanId);
Charles Chan62851132020-01-14 16:29:43 -0800257 DefaultHostDescription desc = new DefaultHostDescription(mac, vlanId, locations,
258 ips, innerVlan, outerTpid, true, annotations);
Ray Milkeydc083442016-02-22 11:27:57 -0800259 hostProviderService.hostDetected(hostId, desc, false);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700260 return hostId;
261 }
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700262
263 /**
Jian Li43c956b2015-11-26 03:02:46 -0800264 * Remove a set of elements from JsonNode by specifying keys.
265 *
266 * @param node JsonNode containing host information
267 * @param removalKeys key of elements that need to be removed
268 * @return removal keys
269 */
270 private JsonNode removeElements(JsonNode node, String[] removalKeys) {
271 ObjectMapper mapper = new ObjectMapper();
272 Map<String, Object> map = mapper.convertValue(node, Map.class);
273 for (String key : removalKeys) {
274 map.remove(key);
275 }
276 return mapper.convertValue(map, JsonNode.class);
277 }
278
279 /**
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700280 * Produces annotations from specified JsonNode. Copied from the ConfigProvider
281 * class for use in the POST method.
282 *
283 * @param node node to be annotated
284 * @return SparseAnnotations object with information about node
285 */
286 private SparseAnnotations annotations(JsonNode node) {
287 if (node == null) {
288 return DefaultAnnotations.EMPTY;
289 }
290
291 DefaultAnnotations.Builder builder = DefaultAnnotations.builder();
292 Iterator<String> it = node.fieldNames();
293 while (it.hasNext()) {
294 String k = it.next();
295 builder.set(k, node.get(k).asText());
296 }
297 return builder.build();
298 }
299
Kedar Gupta47bd4802015-07-15 09:43:26 -0700300 }
Ray Milkey1f95bd32014-12-10 11:11:00 -0800301}
302