blob: 3e5dc21c1613cb866a44605a423547213f6d2877 [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;
Kedar Gupta47bd4802015-07-15 09:43:26 -070021import org.onlab.packet.IpAddress;
22import org.onlab.packet.MacAddress;
23import org.onlab.packet.VlanId;
24import org.onosproject.net.ConnectPoint;
25import org.onosproject.net.DefaultAnnotations;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070026import org.onosproject.net.Host;
Kedar Gupta47bd4802015-07-15 09:43:26 -070027import org.onosproject.net.HostId;
28import org.onosproject.net.HostLocation;
29import org.onosproject.net.SparseAnnotations;
30import org.onosproject.net.host.DefaultHostDescription;
Thomas Vachuska58a7c342016-12-13 01:10:56 -080031import org.onosproject.net.host.HostAdminService;
Kedar Gupta47bd4802015-07-15 09:43:26 -070032import org.onosproject.net.host.HostProvider;
33import org.onosproject.net.host.HostProviderRegistry;
34import org.onosproject.net.host.HostProviderService;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070035import org.onosproject.net.host.HostService;
Kedar Gupta47bd4802015-07-15 09:43:26 -070036import org.onosproject.net.provider.ProviderId;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070037import org.onosproject.rest.AbstractWebResource;
Ray Milkey1f95bd32014-12-10 11:11:00 -080038
Kedar Gupta47bd4802015-07-15 09:43:26 -070039import javax.ws.rs.Consumes;
Thomas Vachuska58a7c342016-12-13 01:10:56 -080040import javax.ws.rs.DELETE;
Ray Milkey1f95bd32014-12-10 11:11:00 -080041import javax.ws.rs.GET;
Kedar Gupta47bd4802015-07-15 09:43:26 -070042import javax.ws.rs.POST;
Ray Milkey1f95bd32014-12-10 11:11:00 -080043import javax.ws.rs.Path;
44import javax.ws.rs.PathParam;
45import javax.ws.rs.Produces;
Kedar Gupta47bd4802015-07-15 09:43:26 -070046import javax.ws.rs.core.Context;
Ray Milkey1f95bd32014-12-10 11:11:00 -080047import javax.ws.rs.core.MediaType;
48import javax.ws.rs.core.Response;
Kedar Gupta47bd4802015-07-15 09:43:26 -070049import javax.ws.rs.core.UriBuilder;
50import javax.ws.rs.core.UriInfo;
51import java.io.IOException;
52import java.io.InputStream;
53import java.net.URI;
54import java.util.HashSet;
55import java.util.Iterator;
Jian Li43c956b2015-11-26 03:02:46 -080056import java.util.Map;
Kedar Gupta47bd4802015-07-15 09:43:26 -070057import java.util.Set;
Ray Milkey1f95bd32014-12-10 11:11:00 -080058
Thomas Vachuskaf8cac482015-04-08 19:40:12 -070059import static org.onlab.util.Tools.nullIsNotFound;
Ray Milkey86ee5e82018-04-02 15:33:07 -070060import static org.onlab.util.Tools.readTreeFromStream;
Ray Milkey1f95bd32014-12-10 11:11:00 -080061import static org.onosproject.net.HostId.hostId;
62
63/**
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070064 * Manage inventory of end-station hosts.
Ray Milkey1f95bd32014-12-10 11:11:00 -080065 */
66@Path("hosts")
67public class HostsWebResource extends AbstractWebResource {
68
Kedar Gupta47bd4802015-07-15 09:43:26 -070069 @Context
Jian Licc730a62016-05-10 16:36:16 -070070 private UriInfo uriInfo;
71 private static final String HOST_NOT_FOUND = "Host is not found";
Charles Chancd06c692017-04-27 20:46:06 -070072 private static final String[] REMOVAL_KEYS = {"mac", "vlan", "locations", "ipAddresses"};
Ray Milkey1f95bd32014-12-10 11:11:00 -080073
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070074 /**
75 * Get all end-station hosts.
76 * Returns array of all known end-station hosts.
77 *
Jian Licc730a62016-05-10 16:36:16 -070078 * @return 200 OK with array of all known end-station hosts.
Andrea Campanella10c4adc2015-12-03 15:27:54 -080079 * @onos.rsModel Hosts
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070080 */
Ray Milkey1f95bd32014-12-10 11:11:00 -080081 @GET
82 @Produces(MediaType.APPLICATION_JSON)
83 public Response getHosts() {
84 final Iterable<Host> hosts = get(HostService.class).getHosts();
85 final ObjectNode root = encodeArray(Host.class, "hosts", hosts);
Ray Milkey3f025692015-01-26 11:15:41 -080086 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -080087 }
88
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070089 /**
90 * Get details of end-station host.
91 * Returns detailed properties of the specified end-station host.
92 *
93 * @param id host identifier
Jian Licc730a62016-05-10 16:36:16 -070094 * @return 200 OK with detailed properties of the specified end-station host
Andrea Campanella10c4adc2015-12-03 15:27:54 -080095 * @onos.rsModel Host
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070096 */
Ray Milkey1f95bd32014-12-10 11:11:00 -080097 @GET
98 @Produces(MediaType.APPLICATION_JSON)
99 @Path("{id}")
100 public Response getHostById(@PathParam("id") String id) {
101 final Host host = nullIsNotFound(get(HostService.class).getHost(hostId(id)),
Kedar Gupta47bd4802015-07-15 09:43:26 -0700102 HOST_NOT_FOUND);
Ray Milkey1f95bd32014-12-10 11:11:00 -0800103 final ObjectNode root = codec(Host.class).encode(host, this);
Ray Milkey3f025692015-01-26 11:15:41 -0800104 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -0800105 }
106
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700107 /**
108 * Get details of end-station host with MAC/VLAN.
109 * Returns detailed properties of the specified end-station host.
110 *
111 * @param mac host MAC address
112 * @param vlan host VLAN identifier
Jian Licc730a62016-05-10 16:36:16 -0700113 * @return 200 OK with detailed properties of the specified end-station host
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800114 * @onos.rsModel Host
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700115 */
Ray Milkey1f95bd32014-12-10 11:11:00 -0800116 @GET
117 @Produces(MediaType.APPLICATION_JSON)
118 @Path("{mac}/{vlan}")
119 public Response getHostByMacAndVlan(@PathParam("mac") String mac,
120 @PathParam("vlan") String vlan) {
121 final Host host = nullIsNotFound(get(HostService.class).getHost(hostId(mac + "/" + vlan)),
Kedar Gupta47bd4802015-07-15 09:43:26 -0700122 HOST_NOT_FOUND);
Ray Milkey1f95bd32014-12-10 11:11:00 -0800123 final ObjectNode root = codec(Host.class).encode(host, this);
Ray Milkey3f025692015-01-26 11:15:41 -0800124 return ok(root).build();
Ray Milkey1f95bd32014-12-10 11:11:00 -0800125 }
Kedar Gupta47bd4802015-07-15 09:43:26 -0700126
127 /**
128 * Creates a new host based on JSON input and adds it to the current
129 * host inventory.
130 *
131 * @param stream input JSON
132 * @return status of the request - CREATED if the JSON is correct,
133 * BAD_REQUEST if the JSON is invalid
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800134 * @onos.rsModel HostPut
Kedar Gupta47bd4802015-07-15 09:43:26 -0700135 */
136 @POST
137 @Consumes(MediaType.APPLICATION_JSON)
138 @Produces(MediaType.APPLICATION_JSON)
139 public Response createAndAddHost(InputStream stream) {
140 URI location;
141 try {
142 // Parse the input stream
Ray Milkey86ee5e82018-04-02 15:33:07 -0700143 ObjectNode root = readTreeFromStream(mapper(), stream);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700144
145 HostProviderRegistry hostProviderRegistry = get(HostProviderRegistry.class);
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700146 InternalHostProvider hostProvider = new InternalHostProvider();
147 HostProviderService hostProviderService = hostProviderRegistry.register(hostProvider);
148 hostProvider.setHostProviderService(hostProviderService);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700149 HostId hostId = hostProvider.parseHost(root);
150
151 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
152 .path("hosts")
153 .path(hostId.mac().toString())
154 .path(hostId.vlanId().toString());
155 location = locationBuilder.build();
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700156 hostProviderRegistry.unregister(hostProvider);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700157
158 } catch (IOException ex) {
Ray Milkey5d915f42015-08-13 10:27:53 -0700159 throw new IllegalArgumentException(ex);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700160 }
161 return Response
162 .created(location)
163 .build();
164 }
165
Jian Licc730a62016-05-10 16:36:16 -0700166 /**
Thomas Vachuska58a7c342016-12-13 01:10:56 -0800167 * Removes infrastructure device.
168 * Administratively deletes the specified device from the inventory of
169 * known devices.
170 *
171 * @param mac host MAC address
172 * @param vlan host VLAN identifier
173 * @return 204 OK
174 * @onos.rsModel Host
175 */
176 @DELETE
177 @Path("{mac}/{vlan}")
178 @Produces(MediaType.APPLICATION_JSON)
179 public Response removeHost(@PathParam("mac") String mac,
180 @PathParam("vlan") String vlan) {
181 get(HostAdminService.class).removeHost(hostId(mac + "/" + vlan));
182 return Response.noContent().build();
183 }
184
185 /**
Jian Licc730a62016-05-10 16:36:16 -0700186 * Internal host provider that provides host events.
187 */
Kedar Gupta47bd4802015-07-15 09:43:26 -0700188 private final class InternalHostProvider implements HostProvider {
189 private final ProviderId providerId =
190 new ProviderId("host", "org.onosproject.rest", true);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700191 private HostProviderService hostProviderService;
192
Jian Licc730a62016-05-10 16:36:16 -0700193 /**
194 * Prevents from instantiation.
195 */
Ray Milkey5d915f42015-08-13 10:27:53 -0700196 private InternalHostProvider() {
Kedar Gupta47bd4802015-07-15 09:43:26 -0700197 }
198
Ray Milkey5d915f42015-08-13 10:27:53 -0700199 public void triggerProbe(Host host) {
200 // Not implemented since there is no need to check for hosts on network
Kedar Gupta47bd4802015-07-15 09:43:26 -0700201 }
202
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700203 public void setHostProviderService(HostProviderService service) {
204 this.hostProviderService = service;
Kedar Gupta47bd4802015-07-15 09:43:26 -0700205 }
206
Ray Milkey5d915f42015-08-13 10:27:53 -0700207 /*
208 * Return the ProviderId of "this"
209 */
Kedar Gupta47bd4802015-07-15 09:43:26 -0700210 public ProviderId id() {
211 return providerId;
212 }
213
214 /**
215 * Creates and adds new host based on given data and returns its host ID.
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700216 *
Kedar Gupta47bd4802015-07-15 09:43:26 -0700217 * @param node JsonNode containing host information
218 * @return host ID of new host created
219 */
220 private HostId parseHost(JsonNode node) {
221 MacAddress mac = MacAddress.valueOf(node.get("mac").asText());
Ray Milkey5d915f42015-08-13 10:27:53 -0700222 VlanId vlanId = VlanId.vlanId((short) node.get("vlan").asInt(VlanId.UNTAGGED));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700223
Charles Chancd06c692017-04-27 20:46:06 -0700224 Iterator<JsonNode> locationNodes = node.get("locations").elements();
225 Set<HostLocation> locations = new HashSet<>();
226 while (locationNodes.hasNext()) {
227 JsonNode locationNode = locationNodes.next();
228 String deviceAndPort = locationNode.get("elementId").asText() + "/" +
229 locationNode.get("port").asText();
230 HostLocation hostLocation = new HostLocation(ConnectPoint.deviceConnectPoint(deviceAndPort), 0);
231 locations.add(hostLocation);
232 }
233
234 Iterator<JsonNode> ipNodes = node.get("ipAddresses").elements();
Kedar Gupta47bd4802015-07-15 09:43:26 -0700235 Set<IpAddress> ips = new HashSet<>();
Charles Chancd06c692017-04-27 20:46:06 -0700236 while (ipNodes.hasNext()) {
237 ips.add(IpAddress.valueOf(ipNodes.next().asText()));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700238 }
Jian Li43c956b2015-11-26 03:02:46 -0800239
240 // try to remove elements from json node after reading them
241 SparseAnnotations annotations = annotations(removeElements(node, REMOVAL_KEYS));
Kedar Gupta47bd4802015-07-15 09:43:26 -0700242 // Update host inventory
243
244 HostId hostId = HostId.hostId(mac, vlanId);
Charles Chancd06c692017-04-27 20:46:06 -0700245 DefaultHostDescription desc = new DefaultHostDescription(mac, vlanId, locations, ips, true, annotations);
Ray Milkeydc083442016-02-22 11:27:57 -0800246 hostProviderService.hostDetected(hostId, desc, false);
Kedar Gupta47bd4802015-07-15 09:43:26 -0700247 return hostId;
248 }
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700249
250 /**
Jian Li43c956b2015-11-26 03:02:46 -0800251 * Remove a set of elements from JsonNode by specifying keys.
252 *
253 * @param node JsonNode containing host information
254 * @param removalKeys key of elements that need to be removed
255 * @return removal keys
256 */
257 private JsonNode removeElements(JsonNode node, String[] removalKeys) {
258 ObjectMapper mapper = new ObjectMapper();
259 Map<String, Object> map = mapper.convertValue(node, Map.class);
260 for (String key : removalKeys) {
261 map.remove(key);
262 }
263 return mapper.convertValue(map, JsonNode.class);
264 }
265
266 /**
Kedar Gupta7c4d1962015-08-03 10:46:04 -0700267 * Produces annotations from specified JsonNode. Copied from the ConfigProvider
268 * class for use in the POST method.
269 *
270 * @param node node to be annotated
271 * @return SparseAnnotations object with information about node
272 */
273 private SparseAnnotations annotations(JsonNode node) {
274 if (node == null) {
275 return DefaultAnnotations.EMPTY;
276 }
277
278 DefaultAnnotations.Builder builder = DefaultAnnotations.builder();
279 Iterator<String> it = node.fieldNames();
280 while (it.hasNext()) {
281 String k = it.next();
282 builder.set(k, node.get(k).asText());
283 }
284 return builder.build();
285 }
286
Kedar Gupta47bd4802015-07-15 09:43:26 -0700287 }
Ray Milkey1f95bd32014-12-10 11:11:00 -0800288}
289