blob: 65d675f19e28307e592d1e5b9df7ab5f0ca97fbf [file] [log] [blame]
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -07001#
Zsolt Haraszti3eb27a52017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -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#
16
17"""
18The gRPC client layer for the OpenFlow agent
19"""
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070020from Queue import Queue, Empty
alshabib06b449c2017-01-15 17:33:16 -060021import os
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070022
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070023from grpc import StatusCode
24from grpc._channel import _Rendezvous
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070025from structlog import get_logger
26from twisted.internet import reactor
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070027from twisted.internet import threads
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070028from twisted.internet.defer import inlineCallbacks, returnValue, DeferredQueue
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070029
Scott Bakerd865fa22018-11-07 11:45:28 -080030from protos.voltha_pb2 import ID, FlowTableUpdate, MeterModUpdate, \
Jonathan Hart398e4072018-05-30 16:54:00 -070031 FlowGroupTableUpdate, PacketOut
Scott Bakerd865fa22018-11-07 11:45:28 -080032from protos.voltha_pb2_grpc import VolthaLocalServiceStub
Jonathan Hart398e4072018-05-30 16:54:00 -070033from protos.logical_device_pb2 import LogicalPortId
Zsolt Haraszti7eeb2b32016-11-06 14:04:55 -080034from google.protobuf import empty_pb2
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070035
36
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070037class GrpcClient(object):
38
Richard Jankowskidb9a86e2018-09-17 13:33:29 -040039 def __init__(self, connection_manager, channel, grpc_timeout):
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070040
Zack Williams18357ed2018-11-14 10:41:08 -070041 self.log = get_logger()
42
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070043 self.connection_manager = connection_manager
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070044 self.channel = channel
Richard Jankowskidb9a86e2018-09-17 13:33:29 -040045 self.grpc_timeout = grpc_timeout
Zsolt Haraszti66862032016-11-28 14:28:39 -080046 self.local_stub = VolthaLocalServiceStub(channel)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070047
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070048 self.stopped = False
49
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070050 self.packet_out_queue = Queue() # queue to send out PacketOut msgs
51 self.packet_in_queue = DeferredQueue() # queue to receive PacketIn
Zsolt Haraszti217a12e2016-12-19 16:37:55 -080052 self.change_event_queue = DeferredQueue() # queue change events
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070053
54 def start(self):
Zack Williams18357ed2018-11-14 10:41:08 -070055 self.log.debug('starting', grpc_timeout=self.grpc_timeout)
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070056 self.start_packet_out_stream()
57 self.start_packet_in_stream()
Zsolt Haraszti217a12e2016-12-19 16:37:55 -080058 self.start_change_event_in_stream()
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070059 reactor.callLater(0, self.packet_in_forwarder_loop)
Zsolt Haraszti217a12e2016-12-19 16:37:55 -080060 reactor.callLater(0, self.change_event_processing_loop)
Zack Williams18357ed2018-11-14 10:41:08 -070061 self.log.info('started')
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070062 return self
63
64 def stop(self):
Zack Williams18357ed2018-11-14 10:41:08 -070065 self.log.debug('stopping')
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070066 self.stopped = True
Zack Williams18357ed2018-11-14 10:41:08 -070067 self.log.info('stopped')
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070068
69 def start_packet_out_stream(self):
70
71 def packet_generator():
72 while 1:
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070073 try:
74 packet = self.packet_out_queue.get(block=True, timeout=1.0)
75 except Empty:
76 if self.stopped:
77 return
78 else:
79 yield packet
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070080
81 def stream_packets_out():
82 generator = packet_generator()
alshabib06b449c2017-01-15 17:33:16 -060083 try:
84 self.local_stub.StreamPacketsOut(generator)
85 except _Rendezvous, e:
Zack Williams18357ed2018-11-14 10:41:08 -070086 self.log.error('grpc-exception', status=e.code())
alshabib06b449c2017-01-15 17:33:16 -060087 if e.code() == StatusCode.UNAVAILABLE:
88 os.system("kill -15 {}".format(os.getpid()))
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070089
90 reactor.callInThread(stream_packets_out)
91
92 def start_packet_in_stream(self):
93
94 def receive_packet_in_stream():
Zsolt Haraszti66862032016-11-28 14:28:39 -080095 streaming_rpc_method = self.local_stub.ReceivePacketsIn
Zsolt Haraszti9ed54292017-01-09 18:28:32 -080096 iterator = streaming_rpc_method(empty_pb2.Empty())
alshabib06b449c2017-01-15 17:33:16 -060097 try:
98 for packet_in in iterator:
99 reactor.callFromThread(self.packet_in_queue.put,
100 packet_in)
Zack Williams18357ed2018-11-14 10:41:08 -0700101 self.log.debug('enqued-packet-in',
alshabib06b449c2017-01-15 17:33:16 -0600102 packet_in=packet_in,
103 queue_len=len(self.packet_in_queue.pending))
104 except _Rendezvous, e:
Zack Williams18357ed2018-11-14 10:41:08 -0700105 self.log.error('grpc-exception', status=e.code())
alshabib06b449c2017-01-15 17:33:16 -0600106 if e.code() == StatusCode.UNAVAILABLE:
107 os.system("kill -15 {}".format(os.getpid()))
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700108
109 reactor.callInThread(receive_packet_in_stream)
110
Zsolt Haraszti217a12e2016-12-19 16:37:55 -0800111 def start_change_event_in_stream(self):
112
113 def receive_change_events():
114 streaming_rpc_method = self.local_stub.ReceiveChangeEvents
Zsolt Haraszti9ed54292017-01-09 18:28:32 -0800115 iterator = streaming_rpc_method(empty_pb2.Empty())
alshabib06b449c2017-01-15 17:33:16 -0600116 try:
117 for event in iterator:
118 reactor.callFromThread(self.change_event_queue.put, event)
Zack Williams18357ed2018-11-14 10:41:08 -0700119 self.log.debug('enqued-change-event',
alshabib06b449c2017-01-15 17:33:16 -0600120 change_event=event,
121 queue_len=len(self.change_event_queue.pending))
122 except _Rendezvous, e:
Zack Williams18357ed2018-11-14 10:41:08 -0700123 self.log.error('grpc-exception', status=e.code())
alshabib06b449c2017-01-15 17:33:16 -0600124 if e.code() == StatusCode.UNAVAILABLE:
125 os.system("kill -15 {}".format(os.getpid()))
Zsolt Haraszti217a12e2016-12-19 16:37:55 -0800126
127 reactor.callInThread(receive_change_events)
128
129 @inlineCallbacks
130 def change_event_processing_loop(self):
131 while True:
132 try:
133 event = yield self.change_event_queue.get()
134 device_id = event.id
135 self.connection_manager.forward_change_event(device_id, event)
136 except Exception, e:
Zack Williams18357ed2018-11-14 10:41:08 -0700137 self.log.exception('failed-in-packet-in-handler', e=e)
Zsolt Haraszti217a12e2016-12-19 16:37:55 -0800138 if self.stopped:
139 break
140
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700141 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700142 def packet_in_forwarder_loop(self):
143 while True:
144 packet_in = yield self.packet_in_queue.get()
145 device_id = packet_in.id
146 ofp_packet_in = packet_in.packet_in
Saurav Das45c53142019-06-07 11:36:55 -0700147 self.log.debug('grpc client to send packet-in')
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700148 self.connection_manager.forward_packet_in(device_id, ofp_packet_in)
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -0700149 if self.stopped:
150 break
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700151
152 def send_packet_out(self, device_id, packet_out):
Saurav Das45c53142019-06-07 11:36:55 -0700153 self.log.debug('grpc client to send packet-out')
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700154 packet_out = PacketOut(id=device_id, packet_out=packet_out)
155 self.packet_out_queue.put(packet_out)
156
157 @inlineCallbacks
Jonathan Hart8d21c322018-04-17 07:42:02 -0700158 def get_port(self, device_id, port_id):
159 req = LogicalPortId(id=device_id, port_id=port_id)
160 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400161 self.local_stub.GetLogicalDevicePort, req, timeout=self.grpc_timeout)
Jonathan Hart8d21c322018-04-17 07:42:02 -0700162 returnValue(res)
163
164 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700165 def get_port_list(self, device_id):
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700166 req = ID(id=device_id)
167 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400168 self.local_stub.ListLogicalDevicePorts, req, timeout=self.grpc_timeout)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700169 returnValue(res.items)
170
171 @inlineCallbacks
Jonathan Hart8d21c322018-04-17 07:42:02 -0700172 def enable_port(self, device_id, port_id):
173 req = LogicalPortId(
174 id=device_id,
175 port_id=port_id
176 )
177 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400178 self.local_stub.EnableLogicalDevicePort, req, timeout=self.grpc_timeout)
Jonathan Hart8d21c322018-04-17 07:42:02 -0700179 returnValue(res)
180
181 @inlineCallbacks
182 def disable_port(self, device_id, port_id):
183 req = LogicalPortId(
184 id=device_id,
185 port_id=port_id
186 )
187 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400188 self.local_stub.DisableLogicalDevicePort, req, timeout=self.grpc_timeout)
Jonathan Hart8d21c322018-04-17 07:42:02 -0700189 returnValue(res)
190
191 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700192 def get_device_info(self, device_id):
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700193 req = ID(id=device_id)
194 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400195 self.local_stub.GetLogicalDevice, req, timeout=self.grpc_timeout)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700196 returnValue(res)
197
198 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700199 def update_flow_table(self, device_id, flow_mod):
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700200 req = FlowTableUpdate(
201 id=device_id,
202 flow_mod=flow_mod
203 )
204 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400205 self.local_stub.UpdateLogicalDeviceFlowTable, req, timeout=self.grpc_timeout)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700206 returnValue(res)
207
208 @inlineCallbacks
Koray Kokten8592a232018-08-27 07:41:14 +0000209 def update_meter_mod_table(self, device_id, meter_mod):
210 req = MeterModUpdate(
211 id=device_id,
212 meter_mod=meter_mod
213 )
214 res = yield threads.deferToThread(
Gamze Abaka53cc0a22019-01-31 12:06:11 +0000215 self.local_stub.UpdateLogicalDeviceMeterTable, req, timeout=self.grpc_timeout)
Koray Kokten8592a232018-08-27 07:41:14 +0000216 returnValue(res)
217
218 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700219 def update_group_table(self, device_id, group_mod):
Zsolt Haraszti66862032016-11-28 14:28:39 -0800220 req = FlowGroupTableUpdate(
Zsolt Haraszti8a774382016-10-24 18:25:54 -0700221 id=device_id,
222 group_mod=group_mod
223 )
224 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400225 self.local_stub.UpdateLogicalDeviceFlowGroupTable, req, timeout=self.grpc_timeout)
Zsolt Haraszti8a774382016-10-24 18:25:54 -0700226 returnValue(res)
227
228 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700229 def list_flows(self, device_id):
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700230 req = ID(id=device_id)
231 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400232 self.local_stub.ListLogicalDeviceFlows, req, timeout=self.grpc_timeout)
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700233 returnValue(res.items)
Zsolt Haraszti8a774382016-10-24 18:25:54 -0700234
235 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700236 def list_groups(self, device_id):
Zsolt Haraszti8a774382016-10-24 18:25:54 -0700237 req = ID(id=device_id)
238 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400239 self.local_stub.ListLogicalDeviceFlowGroups, req, timeout=self.grpc_timeout)
Zsolt Haraszti8a774382016-10-24 18:25:54 -0700240 returnValue(res.items)
Nicolas Palpacuerfd7b8b12018-06-15 13:58:06 -0400241
242 @inlineCallbacks
Gamze Abaka53cc0a22019-01-31 12:06:11 +0000243 def list_meters(self, device_id):
244 req = ID(id=device_id)
245 res = yield threads.deferToThread(
246 self.local_stub.ListLogicalDeviceMeters, req, timeout=self.grpc_timeout)
247 returnValue(res.items)
248
249 @inlineCallbacks
Nicolas Palpacuerfd7b8b12018-06-15 13:58:06 -0400250 def list_ports(self, device_id):
251 req = ID(id=device_id)
252 res = yield threads.deferToThread(
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400253 self.local_stub.ListLogicalDevicePorts, req, timeout=self.grpc_timeout)
254 returnValue(res.items)
255
256 @inlineCallbacks
257 def list_logical_devices(self):
258 res = yield threads.deferToThread(
259 self.local_stub.ListLogicalDevices, empty_pb2.Empty(), timeout=self.grpc_timeout)
260 returnValue(res.items)
261
262 @inlineCallbacks
Nicolas Palpacuer75ba77f2018-08-27 17:26:57 -0400263 def list_reachable_logical_devices(self):
264 res = yield threads.deferToThread(
265 self.local_stub.ListReachableLogicalDevices, empty_pb2.Empty(),
266 timeout=self.grpc_timeout)
267 returnValue(res.items)
268
269 @inlineCallbacks
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400270 def subscribe(self, subscriber):
271 res = yield threads.deferToThread(
272 self.local_stub.Subscribe, subscriber, timeout=self.grpc_timeout)
273 returnValue(res)