blob: 8337e845176228bca8354bc57de917d5ea1c064b [file] [log] [blame]
alshabib10580802015-02-18 18:30:33 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
alshabib10580802015-02-18 18:30:33 -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 */
16package org.onosproject.store.group.impl;
17
Jonathan Hart6ec029a2015-03-24 17:12:35 -070018import com.google.common.collect.FluentIterable;
Charles Chanf4838a72015-12-07 18:13:45 -080019import com.google.common.collect.ImmutableSet;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070020import com.google.common.collect.Iterables;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070021import com.google.common.collect.Sets;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070022import org.onlab.util.KryoNamespace;
alshabibb0285992016-03-28 23:30:37 -070023import org.onosproject.cfg.ComponentConfigService;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070024import org.onosproject.cluster.ClusterService;
Charles Chanf4838a72015-12-07 18:13:45 -080025import org.onosproject.cluster.NodeId;
Daniele Moro43ac2892021-07-15 17:02:59 +020026import org.onosproject.core.ApplicationId;
alshabib10580802015-02-18 18:30:33 -080027import org.onosproject.core.GroupId;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070028import org.onosproject.mastership.MastershipService;
alshabib10580802015-02-18 18:30:33 -080029import org.onosproject.net.DeviceId;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070030import org.onosproject.net.MastershipRole;
Andrea Campanella5daa7c462020-03-13 12:04:23 +010031import org.onosproject.net.device.DeviceService;
jaegonkim9477a9d2018-04-01 16:36:36 +090032import org.onosproject.net.driver.DriverService;
alshabib10580802015-02-18 18:30:33 -080033import org.onosproject.net.group.DefaultGroup;
34import org.onosproject.net.group.DefaultGroupDescription;
35import org.onosproject.net.group.Group;
36import org.onosproject.net.group.Group.GroupState;
37import org.onosproject.net.group.GroupBucket;
38import org.onosproject.net.group.GroupBuckets;
39import org.onosproject.net.group.GroupDescription;
40import org.onosproject.net.group.GroupEvent;
41import org.onosproject.net.group.GroupEvent.Type;
42import org.onosproject.net.group.GroupKey;
43import org.onosproject.net.group.GroupOperation;
44import org.onosproject.net.group.GroupStore;
45import org.onosproject.net.group.GroupStoreDelegate;
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070046import org.onosproject.net.group.StoredGroupBucketEntry;
alshabib10580802015-02-18 18:30:33 -080047import org.onosproject.net.group.StoredGroupEntry;
48import org.onosproject.store.AbstractStore;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070049import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -070050import org.onosproject.store.serializers.KryoNamespaces;
Madan Jampani0b847532016-03-03 13:44:15 -080051import org.onosproject.store.service.ConsistentMap;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070052import org.onosproject.store.service.DistributedPrimitive.Status;
Madan Jampani0b847532016-03-03 13:44:15 -080053import org.onosproject.store.service.MapEvent;
54import org.onosproject.store.service.MapEventListener;
alshabibb0285992016-03-28 23:30:37 -070055import org.onosproject.store.service.MultiValuedTimestamp;
Madan Jampani0b847532016-03-03 13:44:15 -080056import org.onosproject.store.service.Serializer;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070057import org.onosproject.store.service.StorageService;
helenyrwua1c41152016-08-18 16:16:14 -070058import org.onosproject.store.service.Topic;
Madan Jampani0b847532016-03-03 13:44:15 -080059import org.onosproject.store.service.Versioned;
alshabibb0285992016-03-28 23:30:37 -070060import org.osgi.service.component.ComponentContext;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070061import org.osgi.service.component.annotations.Activate;
62import org.osgi.service.component.annotations.Component;
63import org.osgi.service.component.annotations.Deactivate;
64import org.osgi.service.component.annotations.Modified;
65import org.osgi.service.component.annotations.Reference;
66import org.osgi.service.component.annotations.ReferenceCardinality;
alshabib10580802015-02-18 18:30:33 -080067import org.slf4j.Logger;
68
Jonathan Hart6ec029a2015-03-24 17:12:35 -070069import java.util.ArrayList;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070070import java.util.Collection;
Charles Chanf4838a72015-12-07 18:13:45 -080071import java.util.Collections;
alshabibb0285992016-03-28 23:30:37 -070072import java.util.Dictionary;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070073import java.util.HashMap;
Charles Chan0c7c43b2016-01-14 17:39:20 -080074import java.util.HashSet;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070075import java.util.Iterator;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070076import java.util.List;
Madan Jampani0b847532016-03-03 13:44:15 -080077import java.util.Map;
Charles Chan0c7c43b2016-01-14 17:39:20 -080078import java.util.Map.Entry;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070079import java.util.Objects;
Sho SHIMIZU30d639b2015-05-05 09:30:35 -070080import java.util.Optional;
alshabibb0285992016-03-28 23:30:37 -070081import java.util.Properties;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070082import java.util.Set;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070083import java.util.concurrent.ConcurrentHashMap;
84import java.util.concurrent.ConcurrentMap;
85import java.util.concurrent.ExecutorService;
86import java.util.concurrent.Executors;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053087import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070088import java.util.concurrent.atomic.AtomicInteger;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053089import java.util.function.Consumer;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070090import java.util.stream.Collectors;
91
alshabibb0285992016-03-28 23:30:37 -070092import static com.google.common.base.Strings.isNullOrEmpty;
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +053093import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
alshabibb0285992016-03-28 23:30:37 -070094import static org.onlab.util.Tools.get;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070095import static org.onlab.util.Tools.groupedThreads;
Ray Milkeyb5646e62018-10-16 11:42:18 -070096import static org.onosproject.store.OsgiPropertyConstants.ALLOW_EXTRANEOUS_GROUPS;
97import static org.onosproject.store.OsgiPropertyConstants.ALLOW_EXTRANEOUS_GROUPS_DEFAULT;
98import static org.onosproject.store.OsgiPropertyConstants.GARBAGE_COLLECT;
99import static org.onosproject.store.OsgiPropertyConstants.GARBAGE_COLLECT_DEFAULT;
100import static org.onosproject.store.OsgiPropertyConstants.GARBAGE_COLLECT_THRESH;
101import static org.onosproject.store.OsgiPropertyConstants.GARBAGE_COLLECT_THRESH_DEFAULT;
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700102import static org.slf4j.LoggerFactory.getLogger;
alshabib10580802015-02-18 18:30:33 -0800103
104/**
Saurav Das0fd79d92016-03-07 10:58:36 -0800105 * Manages inventory of group entries using distributed group stores from the
106 * storage service.
alshabib10580802015-02-18 18:30:33 -0800107 */
Ray Milkeyb5646e62018-10-16 11:42:18 -0700108@Component(
109 immediate = true,
110 service = GroupStore.class,
111 property = {
Ray Milkey2d7bca12018-10-17 14:51:52 -0700112 GARBAGE_COLLECT + ":Boolean=" + GARBAGE_COLLECT_DEFAULT,
113 GARBAGE_COLLECT_THRESH + ":Integer=" + GARBAGE_COLLECT_THRESH_DEFAULT,
114 ALLOW_EXTRANEOUS_GROUPS + ":Boolean=" + ALLOW_EXTRANEOUS_GROUPS_DEFAULT
Ray Milkeyb5646e62018-10-16 11:42:18 -0700115 }
116)
alshabib10580802015-02-18 18:30:33 -0800117public class DistributedGroupStore
118 extends AbstractStore<GroupEvent, GroupStoreDelegate>
119 implements GroupStore {
120
121 private final Logger log = getLogger(getClass());
122
Saurav Das137f27f2018-06-11 17:02:31 -0700123 private static final int MAX_FAILED_ATTEMPTS = 3;
alshabibb0285992016-03-28 23:30:37 -0700124
alshabib10580802015-02-18 18:30:33 -0800125 private final int dummyId = 0xffffffff;
Yi Tsengfa394de2017-02-01 11:26:40 -0800126 private final GroupId dummyGroupId = new GroupId(dummyId);
alshabib10580802015-02-18 18:30:33 -0800127
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700128 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700129 protected ClusterCommunicationService clusterCommunicator;
130
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700131 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700132 protected ClusterService clusterService;
133
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700134 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700135 protected StorageService storageService;
136
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700137 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700138 protected MastershipService mastershipService;
139
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700140 @Reference(cardinality = ReferenceCardinality.MANDATORY)
alshabibb0285992016-03-28 23:30:37 -0700141 protected ComponentConfigService cfgService;
142
Andrea Campanella5daa7c462020-03-13 12:04:23 +0100143 @Reference(cardinality = ReferenceCardinality.MANDATORY)
144 protected DeviceService deviceService;
145
jaegonkim9477a9d2018-04-01 16:36:36 +0900146 // Guarantees enabling DriverService before enabling GroupStore
147 // (DriverService is used in serializing/de-serializing DefaultGroup)
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700148 @Reference(cardinality = ReferenceCardinality.MANDATORY)
jaegonkim9477a9d2018-04-01 16:36:36 +0900149 protected DriverService driverService;
150
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +0000151 private NodeId local;
152
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530153 private ScheduledExecutorService executor;
154 private Consumer<Status> statusChangeListener;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700155 // Per device group table with (device id + app cookie) as key
Madan Jampani0b847532016-03-03 13:44:15 -0800156 private ConsistentMap<GroupStoreKeyMapKey,
alshabibb0285992016-03-28 23:30:37 -0700157 StoredGroupEntry> groupStoreEntriesByKey = null;
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700158 // Per device group table with (device id + group id) as key
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700159 private final ConcurrentMap<DeviceId, ConcurrentMap<GroupId, StoredGroupEntry>>
alshabibb0285992016-03-28 23:30:37 -0700160 groupEntriesById = new ConcurrentHashMap<>();
Madan Jampani0b847532016-03-03 13:44:15 -0800161 private ConsistentMap<GroupStoreKeyMapKey,
alshabibb0285992016-03-28 23:30:37 -0700162 StoredGroupEntry> auditPendingReqQueue = null;
Frank Wange0eb5ce2016-07-01 18:21:25 +0800163 private MapEventListener<GroupStoreKeyMapKey, StoredGroupEntry>
164 mapListener = new GroupStoreKeyMapListener();
alshabib10580802015-02-18 18:30:33 -0800165 private final ConcurrentMap<DeviceId, ConcurrentMap<GroupId, Group>>
166 extraneousGroupEntriesById = new ConcurrentHashMap<>();
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700167 private ExecutorService messageHandlingExecutor;
168 private static final int MESSAGE_HANDLER_THREAD_POOL_SIZE = 1;
Saurav Das137f27f2018-06-11 17:02:31 -0700169
Sho SHIMIZU7a4087b2015-09-10 09:23:16 -0700170 private final HashMap<DeviceId, Boolean> deviceAuditStatus = new HashMap<>();
alshabib10580802015-02-18 18:30:33 -0800171
172 private final AtomicInteger groupIdGen = new AtomicInteger();
173
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700174 private KryoNamespace clusterMsgSerializer;
175
helenyrwua1c41152016-08-18 16:16:14 -0700176 private static Topic<GroupStoreMessage> groupTopic;
177
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700178 /** Enable group garbage collection. */
Ray Milkeyb5646e62018-10-16 11:42:18 -0700179 private boolean garbageCollect = GARBAGE_COLLECT_DEFAULT;
alshabibb0285992016-03-28 23:30:37 -0700180
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700181 /** Number of rounds for group garbage collection. */
Ray Milkeyb5646e62018-10-16 11:42:18 -0700182 private int gcThresh = GARBAGE_COLLECT_THRESH_DEFAULT;
alshabibb0285992016-03-28 23:30:37 -0700183
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700184 /** Allow groups in switches not installed by ONOS. */
Ray Milkeyb5646e62018-10-16 11:42:18 -0700185 private boolean allowExtraneousGroups = ALLOW_EXTRANEOUS_GROUPS_DEFAULT;
alshabibb0285992016-03-28 23:30:37 -0700186
alshabib10580802015-02-18 18:30:33 -0800187 @Activate
sisubram4beea652017-08-09 10:38:14 +0000188 public void activate(ComponentContext context) {
alshabibb0285992016-03-28 23:30:37 -0700189 cfgService.registerProperties(getClass());
sisubram4beea652017-08-09 10:38:14 +0000190 modified(context);
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700191 KryoNamespace.Builder kryoBuilder = new KryoNamespace.Builder()
alshabibb0285992016-03-28 23:30:37 -0700192 .register(KryoNamespaces.API)
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700193 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
pierventre1a833d42021-01-15 17:27:48 +0100194 .register(GroupStoreMessage.class,
alshabibb0285992016-03-28 23:30:37 -0700195 GroupStoreMessage.Type.class,
196 UpdateType.class,
197 GroupStoreMessageSubjects.class,
198 MultiValuedTimestamp.class,
199 GroupStoreKeyMapKey.class,
200 GroupStoreIdMapKey.class,
201 GroupStoreMapKey.class
202 );
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700203
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700204 clusterMsgSerializer = kryoBuilder.build("GroupStore");
205 Serializer serializer = Serializer.using(clusterMsgSerializer);
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700206
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700207 messageHandlingExecutor = Executors.
208 newFixedThreadPool(MESSAGE_HANDLER_THREAD_POOL_SIZE,
209 groupedThreads("onos/store/group",
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700210 "message-handlers",
211 log));
Madan Jampani01e05fb2015-08-13 13:29:36 -0700212
213 clusterCommunicator.addSubscriber(GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
alshabibb0285992016-03-28 23:30:37 -0700214 clusterMsgSerializer::deserialize,
215 this::process,
216 messageHandlingExecutor);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700217
Madan Jampani0b847532016-03-03 13:44:15 -0800218 log.debug("Creating Consistent map onos-group-store-keymap");
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700219
Madan Jampani0b847532016-03-03 13:44:15 -0800220 groupStoreEntriesByKey = storageService.<GroupStoreKeyMapKey, StoredGroupEntry>consistentMapBuilder()
221 .withName("onos-group-store-keymap")
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700222 .withSerializer(serializer)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700223 .build();
Frank Wange0eb5ce2016-07-01 18:21:25 +0800224 groupStoreEntriesByKey.addListener(mapListener);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700225 log.debug("Current size of groupstorekeymap:{}",
226 groupStoreEntriesByKey.size());
Thiago Santosfb73c502016-08-18 18:15:13 -0300227 synchronizeGroupStoreEntries();
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700228
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530229 log.debug("Creating GroupStoreId Map From GroupStoreKey Map");
230 matchGroupEntries();
231 executor = newSingleThreadScheduledExecutor(groupedThreads("onos/group", "store", log));
232 statusChangeListener = status -> {
233 if (status == Status.ACTIVE) {
234 executor.execute(this::matchGroupEntries);
235 }
236 };
237 groupStoreEntriesByKey.addStatusChangeListener(statusChangeListener);
238
Madan Jampani0b847532016-03-03 13:44:15 -0800239 log.debug("Creating Consistent map pendinggroupkeymap");
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700240
Madan Jampani0b847532016-03-03 13:44:15 -0800241 auditPendingReqQueue = storageService.<GroupStoreKeyMapKey, StoredGroupEntry>consistentMapBuilder()
242 .withName("onos-pending-group-keymap")
HIGUCHI Yuta3a84b322016-05-18 13:38:07 -0700243 .withSerializer(serializer)
Jonathan Hart6ec029a2015-03-24 17:12:35 -0700244 .build();
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700245 log.debug("Current size of pendinggroupkeymap:{}",
246 auditPendingReqQueue.size());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700247
helenyrwua1c41152016-08-18 16:16:14 -0700248 groupTopic = getOrCreateGroupTopic(serializer);
249 groupTopic.subscribe(this::processGroupMessage);
250
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +0000251 local = clusterService.getLocalNode().id();
252
alshabib10580802015-02-18 18:30:33 -0800253 log.info("Started");
254 }
255
256 @Deactivate
257 public void deactivate() {
Frank Wange0eb5ce2016-07-01 18:21:25 +0800258 groupStoreEntriesByKey.removeListener(mapListener);
alshabibb0285992016-03-28 23:30:37 -0700259 cfgService.unregisterProperties(getClass(), false);
HIGUCHI Yuta180d70f2015-10-01 16:13:56 -0700260 clusterCommunicator.removeSubscriber(GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST);
alshabib10580802015-02-18 18:30:33 -0800261 log.info("Stopped");
262 }
263
alshabibb0285992016-03-28 23:30:37 -0700264 @Modified
265 public void modified(ComponentContext context) {
266 Dictionary<?, ?> properties = context != null ? context.getProperties() : new Properties();
267
268 try {
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700269 String s = get(properties, GARBAGE_COLLECT);
Ray Milkeyb5646e62018-10-16 11:42:18 -0700270 garbageCollect = isNullOrEmpty(s) ? GARBAGE_COLLECT_DEFAULT : Boolean.parseBoolean(s.trim());
alshabibb0285992016-03-28 23:30:37 -0700271
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700272 s = get(properties, GARBAGE_COLLECT_THRESH);
Ray Milkeyb5646e62018-10-16 11:42:18 -0700273 gcThresh = isNullOrEmpty(s) ? GARBAGE_COLLECT_THRESH_DEFAULT : Integer.parseInt(s.trim());
Kavitha Alagesanc56cded2017-01-13 10:48:18 +0530274
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700275 s = get(properties, ALLOW_EXTRANEOUS_GROUPS);
Ray Milkeyb5646e62018-10-16 11:42:18 -0700276 allowExtraneousGroups = isNullOrEmpty(s) ? ALLOW_EXTRANEOUS_GROUPS_DEFAULT : Boolean.parseBoolean(s.trim());
alshabibb0285992016-03-28 23:30:37 -0700277 } catch (Exception e) {
Ray Milkeyb5646e62018-10-16 11:42:18 -0700278 gcThresh = GARBAGE_COLLECT_THRESH_DEFAULT;
279 garbageCollect = GARBAGE_COLLECT_DEFAULT;
280 allowExtraneousGroups = ALLOW_EXTRANEOUS_GROUPS_DEFAULT;
alshabibb0285992016-03-28 23:30:37 -0700281 }
282 }
283
helenyrwua1c41152016-08-18 16:16:14 -0700284 private Topic<GroupStoreMessage> getOrCreateGroupTopic(Serializer serializer) {
285 if (groupTopic == null) {
286 return storageService.getTopic("group-failover-notif", serializer);
287 } else {
288 return groupTopic;
289 }
Sho SHIMIZUa6285542017-01-12 15:08:24 -0800290 }
helenyrwua1c41152016-08-18 16:16:14 -0700291
alshabib10580802015-02-18 18:30:33 -0800292 /**
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530293 * Updating values of groupEntriesById.
294 */
295 private void matchGroupEntries() {
296 for (Entry<GroupStoreKeyMapKey, StoredGroupEntry> entry : groupStoreEntriesByKey.asJavaMap().entrySet()) {
297 StoredGroupEntry group = entry.getValue();
298 getGroupIdTable(entry.getKey().deviceId()).put(group.id(), group);
299 }
300 }
301
Thiago Santosfb73c502016-08-18 18:15:13 -0300302
303 private void synchronizeGroupStoreEntries() {
304 Map<GroupStoreKeyMapKey, StoredGroupEntry> groupEntryMap = groupStoreEntriesByKey.asJavaMap();
305 for (Entry<GroupStoreKeyMapKey, StoredGroupEntry> entry : groupEntryMap.entrySet()) {
Thiago Santosfb73c502016-08-18 18:15:13 -0300306 StoredGroupEntry value = entry.getValue();
Thiago Santosfb73c502016-08-18 18:15:13 -0300307 ConcurrentMap<GroupId, StoredGroupEntry> groupIdTable = getGroupIdTable(value.deviceId());
308 groupIdTable.put(value.id(), value);
309 }
310 }
311
Kavitha Alagesanc884c3ef2017-01-19 12:32:26 +0530312 /**
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700313 * Returns the group store eventual consistent key map.
alshabib10580802015-02-18 18:30:33 -0800314 *
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700315 * @return Map representing group key table.
alshabib10580802015-02-18 18:30:33 -0800316 */
Madan Jampani0b847532016-03-03 13:44:15 -0800317 private Map<GroupStoreKeyMapKey, StoredGroupEntry>
alshabibb0285992016-03-28 23:30:37 -0700318 getGroupStoreKeyMap() {
Madan Jampani0b847532016-03-03 13:44:15 -0800319 return groupStoreEntriesByKey.asJavaMap();
alshabib10580802015-02-18 18:30:33 -0800320 }
321
322 /**
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700323 * Returns the group id table for specified device.
alshabib10580802015-02-18 18:30:33 -0800324 *
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700325 * @param deviceId identifier of the device
326 * @return Map representing group key table of given device.
alshabib10580802015-02-18 18:30:33 -0800327 */
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700328 private ConcurrentMap<GroupId, StoredGroupEntry> getGroupIdTable(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700329 return groupEntriesById.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
alshabib10580802015-02-18 18:30:33 -0800330 }
331
332 /**
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700333 * Returns the pending group request table.
alshabib10580802015-02-18 18:30:33 -0800334 *
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700335 * @return Map representing group key table.
alshabib10580802015-02-18 18:30:33 -0800336 */
Madan Jampani0b847532016-03-03 13:44:15 -0800337 private Map<GroupStoreKeyMapKey, StoredGroupEntry>
alshabibb0285992016-03-28 23:30:37 -0700338 getPendingGroupKeyTable() {
Madan Jampani0b847532016-03-03 13:44:15 -0800339 return auditPendingReqQueue.asJavaMap();
alshabib10580802015-02-18 18:30:33 -0800340 }
341
342 /**
343 * Returns the extraneous group id table for specified device.
344 *
345 * @param deviceId identifier of the device
346 * @return Map representing group key table of given device.
347 */
348 private ConcurrentMap<GroupId, Group>
349 getExtraneousGroupIdTable(DeviceId deviceId) {
Yuta HIGUCHIc2e68152016-08-16 13:47:36 -0700350 return extraneousGroupEntriesById.computeIfAbsent(deviceId, k -> new ConcurrentHashMap<>());
alshabib10580802015-02-18 18:30:33 -0800351 }
352
353 /**
354 * Returns the number of groups for the specified device in the store.
355 *
356 * @return number of groups for the specified device
357 */
358 @Override
359 public int getGroupCount(DeviceId deviceId) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700360 return (getGroups(deviceId) != null) ?
alshabibb0285992016-03-28 23:30:37 -0700361 Iterables.size(getGroups(deviceId)) : 0;
alshabib10580802015-02-18 18:30:33 -0800362 }
363
364 /**
365 * Returns the groups associated with a device.
366 *
367 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800368 * @return the group entries
369 */
370 @Override
371 public Iterable<Group> getGroups(DeviceId deviceId) {
Charles Chanf4838a72015-12-07 18:13:45 -0800372 // Let ImmutableSet.copyOf do the type conversion
373 return ImmutableSet.copyOf(getStoredGroups(deviceId));
alshabib10580802015-02-18 18:30:33 -0800374 }
375
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700376 private Iterable<StoredGroupEntry> getStoredGroups(DeviceId deviceId) {
Charles Chanf4838a72015-12-07 18:13:45 -0800377 NodeId master = mastershipService.getMasterFor(deviceId);
Andrea Campanella5daa7c462020-03-13 12:04:23 +0100378 if (master == null && deviceService.isAvailable(deviceId)) {
Charles Chanf4838a72015-12-07 18:13:45 -0800379 log.debug("Failed to getGroups: No master for {}", deviceId);
380 return Collections.emptySet();
381 }
382
383 Set<StoredGroupEntry> storedGroups = getGroupStoreKeyMap().values()
384 .stream()
385 .filter(input -> input.deviceId().equals(deviceId))
386 .collect(Collectors.toSet());
387 return ImmutableSet.copyOf(storedGroups);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700388 }
389
alshabib10580802015-02-18 18:30:33 -0800390 /**
391 * Returns the stored group entry.
392 *
alshabibb0285992016-03-28 23:30:37 -0700393 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800394 * @param appCookie the group key
alshabib10580802015-02-18 18:30:33 -0800395 * @return a group associated with the key
396 */
397 @Override
398 public Group getGroup(DeviceId deviceId, GroupKey appCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700399 return getStoredGroupEntry(deviceId, appCookie);
400 }
401
402 private StoredGroupEntry getStoredGroupEntry(DeviceId deviceId,
403 GroupKey appCookie) {
404 return getGroupStoreKeyMap().get(new GroupStoreKeyMapKey(deviceId,
405 appCookie));
406 }
407
408 @Override
409 public Group getGroup(DeviceId deviceId, GroupId groupId) {
410 return getStoredGroupEntry(deviceId, groupId);
411 }
412
413 private StoredGroupEntry getStoredGroupEntry(DeviceId deviceId,
414 GroupId groupId) {
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700415 return getGroupIdTable(deviceId).get(groupId);
alshabib10580802015-02-18 18:30:33 -0800416 }
417
418 private int getFreeGroupIdValue(DeviceId deviceId) {
419 int freeId = groupIdGen.incrementAndGet();
420
421 while (true) {
Yi Tsengfa394de2017-02-01 11:26:40 -0800422 Group existing = getGroup(deviceId, new GroupId(freeId));
alshabib10580802015-02-18 18:30:33 -0800423 if (existing == null) {
424 existing = (
425 extraneousGroupEntriesById.get(deviceId) != null) ?
426 extraneousGroupEntriesById.get(deviceId).
Yi Tsengfa394de2017-02-01 11:26:40 -0800427 get(new GroupId(freeId)) :
alshabib10580802015-02-18 18:30:33 -0800428 null;
429 }
430 if (existing != null) {
431 freeId = groupIdGen.incrementAndGet();
432 } else {
433 break;
434 }
435 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700436 log.debug("getFreeGroupIdValue: Next Free ID is {}", freeId);
alshabib10580802015-02-18 18:30:33 -0800437 return freeId;
438 }
439
440 /**
441 * Stores a new group entry using the information from group description.
442 *
443 * @param groupDesc group description to be used to create group entry
444 */
445 @Override
446 public void storeGroupDescription(GroupDescription groupDesc) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700447 log.debug("In storeGroupDescription");
alshabib10580802015-02-18 18:30:33 -0800448 // Check if a group is existing with the same key
Saurav Das8a0732e2015-11-20 15:27:53 -0800449 Group existingGroup = getGroup(groupDesc.deviceId(), groupDesc.appCookie());
450 if (existingGroup != null) {
Saurav Dasc568c342018-01-25 09:49:01 -0800451 log.debug("Group already exists with the same key {} in dev:{} with id:0x{}",
Saurav Das8a0732e2015-11-20 15:27:53 -0800452 groupDesc.appCookie(), groupDesc.deviceId(),
453 Integer.toHexString(existingGroup.id().id()));
alshabib10580802015-02-18 18:30:33 -0800454 return;
455 }
456
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700457 // Check if group to be created by a remote instance
Madan Jampani175e8fd2015-05-20 14:10:45 -0700458 if (mastershipService.getLocalRole(groupDesc.deviceId()) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700459 log.debug("storeGroupDescription: Device {} local role is not MASTER",
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700460 groupDesc.deviceId());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700461 if (mastershipService.getMasterFor(groupDesc.deviceId()) == null) {
Sivachidambaram Subramanian9f816de2017-06-13 07:16:54 +0530462 log.debug("No Master for device {}..."
463 + "Queuing Group ADD request",
alshabibb0285992016-03-28 23:30:37 -0700464 groupDesc.deviceId());
Sivachidambaram Subramanian9f816de2017-06-13 07:16:54 +0530465 addToPendingAudit(groupDesc);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700466 return;
467 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700468 GroupStoreMessage groupOp = GroupStoreMessage.
469 createGroupAddRequestMsg(groupDesc.deviceId(),
470 groupDesc);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700471
Madan Jampani175e8fd2015-05-20 14:10:45 -0700472 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700473 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
474 clusterMsgSerializer::serialize,
475 mastershipService.getMasterFor(groupDesc.deviceId()))
476 .whenComplete((result, error) -> {
Madan Jampani175e8fd2015-05-20 14:10:45 -0700477 if (error != null) {
478 log.warn("Failed to send request to master: {} to {}",
alshabibb0285992016-03-28 23:30:37 -0700479 groupOp,
480 mastershipService.getMasterFor(groupDesc.deviceId()));
Madan Jampani175e8fd2015-05-20 14:10:45 -0700481 //TODO: Send Group operation failure event
482 } else {
483 log.debug("Sent Group operation request for device {} "
alshabibb0285992016-03-28 23:30:37 -0700484 + "to remote MASTER {}",
485 groupDesc.deviceId(),
486 mastershipService.getMasterFor(groupDesc.deviceId()));
Madan Jampani175e8fd2015-05-20 14:10:45 -0700487 }
488 });
alshabib10580802015-02-18 18:30:33 -0800489 return;
490 }
491
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700492 log.debug("Store group for device {} is getting handled locally",
493 groupDesc.deviceId());
alshabib10580802015-02-18 18:30:33 -0800494 storeGroupDescriptionInternal(groupDesc);
495 }
496
Sivachidambaram Subramanian9f816de2017-06-13 07:16:54 +0530497 private void addToPendingAudit(GroupDescription groupDesc) {
498 Integer groupIdVal = groupDesc.givenGroupId();
499 GroupId groupId = (groupIdVal != null) ? new GroupId(groupIdVal) : dummyGroupId;
500 addToPendingKeyTable(new DefaultGroup(groupId, groupDesc));
501 }
502
503 private void addToPendingKeyTable(StoredGroupEntry group) {
504 group.setState(GroupState.WAITING_AUDIT_COMPLETE);
505 Map<GroupStoreKeyMapKey, StoredGroupEntry> pendingKeyTable =
506 getPendingGroupKeyTable();
507 pendingKeyTable.put(new GroupStoreKeyMapKey(group.deviceId(),
508 group.appCookie()),
509 group);
510 }
511
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700512 private Group getMatchingExtraneousGroupbyId(DeviceId deviceId, Integer groupId) {
513 ConcurrentMap<GroupId, Group> extraneousMap =
514 extraneousGroupEntriesById.get(deviceId);
515 if (extraneousMap == null) {
516 return null;
517 }
Yi Tsengfa394de2017-02-01 11:26:40 -0800518 return extraneousMap.get(new GroupId(groupId));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700519 }
520
521 private Group getMatchingExtraneousGroupbyBuckets(DeviceId deviceId,
522 GroupBuckets buckets) {
523 ConcurrentMap<GroupId, Group> extraneousMap =
524 extraneousGroupEntriesById.get(deviceId);
525 if (extraneousMap == null) {
526 return null;
527 }
528
alshabibb0285992016-03-28 23:30:37 -0700529 for (Group extraneousGroup : extraneousMap.values()) {
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700530 if (extraneousGroup.buckets().equals(buckets)) {
531 return extraneousGroup;
532 }
533 }
534 return null;
535 }
536
alshabib10580802015-02-18 18:30:33 -0800537 private void storeGroupDescriptionInternal(GroupDescription groupDesc) {
538 // Check if a group is existing with the same key
539 if (getGroup(groupDesc.deviceId(), groupDesc.appCookie()) != null) {
540 return;
541 }
542
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700543 if (deviceAuditStatus.get(groupDesc.deviceId()) == null) {
544 // Device group audit has not completed yet
545 // Add this group description to pending group key table
546 // Create a group entry object with Dummy Group ID
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700547 log.debug("storeGroupDescriptionInternal: Device {} AUDIT pending...Queuing Group ADD request",
alshabibb0285992016-03-28 23:30:37 -0700548 groupDesc.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700549 StoredGroupEntry group = new DefaultGroup(dummyGroupId, groupDesc);
550 group.setState(GroupState.WAITING_AUDIT_COMPLETE);
Madan Jampani0b847532016-03-03 13:44:15 -0800551 Map<GroupStoreKeyMapKey, StoredGroupEntry> pendingKeyTable =
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700552 getPendingGroupKeyTable();
553 pendingKeyTable.put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
554 groupDesc.appCookie()),
555 group);
556 return;
557 }
558
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700559 Group matchingExtraneousGroup = null;
560 if (groupDesc.givenGroupId() != null) {
561 //Check if there is a extraneous group existing with the same Id
562 matchingExtraneousGroup = getMatchingExtraneousGroupbyId(
alshabibb0285992016-03-28 23:30:37 -0700563 groupDesc.deviceId(), groupDesc.givenGroupId());
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700564 if (matchingExtraneousGroup != null) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800565 log.debug("storeGroupDescriptionInternal: Matching extraneous group "
alshabibb0285992016-03-28 23:30:37 -0700566 + "found in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700567 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800568 Integer.toHexString(groupDesc.givenGroupId()));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700569 //Check if the group buckets matches with user provided buckets
570 if (matchingExtraneousGroup.buckets().equals(groupDesc.buckets())) {
571 //Group is already existing with the same buckets and Id
572 // Create a group entry object
Saurav Das0fd79d92016-03-07 10:58:36 -0800573 log.debug("storeGroupDescriptionInternal: Buckets also matching "
alshabibb0285992016-03-28 23:30:37 -0700574 + "in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700575 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800576 Integer.toHexString(groupDesc.givenGroupId()));
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700577 StoredGroupEntry group = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700578 matchingExtraneousGroup.id(), groupDesc);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700579 // Insert the newly created group entry into key and id maps
580 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700581 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
582 groupDesc.appCookie()), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700583 // Ensure it also inserted into group id based table to
584 // avoid any chances of duplication in group id generation
585 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700586 put(matchingExtraneousGroup.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700587 addOrUpdateGroupEntry(matchingExtraneousGroup);
588 removeExtraneousGroupEntry(matchingExtraneousGroup);
589 return;
590 } else {
591 //Group buckets are not matching. Update group
592 //with user provided buckets.
Saurav Das0fd79d92016-03-07 10:58:36 -0800593 log.debug("storeGroupDescriptionInternal: Buckets are not "
alshabibb0285992016-03-28 23:30:37 -0700594 + "matching in Device {} for group id 0x{}",
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700595 groupDesc.deviceId(),
Saurav Das0fd79d92016-03-07 10:58:36 -0800596 Integer.toHexString(groupDesc.givenGroupId()));
597 StoredGroupEntry modifiedGroup = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700598 matchingExtraneousGroup.id(), groupDesc);
Saurav Das0fd79d92016-03-07 10:58:36 -0800599 modifiedGroup.setState(GroupState.PENDING_UPDATE);
600 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700601 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
602 groupDesc.appCookie()), modifiedGroup);
Saurav Das0fd79d92016-03-07 10:58:36 -0800603 // Ensure it also inserted into group id based table to
604 // avoid any chances of duplication in group id generation
605 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700606 put(matchingExtraneousGroup.id(), modifiedGroup);
Saurav Das0fd79d92016-03-07 10:58:36 -0800607 removeExtraneousGroupEntry(matchingExtraneousGroup);
608 log.debug("storeGroupDescriptionInternal: Triggering Group "
alshabibb0285992016-03-28 23:30:37 -0700609 + "UPDATE request for {} in device {}",
Saurav Das0fd79d92016-03-07 10:58:36 -0800610 matchingExtraneousGroup.id(),
611 groupDesc.deviceId());
612 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_REQUESTED, modifiedGroup));
613 return;
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700614 }
615 }
616 } else {
617 //Check if there is an extraneous group with user provided buckets
618 matchingExtraneousGroup = getMatchingExtraneousGroupbyBuckets(
alshabibb0285992016-03-28 23:30:37 -0700619 groupDesc.deviceId(), groupDesc.buckets());
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700620 if (matchingExtraneousGroup != null) {
621 //Group is already existing with the same buckets.
622 //So reuse this group.
623 log.debug("storeGroupDescriptionInternal: Matching extraneous group found in Device {}",
624 groupDesc.deviceId());
625 //Create a group entry object
626 StoredGroupEntry group = new DefaultGroup(
alshabibb0285992016-03-28 23:30:37 -0700627 matchingExtraneousGroup.id(), groupDesc);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700628 // Insert the newly created group entry into key and id maps
629 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700630 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
631 groupDesc.appCookie()), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700632 // Ensure it also inserted into group id based table to
633 // avoid any chances of duplication in group id generation
634 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700635 put(matchingExtraneousGroup.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -0700636 addOrUpdateGroupEntry(matchingExtraneousGroup);
637 removeExtraneousGroupEntry(matchingExtraneousGroup);
638 return;
639 } else {
640 //TODO: Check if there are any empty groups that can be used here
641 log.debug("storeGroupDescriptionInternal: No matching extraneous groups found in Device {}",
642 groupDesc.deviceId());
643 }
644 }
645
Saurav Das100e3b82015-04-30 11:12:10 -0700646 GroupId id = null;
647 if (groupDesc.givenGroupId() == null) {
648 // Get a new group identifier
Yi Tsengfa394de2017-02-01 11:26:40 -0800649 id = new GroupId(getFreeGroupIdValue(groupDesc.deviceId()));
Saurav Das100e3b82015-04-30 11:12:10 -0700650 } else {
Saurav Das8be4e3a2016-03-11 17:19:07 -0800651 // we need to use the identifier passed in by caller, but check if
652 // already used
653 Group existing = getGroup(groupDesc.deviceId(),
Yi Tsengfa394de2017-02-01 11:26:40 -0800654 new GroupId(groupDesc.givenGroupId()));
Saurav Das8be4e3a2016-03-11 17:19:07 -0800655 if (existing != null) {
656 log.warn("Group already exists with the same id: 0x{} in dev:{} "
alshabibb0285992016-03-28 23:30:37 -0700657 + "but with different key: {} (request gkey: {})",
658 Integer.toHexString(groupDesc.givenGroupId()),
659 groupDesc.deviceId(),
660 existing.appCookie(),
661 groupDesc.appCookie());
Saurav Das8be4e3a2016-03-11 17:19:07 -0800662 return;
663 }
Yi Tsengfa394de2017-02-01 11:26:40 -0800664 id = new GroupId(groupDesc.givenGroupId());
Saurav Das100e3b82015-04-30 11:12:10 -0700665 }
alshabib10580802015-02-18 18:30:33 -0800666 // Create a group entry object
667 StoredGroupEntry group = new DefaultGroup(id, groupDesc);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700668 // Insert the newly created group entry into key and id maps
669 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700670 put(new GroupStoreKeyMapKey(groupDesc.deviceId(),
671 groupDesc.appCookie()), group);
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700672 // Ensure it also inserted into group id based table to
673 // avoid any chances of duplication in group id generation
674 getGroupIdTable(groupDesc.deviceId()).
alshabibb0285992016-03-28 23:30:37 -0700675 put(id, group);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700676 log.debug("storeGroupDescriptionInternal: Processing Group ADD request for Id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -0700677 id,
678 groupDesc.deviceId());
alshabib10580802015-02-18 18:30:33 -0800679 notifyDelegate(new GroupEvent(GroupEvent.Type.GROUP_ADD_REQUESTED,
680 group));
681 }
682
683 /**
684 * Updates the existing group entry with the information
685 * from group description.
686 *
alshabibb0285992016-03-28 23:30:37 -0700687 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800688 * @param oldAppCookie the current group key
alshabibb0285992016-03-28 23:30:37 -0700689 * @param type update type
690 * @param newBuckets group buckets for updates
alshabib10580802015-02-18 18:30:33 -0800691 * @param newAppCookie optional new group key
692 */
693 @Override
694 public void updateGroupDescription(DeviceId deviceId,
695 GroupKey oldAppCookie,
696 UpdateType type,
697 GroupBuckets newBuckets,
698 GroupKey newAppCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700699 // Check if group update to be done by a remote instance
sangho52abe3a2015-05-05 14:13:34 -0700700 if (mastershipService.getMasterFor(deviceId) != null &&
701 mastershipService.getLocalRole(deviceId) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700702 log.debug("updateGroupDescription: Device {} local role is not MASTER",
703 deviceId);
704 if (mastershipService.getMasterFor(deviceId) == null) {
705 log.error("No Master for device {}..."
alshabibb0285992016-03-28 23:30:37 -0700706 + "Can not perform update group operation",
707 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700708 //TODO: Send Group operation failure event
709 return;
710 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700711 GroupStoreMessage groupOp = GroupStoreMessage.
712 createGroupUpdateRequestMsg(deviceId,
713 oldAppCookie,
714 type,
715 newBuckets,
716 newAppCookie);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700717
Madan Jampani175e8fd2015-05-20 14:10:45 -0700718 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700719 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
720 clusterMsgSerializer::serialize,
721 mastershipService.getMasterFor(deviceId)).whenComplete((result, error) -> {
722 if (error != null) {
723 log.warn("Failed to send request to master: {} to {}",
724 groupOp,
725 mastershipService.getMasterFor(deviceId), error);
726 }
727 //TODO: Send Group operation failure event
728 });
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700729 return;
730 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700731 log.debug("updateGroupDescription for device {} is getting handled locally",
732 deviceId);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700733 updateGroupDescriptionInternal(deviceId,
734 oldAppCookie,
735 type,
736 newBuckets,
737 newAppCookie);
738 }
739
740 private void updateGroupDescriptionInternal(DeviceId deviceId,
alshabibb0285992016-03-28 23:30:37 -0700741 GroupKey oldAppCookie,
742 UpdateType type,
743 GroupBuckets newBuckets,
744 GroupKey newAppCookie) {
alshabib10580802015-02-18 18:30:33 -0800745 // Check if a group is existing with the provided key
746 Group oldGroup = getGroup(deviceId, oldAppCookie);
747 if (oldGroup == null) {
Saurav Das8be4e3a2016-03-11 17:19:07 -0800748 log.warn("updateGroupDescriptionInternal: Group not found...strange. "
alshabibb0285992016-03-28 23:30:37 -0700749 + "GroupKey:{} DeviceId:{}", oldAppCookie, deviceId);
alshabib10580802015-02-18 18:30:33 -0800750 return;
751 }
752
753 List<GroupBucket> newBucketList = getUpdatedBucketList(oldGroup,
754 type,
755 newBuckets);
756 if (newBucketList != null) {
757 // Create a new group object from the old group
758 GroupBuckets updatedBuckets = new GroupBuckets(newBucketList);
759 GroupKey newCookie = (newAppCookie != null) ? newAppCookie : oldAppCookie;
760 GroupDescription updatedGroupDesc = new DefaultGroupDescription(
761 oldGroup.deviceId(),
762 oldGroup.type(),
763 updatedBuckets,
764 newCookie,
Saurav Das100e3b82015-04-30 11:12:10 -0700765 oldGroup.givenGroupId(),
alshabib10580802015-02-18 18:30:33 -0800766 oldGroup.appId());
767 StoredGroupEntry newGroup = new DefaultGroup(oldGroup.id(),
768 updatedGroupDesc);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700769 log.debug("updateGroupDescriptionInternal: group entry {} in device {} moving from {} to PENDING_UPDATE",
alshabibb0285992016-03-28 23:30:37 -0700770 oldGroup.id(),
771 oldGroup.deviceId(),
772 oldGroup.state());
alshabib10580802015-02-18 18:30:33 -0800773 newGroup.setState(GroupState.PENDING_UPDATE);
774 newGroup.setLife(oldGroup.life());
775 newGroup.setPackets(oldGroup.packets());
776 newGroup.setBytes(oldGroup.bytes());
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700777 //Update the group entry in groupkey based map.
778 //Update to groupid based map will happen in the
779 //groupkey based map update listener
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700780 log.debug("updateGroupDescriptionInternal with type {}: Group updated with buckets",
781 type);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700782 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700783 put(new GroupStoreKeyMapKey(newGroup.deviceId(),
784 newGroup.appCookie()), newGroup);
alshabib10580802015-02-18 18:30:33 -0800785 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_REQUESTED, newGroup));
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700786 } else {
787 log.warn("updateGroupDescriptionInternal with type {}: No "
alshabibb0285992016-03-28 23:30:37 -0700788 + "change in the buckets in update", type);
alshabib10580802015-02-18 18:30:33 -0800789 }
790 }
791
792 private List<GroupBucket> getUpdatedBucketList(Group oldGroup,
793 UpdateType type,
794 GroupBuckets buckets) {
Victor Silva0282ab82016-11-15 16:30:27 -0300795 if (type == UpdateType.SET) {
796 return buckets.buckets();
797 }
798
Victor Silvadf1eeae2016-08-12 15:28:57 -0300799 List<GroupBucket> oldBuckets = oldGroup.buckets().buckets();
800 List<GroupBucket> updatedBucketList = new ArrayList<>();
alshabib10580802015-02-18 18:30:33 -0800801 boolean groupDescUpdated = false;
802
803 if (type == UpdateType.ADD) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300804 List<GroupBucket> newBuckets = buckets.buckets();
805
806 // Add old buckets that will not be updated and check if any will be updated.
807 for (GroupBucket oldBucket : oldBuckets) {
808 int newBucketIndex = newBuckets.indexOf(oldBucket);
809
810 if (newBucketIndex != -1) {
811 GroupBucket newBucket = newBuckets.get(newBucketIndex);
812 if (!newBucket.hasSameParameters(oldBucket)) {
813 // Bucket will be updated
814 groupDescUpdated = true;
815 }
816 } else {
817 // Old bucket will remain the same - add it.
818 updatedBucketList.add(oldBucket);
alshabib10580802015-02-18 18:30:33 -0800819 }
820 }
Victor Silvadf1eeae2016-08-12 15:28:57 -0300821
822 // Add all new buckets
823 updatedBucketList.addAll(newBuckets);
824 if (!oldBuckets.containsAll(newBuckets)) {
825 groupDescUpdated = true;
826 }
827
alshabib10580802015-02-18 18:30:33 -0800828 } else if (type == UpdateType.REMOVE) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300829 List<GroupBucket> bucketsToRemove = buckets.buckets();
830
831 // Check which old buckets should remain
832 for (GroupBucket oldBucket : oldBuckets) {
833 if (!bucketsToRemove.contains(oldBucket)) {
834 updatedBucketList.add(oldBucket);
835 } else {
alshabib10580802015-02-18 18:30:33 -0800836 groupDescUpdated = true;
837 }
838 }
839 }
840
841 if (groupDescUpdated) {
Victor Silvadf1eeae2016-08-12 15:28:57 -0300842 return updatedBucketList;
alshabib10580802015-02-18 18:30:33 -0800843 } else {
844 return null;
845 }
846 }
847
848 /**
849 * Triggers deleting the existing group entry.
850 *
alshabibb0285992016-03-28 23:30:37 -0700851 * @param deviceId the device ID
alshabib10580802015-02-18 18:30:33 -0800852 * @param appCookie the group key
853 */
854 @Override
855 public void deleteGroupDescription(DeviceId deviceId,
856 GroupKey appCookie) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700857 // Check if group to be deleted by a remote instance
858 if (mastershipService.
859 getLocalRole(deviceId) != MastershipRole.MASTER) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700860 log.debug("deleteGroupDescription: Device {} local role is not MASTER",
861 deviceId);
862 if (mastershipService.getMasterFor(deviceId) == null) {
863 log.error("No Master for device {}..."
alshabibb0285992016-03-28 23:30:37 -0700864 + "Can not perform delete group operation",
865 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700866 //TODO: Send Group operation failure event
867 return;
868 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700869 GroupStoreMessage groupOp = GroupStoreMessage.
870 createGroupDeleteRequestMsg(deviceId,
871 appCookie);
Madan Jampani2bfa94c2015-04-11 05:03:49 -0700872
Madan Jampani175e8fd2015-05-20 14:10:45 -0700873 clusterCommunicator.unicast(groupOp,
alshabibb0285992016-03-28 23:30:37 -0700874 GroupStoreMessageSubjects.REMOTE_GROUP_OP_REQUEST,
875 clusterMsgSerializer::serialize,
876 mastershipService.getMasterFor(deviceId)).whenComplete((result, error) -> {
877 if (error != null) {
878 log.warn("Failed to send request to master: {} to {}",
879 groupOp,
880 mastershipService.getMasterFor(deviceId), error);
881 }
882 //TODO: Send Group operation failure event
883 });
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700884 return;
885 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700886 log.debug("deleteGroupDescription in device {} is getting handled locally",
887 deviceId);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700888 deleteGroupDescriptionInternal(deviceId, appCookie);
889 }
890
891 private void deleteGroupDescriptionInternal(DeviceId deviceId,
892 GroupKey appCookie) {
alshabib10580802015-02-18 18:30:33 -0800893 // Check if a group is existing with the provided key
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700894 StoredGroupEntry existing = getStoredGroupEntry(deviceId, appCookie);
alshabib10580802015-02-18 18:30:33 -0800895 if (existing == null) {
896 return;
897 }
898
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700899 log.debug("deleteGroupDescriptionInternal: group entry {} in device {} moving from {} to PENDING_DELETE",
alshabibb0285992016-03-28 23:30:37 -0700900 existing.id(),
901 existing.deviceId(),
902 existing.state());
pier1e80f362020-04-03 12:44:21 +0200903 // TODO is this really safe ?
alshabib10580802015-02-18 18:30:33 -0800904 synchronized (existing) {
905 existing.setState(GroupState.PENDING_DELETE);
Saurav Das80980c72016-03-23 11:22:49 -0700906 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700907 put(new GroupStoreKeyMapKey(existing.deviceId(), existing.appCookie()),
908 existing);
alshabib10580802015-02-18 18:30:33 -0800909 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700910 log.debug("deleteGroupDescriptionInternal: in device {} issuing GROUP_REMOVE_REQUESTED",
911 deviceId);
alshabib10580802015-02-18 18:30:33 -0800912 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_REQUESTED, existing));
913 }
914
915 /**
pier1e80f362020-04-03 12:44:21 +0200916 * Updates the stats of an existing group entry.
917 *
918 * @param group the new stats
919 * @param existing the existing group
920 */
921 private void updateGroupEntryStatsInternal(Group group, StoredGroupEntry existing) {
922 for (GroupBucket bucket : group.buckets().buckets()) {
923 Optional<GroupBucket> matchingBucket =
924 existing.buckets().buckets()
925 .stream()
926 .filter((existingBucket) -> (existingBucket.equals(bucket)))
927 .findFirst();
928 if (matchingBucket.isPresent()) {
929 ((StoredGroupBucketEntry) matchingBucket.
930 get()).setPackets(bucket.packets());
931 ((StoredGroupBucketEntry) matchingBucket.
932 get()).setBytes(bucket.bytes());
933 } else {
934 log.warn("updateGroupEntryStatsInternal: No matching bucket {}" +
935 " to update stats", bucket);
936 }
937 }
938 existing.setLife(group.life());
939 existing.setPackets(group.packets());
940 existing.setBytes(group.bytes());
941 existing.setReferenceCount(group.referenceCount());
942 existing.setFailedRetryCount(0);
943 }
944
945 /**
alshabib10580802015-02-18 18:30:33 -0800946 * Stores a new group entry, or updates an existing entry.
947 *
948 * @param group group entry
949 */
950 @Override
951 public void addOrUpdateGroupEntry(Group group) {
952 // check if this new entry is an update to an existing entry
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700953 StoredGroupEntry existing = getStoredGroupEntry(group.deviceId(),
954 group.id());
alshabib10580802015-02-18 18:30:33 -0800955 GroupEvent event = null;
956
957 if (existing != null) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800958 log.trace("addOrUpdateGroupEntry: updating group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -0700959 group.id(),
960 group.deviceId());
pier1e80f362020-04-03 12:44:21 +0200961 // TODO is this really safe ?
alshabib10580802015-02-18 18:30:33 -0800962 synchronized (existing) {
pier1e80f362020-04-03 12:44:21 +0200963 // Update stats
964 updateGroupEntryStatsInternal(group, existing);
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700965 if ((existing.state() == GroupState.PENDING_ADD) ||
alshabibb0285992016-03-28 23:30:37 -0700966 (existing.state() == GroupState.PENDING_ADD_RETRY)) {
Saurav Das0fd79d92016-03-07 10:58:36 -0800967 log.trace("addOrUpdateGroupEntry: group entry {} in device {} moving from {} to ADDED",
alshabibb0285992016-03-28 23:30:37 -0700968 existing.id(),
969 existing.deviceId(),
970 existing.state());
alshabib10580802015-02-18 18:30:33 -0800971 existing.setState(GroupState.ADDED);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700972 existing.setIsGroupStateAddedFirstTime(true);
alshabib10580802015-02-18 18:30:33 -0800973 event = new GroupEvent(Type.GROUP_ADDED, existing);
974 } else {
Saurav Das0fd79d92016-03-07 10:58:36 -0800975 log.trace("addOrUpdateGroupEntry: group entry {} in device {} moving from {} to ADDED",
alshabibb0285992016-03-28 23:30:37 -0700976 existing.id(),
977 existing.deviceId(),
978 GroupState.PENDING_UPDATE);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700979 existing.setState(GroupState.ADDED);
980 existing.setIsGroupStateAddedFirstTime(false);
alshabib10580802015-02-18 18:30:33 -0800981 event = new GroupEvent(Type.GROUP_UPDATED, existing);
982 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700983 //Re-PUT map entries to trigger map update events
984 getGroupStoreKeyMap().
alshabibb0285992016-03-28 23:30:37 -0700985 put(new GroupStoreKeyMapKey(existing.deviceId(),
986 existing.appCookie()), existing);
alshabib10580802015-02-18 18:30:33 -0800987 }
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -0700988 } else {
pier1e80f362020-04-03 12:44:21 +0200989 log.warn("addOrUpdateGroupEntry: Group update {} " +
990 "happening for a non-existing entry in the map", group);
alshabib10580802015-02-18 18:30:33 -0800991 }
992
pier1e80f362020-04-03 12:44:21 +0200993 // TODO if map is going to trigger event, is this one needed?
alshabib10580802015-02-18 18:30:33 -0800994 if (event != null) {
995 notifyDelegate(event);
996 }
997 }
998
999 /**
pier1e80f362020-04-03 12:44:21 +02001000 * Updates stats of an existing entry.
1001 *
1002 * @param group group entry
1003 */
1004 private void updateGroupEntryStats(Group group) {
1005 // check if this new entry is an update to an existing entry
1006 StoredGroupEntry existing = getStoredGroupEntry(group.deviceId(),
1007 group.id());
1008 if (existing != null) {
1009 log.trace("updateStatsGroupEntry: updating group entry {} in device {}",
1010 group.id(),
1011 group.deviceId());
1012 // TODO is this really safe ?
1013 synchronized (existing) {
1014 // We don't make further update - it will be gone after the next update
1015 if (existing.state() == GroupState.PENDING_DELETE) {
1016 log.trace("updateStatsGroupEntry: group entry {} in device {} is in {} not updated",
1017 existing.id(),
1018 existing.deviceId(),
1019 existing.state());
1020 return;
1021 }
1022 // Update stats
1023 updateGroupEntryStatsInternal(group, existing);
1024 if ((existing.state() == GroupState.PENDING_ADD) ||
1025 (existing.state() == GroupState.PENDING_ADD_RETRY)) {
1026 log.trace("updateStatsGroupEntry: group entry {} in device {} moving from {} to ADDED",
1027 existing.id(),
1028 existing.deviceId(),
1029 existing.state());
1030 existing.setState(GroupState.ADDED);
1031 existing.setIsGroupStateAddedFirstTime(true);
1032 } else {
1033 log.trace("updateStatsGroupEntry: group entry {} in device {} moving from {} to ADDED",
1034 existing.id(),
1035 existing.deviceId(),
1036 GroupState.PENDING_UPDATE);
1037 existing.setState(GroupState.ADDED);
1038 existing.setIsGroupStateAddedFirstTime(false);
1039 }
1040 //Re-PUT map entries to trigger map update events
1041 getGroupStoreKeyMap().
1042 put(new GroupStoreKeyMapKey(existing.deviceId(),
1043 existing.appCookie()), existing);
1044 }
1045 } else {
1046 log.warn("updateStatsGroupEntry: Group update {} "
1047 + "happening for a non-existing entry in the map", group);
1048 }
1049 }
1050
1051 /**
alshabib10580802015-02-18 18:30:33 -08001052 * Removes the group entry from store.
1053 *
1054 * @param group group entry
1055 */
1056 @Override
1057 public void removeGroupEntry(Group group) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001058 StoredGroupEntry existing = getStoredGroupEntry(group.deviceId(),
1059 group.id());
alshabib10580802015-02-18 18:30:33 -08001060
1061 if (existing != null) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001062 log.debug("removeGroupEntry: removing group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001063 group.id(),
1064 group.deviceId());
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001065 //Removal from groupid based map will happen in the
1066 //map update listener
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001067 getGroupStoreKeyMap().remove(new GroupStoreKeyMapKey(existing.deviceId(),
1068 existing.appCookie()));
alshabib10580802015-02-18 18:30:33 -08001069 notifyDelegate(new GroupEvent(Type.GROUP_REMOVED, existing));
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001070 } else {
1071 log.warn("removeGroupEntry for {} in device{} is "
alshabibb0285992016-03-28 23:30:37 -07001072 + "not existing in our maps",
1073 group.id(),
1074 group.deviceId());
alshabib10580802015-02-18 18:30:33 -08001075 }
1076 }
1077
Victor Silva4e8b7832016-08-17 17:11:19 -03001078 private void purgeGroupEntries(Set<Entry<GroupStoreKeyMapKey, StoredGroupEntry>> entries) {
1079 entries.forEach(entry -> {
1080 groupStoreEntriesByKey.remove(entry.getKey());
1081 });
1082 }
1083
alshabib10580802015-02-18 18:30:33 -08001084 @Override
Charles Chan0c7c43b2016-01-14 17:39:20 -08001085 public void purgeGroupEntry(DeviceId deviceId) {
Victor Silva4e8b7832016-08-17 17:11:19 -03001086 Set<Entry<GroupStoreKeyMapKey, StoredGroupEntry>> entriesPendingRemove =
Charles Chan0c7c43b2016-01-14 17:39:20 -08001087 new HashSet<>();
1088
Madan Jampani0b847532016-03-03 13:44:15 -08001089 getGroupStoreKeyMap().entrySet().stream()
Charles Chan0c7c43b2016-01-14 17:39:20 -08001090 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Victor Silva4e8b7832016-08-17 17:11:19 -03001091 .forEach(entriesPendingRemove::add);
Charles Chan0c7c43b2016-01-14 17:39:20 -08001092
Victor Silva4e8b7832016-08-17 17:11:19 -03001093 purgeGroupEntries(entriesPendingRemove);
1094 }
1095
1096 @Override
Daniele Moro43ac2892021-07-15 17:02:59 +02001097 public void purgeGroupEntries(DeviceId deviceId, ApplicationId appId) {
1098 Set<Entry<GroupStoreKeyMapKey, StoredGroupEntry>> entriesPendingRemove =
1099 new HashSet<>();
1100
1101 getGroupStoreKeyMap().entrySet().stream()
1102 .filter(entry -> entry.getKey().deviceId().equals(deviceId) && entry.getValue().appId().equals(appId))
1103 .forEach(entriesPendingRemove::add);
1104
1105 purgeGroupEntries(entriesPendingRemove);
1106 }
1107
1108 @Override
Victor Silva4e8b7832016-08-17 17:11:19 -03001109 public void purgeGroupEntries() {
1110 purgeGroupEntries(getGroupStoreKeyMap().entrySet());
Charles Chan0c7c43b2016-01-14 17:39:20 -08001111 }
1112
1113 @Override
alshabib10580802015-02-18 18:30:33 -08001114 public void deviceInitialAuditCompleted(DeviceId deviceId,
1115 boolean completed) {
1116 synchronized (deviceAuditStatus) {
1117 if (completed) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001118 log.debug("AUDIT completed for device {}",
1119 deviceId);
alshabib10580802015-02-18 18:30:33 -08001120 deviceAuditStatus.put(deviceId, true);
1121 // Execute all pending group requests
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001122 List<StoredGroupEntry> pendingGroupRequests =
1123 getPendingGroupKeyTable().values()
alshabibb0285992016-03-28 23:30:37 -07001124 .stream()
1125 .filter(g -> g.deviceId().equals(deviceId))
1126 .collect(Collectors.toList());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001127 log.debug("processing pending group add requests for device {} and number of pending requests {}",
alshabibb0285992016-03-28 23:30:37 -07001128 deviceId,
1129 pendingGroupRequests.size());
1130 for (Group group : pendingGroupRequests) {
alshabib10580802015-02-18 18:30:33 -08001131 GroupDescription tmp = new DefaultGroupDescription(
1132 group.deviceId(),
1133 group.type(),
1134 group.buckets(),
1135 group.appCookie(),
Saurav Das100e3b82015-04-30 11:12:10 -07001136 group.givenGroupId(),
alshabib10580802015-02-18 18:30:33 -08001137 group.appId());
1138 storeGroupDescriptionInternal(tmp);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001139 getPendingGroupKeyTable().
alshabibb0285992016-03-28 23:30:37 -07001140 remove(new GroupStoreKeyMapKey(deviceId, group.appCookie()));
alshabib10580802015-02-18 18:30:33 -08001141 }
alshabib10580802015-02-18 18:30:33 -08001142 } else {
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001143 Boolean audited = deviceAuditStatus.get(deviceId);
1144 if (audited != null && audited) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001145 log.debug("Clearing AUDIT status for device {}", deviceId);
alshabib10580802015-02-18 18:30:33 -08001146 deviceAuditStatus.put(deviceId, false);
1147 }
1148 }
1149 }
1150 }
1151
1152 @Override
1153 public boolean deviceInitialAuditStatus(DeviceId deviceId) {
1154 synchronized (deviceAuditStatus) {
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001155 Boolean audited = deviceAuditStatus.get(deviceId);
1156 return audited != null && audited;
alshabib10580802015-02-18 18:30:33 -08001157 }
1158 }
1159
1160 @Override
1161 public void groupOperationFailed(DeviceId deviceId, GroupOperation operation) {
1162
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001163 StoredGroupEntry existing = getStoredGroupEntry(deviceId,
1164 operation.groupId());
alshabib10580802015-02-18 18:30:33 -08001165
1166 if (existing == null) {
1167 log.warn("No group entry with ID {} found ", operation.groupId());
1168 return;
1169 }
1170
Saurav Das137f27f2018-06-11 17:02:31 -07001171 log.warn("groupOperationFailed: group operation {} failed in state {} "
alshabibb0285992016-03-28 23:30:37 -07001172 + "for group {} in device {} with code {}",
1173 operation.opType(),
Saurav Das137f27f2018-06-11 17:02:31 -07001174 existing.state(),
alshabibb0285992016-03-28 23:30:37 -07001175 existing.id(),
1176 existing.deviceId(),
1177 operation.failureCode());
Saurav Das0fd79d92016-03-07 10:58:36 -08001178 if (operation.failureCode() == GroupOperation.GroupMsgErrorCode.GROUP_EXISTS) {
Saurav Das8be4e3a2016-03-11 17:19:07 -08001179 if (operation.buckets().equals(existing.buckets())) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001180 if (existing.state() == GroupState.PENDING_ADD ||
1181 existing.state() == GroupState.PENDING_ADD_RETRY) {
Saurav Das8be4e3a2016-03-11 17:19:07 -08001182 log.info("GROUP_EXISTS: GroupID and Buckets match for group in pending "
alshabibb0285992016-03-28 23:30:37 -07001183 + "add state - moving to ADDED for group {} in device {}",
1184 existing.id(), deviceId);
Saurav Das8be4e3a2016-03-11 17:19:07 -08001185 addOrUpdateGroupEntry(existing);
1186 return;
1187 } else {
Saurav Dasc88d4662017-05-15 15:34:25 -07001188 log.warn("GROUP_EXISTS: GroupId and Buckets match but existing"
1189 + "group in state: {}", existing.state());
Saurav Das8be4e3a2016-03-11 17:19:07 -08001190 }
Saurav Dasc88d4662017-05-15 15:34:25 -07001191 } else {
1192 log.warn("GROUP EXISTS: Group ID matched but buckets did not. "
1193 + "Operation: {} Existing: {}", operation.buckets(),
1194 existing.buckets());
Saurav Das8be4e3a2016-03-11 17:19:07 -08001195 }
Saurav Das0fd79d92016-03-07 10:58:36 -08001196 }
Saurav Das137f27f2018-06-11 17:02:31 -07001197 if (operation.failureCode() == GroupOperation.GroupMsgErrorCode.INVALID_GROUP) {
1198 existing.incrFailedRetryCount();
1199 if (existing.failedRetryCount() < MAX_FAILED_ATTEMPTS) {
1200 log.warn("Group {} programming failed {} of {} times in dev {}, "
1201 + "retrying ..", existing.id(),
1202 existing.failedRetryCount(), MAX_FAILED_ATTEMPTS,
1203 deviceId);
1204 return;
1205 }
1206 log.warn("Group {} programming failed {} of {} times in dev {}, "
1207 + "removing group from store", existing.id(),
1208 existing.failedRetryCount(), MAX_FAILED_ATTEMPTS,
1209 deviceId);
1210 // fall through to case
1211 }
1212
alshabib10580802015-02-18 18:30:33 -08001213 switch (operation.opType()) {
1214 case ADD:
Saurav Das137f27f2018-06-11 17:02:31 -07001215 if (existing.state() == GroupState.PENDING_ADD
1216 || existing.state() == GroupState.PENDING_ADD_RETRY) {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001217 notifyDelegate(new GroupEvent(Type.GROUP_ADD_FAILED, existing));
1218 log.warn("groupOperationFailed: cleaningup "
alshabibb0285992016-03-28 23:30:37 -07001219 + "group {} from store in device {}....",
1220 existing.id(),
1221 existing.deviceId());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001222 //Removal from groupid based map will happen in the
1223 //map update listener
1224 getGroupStoreKeyMap().remove(new GroupStoreKeyMapKey(existing.deviceId(),
1225 existing.appCookie()));
1226 }
alshabib10580802015-02-18 18:30:33 -08001227 break;
1228 case MODIFY:
1229 notifyDelegate(new GroupEvent(Type.GROUP_UPDATE_FAILED, existing));
1230 break;
1231 case DELETE:
1232 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_FAILED, existing));
1233 break;
1234 default:
1235 log.warn("Unknown group operation type {}", operation.opType());
1236 }
alshabib10580802015-02-18 18:30:33 -08001237 }
1238
1239 @Override
1240 public void addOrUpdateExtraneousGroupEntry(Group group) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001241 log.debug("add/update extraneous group entry {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001242 group.id(),
1243 group.deviceId());
alshabib10580802015-02-18 18:30:33 -08001244 ConcurrentMap<GroupId, Group> extraneousIdTable =
1245 getExtraneousGroupIdTable(group.deviceId());
1246 extraneousIdTable.put(group.id(), group);
Srikanth Vavilapallie48b3cf2015-07-06 11:43:07 -07001247 // Don't remove the extraneous groups, instead re-use it when
1248 // a group request comes with the same set of buckets
alshabib10580802015-02-18 18:30:33 -08001249 }
1250
1251 @Override
1252 public void removeExtraneousGroupEntry(Group group) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001253 log.debug("remove extraneous group entry {} of device {} from store",
alshabibb0285992016-03-28 23:30:37 -07001254 group.id(),
1255 group.deviceId());
alshabib10580802015-02-18 18:30:33 -08001256 ConcurrentMap<GroupId, Group> extraneousIdTable =
1257 getExtraneousGroupIdTable(group.deviceId());
1258 extraneousIdTable.remove(group.id());
1259 }
1260
1261 @Override
1262 public Iterable<Group> getExtraneousGroups(DeviceId deviceId) {
1263 // flatten and make iterator unmodifiable
1264 return FluentIterable.from(
1265 getExtraneousGroupIdTable(deviceId).values());
1266 }
1267
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001268 /**
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001269 * Map handler to receive any events when the group key map is updated.
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001270 */
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001271 private class GroupStoreKeyMapListener implements
Madan Jampani0b847532016-03-03 13:44:15 -08001272 MapEventListener<GroupStoreKeyMapKey, StoredGroupEntry> {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001273
1274 @Override
Madan Jampani0b847532016-03-03 13:44:15 -08001275 public void event(MapEvent<GroupStoreKeyMapKey, StoredGroupEntry> mapEvent) {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001276 GroupEvent groupEvent = null;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001277 GroupStoreKeyMapKey key = mapEvent.key();
Madan Jampani0b847532016-03-03 13:44:15 -08001278 StoredGroupEntry group = Versioned.valueOrNull(mapEvent.newValue());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001279 if ((key == null) && (group == null)) {
1280 log.error("GroupStoreKeyMapListener: Received "
alshabibb0285992016-03-28 23:30:37 -07001281 + "event {} with null entry", mapEvent.type());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001282 return;
1283 } else if (group == null) {
1284 group = getGroupIdTable(key.deviceId()).values()
1285 .stream()
1286 .filter((storedGroup) -> (storedGroup.appCookie().equals(key.appCookie)))
Yuta HIGUCHI6e5f4702016-11-21 11:42:11 -08001287 .findFirst().orElse(null);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001288 if (group == null) {
1289 log.error("GroupStoreKeyMapListener: Received "
alshabibb0285992016-03-28 23:30:37 -07001290 + "event {} with null entry... can not process", mapEvent.type());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001291 return;
1292 }
1293 }
1294 log.trace("received groupid map event {} for id {} in device {}",
1295 mapEvent.type(),
1296 group.id(),
jaegonkim68e080c2016-12-01 22:31:01 +09001297 (key != null ? key.deviceId() : null));
Madan Jampani0b847532016-03-03 13:44:15 -08001298 if (mapEvent.type() == MapEvent.Type.INSERT || mapEvent.type() == MapEvent.Type.UPDATE) {
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001299 // Update the group ID table
1300 getGroupIdTable(group.deviceId()).put(group.id(), group);
Madan Jampani0b847532016-03-03 13:44:15 -08001301 StoredGroupEntry value = Versioned.valueOrNull(mapEvent.newValue());
1302 if (value.state() == Group.GroupState.ADDED) {
1303 if (value.isGroupStateAddedFirstTime()) {
1304 groupEvent = new GroupEvent(Type.GROUP_ADDED, value);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001305 log.trace("Received first time GROUP_ADDED state update for id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001306 group.id(),
1307 group.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001308 } else {
Madan Jampani0b847532016-03-03 13:44:15 -08001309 groupEvent = new GroupEvent(Type.GROUP_UPDATED, value);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001310 log.trace("Received following GROUP_ADDED state update for id {} in device {}",
alshabibb0285992016-03-28 23:30:37 -07001311 group.id(),
1312 group.deviceId());
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001313 }
1314 }
Madan Jampani0b847532016-03-03 13:44:15 -08001315 } else if (mapEvent.type() == MapEvent.Type.REMOVE) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001316 groupEvent = new GroupEvent(Type.GROUP_REMOVED, group);
Srikanth Vavilapalli6a9d4e42015-03-30 19:41:56 -07001317 // Remove the entry from the group ID table
1318 getGroupIdTable(group.deviceId()).remove(group.id(), group);
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001319 }
1320
1321 if (groupEvent != null) {
1322 notifyDelegate(groupEvent);
1323 }
1324 }
1325 }
Madan Jampani01e05fb2015-08-13 13:29:36 -07001326
helenyrwua1c41152016-08-18 16:16:14 -07001327 private void processGroupMessage(GroupStoreMessage message) {
1328 if (message.type() == GroupStoreMessage.Type.FAILOVER) {
1329 // FIXME: groupStoreEntriesByKey inaccessible here
1330 getGroupIdTable(message.deviceId()).values()
1331 .stream()
1332 .filter((storedGroup) -> (storedGroup.appCookie().equals(message.appCookie())))
1333 .findFirst().ifPresent(group -> notifyDelegate(new GroupEvent(Type.GROUP_BUCKET_FAILOVER, group)));
1334 }
1335 }
1336
Madan Jampani01e05fb2015-08-13 13:29:36 -07001337 private void process(GroupStoreMessage groupOp) {
1338 log.debug("Received remote group operation {} request for device {}",
alshabibb0285992016-03-28 23:30:37 -07001339 groupOp.type(),
1340 groupOp.deviceId());
1341 if (!mastershipService.isLocalMaster(groupOp.deviceId())) {
1342 log.warn("This node is not MASTER for device {}", groupOp.deviceId());
1343 return;
1344 }
1345 if (groupOp.type() == GroupStoreMessage.Type.ADD) {
1346 storeGroupDescriptionInternal(groupOp.groupDesc());
1347 } else if (groupOp.type() == GroupStoreMessage.Type.UPDATE) {
1348 updateGroupDescriptionInternal(groupOp.deviceId(),
1349 groupOp.appCookie(),
1350 groupOp.updateType(),
1351 groupOp.updateBuckets(),
1352 groupOp.newAppCookie());
1353 } else if (groupOp.type() == GroupStoreMessage.Type.DELETE) {
1354 deleteGroupDescriptionInternal(groupOp.deviceId(),
1355 groupOp.appCookie());
1356 }
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001357 }
1358
1359 /**
1360 * Flattened map key to be used to store group entries.
1361 */
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001362 protected static class GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001363 private final DeviceId deviceId;
1364
1365 public GroupStoreMapKey(DeviceId deviceId) {
1366 this.deviceId = deviceId;
1367 }
1368
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001369 public DeviceId deviceId() {
1370 return deviceId;
1371 }
1372
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001373 @Override
1374 public boolean equals(Object o) {
1375 if (this == o) {
1376 return true;
1377 }
1378 if (!(o instanceof GroupStoreMapKey)) {
1379 return false;
1380 }
1381 GroupStoreMapKey that = (GroupStoreMapKey) o;
1382 return this.deviceId.equals(that.deviceId);
1383 }
1384
1385 @Override
1386 public int hashCode() {
1387 int result = 17;
1388
1389 result = 31 * result + Objects.hash(this.deviceId);
1390
1391 return result;
1392 }
1393 }
1394
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001395 protected static class GroupStoreKeyMapKey extends GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001396 private final GroupKey appCookie;
alshabibb0285992016-03-28 23:30:37 -07001397
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001398 public GroupStoreKeyMapKey(DeviceId deviceId,
1399 GroupKey appCookie) {
1400 super(deviceId);
1401 this.appCookie = appCookie;
1402 }
1403
1404 @Override
1405 public boolean equals(Object o) {
1406 if (this == o) {
1407 return true;
1408 }
1409 if (!(o instanceof GroupStoreKeyMapKey)) {
1410 return false;
1411 }
1412 GroupStoreKeyMapKey that = (GroupStoreKeyMapKey) o;
1413 return (super.equals(that) &&
1414 this.appCookie.equals(that.appCookie));
1415 }
1416
1417 @Override
1418 public int hashCode() {
1419 int result = 17;
1420
1421 result = 31 * result + super.hashCode() + Objects.hash(this.appCookie);
1422
1423 return result;
1424 }
1425 }
1426
Ray Milkeyb3c5ce22015-08-10 09:07:36 -07001427 protected static class GroupStoreIdMapKey extends GroupStoreMapKey {
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001428 private final GroupId groupId;
alshabibb0285992016-03-28 23:30:37 -07001429
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -07001430 public GroupStoreIdMapKey(DeviceId deviceId,
1431 GroupId groupId) {
1432 super(deviceId);
1433 this.groupId = groupId;
1434 }
1435
1436 @Override
1437 public boolean equals(Object o) {
1438 if (this == o) {
1439 return true;
1440 }
1441 if (!(o instanceof GroupStoreIdMapKey)) {
1442 return false;
1443 }
1444 GroupStoreIdMapKey that = (GroupStoreIdMapKey) o;
1445 return (super.equals(that) &&
1446 this.groupId.equals(that.groupId));
1447 }
1448
1449 @Override
1450 public int hashCode() {
1451 int result = 17;
1452
1453 result = 31 * result + super.hashCode() + Objects.hash(this.groupId);
1454
1455 return result;
1456 }
1457 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001458
1459 @Override
1460 public void pushGroupMetrics(DeviceId deviceId,
1461 Collection<Group> groupEntries) {
1462 boolean deviceInitialAuditStatus =
1463 deviceInitialAuditStatus(deviceId);
1464 Set<Group> southboundGroupEntries =
1465 Sets.newHashSet(groupEntries);
1466 Set<StoredGroupEntry> storedGroupEntries =
1467 Sets.newHashSet(getStoredGroups(deviceId));
1468 Set<Group> extraneousStoredEntries =
1469 Sets.newHashSet(getExtraneousGroups(deviceId));
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001470 NodeId master;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001471
Sho SHIMIZU695bac62016-08-15 12:41:59 -07001472 if (log.isTraceEnabled()) {
1473 log.trace("pushGroupMetrics: Displaying all ({}) southboundGroupEntries for device {}",
1474 southboundGroupEntries.size(),
1475 deviceId);
1476 for (Group group : southboundGroupEntries) {
1477 log.trace("Group {} in device {}", group, deviceId);
1478 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001479
Sho SHIMIZU695bac62016-08-15 12:41:59 -07001480 log.trace("Displaying all ({}) stored group entries for device {}",
1481 storedGroupEntries.size(),
1482 deviceId);
1483 for (StoredGroupEntry group : storedGroupEntries) {
1484 log.trace("Stored Group {} for device {}", group, deviceId);
1485 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001486 }
1487
alshabibb0285992016-03-28 23:30:37 -07001488 garbageCollect(deviceId, southboundGroupEntries, storedGroupEntries);
1489
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001490 // update stats
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001491 for (Iterator<Group> it2 = southboundGroupEntries.iterator(); it2.hasNext();) {
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001492 // Mastership change can occur during this iteration
1493 master = mastershipService.getMasterFor(deviceId);
1494 if (!Objects.equals(local, master)) {
1495 log.warn("Tried to update the group stats while the node was not the master");
1496 return;
1497 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001498 Group group = it2.next();
1499 if (storedGroupEntries.remove(group)) {
1500 // we both have the group, let's update some info then.
1501 log.trace("Group AUDIT: group {} exists in both planes for device {}",
alshabibb0285992016-03-28 23:30:37 -07001502 group.id(), deviceId);
1503
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001504 groupAdded(group);
1505 it2.remove();
1506 }
1507 }
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001508
1509 // extraneous groups in the dataplane
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001510 for (Group group : southboundGroupEntries) {
1511 if (getGroup(group.deviceId(), group.id()) != null) {
1512 // There is a group existing with the same id
1513 // It is possible that group update is
1514 // in progress while we got a stale info from switch
1515 if (!storedGroupEntries.remove(getGroup(
alshabibb0285992016-03-28 23:30:37 -07001516 group.deviceId(), group.id()))) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001517 log.warn("Group AUDIT: Inconsistent state:"
alshabibb0285992016-03-28 23:30:37 -07001518 + "Group exists in ID based table while "
1519 + "not present in key based table");
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001520 }
1521 } else {
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001522 // Mastership change can occur during this iteration
1523 master = mastershipService.getMasterFor(deviceId);
1524 if (!Objects.equals(local, master)) {
1525 log.warn("Tried to process extraneous groups while the node was not the master");
1526 return;
1527 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001528 // there are groups in the switch that aren't in the store
1529 log.debug("Group AUDIT: extraneous group {} exists in data plane for device {}",
alshabibb0285992016-03-28 23:30:37 -07001530 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001531 extraneousStoredEntries.remove(group);
Kavitha Alagesanc56cded2017-01-13 10:48:18 +05301532 if (allowExtraneousGroups) {
1533 extraneousGroup(group);
1534 } else {
1535 notifyDelegate(new GroupEvent(Type.GROUP_REMOVE_REQUESTED, group));
1536 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001537 }
1538 }
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001539
1540 // missing groups in the dataplane
Charles Chan07f15f22018-05-08 21:35:50 -07001541 for (StoredGroupEntry group : storedGroupEntries) {
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001542 // Mastership change can occur during this iteration
1543 master = mastershipService.getMasterFor(deviceId);
1544 if (!Objects.equals(local, master)) {
1545 log.warn("Tried to process missing groups while the node was not the master");
1546 return;
1547 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001548 // there are groups in the store that aren't in the switch
1549 log.debug("Group AUDIT: group {} missing in data plane for device {}",
alshabibb0285992016-03-28 23:30:37 -07001550 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001551 groupMissing(group);
1552 }
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001553
1554 // extraneous groups in the store
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001555 for (Group group : extraneousStoredEntries) {
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001556 // Mastership change can occur during this iteration
1557 master = mastershipService.getMasterFor(deviceId);
1558 if (!Objects.equals(local, master)) {
1559 log.warn("Tried to process node extraneous groups while the node was not the master");
1560 return;
1561 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001562 // there are groups in the extraneous store that
1563 // aren't in the switch
Saurav Das0fd79d92016-03-07 10:58:36 -08001564 log.debug("Group AUDIT: clearing extraneous group {} from store for device {}",
alshabibb0285992016-03-28 23:30:37 -07001565 group.id(), deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001566 removeExtraneousGroupEntry(group);
1567 }
1568
1569 if (!deviceInitialAuditStatus) {
Saurav Das0fd79d92016-03-07 10:58:36 -08001570 log.info("Group AUDIT: Setting device {} initial AUDIT completed",
alshabibb0285992016-03-28 23:30:37 -07001571 deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001572 deviceInitialAuditCompleted(deviceId, true);
1573 }
1574 }
1575
helenyrwu89470f12016-08-12 13:18:10 -07001576 @Override
1577 public void notifyOfFailovers(Collection<Group> failoverGroups) {
helenyrwu89470f12016-08-12 13:18:10 -07001578 failoverGroups.forEach(group -> {
1579 if (group.type() == Group.Type.FAILOVER) {
helenyrwua1c41152016-08-18 16:16:14 -07001580 groupTopic.publish(GroupStoreMessage.createGroupFailoverMsg(
1581 group.deviceId(), group));
helenyrwu89470f12016-08-12 13:18:10 -07001582 }
1583 });
helenyrwu89470f12016-08-12 13:18:10 -07001584 }
1585
alshabibb0285992016-03-28 23:30:37 -07001586 private void garbageCollect(DeviceId deviceId,
1587 Set<Group> southboundGroupEntries,
1588 Set<StoredGroupEntry> storedGroupEntries) {
1589 if (!garbageCollect) {
1590 return;
1591 }
1592
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001593 NodeId master;
alshabibb0285992016-03-28 23:30:37 -07001594 Iterator<StoredGroupEntry> it = storedGroupEntries.iterator();
1595 while (it.hasNext()) {
Pier Luigi Ventred8a923c2020-02-20 11:25:31 +00001596 // Mastership change can occur during this iteration
1597 master = mastershipService.getMasterFor(deviceId);
1598 if (!Objects.equals(local, master)) {
1599 log.warn("Tried to run garbage collector while the node was not the master");
1600 return;
1601 }
alshabibb0285992016-03-28 23:30:37 -07001602 StoredGroupEntry group = it.next();
1603 if (group.state() != GroupState.PENDING_DELETE && checkGroupRefCount(group)) {
1604 log.debug("Garbage collecting group {} on {}", group, deviceId);
1605 deleteGroupDescription(deviceId, group.appCookie());
1606 southboundGroupEntries.remove(group);
1607 it.remove();
1608 }
1609 }
1610 }
1611
1612 private boolean checkGroupRefCount(Group group) {
1613 return (group.referenceCount() == 0 && group.age() >= gcThresh);
1614 }
1615
Charles Chan07f15f22018-05-08 21:35:50 -07001616 private void groupMissing(StoredGroupEntry group) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001617 switch (group.state()) {
1618 case PENDING_DELETE:
1619 log.debug("Group {} delete confirmation from device {}",
1620 group, group.deviceId());
1621 removeGroupEntry(group);
1622 break;
1623 case ADDED:
1624 case PENDING_ADD:
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001625 case PENDING_ADD_RETRY:
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001626 case PENDING_UPDATE:
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001627 log.debug("groupMissing: group entry {} in device {} moving from {} to PENDING_ADD_RETRY",
Charles Chan07f15f22018-05-08 21:35:50 -07001628 group.id(),
1629 group.deviceId(),
1630 group.state());
1631 group.setState(Group.GroupState.PENDING_ADD_RETRY);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001632 //Re-PUT map entries to trigger map update events
Charles Chan07f15f22018-05-08 21:35:50 -07001633 getGroupStoreKeyMap().put(new GroupStoreKeyMapKey(group.deviceId(), group.appCookie()), group);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001634 notifyDelegate(new GroupEvent(GroupEvent.Type.GROUP_ADD_REQUESTED,
1635 group));
1636 break;
1637 default:
1638 log.debug("Group {} has not been installed.", group);
1639 break;
1640 }
1641 }
1642
1643 private void extraneousGroup(Group group) {
Saurav Das0fd79d92016-03-07 10:58:36 -08001644 log.trace("Group {} is on device {} but not in store.",
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001645 group, group.deviceId());
1646 addOrUpdateExtraneousGroupEntry(group);
1647 }
1648
1649 private void groupAdded(Group group) {
1650 log.trace("Group {} Added or Updated in device {}",
1651 group, group.deviceId());
pier1e80f362020-04-03 12:44:21 +02001652 updateGroupEntryStats(group);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -07001653 }
alshabib10580802015-02-18 18:30:33 -08001654}