blob: fb0d523fdf46d28f8068c42e836d371702036830 [file] [log] [blame]
alshabib0ccde6d2015-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 */
16package org.onosproject.olt;
17
18
19import com.google.common.base.Strings;
20import org.apache.felix.scr.annotations.Activate;
21import org.apache.felix.scr.annotations.Component;
22import org.apache.felix.scr.annotations.Deactivate;
23import org.apache.felix.scr.annotations.Modified;
24import org.apache.felix.scr.annotations.Property;
25import org.apache.felix.scr.annotations.Reference;
26import org.apache.felix.scr.annotations.ReferenceCardinality;
27import org.onlab.packet.VlanId;
28import org.onlab.util.Tools;
29import org.onosproject.core.ApplicationId;
30import org.onosproject.core.CoreService;
31import org.onosproject.net.DeviceId;
32import org.onosproject.net.PortNumber;
33import org.onosproject.net.device.DeviceEvent;
34import org.onosproject.net.device.DeviceListener;
35import org.onosproject.net.device.DeviceService;
36import org.onosproject.net.flow.DefaultTrafficSelector;
37import org.onosproject.net.flow.DefaultTrafficTreatment;
38import org.onosproject.net.flow.TrafficSelector;
39import org.onosproject.net.flow.TrafficTreatment;
40import org.onosproject.net.flowobjective.DefaultForwardingObjective;
41import org.onosproject.net.flowobjective.FlowObjectiveService;
42import org.onosproject.net.flowobjective.ForwardingObjective;
43import org.osgi.service.component.ComponentContext;
44import org.slf4j.Logger;
45
46import java.util.Dictionary;
47
48import static org.slf4j.LoggerFactory.getLogger;
49
50/**
51 * Sample mobility application. Cleans up flowmods when a host moves.
52 */
53@Component(immediate = true)
54public class OLT {
55
56 private final Logger log = getLogger(getClass());
57
58 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
59 protected FlowObjectiveService flowObjectiveService;
60
61 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
62 protected DeviceService deviceService;
63
64 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
65 protected CoreService coreService;
66
67 private final DeviceListener deviceListener = new InternalDeviceListener();
68
69 private ApplicationId appId;
70
alshabib17ff25f2015-06-01 10:57:31 -070071 public static final int OFFSET = 200;
72
alshabib0ccde6d2015-05-30 18:22:36 -070073 public static final int UPLINK_PORT = 129;
alshabibb37fd082015-06-05 15:32:15 -070074 public static final int GFAST_UPLINK_PORT = 100;
alshabib0ccde6d2015-05-30 18:22:36 -070075
76 public static final String OLT_DEVICE = "of:90e2ba82f97791e9";
alshabib1af3b712015-06-05 14:55:24 -070077 public static final String GFAST_DEVICE = "of:0011223344551357";
alshabib0ccde6d2015-05-30 18:22:36 -070078
79 @Property(name = "uplinkPort", intValue = UPLINK_PORT,
80 label = "The OLT's uplink port number")
81 private int uplinkPort = UPLINK_PORT;
82
alshabibb37fd082015-06-05 15:32:15 -070083 @Property(name = "gfastUplink", intValue = GFAST_UPLINK_PORT,
84 label = "The OLT's uplink port number")
85 private int gfastUplink = GFAST_UPLINK_PORT;
86
alshabib0ccde6d2015-05-30 18:22:36 -070087 //TODO: replace this with an annotation lookup
88 @Property(name = "oltDevice", value = OLT_DEVICE,
89 label = "The OLT device id")
90 private String oltDevice = OLT_DEVICE;
91
alshabib1af3b712015-06-05 14:55:24 -070092 @Property(name = "gfastDevice", value = GFAST_DEVICE,
93 label = "The gfast device id")
94 private String gfastDevice = GFAST_DEVICE;
95
alshabib0ccde6d2015-05-30 18:22:36 -070096
97 @Activate
98 public void activate() {
alshabib1af3b712015-06-05 14:55:24 -070099 appId = coreService.registerApplication("org.onosproject.olt");
alshabibbeb2dc92015-06-05 13:35:13 -0700100
Jonathan Hartdfc3b862015-07-01 14:49:56 -0700101 /*deviceService.addListener(deviceListener);
Jonathan Hart80ba4a72015-06-10 18:19:41 -0700102
alshabib0ccde6d2015-05-30 18:22:36 -0700103 deviceService.getPorts(DeviceId.deviceId(oltDevice)).stream().forEach(
104 port -> {
alshabibca627502015-06-05 15:19:43 -0700105 if (!port.number().isLogical() && port.isEnabled()) {
alshabibbeb2dc92015-06-05 13:35:13 -0700106 short vlanId = fetchVlanId(port.number());
alshabibca627502015-06-05 15:19:43 -0700107 if (vlanId > 0) {
alshabibb37fd082015-06-05 15:32:15 -0700108 provisionVlanOnPort(oltDevice, uplinkPort, port.number(), (short) 7);
109 provisionVlanOnPort(oltDevice, uplinkPort, port.number(), vlanId);
alshabibca627502015-06-05 15:19:43 -0700110 }
alshabib0ccde6d2015-05-30 18:22:36 -0700111 }
112 }
Jonathan Hartdfc3b862015-07-01 14:49:56 -0700113 );*/
alshabib1af3b712015-06-05 14:55:24 -0700114
115
116 deviceService.getPorts(DeviceId.deviceId(gfastDevice)).stream().forEach(
117 port -> {
alshabibca627502015-06-05 15:19:43 -0700118 if (!port.number().isLogical() && port.isEnabled()) {
alshabib1af3b712015-06-05 14:55:24 -0700119 short vlanId = (short) (fetchVlanId(port.number()) + OFFSET);
alshabibca627502015-06-05 15:19:43 -0700120 if (vlanId > 0) {
alshabibb37fd082015-06-05 15:32:15 -0700121 provisionVlanOnPort(gfastDevice, gfastUplink, port.number(), vlanId);
alshabibca627502015-06-05 15:19:43 -0700122 }
alshabib1af3b712015-06-05 14:55:24 -0700123 }
124 }
125 );
alshabib0ccde6d2015-05-30 18:22:36 -0700126 log.info("Started with Application ID {}", appId.id());
127 }
128
129 @Deactivate
130 public void deactivate() {
131 log.info("Stopped");
132 }
133
134 @Modified
135 public void modified(ComponentContext context) {
136 Dictionary<?, ?> properties = context.getProperties();
137
138
139 String s = Tools.get(properties, "uplinkPort");
140 uplinkPort = Strings.isNullOrEmpty(s) ? UPLINK_PORT : Integer.parseInt(s);
141
142 s = Tools.get(properties, "oltDevice");
143 oltDevice = Strings.isNullOrEmpty(s) ? OLT_DEVICE : s;
144
145 }
146
alshabibbeb2dc92015-06-05 13:35:13 -0700147
148 private short fetchVlanId(PortNumber port) {
149 long p = port.toLong() + OFFSET;
150 if (p > 4095) {
alshabib0ccde6d2015-05-30 18:22:36 -0700151 log.warn("Port Number {} exceeds vlan max", port);
alshabibbeb2dc92015-06-05 13:35:13 -0700152 return -1;
alshabib0ccde6d2015-05-30 18:22:36 -0700153 }
alshabibbeb2dc92015-06-05 13:35:13 -0700154 return (short) p;
155 }
156
157
alshabibb37fd082015-06-05 15:32:15 -0700158 private void provisionVlanOnPort(String deviceId, int uplinkPort, PortNumber p, short vlanId) {
alshabibca627502015-06-05 15:19:43 -0700159 DeviceId did = DeviceId.deviceId(deviceId);
alshabib0ccde6d2015-05-30 18:22:36 -0700160
161 TrafficSelector upstream = DefaultTrafficSelector.builder()
alshabibbeb2dc92015-06-05 13:35:13 -0700162 .matchVlanId(VlanId.vlanId(vlanId))
alshabib0ccde6d2015-05-30 18:22:36 -0700163 .matchInPort(p)
164 .build();
165
166 TrafficSelector downStream = DefaultTrafficSelector.builder()
alshabibbeb2dc92015-06-05 13:35:13 -0700167 .matchVlanId(VlanId.vlanId(vlanId))
alshabib0ccde6d2015-05-30 18:22:36 -0700168 .matchInPort(PortNumber.portNumber(uplinkPort))
169 .build();
170
171 TrafficTreatment upstreamTreatment = DefaultTrafficTreatment.builder()
172 .setOutput(PortNumber.portNumber(uplinkPort))
173 .build();
174
175 TrafficTreatment downStreamTreatment = DefaultTrafficTreatment.builder()
176 .setOutput(p)
177 .build();
178
179
180 ForwardingObjective upFwd = DefaultForwardingObjective.builder()
181 .withFlag(ForwardingObjective.Flag.VERSATILE)
182 .withPriority(1000)
183 .makePermanent()
184 .withSelector(upstream)
185 .fromApp(appId)
186 .withTreatment(upstreamTreatment)
187 .add();
188
189 ForwardingObjective downFwd = DefaultForwardingObjective.builder()
190 .withFlag(ForwardingObjective.Flag.VERSATILE)
191 .withPriority(1000)
192 .makePermanent()
193 .withSelector(downStream)
194 .fromApp(appId)
195 .withTreatment(downStreamTreatment)
196 .add();
197
alshabibca627502015-06-05 15:19:43 -0700198 flowObjectiveService.forward(did, upFwd);
199 flowObjectiveService.forward(did, downFwd);
alshabib0ccde6d2015-05-30 18:22:36 -0700200
201 }
202
203 private class InternalDeviceListener implements DeviceListener {
204 @Override
205 public void event(DeviceEvent event) {
206 DeviceId devId = DeviceId.deviceId(oltDevice);
207 switch (event.type()) {
208 case PORT_ADDED:
209 case PORT_UPDATED:
210 if (devId.equals(event.subject().id()) && event.port().isEnabled()) {
alshabibbeb2dc92015-06-05 13:35:13 -0700211 short vlanId = fetchVlanId(event.port().number());
alshabibb37fd082015-06-05 15:32:15 -0700212 provisionVlanOnPort(gfastDevice, uplinkPort, event.port().number(), vlanId);
alshabib0ccde6d2015-05-30 18:22:36 -0700213 }
214 break;
215 case DEVICE_ADDED:
216 case DEVICE_UPDATED:
217 case DEVICE_REMOVED:
218 case DEVICE_SUSPENDED:
219 case DEVICE_AVAILABILITY_CHANGED:
220 case PORT_REMOVED:
221 case PORT_STATS_UPDATED:
222 default:
223 return;
224 }
225 }
226 }
227
228
229}
230
231