blob: ba3b5cf1e821bbd9bc233c37ca721eaca6b7d995 [file] [log] [blame]
alshabibf0e7e702015-05-30 18:22:36 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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 */
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080016package org.onosproject.olt.impl;
alshabibf0e7e702015-05-30 18:22:36 -070017
alshabibbf23a1f2016-01-14 17:27:11 -080018import com.google.common.collect.Maps;
19import com.google.common.collect.Sets;
alshabibf0e7e702015-05-30 18:22:36 -070020import org.apache.felix.scr.annotations.Activate;
21import org.apache.felix.scr.annotations.Component;
22import org.apache.felix.scr.annotations.Deactivate;
alshabibf0e7e702015-05-30 18:22:36 -070023import org.apache.felix.scr.annotations.Reference;
24import org.apache.felix.scr.annotations.ReferenceCardinality;
Jonathan Harte533a422015-10-20 17:31:24 -070025import org.apache.felix.scr.annotations.Service;
alshabibdec2e252016-01-15 12:20:25 -080026import org.onlab.packet.EthType;
alshabibf0e7e702015-05-30 18:22:36 -070027import org.onlab.packet.VlanId;
alshabibf0e7e702015-05-30 18:22:36 -070028import org.onosproject.core.ApplicationId;
29import org.onosproject.core.CoreService;
alshabib8e4fd2f2016-01-12 15:55:53 -080030import org.onosproject.event.AbstractListenerManager;
Jonathan Harte533a422015-10-20 17:31:24 -070031import org.onosproject.net.ConnectPoint;
alshabibf0e7e702015-05-30 18:22:36 -070032import org.onosproject.net.DeviceId;
alshabibdec2e252016-01-15 12:20:25 -080033import org.onosproject.net.Port;
alshabibf0e7e702015-05-30 18:22:36 -070034import org.onosproject.net.PortNumber;
Jonathan Harte533a422015-10-20 17:31:24 -070035import org.onosproject.net.config.ConfigFactory;
36import org.onosproject.net.config.NetworkConfigEvent;
37import org.onosproject.net.config.NetworkConfigListener;
38import org.onosproject.net.config.NetworkConfigRegistry;
39import org.onosproject.net.config.basics.SubjectFactories;
alshabibf0e7e702015-05-30 18:22:36 -070040import org.onosproject.net.device.DeviceEvent;
41import org.onosproject.net.device.DeviceListener;
42import org.onosproject.net.device.DeviceService;
43import org.onosproject.net.flow.DefaultTrafficSelector;
44import org.onosproject.net.flow.DefaultTrafficTreatment;
45import org.onosproject.net.flow.TrafficSelector;
46import org.onosproject.net.flow.TrafficTreatment;
alshabibdec2e252016-01-15 12:20:25 -080047import org.onosproject.net.flow.criteria.Criteria;
48import org.onosproject.net.flowobjective.DefaultFilteringObjective;
alshabibf0e7e702015-05-30 18:22:36 -070049import org.onosproject.net.flowobjective.DefaultForwardingObjective;
alshabibdec2e252016-01-15 12:20:25 -080050import org.onosproject.net.flowobjective.FilteringObjective;
alshabibf0e7e702015-05-30 18:22:36 -070051import org.onosproject.net.flowobjective.FlowObjectiveService;
52import org.onosproject.net.flowobjective.ForwardingObjective;
alshabib3ea82642016-01-12 18:06:53 -080053import org.onosproject.net.flowobjective.Objective;
54import org.onosproject.net.flowobjective.ObjectiveContext;
55import org.onosproject.net.flowobjective.ObjectiveError;
alshabib000b6fc2016-02-01 17:25:00 -080056import org.onosproject.olt.AccessDeviceConfig;
57import org.onosproject.olt.AccessDeviceData;
Srikanth Vavilapalli2e684912016-01-16 19:21:59 -080058import org.onosproject.olt.AccessDeviceEvent;
59import org.onosproject.olt.AccessDeviceListener;
60import org.onosproject.olt.AccessDeviceService;
alshabibf0e7e702015-05-30 18:22:36 -070061import org.slf4j.Logger;
62
Jonathan Harte533a422015-10-20 17:31:24 -070063import java.util.Map;
Jonathan Hart52998382015-11-10 16:09:22 -080064import java.util.Optional;
alshabibbf23a1f2016-01-14 17:27:11 -080065import java.util.Set;
alshabib3ea82642016-01-12 18:06:53 -080066import java.util.concurrent.CompletableFuture;
Jonathan Harte533a422015-10-20 17:31:24 -070067import java.util.concurrent.ConcurrentHashMap;
alshabib3ea82642016-01-12 18:06:53 -080068import java.util.concurrent.ExecutorService;
69import java.util.concurrent.Executors;
alshabibf0e7e702015-05-30 18:22:36 -070070
alshabib3ea82642016-01-12 18:06:53 -080071import static org.onlab.util.Tools.groupedThreads;
alshabibf0e7e702015-05-30 18:22:36 -070072import static org.slf4j.LoggerFactory.getLogger;
73
74/**
Jonathan Harte533a422015-10-20 17:31:24 -070075 * Provisions rules on access devices.
alshabibf0e7e702015-05-30 18:22:36 -070076 */
Jonathan Harte533a422015-10-20 17:31:24 -070077@Service
alshabibf0e7e702015-05-30 18:22:36 -070078@Component(immediate = true)
alshabib8e4fd2f2016-01-12 15:55:53 -080079public class Olt
80 extends AbstractListenerManager<AccessDeviceEvent, AccessDeviceListener>
81 implements AccessDeviceService {
alshabibf0e7e702015-05-30 18:22:36 -070082 private final Logger log = getLogger(getClass());
83
84 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
85 protected FlowObjectiveService flowObjectiveService;
86
87 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
88 protected DeviceService deviceService;
89
90 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
91 protected CoreService coreService;
92
Jonathan Harte533a422015-10-20 17:31:24 -070093 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
94 protected NetworkConfigRegistry networkConfig;
95
alshabibf0e7e702015-05-30 18:22:36 -070096 private final DeviceListener deviceListener = new InternalDeviceListener();
97
98 private ApplicationId appId;
99
Jonathan Harte533a422015-10-20 17:31:24 -0700100 private static final VlanId DEFAULT_VLAN = VlanId.vlanId((short) 0);
alshabibcf3eb952015-06-01 10:57:31 -0700101
alshabib3ea82642016-01-12 18:06:53 -0800102 private ExecutorService oltInstallers = Executors.newFixedThreadPool(4,
alshabibbf23a1f2016-01-14 17:27:11 -0800103 groupedThreads("onos/olt-service",
104 "olt-installer-%d"));
alshabib4ae2b402015-06-05 14:55:24 -0700105
Jonathan Harte533a422015-10-20 17:31:24 -0700106 private Map<DeviceId, AccessDeviceData> oltData = new ConcurrentHashMap<>();
107
alshabibbf23a1f2016-01-14 17:27:11 -0800108 private Map<ConnectPoint, Set<ForwardingObjective.Builder>> objectives =
109 Maps.newConcurrentMap();
110
111 private Map<ConnectPoint, VlanId> subscribers = Maps.newConcurrentMap();
112
Jonathan Harte533a422015-10-20 17:31:24 -0700113 private InternalNetworkConfigListener configListener =
114 new InternalNetworkConfigListener();
115 private static final Class<AccessDeviceConfig> CONFIG_CLASS =
116 AccessDeviceConfig.class;
117
118 private ConfigFactory<DeviceId, AccessDeviceConfig> configFactory =
119 new ConfigFactory<DeviceId, AccessDeviceConfig>(
120 SubjectFactories.DEVICE_SUBJECT_FACTORY, CONFIG_CLASS, "accessDevice") {
alshabibbf23a1f2016-01-14 17:27:11 -0800121 @Override
122 public AccessDeviceConfig createConfig() {
123 return new AccessDeviceConfig();
124 }
125 };
126
alshabibf0e7e702015-05-30 18:22:36 -0700127
128 @Activate
129 public void activate() {
alshabib4ae2b402015-06-05 14:55:24 -0700130 appId = coreService.registerApplication("org.onosproject.olt");
alshabibc4dfe852015-06-05 13:35:13 -0700131
alshabib8e4fd2f2016-01-12 15:55:53 -0800132 eventDispatcher.addSink(AccessDeviceEvent.class, listenerRegistry);
133
Jonathan Harte533a422015-10-20 17:31:24 -0700134 networkConfig.registerConfigFactory(configFactory);
135 networkConfig.addListener(configListener);
136
alshabibdec2e252016-01-15 12:20:25 -0800137
Jonathan Harte533a422015-10-20 17:31:24 -0700138 networkConfig.getSubjects(DeviceId.class, AccessDeviceConfig.class).forEach(
139 subject -> {
140 AccessDeviceConfig config = networkConfig.getConfig(subject, AccessDeviceConfig.class);
141 if (config != null) {
142 AccessDeviceData data = config.getOlt();
143 oltData.put(data.deviceId(), data);
144 }
145 }
146 );
147
alshabibdec2e252016-01-15 12:20:25 -0800148 oltData.keySet().stream()
149 .flatMap(did -> deviceService.getPorts(did).stream())
150 .filter(p -> oltData.get(p.element().id()).uplink() != p.number())
151 .filter(p -> p.isEnabled())
152 .forEach(p -> installFilteringObjectives((DeviceId) p.element().id(), p));
153
alshabibba357492016-01-27 13:49:46 -0800154 deviceService.addListener(deviceListener);
155
alshabibf0e7e702015-05-30 18:22:36 -0700156 log.info("Started with Application ID {}", appId.id());
157 }
158
159 @Deactivate
160 public void deactivate() {
Jonathan Harte533a422015-10-20 17:31:24 -0700161 networkConfig.removeListener(configListener);
162 networkConfig.unregisterConfigFactory(configFactory);
alshabibf0e7e702015-05-30 18:22:36 -0700163 log.info("Stopped");
164 }
165
Jonathan Harte533a422015-10-20 17:31:24 -0700166 @Override
167 public void provisionSubscriber(ConnectPoint port, VlanId vlan) {
168 AccessDeviceData olt = oltData.get(port.deviceId());
169
170 if (olt == null) {
171 log.warn("No data found for OLT device {}", port.deviceId());
172 return;
173 }
174
Jonathan Hart52998382015-11-10 16:09:22 -0800175 provisionVlans(olt.deviceId(), olt.uplink(), port.port(), vlan, olt.vlan(),
alshabibb7a9e172016-01-13 11:23:53 -0800176 olt.defaultVlan());
177 }
178
179 @Override
180 public void removeSubscriber(ConnectPoint port) {
alshabibbf23a1f2016-01-14 17:27:11 -0800181 AccessDeviceData olt = oltData.get(port.deviceId());
182
183 if (olt == null) {
184 log.warn("No data found for OLT device {}", port.deviceId());
185 return;
186 }
187
188 unprovisionSubscriber(olt.deviceId(), olt.uplink(), port.port(), olt.vlan());
189
190 }
191
192 private void unprovisionSubscriber(DeviceId deviceId, PortNumber uplink,
193 PortNumber subscriberPort, VlanId deviceVlan) {
194
195 //FIXME: This method is slightly ugly but it'll do until we have a better
196 // way to remove flows from the flow store.
197
198 CompletableFuture<ObjectiveError> downFuture = new CompletableFuture();
199 CompletableFuture<ObjectiveError> upFuture = new CompletableFuture();
200
201 ConnectPoint cp = new ConnectPoint(deviceId, subscriberPort);
202
203 VlanId subscriberVlan = subscribers.remove(cp);
204
205 Set<ForwardingObjective.Builder> fwds = objectives.remove(cp);
206
207 if (fwds == null || fwds.size() != 2) {
208 log.warn("Unknown or incomplete subscriber at {}", cp);
209 return;
210 }
211
212
213 fwds.stream().forEach(
214 fwd -> flowObjectiveService.forward(deviceId,
alshabibdec2e252016-01-15 12:20:25 -0800215 fwd.remove(new ObjectiveContext() {
216 @Override
217 public void onSuccess(Objective objective) {
218 upFuture.complete(null);
219 }
alshabibbf23a1f2016-01-14 17:27:11 -0800220
alshabibdec2e252016-01-15 12:20:25 -0800221 @Override
222 public void onError(Objective objective, ObjectiveError error) {
223 upFuture.complete(error);
224 }
225 })));
alshabibbf23a1f2016-01-14 17:27:11 -0800226
227 upFuture.thenAcceptBothAsync(downFuture, (upStatus, downStatus) -> {
228 if (upStatus == null && downStatus == null) {
229 post(new AccessDeviceEvent(AccessDeviceEvent.Type.SUBSCRIBER_UNREGISTERED,
230 deviceId,
231 deviceVlan,
232 subscriberVlan));
233 } else if (downStatus != null) {
234 log.error("Subscriber with vlan {} on device {} " +
235 "on port {} failed downstream uninstallation: {}",
236 subscriberVlan, deviceId, subscriberPort, downStatus);
237 } else if (upStatus != null) {
238 log.error("Subscriber with vlan {} on device {} " +
239 "on port {} failed upstream uninstallation: {}",
240 subscriberVlan, deviceId, subscriberPort, upStatus);
241 }
242 }, oltInstallers);
alshabibb7a9e172016-01-13 11:23:53 -0800243
Jonathan Harte533a422015-10-20 17:31:24 -0700244 }
245
246 private void provisionVlans(DeviceId deviceId, PortNumber uplinkPort,
247 PortNumber subscriberPort,
Jonathan Hart52998382015-11-10 16:09:22 -0800248 VlanId subscriberVlan, VlanId deviceVlan,
249 Optional<VlanId> defaultVlan) {
Jonathan Harte533a422015-10-20 17:31:24 -0700250
alshabib3ea82642016-01-12 18:06:53 -0800251 CompletableFuture<ObjectiveError> downFuture = new CompletableFuture();
252 CompletableFuture<ObjectiveError> upFuture = new CompletableFuture();
253
Jonathan Harte533a422015-10-20 17:31:24 -0700254 TrafficSelector upstream = DefaultTrafficSelector.builder()
Jonathan Hart52998382015-11-10 16:09:22 -0800255 .matchVlanId((defaultVlan.isPresent()) ? defaultVlan.get() : DEFAULT_VLAN)
Jonathan Harte533a422015-10-20 17:31:24 -0700256 .matchInPort(subscriberPort)
257 .build();
258
259 TrafficSelector downstream = DefaultTrafficSelector.builder()
260 .matchVlanId(deviceVlan)
261 .matchInPort(uplinkPort)
alshabibb7a9e172016-01-13 11:23:53 -0800262 .matchInnerVlanId(subscriberVlan)
Jonathan Harte533a422015-10-20 17:31:24 -0700263 .build();
264
265 TrafficTreatment upstreamTreatment = DefaultTrafficTreatment.builder()
alshabib3ea82642016-01-12 18:06:53 -0800266 .pushVlan()
Jonathan Harte533a422015-10-20 17:31:24 -0700267 .setVlanId(subscriberVlan)
268 .pushVlan()
269 .setVlanId(deviceVlan)
270 .setOutput(uplinkPort)
271 .build();
272
273 TrafficTreatment downstreamTreatment = DefaultTrafficTreatment.builder()
274 .popVlan()
Jonathan Hart52998382015-11-10 16:09:22 -0800275 .setVlanId((defaultVlan.isPresent()) ? defaultVlan.get() : DEFAULT_VLAN)
Jonathan Harte533a422015-10-20 17:31:24 -0700276 .setOutput(subscriberPort)
277 .build();
278
279
alshabibbf23a1f2016-01-14 17:27:11 -0800280 ForwardingObjective.Builder upFwd = DefaultForwardingObjective.builder()
Jonathan Harte533a422015-10-20 17:31:24 -0700281 .withFlag(ForwardingObjective.Flag.VERSATILE)
282 .withPriority(1000)
283 .makePermanent()
284 .withSelector(upstream)
285 .fromApp(appId)
alshabibbf23a1f2016-01-14 17:27:11 -0800286 .withTreatment(upstreamTreatment);
alshabib3ea82642016-01-12 18:06:53 -0800287
Jonathan Harte533a422015-10-20 17:31:24 -0700288
alshabibbf23a1f2016-01-14 17:27:11 -0800289 ForwardingObjective.Builder downFwd = DefaultForwardingObjective.builder()
Jonathan Harte533a422015-10-20 17:31:24 -0700290 .withFlag(ForwardingObjective.Flag.VERSATILE)
291 .withPriority(1000)
292 .makePermanent()
293 .withSelector(downstream)
294 .fromApp(appId)
alshabibbf23a1f2016-01-14 17:27:11 -0800295 .withTreatment(downstreamTreatment);
alshabib3ea82642016-01-12 18:06:53 -0800296
alshabibbf23a1f2016-01-14 17:27:11 -0800297 ConnectPoint cp = new ConnectPoint(deviceId, subscriberPort);
Jonathan Harte533a422015-10-20 17:31:24 -0700298
alshabibbf23a1f2016-01-14 17:27:11 -0800299 subscribers.put(cp, subscriberVlan);
300 objectives.put(cp, Sets.newHashSet(upFwd, downFwd));
301
302
303 flowObjectiveService.forward(deviceId, upFwd.add(new ObjectiveContext() {
304 @Override
305 public void onSuccess(Objective objective) {
306 upFuture.complete(null);
307 }
308
309 @Override
310 public void onError(Objective objective, ObjectiveError error) {
311 upFuture.complete(error);
312 }
313 }));
314
315
316 flowObjectiveService.forward(deviceId, downFwd.add(new ObjectiveContext() {
317 @Override
318 public void onSuccess(Objective objective) {
319 downFuture.complete(null);
320 }
321
322 @Override
323 public void onError(Objective objective, ObjectiveError error) {
324 downFuture.complete(error);
325 }
326 }));
alshabib3ea82642016-01-12 18:06:53 -0800327
328 upFuture.thenAcceptBothAsync(downFuture, (upStatus, downStatus) -> {
329 if (upStatus == null && downStatus == null) {
330 post(new AccessDeviceEvent(AccessDeviceEvent.Type.SUBSCRIBER_REGISTERED,
331 deviceId,
332 deviceVlan,
333 subscriberVlan));
334 } else if (downStatus != null) {
335 log.error("Subscriber with vlan {} on device {} " +
336 "on port {} failed downstream installation: {}",
337 subscriberVlan, deviceId, subscriberPort, downStatus);
338 } else if (upStatus != null) {
339 log.error("Subscriber with vlan {} on device {} " +
340 "on port {} failed upstream installation: {}",
341 subscriberVlan, deviceId, subscriberPort, upStatus);
342 }
343 }, oltInstallers);
344
Jonathan Harte533a422015-10-20 17:31:24 -0700345 }
346
alshabibdec2e252016-01-15 12:20:25 -0800347 private void installFilteringObjectives(DeviceId devId, Port port) {
348 FilteringObjective eapol = DefaultFilteringObjective.builder()
349 .permit()
350 .withKey(Criteria.matchInPort(port.number()))
351 .addCondition(Criteria.matchEthType(EthType.EtherType.EAPOL.ethType()))
352 .withMeta(DefaultTrafficTreatment.builder()
353 .setOutput(PortNumber.CONTROLLER).build())
354 .fromApp(appId)
355 .withPriority(1000)
356 .add(new ObjectiveContext() {
357 @Override
358 public void onSuccess(Objective objective) {
359 log.info("Eapol filter for {} on {} installed.",
360 devId, port);
361 }
362
363 @Override
364 public void onError(Objective objective, ObjectiveError error) {
365 log.info("Eapol filter for {} on {} failed because {}",
366 devId, port, error);
367 }
368 });
369
alshabibdec2e252016-01-15 12:20:25 -0800370 flowObjectiveService.filter(devId, eapol);
alshabib000b6fc2016-02-01 17:25:00 -0800371
alshabibdec2e252016-01-15 12:20:25 -0800372 }
373
alshabibf0e7e702015-05-30 18:22:36 -0700374 private class InternalDeviceListener implements DeviceListener {
375 @Override
376 public void event(DeviceEvent event) {
alshabib3ea82642016-01-12 18:06:53 -0800377 DeviceId devId = event.subject().id();
378 if (!oltData.containsKey(devId)) {
379 log.debug("Device {} is not an OLT", devId);
alshabib8e4fd2f2016-01-12 15:55:53 -0800380 return;
381 }
alshabibf0e7e702015-05-30 18:22:36 -0700382 switch (event.type()) {
alshabibdec2e252016-01-15 12:20:25 -0800383 //TODO: Port handling and bookkeeping should be inproved once
384 // olt firmware handles correct behaviour.
alshabibf0e7e702015-05-30 18:22:36 -0700385 case PORT_ADDED:
alshabib8ca85bd2016-01-29 11:25:46 -0800386 if (oltData.get(devId).uplink() != event.port().number() &&
387 event.port().isEnabled()) {
alshabibdec2e252016-01-15 12:20:25 -0800388 installFilteringObjectives(devId, event.port());
389 }
390 break;
391 case PORT_REMOVED:
392 AccessDeviceData olt = oltData.get(devId);
393 unprovisionSubscriber(devId, olt.uplink(),
394 event.port().number(),
395 olt.vlan());
alshabibdec2e252016-01-15 12:20:25 -0800396 break;
alshabibf0e7e702015-05-30 18:22:36 -0700397 case PORT_UPDATED:
alshabibf0e7e702015-05-30 18:22:36 -0700398 break;
399 case DEVICE_ADDED:
alshabib8e4fd2f2016-01-12 15:55:53 -0800400 post(new AccessDeviceEvent(
401 AccessDeviceEvent.Type.DEVICE_CONNECTED, devId,
402 null, null));
403 break;
alshabibf0e7e702015-05-30 18:22:36 -0700404 case DEVICE_REMOVED:
alshabib8e4fd2f2016-01-12 15:55:53 -0800405 post(new AccessDeviceEvent(
406 AccessDeviceEvent.Type.DEVICE_DISCONNECTED, devId,
407 null, null));
408 break;
alshabib7c190012016-02-09 18:22:33 -0800409 case DEVICE_AVAILABILITY_CHANGED:
410 if (deviceService.isAvailable(devId)) {
411 post(new AccessDeviceEvent(
412 AccessDeviceEvent.Type.DEVICE_CONNECTED, devId,
413 null, null));
414 } else {
415 post(new AccessDeviceEvent(
416 AccessDeviceEvent.Type.DEVICE_DISCONNECTED, devId,
417 null, null));
418 }
419 break;
alshabib8e4fd2f2016-01-12 15:55:53 -0800420 case DEVICE_UPDATED:
alshabibf0e7e702015-05-30 18:22:36 -0700421 case DEVICE_SUSPENDED:
alshabib7c190012016-02-09 18:22:33 -0800422
alshabibf0e7e702015-05-30 18:22:36 -0700423 case PORT_STATS_UPDATED:
424 default:
425 return;
426 }
427 }
428 }
429
Jonathan Harte533a422015-10-20 17:31:24 -0700430 private class InternalNetworkConfigListener implements NetworkConfigListener {
431 @Override
432 public void event(NetworkConfigEvent event) {
433 switch (event.type()) {
434
alshabibbf23a1f2016-01-14 17:27:11 -0800435 case CONFIG_ADDED:
436 case CONFIG_UPDATED:
437 if (event.configClass().equals(CONFIG_CLASS)) {
438 AccessDeviceConfig config =
439 networkConfig.getConfig((DeviceId) event.subject(), CONFIG_CLASS);
440 if (config != null) {
441 oltData.put(config.getOlt().deviceId(), config.getOlt());
442 }
Jonathan Harte533a422015-10-20 17:31:24 -0700443 }
alshabibbf23a1f2016-01-14 17:27:11 -0800444 break;
445 case CONFIG_UNREGISTERED:
446 case CONFIG_REMOVED:
447 default:
448 break;
Jonathan Harte533a422015-10-20 17:31:24 -0700449 }
450 }
451 }
alshabibf0e7e702015-05-30 18:22:36 -0700452
453}