blob: 8fbdc9abdd05d3167ae3fbc93e8ff614fa8f617d [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;
74
75 public static final String OLT_DEVICE = "of:90e2ba82f97791e9";
alshabib1af3b712015-06-05 14:55:24 -070076 public static final String GFAST_DEVICE = "of:0011223344551357";
alshabib0ccde6d2015-05-30 18:22:36 -070077
78 @Property(name = "uplinkPort", intValue = UPLINK_PORT,
79 label = "The OLT's uplink port number")
80 private int uplinkPort = UPLINK_PORT;
81
82 //TODO: replace this with an annotation lookup
83 @Property(name = "oltDevice", value = OLT_DEVICE,
84 label = "The OLT device id")
85 private String oltDevice = OLT_DEVICE;
86
alshabib1af3b712015-06-05 14:55:24 -070087 @Property(name = "gfastDevice", value = GFAST_DEVICE,
88 label = "The gfast device id")
89 private String gfastDevice = GFAST_DEVICE;
90
alshabib0ccde6d2015-05-30 18:22:36 -070091
92 @Activate
93 public void activate() {
alshabib1af3b712015-06-05 14:55:24 -070094 appId = coreService.registerApplication("org.onosproject.olt");
alshabibbeb2dc92015-06-05 13:35:13 -070095
alshabib0ccde6d2015-05-30 18:22:36 -070096 deviceService.getPorts(DeviceId.deviceId(oltDevice)).stream().forEach(
97 port -> {
98 if (port.isEnabled()) {
alshabibbeb2dc92015-06-05 13:35:13 -070099 short vlanId = fetchVlanId(port.number());
100 provisionVlanOnPort(port.number(), (short) 7);
101 provisionVlanOnPort(port.number(), vlanId);
alshabib0ccde6d2015-05-30 18:22:36 -0700102 }
103 }
104 );
alshabib1af3b712015-06-05 14:55:24 -0700105
106
107 deviceService.getPorts(DeviceId.deviceId(gfastDevice)).stream().forEach(
108 port -> {
109 if (port.isEnabled()) {
110 short vlanId = (short) (fetchVlanId(port.number()) + OFFSET);
111 provisionVlanOnPort(port.number(), vlanId);
112 }
113 }
114 );
alshabib0ccde6d2015-05-30 18:22:36 -0700115 log.info("Started with Application ID {}", appId.id());
116 }
117
118 @Deactivate
119 public void deactivate() {
120 log.info("Stopped");
121 }
122
123 @Modified
124 public void modified(ComponentContext context) {
125 Dictionary<?, ?> properties = context.getProperties();
126
127
128 String s = Tools.get(properties, "uplinkPort");
129 uplinkPort = Strings.isNullOrEmpty(s) ? UPLINK_PORT : Integer.parseInt(s);
130
131 s = Tools.get(properties, "oltDevice");
132 oltDevice = Strings.isNullOrEmpty(s) ? OLT_DEVICE : s;
133
134 }
135
alshabibbeb2dc92015-06-05 13:35:13 -0700136
137 private short fetchVlanId(PortNumber port) {
138 long p = port.toLong() + OFFSET;
139 if (p > 4095) {
alshabib0ccde6d2015-05-30 18:22:36 -0700140 log.warn("Port Number {} exceeds vlan max", port);
alshabibbeb2dc92015-06-05 13:35:13 -0700141 return -1;
alshabib0ccde6d2015-05-30 18:22:36 -0700142 }
alshabibbeb2dc92015-06-05 13:35:13 -0700143 return (short) p;
144 }
145
146
147 private void provisionVlanOnPort(PortNumber p, short vlanId) {
148
alshabib0ccde6d2015-05-30 18:22:36 -0700149
150 TrafficSelector upstream = DefaultTrafficSelector.builder()
alshabibbeb2dc92015-06-05 13:35:13 -0700151 .matchVlanId(VlanId.vlanId(vlanId))
alshabib0ccde6d2015-05-30 18:22:36 -0700152 .matchInPort(p)
153 .build();
154
155 TrafficSelector downStream = DefaultTrafficSelector.builder()
alshabibbeb2dc92015-06-05 13:35:13 -0700156 .matchVlanId(VlanId.vlanId(vlanId))
alshabib0ccde6d2015-05-30 18:22:36 -0700157 .matchInPort(PortNumber.portNumber(uplinkPort))
158 .build();
159
160 TrafficTreatment upstreamTreatment = DefaultTrafficTreatment.builder()
161 .setOutput(PortNumber.portNumber(uplinkPort))
162 .build();
163
164 TrafficTreatment downStreamTreatment = DefaultTrafficTreatment.builder()
165 .setOutput(p)
166 .build();
167
168
169 ForwardingObjective upFwd = DefaultForwardingObjective.builder()
170 .withFlag(ForwardingObjective.Flag.VERSATILE)
171 .withPriority(1000)
172 .makePermanent()
173 .withSelector(upstream)
174 .fromApp(appId)
175 .withTreatment(upstreamTreatment)
176 .add();
177
178 ForwardingObjective downFwd = DefaultForwardingObjective.builder()
179 .withFlag(ForwardingObjective.Flag.VERSATILE)
180 .withPriority(1000)
181 .makePermanent()
182 .withSelector(downStream)
183 .fromApp(appId)
184 .withTreatment(downStreamTreatment)
185 .add();
186
187 flowObjectiveService.forward(DeviceId.deviceId(oltDevice), upFwd);
188 flowObjectiveService.forward(DeviceId.deviceId(oltDevice), downFwd);
189
190 }
191
192 private class InternalDeviceListener implements DeviceListener {
193 @Override
194 public void event(DeviceEvent event) {
195 DeviceId devId = DeviceId.deviceId(oltDevice);
196 switch (event.type()) {
197 case PORT_ADDED:
198 case PORT_UPDATED:
199 if (devId.equals(event.subject().id()) && event.port().isEnabled()) {
alshabibbeb2dc92015-06-05 13:35:13 -0700200 short vlanId = fetchVlanId(event.port().number());
201 provisionVlanOnPort(event.port().number(), vlanId);
alshabib0ccde6d2015-05-30 18:22:36 -0700202 }
203 break;
204 case DEVICE_ADDED:
205 case DEVICE_UPDATED:
206 case DEVICE_REMOVED:
207 case DEVICE_SUSPENDED:
208 case DEVICE_AVAILABILITY_CHANGED:
209 case PORT_REMOVED:
210 case PORT_STATS_UPDATED:
211 default:
212 return;
213 }
214 }
215 }
216
217
218}
219
220