blob: 2f17447938ca3b93aff23aecda3ea42db6202fc9 [file] [log] [blame]
Thomas Vachuska6d697f12015-03-08 20:59:50 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuska6d697f12015-03-08 20:59:50 -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 */
16package org.onosproject.cfg.impl;
17
18import com.google.common.collect.ImmutableSet;
19import com.google.common.collect.Maps;
Aaron Kruglikov66855212015-06-22 12:29:02 -070020import org.onlab.util.AbstractAccumulator;
21import org.onlab.util.Accumulator;
22import org.onlab.util.SharedExecutors;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070023import org.onosproject.cfg.ComponentConfigEvent;
24import org.onosproject.cfg.ComponentConfigService;
25import org.onosproject.cfg.ComponentConfigStore;
26import org.onosproject.cfg.ComponentConfigStoreDelegate;
27import org.onosproject.cfg.ConfigProperty;
28import org.osgi.service.cm.Configuration;
29import org.osgi.service.cm.ConfigurationAdmin;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070030import org.osgi.service.component.annotations.Activate;
31import org.osgi.service.component.annotations.Component;
32import org.osgi.service.component.annotations.Deactivate;
33import org.osgi.service.component.annotations.Reference;
34import org.osgi.service.component.annotations.ReferenceCardinality;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070035import org.slf4j.Logger;
36
37import java.io.IOException;
38import java.io.InputStream;
39import java.util.Dictionary;
Aaron Kruglikov66855212015-06-22 12:29:02 -070040import java.util.HashSet;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070041import java.util.Hashtable;
Aaron Kruglikov66855212015-06-22 12:29:02 -070042import java.util.List;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070043import java.util.Map;
Thomas Vachuska9f6bd522018-02-12 15:53:01 -080044import java.util.Objects;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070045import java.util.Set;
46
47import static com.google.common.base.Preconditions.checkArgument;
48import static com.google.common.base.Preconditions.checkNotNull;
Changhoon Yoon541ef712015-05-23 17:18:34 +090049import static org.onosproject.security.AppGuard.checkPermission;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070050import static org.onosproject.security.AppPermission.Type.CONFIG_READ;
51import static org.onosproject.security.AppPermission.Type.CONFIG_WRITE;
Thomas Vachuska92af89f2015-06-22 15:16:23 -070052import static org.slf4j.LoggerFactory.getLogger;
Changhoon Yoon541ef712015-05-23 17:18:34 +090053
Thomas Vachuska6d697f12015-03-08 20:59:50 -070054
55/**
56 * Implementation of the centralized component configuration service.
57 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070058@Component(immediate = true, service = ComponentConfigService.class)
Thomas Vachuska6d697f12015-03-08 20:59:50 -070059public class ComponentConfigManager implements ComponentConfigService {
60
61 private static final String COMPONENT_NULL = "Component name cannot be null";
62 private static final String PROPERTY_NULL = "Property name cannot be null";
Brian O'Connor57e83e82015-09-22 15:45:37 -070063 private static final String COMPONENT_MISSING = "Component %s is not registered";
64 private static final String PROPERTY_MISSING = "Property %s does not exist for %s";
65
Thomas Vachuska6d697f12015-03-08 20:59:50 -070066
Aaron Kruglikov66855212015-06-22 12:29:02 -070067 //Symbolic constants for use with the accumulator
68 private static final int MAX_ITEMS = 100;
69 private static final int MAX_BATCH_MILLIS = 1000;
70 private static final int MAX_IDLE_MILLIS = 250;
71
Thomas Vachuska6d697f12015-03-08 20:59:50 -070072 private static final String RESOURCE_EXT = ".cfgdef";
73
74 private final Logger log = getLogger(getClass());
75
76 private final ComponentConfigStoreDelegate delegate = new InternalStoreDelegate();
Thomas Vachuska92af89f2015-06-22 15:16:23 -070077 private final InternalAccumulator accumulator = new InternalAccumulator();
Thomas Vachuska6d697f12015-03-08 20:59:50 -070078
Ray Milkeyd84f89b2018-08-17 14:54:17 -070079 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuska6d697f12015-03-08 20:59:50 -070080 protected ComponentConfigStore store;
81
Ray Milkeyd84f89b2018-08-17 14:54:17 -070082 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuska6d697f12015-03-08 20:59:50 -070083 protected ConfigurationAdmin cfgAdmin;
84
85 // Locally maintained catalog of definitions.
Thomas Vachuska9f6bd522018-02-12 15:53:01 -080086 private final Map<String, Map<String, ConfigProperty>> properties =
Thomas Vachuska6d697f12015-03-08 20:59:50 -070087 Maps.newConcurrentMap();
88
Aaron Kruglikov66855212015-06-22 12:29:02 -070089
Thomas Vachuska6d697f12015-03-08 20:59:50 -070090 @Activate
91 public void activate() {
92 store.setDelegate(delegate);
93 log.info("Started");
94 }
95
96 @Deactivate
97 public void deactivate() {
98 store.unsetDelegate(delegate);
99 log.info("Stopped");
100 }
101
102 @Override
103 public Set<String> getComponentNames() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900104 checkPermission(CONFIG_READ);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700105 return ImmutableSet.copyOf(properties.keySet());
106 }
107
108 @Override
109 public void registerProperties(Class<?> componentClass) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900110 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900111
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700112 String componentName = componentClass.getName();
113 String resourceName = componentClass.getSimpleName() + RESOURCE_EXT;
114 try (InputStream ris = componentClass.getResourceAsStream(resourceName)) {
115 checkArgument(ris != null, "Property definitions not found at resource %s",
116 resourceName);
117
118 // Read the definitions
119 Set<ConfigProperty> defs = ConfigPropertyDefinitions.read(ris);
120
121 // Produce a new map of the properties and register it.
122 Map<String, ConfigProperty> map = Maps.newConcurrentMap();
123 defs.forEach(p -> map.put(p.name(), p));
124
125 properties.put(componentName, map);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800126 loadExistingValues(componentName, map);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700127 } catch (IOException e) {
128 log.error("Unable to read property definitions from resource " + resourceName, e);
129 }
130 }
131
132 @Override
133 public void unregisterProperties(Class<?> componentClass, boolean clear) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900134 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900135
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700136 String componentName = componentClass.getName();
137 checkNotNull(componentName, COMPONENT_NULL);
138 Map<String, ConfigProperty> cps = properties.remove(componentName);
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700139 if (clear && cps != null) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700140 cps.keySet().forEach(name -> store.unsetProperty(componentName, name));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700141 clearExistingValues(componentName);
142 }
143 }
144
145 // Clears any existing values that may have been set.
146 private void clearExistingValues(String componentName) {
147 triggerUpdate(componentName);
148 }
149
150 @Override
151 public Set<ConfigProperty> getProperties(String componentName) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900152 checkPermission(CONFIG_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900153
Brian O'Connor85c29262015-03-10 20:53:43 -0700154 Map<String, ConfigProperty> map = properties.get(componentName);
155 return map != null ? ImmutableSet.copyOf(map.values()) : null;
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700156 }
157
158 @Override
159 public void setProperty(String componentName, String name, String value) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900160 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900161
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700162 checkNotNull(componentName, COMPONENT_NULL);
163 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700164
165 checkArgument(properties.containsKey(componentName),
166 COMPONENT_MISSING, componentName);
167 checkArgument(properties.get(componentName).containsKey(name),
168 PROPERTY_MISSING, name, componentName);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530169 checkValidity(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700170 store.setProperty(componentName, name, value);
171 }
172
173 @Override
andreadd106a62015-10-02 13:39:48 -0700174 public void preSetProperty(String componentName, String name, String value) {
Charles Chan8b488de2019-04-10 17:12:20 -0700175 preSetProperty(componentName, name, value, true);
176 }
177
178 @Override
179 public void preSetProperty(String componentName, String name, String value, boolean override) {
andreadd106a62015-10-02 13:39:48 -0700180 checkPermission(CONFIG_WRITE);
181
182 checkNotNull(componentName, COMPONENT_NULL);
183 checkNotNull(name, PROPERTY_NULL);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530184 checkValidity(componentName, name, value);
Charles Chan8b488de2019-04-10 17:12:20 -0700185 store.setProperty(componentName, name, value, override);
andreadd106a62015-10-02 13:39:48 -0700186 }
187
188 @Override
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700189 public void unsetProperty(String componentName, String name) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900190 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900191
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700192 checkNotNull(componentName, COMPONENT_NULL);
193 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700194
195 checkArgument(properties.containsKey(componentName),
196 COMPONENT_MISSING, componentName);
197 checkArgument(properties.get(componentName).containsKey(name),
198 PROPERTY_MISSING, name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700199 store.unsetProperty(componentName, name);
200 }
201
psnehaf31ac6f2018-08-02 01:16:46 -0400202 @Override
203 public ConfigProperty getProperty(String componentName, String attribute) {
204 checkPermission(CONFIG_READ);
205
206 Map<String, ConfigProperty> map = properties.get(componentName);
207 if (map != null) {
208 return map.get(attribute);
209 } else {
210 log.error("Attribute {} not present in component {}", attribute, componentName);
211 return null;
212 }
213 }
214
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700215 private class InternalStoreDelegate implements ComponentConfigStoreDelegate {
216
217 @Override
218 public void notify(ComponentConfigEvent event) {
219 String componentName = event.subject();
220 String name = event.name();
221 String value = event.value();
222
223 switch (event.type()) {
224 case PROPERTY_SET:
225 set(componentName, name, value);
226 break;
227 case PROPERTY_UNSET:
228 reset(componentName, name);
229 break;
230 default:
231 break;
232 }
233 }
234 }
235
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700236 // Buffers multiple subsequent configuration updates into one notification.
237 private class InternalAccumulator extends AbstractAccumulator<String>
238 implements Accumulator<String> {
Aaron Kruglikov66855212015-06-22 12:29:02 -0700239
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700240 protected InternalAccumulator() {
241 super(SharedExecutors.getTimer(), MAX_ITEMS, MAX_BATCH_MILLIS, MAX_IDLE_MILLIS);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700242 }
243
244 @Override
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700245 public void processItems(List<String> items) {
246 // Conversion to set removes duplicates
247 Set<String> componentSet = new HashSet<>(items);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700248 componentSet.forEach(ComponentConfigManager.this::triggerUpdate);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700249 }
250 }
251
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700252 // Locates the property in the component map and replaces it with an
253 // updated copy.
254 private void set(String componentName, String name, String value) {
255 Map<String, ConfigProperty> map = properties.get(componentName);
256 if (map != null) {
257 ConfigProperty prop = map.get(name);
258 if (prop != null) {
259 map.put(name, ConfigProperty.setProperty(prop, value));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700260 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700261 return;
262 }
263 }
Thomas Vachuska4b32fcb2018-02-20 12:35:19 -0800264
265 // If definition doesn't exist in local catalog, cache the property.
266 preSet(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700267 }
268
269 // Locates the property in the component map and replaces it with an
270 // reset copy.
271 private void reset(String componentName, String name) {
272 Map<String, ConfigProperty> map = properties.get(componentName);
273 if (map != null) {
274 ConfigProperty prop = map.get(name);
275 if (prop != null) {
276 map.put(name, ConfigProperty.resetProperty(prop));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700277 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700278 return;
279 }
Thomas Vachuskadb320ab2015-04-22 09:03:33 -0700280 log.warn("Unable to reset non-existent property {} for component {}",
281 name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700282 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700283 }
284
Thomas Vachuska4b32fcb2018-02-20 12:35:19 -0800285 // Stores non-existent property so that loadExistingValues() can load in future.
286 private void preSet(String componentName, String name, String value) {
287 try {
288 Configuration config = cfgAdmin.getConfiguration(componentName, null);
289 Dictionary<String, Object> props = config.getProperties();
290 if (props == null) {
291 props = new Hashtable<>();
292 }
293 props.put(name, value);
294 config.update(props);
295 } catch (IOException e) {
296 log.error("Failed to preset configuration for {}", componentName);
297 }
298 }
299
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530300 // Checks whether the value of the specified configuration property is a valid one or not.
301 private void checkValidity(String componentName, String name, String newValue) {
302 Map<String, ConfigProperty> map = properties.get(componentName);
303 if (map == null) {
304 return;
305 }
306 ConfigProperty prop = map.get(name);
307 ConfigProperty.Type type = prop.type();
308 try {
309 switch (type) {
310 case INTEGER:
311 Integer.parseInt(newValue);
312 break;
313 case LONG:
314 Long.parseLong(newValue);
315 break;
316 case FLOAT:
317 Float.parseFloat(newValue);
318 break;
319 case DOUBLE:
320 Double.parseDouble(newValue);
321 break;
322 case BOOLEAN:
323 if (!((newValue != null) && (newValue.equalsIgnoreCase("true") ||
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800324 newValue.equalsIgnoreCase("false")))) {
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530325 throw new IllegalArgumentException("Invalid " + type + " value");
326 }
327 break;
328 case STRING:
329 case BYTE:
330 //do nothing
331 break;
332 default:
333 log.warn("Not a valid config property type");
334 break;
335
336 }
337 } catch (NumberFormatException e) {
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800338 throw new NumberFormatException("Invalid " + type + " value");
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530339 }
340 }
341
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800342 // Loads existing property values that may have been learned from other
343 // nodes in the cluster before the local property registration.
344 private void loadExistingValues(String componentName,
345 Map<String, ConfigProperty> map) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700346 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700347 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800348 Dictionary<String, Object> localProperties = cfg.getProperties();
349
350 // Iterate over all registered config properties...
351 for (ConfigProperty p : ImmutableSet.copyOf(map.values())) {
352 String name = p.name();
353 String globalValue = store.getProperty(componentName, name);
354 String localValue = localProperties != null ? (String) localProperties.get(name) : null;
Thomas Vachuska611f4662018-02-27 11:30:09 -0800355
356 log.debug("Processing {} property {}; global {}; local {}",
357 componentName, name, globalValue, localValue);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800358 try {
Thomas Vachuska611f4662018-02-27 11:30:09 -0800359 // 1) If the global value is the same as default, or
360 // 2) if it is not set explicitly, but the local value is
361 // not the same as the default, reset local value to default.
362 if (Objects.equals(globalValue, p.defaultValue()) ||
363 (globalValue == null &&
364 !Objects.equals(localValue, p.defaultValue()))) {
365 log.debug("Resetting {} property {}; value same as default",
366 componentName, name);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800367 reset(componentName, name);
368
369 } else if (!Objects.equals(globalValue, localValue)) {
Thomas Vachuska611f4662018-02-27 11:30:09 -0800370 // If the local value is different from global value
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800371 // validate the global value and apply it locally.
Ray Milkey397caca2019-04-01 16:27:50 -0700372 String newValue;
373 if (globalValue != null) {
374 newValue = globalValue;
375 } else {
376 newValue = localValue;
377 }
Thomas Vachuska611f4662018-02-27 11:30:09 -0800378 log.debug("Setting {} property {} to {}",
Ray Milkey397caca2019-04-01 16:27:50 -0700379 componentName, name, newValue);
380 checkValidity(componentName, name, newValue);
381 set(componentName, name, newValue);
Thomas Vachuska611f4662018-02-27 11:30:09 -0800382
383 } else {
384 // Otherwise, simply update the registered property
385 // with the global value.
386 log.debug("Syncing {} property {} to {}",
387 componentName, name, globalValue);
388 map.put(name, ConfigProperty.setProperty(p, globalValue));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700389 }
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800390 } catch (IllegalArgumentException e) {
Ray Milkey397caca2019-04-01 16:27:50 -0700391 log.warn("Value {} for property {} is not a valid {}; using default",
392 globalValue, name, p.type());
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800393 reset(componentName, name);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700394 }
395 }
396 } catch (IOException e) {
397 log.error("Unable to get configuration for " + componentName, e);
398 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700399 }
400
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700401 private void triggerUpdate(String componentName) {
402 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700403 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700404 Map<String, ConfigProperty> map = properties.get(componentName);
Ray Milkey7981a322018-08-16 14:55:46 -0700405 if (map == null) {
406 // Prevent NPE if the component isn't there
407 log.warn("Component not found for " + componentName);
408 return;
409 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700410 Dictionary<String, Object> props = new Hashtable<>();
Thomas Vachuska611f4662018-02-27 11:30:09 -0800411 map.values().stream().filter(p -> p.value() != null)
412 .forEach(p -> props.put(p.name(), p.value()));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700413 cfg.update(props);
414 } catch (IOException e) {
415 log.warn("Unable to update configuration for " + componentName, e);
416 }
417 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700418}