blob: 88bbbb50abd22ae3d20187996f32b829d5badb8f [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.packet;
tom613d8142014-09-11 15:09:37 -070017
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080018import org.onosproject.core.ApplicationId;
alshabib19e2cea2015-12-07 11:31:49 -080019import org.onosproject.net.DeviceId;
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080020import org.onosproject.net.flow.TrafficSelector;
21
Thomas Vachuska7f171b22015-08-21 12:49:08 -070022import java.util.List;
alshabib19e2cea2015-12-07 11:31:49 -080023import java.util.Optional;
Thomas Vachuska7f171b22015-08-21 12:49:08 -070024
tom613d8142014-09-11 15:09:37 -070025/**
26 * Service for intercepting data plane packets and for emitting synthetic
27 * outbound packets.
28 */
29public interface PacketService {
30
31 // TODO: ponder better ordering scheme that does not require absolute numbers
32
33 /**
34 * Adds the specified processor to the list of packet processors.
35 * It will be added into the list in the order of priority. The higher
36 * numbers will be processing the packets after the lower numbers.
37 *
38 * @param processor processor to be added
39 * @param priority priority in the reverse natural order
40 * @throws java.lang.IllegalArgumentException if a processor with the
41 * given priority already exists
42 */
alshabib369d2942014-09-12 17:59:35 -070043 void addProcessor(PacketProcessor processor, int priority);
tom613d8142014-09-11 15:09:37 -070044
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080045 // TODO allow processors to register for particular types of packets
46
tom613d8142014-09-11 15:09:37 -070047 /**
48 * Removes the specified processor from the processing pipeline.
49 *
50 * @param processor packet processor
51 */
52 void removeProcessor(PacketProcessor processor);
53
54 /**
Thomas Vachuska924cda42015-09-22 12:11:27 -070055 * Returns priority bindings of all registered packet processor entries.
Thomas Vachuska7f171b22015-08-21 12:49:08 -070056 *
Thomas Vachuska924cda42015-09-22 12:11:27 -070057 * @return list of existing packet processor entries
Thomas Vachuska7f171b22015-08-21 12:49:08 -070058 */
Thomas Vachuska924cda42015-09-22 12:11:27 -070059 List<PacketProcessorEntry> getProcessors();
Thomas Vachuska7f171b22015-08-21 12:49:08 -070060
61 /**
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080062 * Requests that packets matching the given selector are punted from the
63 * dataplane to the controller.
64 *
65 * @param selector the traffic selector used to match packets
66 * @param priority the priority of the rule
Thomas Vachuska27bee092015-06-23 19:03:10 -070067 * @param appId the application ID of the requester
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080068 */
69 void requestPackets(TrafficSelector selector, PacketPriority priority,
70 ApplicationId appId);
71
Charles Chan874900e2016-12-09 16:55:39 -080072 /**
73 * Requests that packets matching the given selector are punted from the
74 * dataplane to the controller.
75 *
76 * @param selector the traffic selector used to match packets
77 * @param priority the priority of the rule
78 * @param appId the application ID of the requester
79 * @param copy request a copy of the matching packet to be punted to the controller.
80 * <p>
81 * If false, the original packet is always sent to the controller.
82 * If true, a copy of the packet is sent to the controller,
83 * as long as the packet can be duplicated.
84 * If duplication is not supported, the original packet will be sent to the controller.
85 */
86 void requestPackets(TrafficSelector selector, PacketPriority priority,
87 ApplicationId appId, boolean copy);
alshabib19e2cea2015-12-07 11:31:49 -080088
89 /**
90 * Requests that packets matching the given selector are punted from the
91 * dataplane to the controller. If a deviceId is specified then the
92 * packet request is only installed at the device represented by that
93 * deviceId.
94 *
95 * @param selector the traffic selector used to match packets
96 * @param priority the priority of the rule
97 * @param appId the application ID of the requester
98 * @param deviceId an optional deviceId
99 */
100 void requestPackets(TrafficSelector selector, PacketPriority priority,
101 ApplicationId appId, Optional<DeviceId> deviceId);
102
Saurav Dasc313c402015-02-27 10:09:47 -0800103 /**
Thomas Vachuska27bee092015-06-23 19:03:10 -0700104 * Cancels previous packet requests for packets matching the given
105 * selector to be punted from the dataplane to the controller.
Saurav Dasc313c402015-02-27 10:09:47 -0800106 *
107 * @param selector the traffic selector used to match packets
108 * @param priority the priority of the rule
Thomas Vachuska27bee092015-06-23 19:03:10 -0700109 * @param appId the application ID of the requester
Saurav Dasc313c402015-02-27 10:09:47 -0800110 */
Thomas Vachuska27bee092015-06-23 19:03:10 -0700111 void cancelPackets(TrafficSelector selector, PacketPriority priority,
112 ApplicationId appId);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800113
114 /**
alshabib19e2cea2015-12-07 11:31:49 -0800115 * Cancels previous packet requests for packets matching the given
Charles Chan874900e2016-12-09 16:55:39 -0800116 * selector to be punted from the dataplane to the controller.
117 *
118 * @param selector the traffic selector used to match packets
119 * @param priority the priority of the rule
120 * @param appId the application ID of the requester
121 * @param copy request a copy of the matching packet to be punted to the controller.
122 * <p>
123 * If false, the original packet is always sent to the controller.
124 * If true, a copy of the packet is sent to the controller,
125 * as long as the packet can be duplicated.
126 * If duplication is not supported, the original packet will be sent to the controller.
127 */
128 void cancelPackets(TrafficSelector selector, PacketPriority priority,
129 ApplicationId appId, boolean copy);
130
131 /**
132 * Cancels previous packet requests for packets matching the given
alshabib19e2cea2015-12-07 11:31:49 -0800133 * selector to be punted from the dataplane to the controller. If a
134 * deviceId is specified then the packet request is only withdrawn from
135 * the device represented by that deviceId.
136 *
137 * @param selector the traffic selector used to match packets
138 * @param priority the priority of the rule
139 * @param appId the application ID of the requester
140 * @param deviceId an optional deviceId
141 */
142 void cancelPackets(TrafficSelector selector, PacketPriority priority,
143 ApplicationId appId, Optional<DeviceId> deviceId);
144
alshabib19e2cea2015-12-07 11:31:49 -0800145 /**
Thomas Vachuska7f171b22015-08-21 12:49:08 -0700146 * Returns list of all existing requests ordered by priority.
147 *
148 * @return list of existing packet requests
149 */
150 List<PacketRequest> getRequests();
151
152 /**
tom613d8142014-09-11 15:09:37 -0700153 * Emits the specified outbound packet onto the network.
154 *
155 * @param packet outbound packet
156 */
157 void emit(OutboundPacket packet);
158
159}