blob: 70d35aac34e6d3086001ec6d824660630d949019 [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.provider.of.flow.impl;
alshabib1cc04f72014-09-16 16:09:58 -070017
Jonathan Hart2ffcd102015-01-16 16:47:50 -080018
Brian O'Connor72cb19a2015-01-16 16:14:41 -080019import com.google.common.cache.Cache;
20import com.google.common.cache.CacheBuilder;
21import com.google.common.cache.RemovalCause;
22import com.google.common.cache.RemovalNotification;
23import com.google.common.collect.Maps;
24import com.google.common.collect.Sets;
alshabib1cc04f72014-09-16 16:09:58 -070025import org.apache.felix.scr.annotations.Activate;
26import org.apache.felix.scr.annotations.Component;
27import org.apache.felix.scr.annotations.Deactivate;
28import org.apache.felix.scr.annotations.Reference;
29import org.apache.felix.scr.annotations.ReferenceCardinality;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.core.ApplicationId;
31import org.onosproject.net.DeviceId;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.net.flow.CompletedBatchOperation;
Brian O'Connorabafb502014-12-02 22:26:20 -080033import org.onosproject.net.flow.FlowEntry;
34import org.onosproject.net.flow.FlowRule;
35import org.onosproject.net.flow.FlowRuleBatchEntry;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080036import org.onosproject.net.flow.FlowRuleBatchOperation;
Brian O'Connorabafb502014-12-02 22:26:20 -080037import org.onosproject.net.flow.FlowRuleProvider;
38import org.onosproject.net.flow.FlowRuleProviderRegistry;
39import org.onosproject.net.flow.FlowRuleProviderService;
40import org.onosproject.net.provider.AbstractProvider;
41import org.onosproject.net.provider.ProviderId;
Brian O'Connorabafb502014-12-02 22:26:20 -080042import org.onosproject.openflow.controller.Dpid;
43import org.onosproject.openflow.controller.OpenFlowController;
44import org.onosproject.openflow.controller.OpenFlowEventListener;
45import org.onosproject.openflow.controller.OpenFlowSwitch;
46import org.onosproject.openflow.controller.OpenFlowSwitchListener;
47import org.onosproject.openflow.controller.RoleState;
alshabib19fdc122014-10-03 11:38:19 -070048import org.projectfloodlight.openflow.protocol.OFActionType;
alshabib902d41b2014-10-07 16:52:05 -070049import org.projectfloodlight.openflow.protocol.OFBarrierRequest;
50import org.projectfloodlight.openflow.protocol.OFErrorMsg;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080051import org.projectfloodlight.openflow.protocol.OFErrorType;
alshabib193525b2014-10-08 18:58:03 -070052import org.projectfloodlight.openflow.protocol.OFFlowMod;
alshabib8f1cf4a2014-09-17 14:44:48 -070053import org.projectfloodlight.openflow.protocol.OFFlowRemoved;
alshabib5c370ff2014-09-18 10:12:14 -070054import org.projectfloodlight.openflow.protocol.OFFlowStatsEntry;
55import org.projectfloodlight.openflow.protocol.OFFlowStatsReply;
alshabib19fdc122014-10-03 11:38:19 -070056import org.projectfloodlight.openflow.protocol.OFInstructionType;
alshabib8f1cf4a2014-09-17 14:44:48 -070057import org.projectfloodlight.openflow.protocol.OFMessage;
58import org.projectfloodlight.openflow.protocol.OFPortStatus;
alshabib5c370ff2014-09-18 10:12:14 -070059import org.projectfloodlight.openflow.protocol.OFStatsReply;
sangho89bf6fb2015-02-09 09:33:13 -080060import org.projectfloodlight.openflow.protocol.OFStatsType;
alshabib19fdc122014-10-03 11:38:19 -070061import org.projectfloodlight.openflow.protocol.OFVersion;
62import org.projectfloodlight.openflow.protocol.action.OFAction;
63import org.projectfloodlight.openflow.protocol.action.OFActionOutput;
alshabib193525b2014-10-08 18:58:03 -070064import org.projectfloodlight.openflow.protocol.errormsg.OFFlowModFailedErrorMsg;
alshabib19fdc122014-10-03 11:38:19 -070065import org.projectfloodlight.openflow.protocol.instruction.OFInstruction;
66import org.projectfloodlight.openflow.protocol.instruction.OFInstructionApplyActions;
67import org.projectfloodlight.openflow.types.OFPort;
alshabib1cc04f72014-09-16 16:09:58 -070068import org.slf4j.Logger;
69
Brian O'Connor72cb19a2015-01-16 16:14:41 -080070import java.util.Collections;
71import java.util.List;
72import java.util.Map;
73import java.util.Optional;
74import java.util.Set;
75import java.util.concurrent.TimeUnit;
76import java.util.stream.Collectors;
77
78import static org.slf4j.LoggerFactory.getLogger;
79
alshabibeec3a062014-09-17 18:01:26 -070080
alshabib1cc04f72014-09-16 16:09:58 -070081/**
82 * Provider which uses an OpenFlow controller to detect network
83 * end-station hosts.
84 */
85@Component(immediate = true)
86public class OpenFlowRuleProvider extends AbstractProvider implements FlowRuleProvider {
87
Jonathan Hart2ffcd102015-01-16 16:47:50 -080088 private static final int LOWEST_PRIORITY = 0;
89
alshabib1cc04f72014-09-16 16:09:58 -070090 private final Logger log = getLogger(getClass());
91
92 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
93 protected FlowRuleProviderRegistry providerRegistry;
94
95 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
96 protected OpenFlowController controller;
97
alshabib1cc04f72014-09-16 16:09:58 -070098
99 private FlowRuleProviderService providerService;
100
alshabibeec3a062014-09-17 18:01:26 -0700101 private final InternalFlowProvider listener = new InternalFlowProvider();
102
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800103 private Cache<Long, InternalCacheEntry> pendingBatches;
alshabib193525b2014-10-08 18:58:03 -0700104
alshabib3d643ec2014-10-22 18:33:00 -0700105 private final Map<Dpid, FlowStatsCollector> collectors = Maps.newHashMap();
106
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800107
alshabib1cc04f72014-09-16 16:09:58 -0700108 /**
109 * Creates an OpenFlow host provider.
110 */
111 public OpenFlowRuleProvider() {
Brian O'Connorabafb502014-12-02 22:26:20 -0800112 super(new ProviderId("of", "org.onosproject.provider.openflow"));
alshabib1cc04f72014-09-16 16:09:58 -0700113 }
114
115 @Activate
116 public void activate() {
117 providerService = providerRegistry.register(this);
alshabibeec3a062014-09-17 18:01:26 -0700118 controller.addListener(listener);
119 controller.addEventListener(listener);
alshabib3d643ec2014-10-22 18:33:00 -0700120
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800121 pendingBatches = CacheBuilder.newBuilder()
122 .expireAfterWrite(10, TimeUnit.SECONDS)
123 .removalListener((RemovalNotification<Long, InternalCacheEntry> notification) -> {
124 if (notification.getCause() == RemovalCause.EXPIRED) {
125 providerService.batchOperationCompleted(notification.getKey(),
126 notification.getValue().failedCompletion());
127 }
128 }).build();
129
130
alshabib3d643ec2014-10-22 18:33:00 -0700131 for (OpenFlowSwitch sw : controller.getSwitches()) {
132 FlowStatsCollector fsc = new FlowStatsCollector(sw, POLL_INTERVAL);
133 fsc.start();
134 collectors.put(new Dpid(sw.getId()), fsc);
135 }
136
137
alshabib1cc04f72014-09-16 16:09:58 -0700138 log.info("Started");
139 }
140
141 @Deactivate
142 public void deactivate() {
143 providerRegistry.unregister(this);
144 providerService = null;
145
146 log.info("Stopped");
147 }
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800148
alshabib1cc04f72014-09-16 16:09:58 -0700149 @Override
150 public void applyFlowRule(FlowRule... flowRules) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800151 for (FlowRule flowRule : flowRules) {
152 applyRule(flowRule);
alshabib35edb1a2014-09-16 17:44:44 -0700153 }
alshabib1cc04f72014-09-16 16:09:58 -0700154 }
155
alshabib35edb1a2014-09-16 17:44:44 -0700156 private void applyRule(FlowRule flowRule) {
157 OpenFlowSwitch sw = controller.getSwitch(Dpid.dpid(flowRule.deviceId().uri()));
sangho87af8112015-01-29 12:53:08 -0800158 if (flowRule.type() == FlowRule.Type.DEFAULT) {
159 sw.sendMsg(FlowModBuilder.builder(flowRule, sw.factory(),
160 Optional.empty()).buildFlowAdd());
161 } else {
162 sw.sendMsg(FlowModBuilder.builder(flowRule, sw.factory(),
163 Optional.empty()).buildFlowAdd(), getTableType(flowRule.type()));
164 }
alshabib35edb1a2014-09-16 17:44:44 -0700165 }
166
alshabib35edb1a2014-09-16 17:44:44 -0700167
alshabib1cc04f72014-09-16 16:09:58 -0700168 @Override
169 public void removeFlowRule(FlowRule... flowRules) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800170 for (FlowRule flowRule : flowRules) {
171 removeRule(flowRule);
alshabib219ebaa2014-09-22 15:41:24 -0700172 }
alshabib1cc04f72014-09-16 16:09:58 -0700173
174 }
175
alshabib219ebaa2014-09-22 15:41:24 -0700176 private void removeRule(FlowRule flowRule) {
177 OpenFlowSwitch sw = controller.getSwitch(Dpid.dpid(flowRule.deviceId().uri()));
sangho87af8112015-01-29 12:53:08 -0800178 if (flowRule.type() == FlowRule.Type.DEFAULT) {
179 sw.sendMsg(FlowModBuilder.builder(flowRule, sw.factory(),
180 Optional.empty()).buildFlowDel());
181 } else {
182 sw.sendMsg(FlowModBuilder.builder(flowRule, sw.factory(),
183 Optional.empty()).buildFlowDel(), getTableType(flowRule.type()));
184 }
alshabib219ebaa2014-09-22 15:41:24 -0700185 }
186
alshabiba68eb962014-09-24 20:34:13 -0700187 @Override
188 public void removeRulesById(ApplicationId id, FlowRule... flowRules) {
189 // TODO: optimize using the ApplicationId
190 removeFlowRule(flowRules);
191 }
192
alshabib193525b2014-10-08 18:58:03 -0700193 @Override
sangho87af8112015-01-29 12:53:08 -0800194
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800195 public void executeBatch(FlowRuleBatchOperation batch) {
196
197 pendingBatches.put(batch.id(), new InternalCacheEntry(batch));
198
199
200 OpenFlowSwitch sw = controller.getSwitch(Dpid.dpid(batch.deviceId().uri()));
201 OFFlowMod mod;
202
alshabib193525b2014-10-08 18:58:03 -0700203 for (FlowRuleBatchEntry fbe : batch.getOperations()) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800204
Brian O'Connor427a1762014-11-19 18:40:32 -0800205 FlowModBuilder builder =
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800206 FlowModBuilder.builder(fbe.target(), sw.factory(),
207 Optional.of(batch.id()));
Sho SHIMIZUaba9d002015-01-29 14:51:04 -0800208 switch (fbe.operator()) {
alshabib193525b2014-10-08 18:58:03 -0700209 case ADD:
210 mod = builder.buildFlowAdd();
211 break;
212 case REMOVE:
213 mod = builder.buildFlowDel();
214 break;
215 case MODIFY:
216 mod = builder.buildFlowMod();
217 break;
218 default:
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800219 log.error("Unsupported batch operation {}; skipping flowmod {}",
220 fbe.operator(), fbe);
221 continue;
222 }
223 sw.sendMsg(mod);
alshabib193525b2014-10-08 18:58:03 -0700224 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800225 OFBarrierRequest.Builder builder = sw.factory()
226 .buildBarrierRequest()
227 .setXid(batch.id());
228 sw.sendMsg(builder.build());
alshabib193525b2014-10-08 18:58:03 -0700229 }
230
sangho87af8112015-01-29 12:53:08 -0800231 private OpenFlowSwitch.TableType getTableType(FlowRule.Type type) {
232 switch (type) {
233 case IP:
234 return OpenFlowSwitch.TableType.IP;
235 case MPLS:
236 return OpenFlowSwitch.TableType.MPLS;
237 case ACL:
238 return OpenFlowSwitch.TableType.ACL;
239 default:
240 return OpenFlowSwitch.TableType.NONE;
241 }
242 }
alshabib193525b2014-10-08 18:58:03 -0700243
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800244
245
246
alshabib8f1cf4a2014-09-17 14:44:48 -0700247 private class InternalFlowProvider
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800248 implements OpenFlowSwitchListener, OpenFlowEventListener {
alshabib8f1cf4a2014-09-17 14:44:48 -0700249
alshabib8f1cf4a2014-09-17 14:44:48 -0700250 @Override
251 public void switchAdded(Dpid dpid) {
alshabibba5ac482014-10-02 17:15:20 -0700252 FlowStatsCollector fsc = new FlowStatsCollector(controller.getSwitch(dpid), POLL_INTERVAL);
alshabibeec3a062014-09-17 18:01:26 -0700253 fsc.start();
254 collectors.put(dpid, fsc);
alshabib8f1cf4a2014-09-17 14:44:48 -0700255 }
256
257 @Override
258 public void switchRemoved(Dpid dpid) {
alshabibdfc7afb2014-10-21 20:13:27 -0700259 FlowStatsCollector collector = collectors.remove(dpid);
260 if (collector != null) {
261 collector.stop();
262 }
alshabib8f1cf4a2014-09-17 14:44:48 -0700263 }
264
265 @Override
Ayaka Koshibe38594c22014-10-22 13:36:12 -0700266 public void switchChanged(Dpid dpid) {
267 }
268
269 @Override
alshabib8f1cf4a2014-09-17 14:44:48 -0700270 public void portChanged(Dpid dpid, OFPortStatus status) {
271 //TODO: Decide whether to evict flows internal store.
272 }
273
274 @Override
275 public void handleMessage(Dpid dpid, OFMessage msg) {
276 switch (msg.getType()) {
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800277 case FLOW_REMOVED:
278 OFFlowRemoved removed = (OFFlowRemoved) msg;
alshabib6b5cfec2014-09-18 17:42:18 -0700279
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800280 FlowEntry fr = new FlowEntryBuilder(dpid, removed).build();
281 providerService.flowRemoved(fr);
282 break;
283 case STATS_REPLY:
sangho89bf6fb2015-02-09 09:33:13 -0800284 if (((OFStatsReply) msg).getStatsType() != OFStatsType.FLOW) {
285 pushFlowMetrics(dpid, (OFFlowStatsReply) msg);
286 }
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800287 break;
288 case BARRIER_REPLY:
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800289 try {
290 InternalCacheEntry entry = pendingBatches.getIfPresent(msg.getXid());
291 if (entry != null) {
292 providerService.batchOperationCompleted(msg.getXid(), entry.completed());
293 } else {
294 log.warn("Received unknown Barrier Reply: {}", msg.getXid());
295 }
296 } finally {
297 pendingBatches.invalidate(msg.getXid());
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800298 }
299 break;
300 case ERROR:
Yuta HIGUCHI82e53262014-11-27 10:28:51 -0800301 log.warn("received Error message {} from {}", msg, dpid);
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800302
303 OFErrorMsg error = (OFErrorMsg) msg;
304 if (error.getErrType() == OFErrorType.FLOW_MOD_FAILED) {
305 OFFlowModFailedErrorMsg fmFailed = (OFFlowModFailedErrorMsg) error;
306 if (fmFailed.getData().getParsedMessage().isPresent()) {
307 OFMessage m = fmFailed.getData().getParsedMessage().get();
308 OFFlowMod fm = (OFFlowMod) m;
309 InternalCacheEntry entry = pendingBatches.getIfPresent(msg.getXid());
310 if (entry != null) {
311 entry.appendFailure(new FlowEntryBuilder(dpid, fm).build());
312 } else {
313 log.error("No matching batch for this error: {}", error);
314 }
315 } else {
316 //FIXME: Potentially add flowtracking to avoid this message.
317 log.error("Flow installation failed but switch didn't" +
318 " tell us which one.");
319 }
Yuta HIGUCHI82e53262014-11-27 10:28:51 -0800320 } else {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800321 log.warn("Received error {}", error);
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800322 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800323
324
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800325 default:
326 log.debug("Unhandled message type: {}", msg.getType());
alshabib8f1cf4a2014-09-17 14:44:48 -0700327 }
328
329 }
330
Ayaka Koshibeab91cc42014-09-25 10:20:52 -0700331 @Override
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700332 public void receivedRoleReply(Dpid dpid, RoleState requested,
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800333 RoleState response) {
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700334 // Do nothing here for now.
335 }
Ayaka Koshibeab91cc42014-09-25 10:20:52 -0700336
sangho89bf6fb2015-02-09 09:33:13 -0800337 private void pushFlowMetrics(Dpid dpid, OFFlowStatsReply replies) {
alshabib64def642014-12-02 23:27:37 -0800338
alshabib54ce5892014-09-23 17:50:51 -0700339 DeviceId did = DeviceId.deviceId(Dpid.uri(dpid));
alshabib54ce5892014-09-23 17:50:51 -0700340
alshabib64def642014-12-02 23:27:37 -0800341 List<FlowEntry> flowEntries = replies.getEntries().stream()
342 .filter(entry -> !tableMissRule(dpid, entry))
343 .map(entry -> new FlowEntryBuilder(dpid, entry).build())
344 .collect(Collectors.toList());
alshabib54ce5892014-09-23 17:50:51 -0700345
alshabib64def642014-12-02 23:27:37 -0800346 providerService.pushFlowMetrics(did, flowEntries);
347
alshabib5c370ff2014-09-18 10:12:14 -0700348 }
349
alshabib19fdc122014-10-03 11:38:19 -0700350 private boolean tableMissRule(Dpid dpid, OFFlowStatsEntry reply) {
Jonathan Hart2ffcd102015-01-16 16:47:50 -0800351 if (reply.getMatch().getMatchFields().iterator().hasNext()) {
alshabib19fdc122014-10-03 11:38:19 -0700352 return false;
353 }
Jonathan Hart2ffcd102015-01-16 16:47:50 -0800354 if (reply.getVersion().equals(OFVersion.OF_10)) {
355 return reply.getPriority() == LOWEST_PRIORITY
356 && reply.getActions().isEmpty();
357 }
alshabib19fdc122014-10-03 11:38:19 -0700358 for (OFInstruction ins : reply.getInstructions()) {
359 if (ins.getType() == OFInstructionType.APPLY_ACTIONS) {
360 OFInstructionApplyActions apply = (OFInstructionApplyActions) ins;
361 List<OFAction> acts = apply.getActions();
362 for (OFAction act : acts) {
363 if (act.getType() == OFActionType.OUTPUT) {
364 OFActionOutput out = (OFActionOutput) act;
365 if (out.getPort() == OFPort.CONTROLLER) {
366 return true;
367 }
368 }
369 }
370 }
371 }
372 return false;
373 }
Ayaka Koshibe38594c22014-10-22 13:36:12 -0700374
alshabib8f1cf4a2014-09-17 14:44:48 -0700375 }
alshabib1cc04f72014-09-16 16:09:58 -0700376
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800377 /**
378 * The internal cache entry holding the original request as well
379 * as accumulating the any failures along the way.
380 *
381 * If this entry is evicted from the cache then the entire operation
382 * is considered failed. Otherwise, only the failures reported by the device
383 * will be propagated up.
384 */
385 private class InternalCacheEntry {
alshabib902d41b2014-10-07 16:52:05 -0700386
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800387 private final FlowRuleBatchOperation operation;
388 private final Set<FlowRule> failures = Sets.newConcurrentHashSet();
alshabib193525b2014-10-08 18:58:03 -0700389
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800390 public InternalCacheEntry(FlowRuleBatchOperation operation) {
391 this.operation = operation;
alshabib902d41b2014-10-07 16:52:05 -0700392 }
393
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800394 /**
395 * Appends a failed rule to the set of failed items.
396 * @param rule the failed rule
397 */
398 public void appendFailure(FlowRule rule) {
399 failures.add(rule);
Thomas Vachuska9b2da212014-11-10 19:30:25 -0800400 }
401
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800402 /**
403 * Fails the entire batch and returns the failed operation.
404 * @return the failed operation
405 */
406 public CompletedBatchOperation failedCompletion() {
407 Set<FlowRule> fails = operation.getOperations().stream()
408 .map(op -> op.target()).collect(Collectors.toSet());
409 return new CompletedBatchOperation(false, Collections.unmodifiableSet(fails), operation.deviceId());
alshabib902d41b2014-10-07 16:52:05 -0700410 }
411
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800412 /**
413 * Returns the completed operation and whether the batch suceeded.
414 * @return the completed operation
415 */
416 public CompletedBatchOperation completed() {
417 return new CompletedBatchOperation(failures.isEmpty(),
418 Collections.unmodifiableSet(failures), operation.deviceId());
alshabib902d41b2014-10-07 16:52:05 -0700419 }
420
alshabib902d41b2014-10-07 16:52:05 -0700421 }
alshabiba68eb962014-09-24 20:34:13 -0700422
alshabib1cc04f72014-09-16 16:09:58 -0700423}