blob: 6418bc9b1dee0ee657eb5fbcaaaf962d948a40d1 [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;
20import org.apache.felix.scr.annotations.Activate;
21import org.apache.felix.scr.annotations.Component;
22import org.apache.felix.scr.annotations.Deactivate;
23import org.apache.felix.scr.annotations.Reference;
24import org.apache.felix.scr.annotations.ReferenceCardinality;
25import org.apache.felix.scr.annotations.Service;
Aaron Kruglikov66855212015-06-22 12:29:02 -070026import org.onlab.util.AbstractAccumulator;
27import org.onlab.util.Accumulator;
28import org.onlab.util.SharedExecutors;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070029import org.onosproject.cfg.ComponentConfigEvent;
30import org.onosproject.cfg.ComponentConfigService;
31import org.onosproject.cfg.ComponentConfigStore;
32import org.onosproject.cfg.ComponentConfigStoreDelegate;
33import org.onosproject.cfg.ConfigProperty;
34import org.osgi.service.cm.Configuration;
35import org.osgi.service.cm.ConfigurationAdmin;
36import org.slf4j.Logger;
37
38import java.io.IOException;
39import java.io.InputStream;
40import java.util.Dictionary;
Aaron Kruglikov66855212015-06-22 12:29:02 -070041import java.util.HashSet;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070042import java.util.Hashtable;
Aaron Kruglikov66855212015-06-22 12:29:02 -070043import java.util.List;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070044import java.util.Map;
Thomas Vachuska9f6bd522018-02-12 15:53:01 -080045import java.util.Objects;
Thomas Vachuska6d697f12015-03-08 20:59:50 -070046import java.util.Set;
47
48import static com.google.common.base.Preconditions.checkArgument;
49import static com.google.common.base.Preconditions.checkNotNull;
Changhoon Yoon541ef712015-05-23 17:18:34 +090050import static org.onosproject.security.AppGuard.checkPermission;
Thomas Vachuska92af89f2015-06-22 15:16:23 -070051import static org.slf4j.LoggerFactory.getLogger;
Changhoon Yoonb856b812015-08-10 03:47:19 +090052import static org.onosproject.security.AppPermission.Type.*;
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 */
58@Component(immediate = true)
59@Service
60public class ComponentConfigManager implements ComponentConfigService {
61
62 private static final String COMPONENT_NULL = "Component name cannot be null";
63 private static final String PROPERTY_NULL = "Property name cannot be null";
Brian O'Connor57e83e82015-09-22 15:45:37 -070064 private static final String COMPONENT_MISSING = "Component %s is not registered";
65 private static final String PROPERTY_MISSING = "Property %s does not exist for %s";
66
Thomas Vachuska6d697f12015-03-08 20:59:50 -070067
Aaron Kruglikov66855212015-06-22 12:29:02 -070068 //Symbolic constants for use with the accumulator
69 private static final int MAX_ITEMS = 100;
70 private static final int MAX_BATCH_MILLIS = 1000;
71 private static final int MAX_IDLE_MILLIS = 250;
72
Thomas Vachuska6d697f12015-03-08 20:59:50 -070073 private static final String RESOURCE_EXT = ".cfgdef";
74
75 private final Logger log = getLogger(getClass());
76
77 private final ComponentConfigStoreDelegate delegate = new InternalStoreDelegate();
Thomas Vachuska92af89f2015-06-22 15:16:23 -070078 private final InternalAccumulator accumulator = new InternalAccumulator();
Thomas Vachuska6d697f12015-03-08 20:59:50 -070079
80 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
81 protected ComponentConfigStore store;
82
83 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
84 protected ConfigurationAdmin cfgAdmin;
85
86 // Locally maintained catalog of definitions.
Thomas Vachuska9f6bd522018-02-12 15:53:01 -080087 private final Map<String, Map<String, ConfigProperty>> properties =
Thomas Vachuska6d697f12015-03-08 20:59:50 -070088 Maps.newConcurrentMap();
89
Aaron Kruglikov66855212015-06-22 12:29:02 -070090
Thomas Vachuska6d697f12015-03-08 20:59:50 -070091 @Activate
92 public void activate() {
93 store.setDelegate(delegate);
94 log.info("Started");
95 }
96
97 @Deactivate
98 public void deactivate() {
99 store.unsetDelegate(delegate);
100 log.info("Stopped");
101 }
102
103 @Override
104 public Set<String> getComponentNames() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900105 checkPermission(CONFIG_READ);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700106 return ImmutableSet.copyOf(properties.keySet());
107 }
108
109 @Override
110 public void registerProperties(Class<?> componentClass) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900111 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900112
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700113 String componentName = componentClass.getName();
114 String resourceName = componentClass.getSimpleName() + RESOURCE_EXT;
115 try (InputStream ris = componentClass.getResourceAsStream(resourceName)) {
116 checkArgument(ris != null, "Property definitions not found at resource %s",
117 resourceName);
118
119 // Read the definitions
120 Set<ConfigProperty> defs = ConfigPropertyDefinitions.read(ris);
121
122 // Produce a new map of the properties and register it.
123 Map<String, ConfigProperty> map = Maps.newConcurrentMap();
124 defs.forEach(p -> map.put(p.name(), p));
125
126 properties.put(componentName, map);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800127 loadExistingValues(componentName, map);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700128 } catch (IOException e) {
129 log.error("Unable to read property definitions from resource " + resourceName, e);
130 }
131 }
132
133 @Override
134 public void unregisterProperties(Class<?> componentClass, boolean clear) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900135 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900136
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700137 String componentName = componentClass.getName();
138 checkNotNull(componentName, COMPONENT_NULL);
139 Map<String, ConfigProperty> cps = properties.remove(componentName);
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700140 if (clear && cps != null) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700141 cps.keySet().forEach(name -> store.unsetProperty(componentName, name));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700142 clearExistingValues(componentName);
143 }
144 }
145
146 // Clears any existing values that may have been set.
147 private void clearExistingValues(String componentName) {
148 triggerUpdate(componentName);
149 }
150
151 @Override
152 public Set<ConfigProperty> getProperties(String componentName) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900153 checkPermission(CONFIG_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900154
Brian O'Connor85c29262015-03-10 20:53:43 -0700155 Map<String, ConfigProperty> map = properties.get(componentName);
156 return map != null ? ImmutableSet.copyOf(map.values()) : null;
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700157 }
158
159 @Override
160 public void setProperty(String componentName, String name, String value) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900161 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900162
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700163 checkNotNull(componentName, COMPONENT_NULL);
164 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700165
166 checkArgument(properties.containsKey(componentName),
167 COMPONENT_MISSING, componentName);
168 checkArgument(properties.get(componentName).containsKey(name),
169 PROPERTY_MISSING, name, componentName);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530170 checkValidity(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700171 store.setProperty(componentName, name, value);
172 }
173
174 @Override
andreadd106a62015-10-02 13:39:48 -0700175 public void preSetProperty(String componentName, String name, String value) {
Charles Chandc037982019-04-10 17:12:20 -0700176 preSetProperty(componentName, name, value, true);
177 }
178
179 @Override
180 public void preSetProperty(String componentName, String name, String value, boolean override) {
andreadd106a62015-10-02 13:39:48 -0700181 checkPermission(CONFIG_WRITE);
182
183 checkNotNull(componentName, COMPONENT_NULL);
184 checkNotNull(name, PROPERTY_NULL);
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530185 checkValidity(componentName, name, value);
Charles Chandc037982019-04-10 17:12:20 -0700186 store.setProperty(componentName, name, value, override);
andreadd106a62015-10-02 13:39:48 -0700187 }
188
189 @Override
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700190 public void unsetProperty(String componentName, String name) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900191 checkPermission(CONFIG_WRITE);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900192
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700193 checkNotNull(componentName, COMPONENT_NULL);
194 checkNotNull(name, PROPERTY_NULL);
Brian O'Connor57e83e82015-09-22 15:45:37 -0700195
196 checkArgument(properties.containsKey(componentName),
197 COMPONENT_MISSING, componentName);
198 checkArgument(properties.get(componentName).containsKey(name),
199 PROPERTY_MISSING, name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700200 store.unsetProperty(componentName, name);
201 }
202
psneha459608e2018-08-02 01:16:46 -0400203 @Override
204 public ConfigProperty getProperty(String componentName, String attribute) {
205 checkPermission(CONFIG_READ);
206
207 Map<String, ConfigProperty> map = properties.get(componentName);
208 if (map != null) {
209 return map.get(attribute);
210 } else {
211 log.error("Attribute {} not present in component {}", attribute, componentName);
212 return null;
213 }
214 }
215
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700216 private class InternalStoreDelegate implements ComponentConfigStoreDelegate {
217
218 @Override
219 public void notify(ComponentConfigEvent event) {
220 String componentName = event.subject();
221 String name = event.name();
222 String value = event.value();
223
224 switch (event.type()) {
225 case PROPERTY_SET:
226 set(componentName, name, value);
227 break;
228 case PROPERTY_UNSET:
229 reset(componentName, name);
230 break;
231 default:
232 break;
233 }
234 }
235 }
236
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700237 // Buffers multiple subsequent configuration updates into one notification.
238 private class InternalAccumulator extends AbstractAccumulator<String>
239 implements Accumulator<String> {
Aaron Kruglikov66855212015-06-22 12:29:02 -0700240
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700241 protected InternalAccumulator() {
242 super(SharedExecutors.getTimer(), MAX_ITEMS, MAX_BATCH_MILLIS, MAX_IDLE_MILLIS);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700243 }
244
245 @Override
Thomas Vachuska92af89f2015-06-22 15:16:23 -0700246 public void processItems(List<String> items) {
247 // Conversion to set removes duplicates
248 Set<String> componentSet = new HashSet<>(items);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700249 componentSet.forEach(ComponentConfigManager.this::triggerUpdate);
Aaron Kruglikov66855212015-06-22 12:29:02 -0700250 }
251 }
252
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700253 // Locates the property in the component map and replaces it with an
254 // updated copy.
255 private void set(String componentName, String name, String value) {
256 Map<String, ConfigProperty> map = properties.get(componentName);
257 if (map != null) {
258 ConfigProperty prop = map.get(name);
259 if (prop != null) {
260 map.put(name, ConfigProperty.setProperty(prop, value));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700261 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700262 return;
263 }
264 }
Thomas Vachuska4b32fcb2018-02-20 12:35:19 -0800265
266 // If definition doesn't exist in local catalog, cache the property.
267 preSet(componentName, name, value);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700268 }
269
270 // Locates the property in the component map and replaces it with an
271 // reset copy.
272 private void reset(String componentName, String name) {
273 Map<String, ConfigProperty> map = properties.get(componentName);
274 if (map != null) {
275 ConfigProperty prop = map.get(name);
276 if (prop != null) {
277 map.put(name, ConfigProperty.resetProperty(prop));
Aaron Kruglikov66855212015-06-22 12:29:02 -0700278 accumulator.add(componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700279 return;
280 }
Thomas Vachuskadb320ab2015-04-22 09:03:33 -0700281 log.warn("Unable to reset non-existent property {} for component {}",
282 name, componentName);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700283 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700284 }
285
Thomas Vachuska4b32fcb2018-02-20 12:35:19 -0800286 // Stores non-existent property so that loadExistingValues() can load in future.
287 private void preSet(String componentName, String name, String value) {
288 try {
289 Configuration config = cfgAdmin.getConfiguration(componentName, null);
290 Dictionary<String, Object> props = config.getProperties();
291 if (props == null) {
292 props = new Hashtable<>();
293 }
294 props.put(name, value);
295 config.update(props);
296 } catch (IOException e) {
297 log.error("Failed to preset configuration for {}", componentName);
298 }
299 }
300
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530301 // Checks whether the value of the specified configuration property is a valid one or not.
302 private void checkValidity(String componentName, String name, String newValue) {
303 Map<String, ConfigProperty> map = properties.get(componentName);
304 if (map == null) {
305 return;
306 }
307 ConfigProperty prop = map.get(name);
308 ConfigProperty.Type type = prop.type();
309 try {
310 switch (type) {
311 case INTEGER:
312 Integer.parseInt(newValue);
313 break;
314 case LONG:
315 Long.parseLong(newValue);
316 break;
317 case FLOAT:
318 Float.parseFloat(newValue);
319 break;
320 case DOUBLE:
321 Double.parseDouble(newValue);
322 break;
323 case BOOLEAN:
324 if (!((newValue != null) && (newValue.equalsIgnoreCase("true") ||
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800325 newValue.equalsIgnoreCase("false")))) {
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530326 throw new IllegalArgumentException("Invalid " + type + " value");
327 }
328 break;
329 case STRING:
330 case BYTE:
331 //do nothing
332 break;
333 default:
334 log.warn("Not a valid config property type");
335 break;
336
337 }
338 } catch (NumberFormatException e) {
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800339 throw new NumberFormatException("Invalid " + type + " value");
sivachidambaram subramanian8c9a7012017-04-26 14:59:02 +0530340 }
341 }
342
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800343 // Loads existing property values that may have been learned from other
344 // nodes in the cluster before the local property registration.
345 private void loadExistingValues(String componentName,
346 Map<String, ConfigProperty> map) {
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700347 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700348 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800349 Dictionary<String, Object> localProperties = cfg.getProperties();
350
351 // Iterate over all registered config properties...
352 for (ConfigProperty p : ImmutableSet.copyOf(map.values())) {
353 String name = p.name();
354 String globalValue = store.getProperty(componentName, name);
355 String localValue = localProperties != null ? (String) localProperties.get(name) : null;
Thomas Vachuska611f4662018-02-27 11:30:09 -0800356
357 log.debug("Processing {} property {}; global {}; local {}",
358 componentName, name, globalValue, localValue);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800359 try {
Thomas Vachuska611f4662018-02-27 11:30:09 -0800360 // 1) If the global value is the same as default, or
361 // 2) if it is not set explicitly, but the local value is
362 // not the same as the default, reset local value to default.
363 if (Objects.equals(globalValue, p.defaultValue()) ||
364 (globalValue == null &&
365 !Objects.equals(localValue, p.defaultValue()))) {
366 log.debug("Resetting {} property {}; value same as default",
367 componentName, name);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800368 reset(componentName, name);
369
370 } else if (!Objects.equals(globalValue, localValue)) {
Thomas Vachuska611f4662018-02-27 11:30:09 -0800371 // If the local value is different from global value
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800372 // validate the global value and apply it locally.
Thomas Vachuska611f4662018-02-27 11:30:09 -0800373 log.debug("Setting {} property {} to {}",
374 componentName, name, globalValue);
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800375 checkValidity(componentName, name, globalValue);
376 set(componentName, name, globalValue);
Thomas Vachuska611f4662018-02-27 11:30:09 -0800377
378 } else {
379 // Otherwise, simply update the registered property
380 // with the global value.
381 log.debug("Syncing {} property {} to {}",
382 componentName, name, globalValue);
383 map.put(name, ConfigProperty.setProperty(p, globalValue));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700384 }
Thomas Vachuska9f6bd522018-02-12 15:53:01 -0800385 } catch (IllegalArgumentException e) {
386 log.warn("Value {} is not a valid {}; using default",
387 globalValue, p.type());
388 reset(componentName, name);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700389 }
390 }
391 } catch (IOException e) {
392 log.error("Unable to get configuration for " + componentName, e);
393 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700394 }
395
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700396 private void triggerUpdate(String componentName) {
397 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700398 Configuration cfg = cfgAdmin.getConfiguration(componentName, null);
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700399 Map<String, ConfigProperty> map = properties.get(componentName);
400 Dictionary<String, Object> props = new Hashtable<>();
Thomas Vachuska611f4662018-02-27 11:30:09 -0800401 map.values().stream().filter(p -> p.value() != null)
402 .forEach(p -> props.put(p.name(), p.value()));
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700403 cfg.update(props);
404 } catch (IOException e) {
405 log.warn("Unable to update configuration for " + componentName, e);
406 }
407 }
Thomas Vachuska6d697f12015-03-08 20:59:50 -0700408}