blob: 2496dd5887fb46da8845ca71555435080d389898 [file] [log] [blame]
Khen Nursimulu68b9be32016-10-25 11:57:04 -04001#
Zsolt Haraszti3eb27a52017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Khen Nursimulu68b9be32016-10-25 11:57:04 -04003#
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#
alshabib06b449c2017-01-15 17:33:16 -060016import os
Khen Nursimulu68b9be32016-10-25 11:57:04 -040017
18import sys
19
20from twisted.internet import reactor
21from twisted.internet.defer import Deferred, inlineCallbacks, returnValue
22
23from common.utils.asleep import asleep
24from common.utils.consulhelpers import get_endpoint_from_consul
25from structlog import get_logger
26import grpc
Rouzbahan Rashidi-Tabrizi34b7dd72017-03-13 17:45:20 -040027from grpc import StatusCode
28from grpc._channel import _Rendezvous
Zsolt Haraszti1edb8282016-11-08 10:57:19 -080029from ofagent.protos import third_party
Khen Nursimulu68b9be32016-10-25 11:57:04 -040030from protos import voltha_pb2
Stephane Barbarie2940dac2017-08-18 14:15:17 -040031from protos.voltha_pb2 import OfAgentSubscriber
Khen Nursimulu68b9be32016-10-25 11:57:04 -040032from grpc_client import GrpcClient
33
34from agent import Agent
Stephane Barbarie2940dac2017-08-18 14:15:17 -040035from common.utils.dockerhelpers import get_my_containers_name
Zsolt Haraszti7eeb2b32016-11-06 14:04:55 -080036
Khen Nursimulu68b9be32016-10-25 11:57:04 -040037
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070038log = get_logger()
Zsolt Haraszti7eeb2b32016-11-06 14:04:55 -080039# _ = third_party
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070040
Khen Nursimulu68b9be32016-10-25 11:57:04 -040041class ConnectionManager(object):
Richard Jankowskidb9a86e2018-09-17 13:33:29 -040042 def __init__(self, consul_endpoint, vcore_endpoint, vcore_grpc_timeout,
43 controller_endpoints, instance_id,
Girishf6eeaea2017-11-13 10:53:57 +053044 enable_tls=False, key_file=None, cert_file=None,
Stephane Barbarie2940dac2017-08-18 14:15:17 -040045 vcore_retry_interval=0.5, devices_refresh_interval=5,
46 subscription_refresh_interval=5):
Khen Nursimulu68b9be32016-10-25 11:57:04 -040047
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070048 log.info('init-connection-manager')
Stephane Barbarie2940dac2017-08-18 14:15:17 -040049 log.info('list-of-controllers', controller_endpoints=controller_endpoints)
sgovindacc736782017-05-02 20:06:37 +053050 self.controller_endpoints = controller_endpoints
Khen Nursimulu68b9be32016-10-25 11:57:04 -040051 self.consul_endpoint = consul_endpoint
Stephane Barbarie2940dac2017-08-18 14:15:17 -040052 self.vcore_endpoint = vcore_endpoint
Richard Jankowskidb9a86e2018-09-17 13:33:29 -040053 self.grpc_timeout = vcore_grpc_timeout
Richard Jankowskic9d89202018-01-25 10:25:10 -050054 self.instance_id = instance_id
Girishf6eeaea2017-11-13 10:53:57 +053055 self.enable_tls = enable_tls
56 self.key_file = key_file
57 self.cert_file = cert_file
Khen Nursimulu68b9be32016-10-25 11:57:04 -040058
59 self.channel = None
Stephane Barbarie2940dac2017-08-18 14:15:17 -040060 self.grpc_client = None # single, shared gRPC client to vcore
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070061
sgovindacc736782017-05-02 20:06:37 +053062 self.agent_map = {} # (datapath_id, controller_endpoint) -> Agent()
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070063 self.device_id_to_datapath_id_map = {}
Khen Nursimulu68b9be32016-10-25 11:57:04 -040064
Stephane Barbarie2940dac2017-08-18 14:15:17 -040065 self.vcore_retry_interval = vcore_retry_interval
Khen Nursimulu68b9be32016-10-25 11:57:04 -040066 self.devices_refresh_interval = devices_refresh_interval
Stephane Barbarie2940dac2017-08-18 14:15:17 -040067 self.subscription_refresh_interval = subscription_refresh_interval
68 self.subscription = None
Khen Nursimulu68b9be32016-10-25 11:57:04 -040069
70 self.running = False
71
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070072 def start(self):
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070073
Khen Nursimulu68b9be32016-10-25 11:57:04 -040074 if self.running:
75 return
76
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070077 log.debug('starting')
Khen Nursimulu68b9be32016-10-25 11:57:04 -040078
79 self.running = True
80
Stephane Barbarie2940dac2017-08-18 14:15:17 -040081 # Start monitoring the vcore grpc channel
82 reactor.callInThread(self.monitor_vcore_grpc_channel)
Khen Nursimulu68b9be32016-10-25 11:57:04 -040083
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070084 # Start monitoring logical devices and manage agents accordingly
85 reactor.callLater(0, self.monitor_logical_devices)
Khen Nursimulu68b9be32016-10-25 11:57:04 -040086
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070087 log.info('started')
88
Zsolt Haraszticd22adc2016-10-25 00:13:06 -070089 return self
Khen Nursimulu68b9be32016-10-25 11:57:04 -040090
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070091 def stop(self):
92 log.debug('stopping')
Khen Nursimulu68b9be32016-10-25 11:57:04 -040093 # clean up all controller connections
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -070094 for agent in self.agent_map.itervalues():
95 agent.stop()
Khen Nursimulu68b9be32016-10-25 11:57:04 -040096 self.running = False
Stephane Barbarie2940dac2017-08-18 14:15:17 -040097
98 self._reset_grpc_attributes()
99
Zsolt Haraszti2bdb6b32016-11-03 16:56:17 -0700100 log.info('stopped')
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400101
102 def resolve_endpoint(self, endpoint):
103 ip_port_endpoint = endpoint
104 if endpoint.startswith('@'):
105 try:
106 ip_port_endpoint = get_endpoint_from_consul(
107 self.consul_endpoint, endpoint[1:])
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700108 log.info(
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400109 '{}-service-endpoint-found'.format(endpoint), address=ip_port_endpoint)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400110 except Exception as e:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400111 log.error('{}-service-endpoint-not-found'.format(endpoint), exception=repr(e))
112 log.error('committing-suicide')
alshabib06b449c2017-01-15 17:33:16 -0600113 # Committing suicide in order to let docker restart ofagent
114 os.system("kill -15 {}".format(os.getpid()))
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400115 if ip_port_endpoint:
116 host, port = ip_port_endpoint.split(':', 2)
117 return host, int(port)
118
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400119 def _reset_grpc_attributes(self):
120 log.debug('start-reset-grpc-attributes')
121
122 if self.grpc_client is not None:
123 self.grpc_client.stop()
124
125 if self.channel is not None:
126 del self.channel
127
128 self.is_alive = False
129 self.channel = None
130 self.subscription = None
131 self.grpc_client = None
132
133 log.debug('stop-reset-grpc-attributes')
134
135 def _assign_grpc_attributes(self):
136 log.debug('start-assign-grpc-attributes')
137
138 host, port = self.resolve_endpoint(self.vcore_endpoint)
139 log.info('revolved-vcore-endpoint', endpoint=self.vcore_endpoint, host=host, port=port)
140
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400141 assert host is not None
142 assert port is not None
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400143
144 # Establish a connection to the vcore GRPC server
145 self.channel = grpc.insecure_channel('{}:{}'.format(host, port))
146 self.is_alive = True
147
148 log.debug('stop-assign-grpc-attributes')
149
150 @inlineCallbacks
151 def monitor_vcore_grpc_channel(self):
152 log.debug('start-monitor-vcore-grpc-channel')
153
154 while self.running:
155 try:
156 # If a subscription is not yet assigned then establish new GRPC connection
157 # ... otherwise keep using existing connection details
158 if self.subscription is None:
159 self._assign_grpc_attributes()
160
161 # Send subscription request to register the current ofagent instance
Richard Jankowskic9d89202018-01-25 10:25:10 -0500162 container_name = self.instance_id
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400163 if self.grpc_client is None:
164 self.grpc_client = GrpcClient(self, self.channel, self.grpc_timeout)
165 subscription = yield self.grpc_client.subscribe(
166 OfAgentSubscriber(ofagent_id=container_name))
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400167
168 # If the subscriber id matches the current instance
169 # ... then the subscription has succeeded
170 if subscription is not None and subscription.ofagent_id == container_name:
171 if self.subscription is None:
172 # Keep details on the current GRPC session and subscription
173 log.debug('subscription-with-vcore-successful', subscription=subscription)
174 self.subscription = subscription
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400175 self.grpc_client.start()
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400176
177 # Sleep a bit in between each subscribe
178 yield asleep(self.subscription_refresh_interval)
179
180 # Move on to next subscribe request
181 continue
182
183 # The subscription did not succeed, reset and move on
184 else:
185 log.info('subscription-with-vcore-unavailable', subscription=subscription)
186
187 except _Rendezvous, e:
188 log.error('subscription-with-vcore-terminated',exception=e, status=e.code())
189
190 except Exception as e:
191 log.exception('unexpected-subscription-termination-with-vcore', e=e)
192
193 # Reset grpc details
194 # The vcore instance is either not available for subscription
195 # or a failure occurred with the existing communication.
196 self._reset_grpc_attributes()
197
198 # Sleep for a short period and retry
199 yield asleep(self.vcore_retry_interval)
200
201 log.debug('stop-monitor-vcore-grpc-channel')
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400202
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400203 @inlineCallbacks
204 def get_list_of_logical_devices_from_voltha(self):
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700205
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400206 while self.running:
207 log.info('retrieve-logical-device-list')
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400208 try:
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400209 devices = yield self.grpc_client.list_logical_devices()
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400210 for device in devices:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400211 log.info("logical-device-entry", id=device.id, datapath_id=device.datapath_id)
212
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700213 returnValue(devices)
214
Rouzbahan Rashidi-Tabrizi34b7dd72017-03-13 17:45:20 -0400215 except _Rendezvous, e:
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400216 status = e.code()
217 log.error('vcore-communication-failure', exception=e, status=status)
218 if status == StatusCode.UNAVAILABLE or status == StatusCode.DEADLINE_EXCEEDED:
Rouzbahan Rashidi-Tabrizi34b7dd72017-03-13 17:45:20 -0400219 os.system("kill -15 {}".format(os.getpid()))
220
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400221 except Exception as e:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400222 log.exception('logical-devices-retrieval-failure', exception=e)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400223
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400224 log.info('reconnect', after_delay=self.vcore_retry_interval)
225 yield asleep(self.vcore_retry_interval)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400226
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700227 def refresh_agent_connections(self, devices):
228 """
229 Based on the new device list, update the following state in the class:
230 * agent_map
231 * datapath_map
232 * device_id_map
233 :param devices: full device list freshly received from Voltha
234 :return: None
235 """
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400236
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700237 # Use datapath ids for deciding what's new and what's obsolete
238 desired_datapath_ids = set(d.datapath_id for d in devices)
sgovindacc736782017-05-02 20:06:37 +0530239 current_datapath_ids = set(datapath_ids[0] for datapath_ids in self.agent_map.iterkeys())
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400240
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700241 # if identical, nothing to do
242 if desired_datapath_ids == current_datapath_ids:
243 return
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400244
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700245 # ... otherwise calculate differences
246 to_add = desired_datapath_ids.difference(current_datapath_ids)
247 to_del = current_datapath_ids.difference(desired_datapath_ids)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400248
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700249 # remove what we don't need
250 for datapath_id in to_del:
251 self.delete_agent(datapath_id)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400252
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700253 # start new agents as needed
254 for device in devices:
255 if device.datapath_id in to_add:
256 self.create_agent(device)
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400257
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700258 log.debug('updated-agent-list', count=len(self.agent_map))
259 log.debug('updated-device-id-to-datapath-id-map',
260 map=str(self.device_id_to_datapath_id_map))
261
262 def create_agent(self, device):
263 datapath_id = device.datapath_id
264 device_id = device.id
sgovindacc736782017-05-02 20:06:37 +0530265 for controller_endpoint in self.controller_endpoints:
266 agent = Agent(controller_endpoint, datapath_id,
Girishf6eeaea2017-11-13 10:53:57 +0530267 device_id, self.grpc_client, self.enable_tls,
268 self.key_file, self.cert_file)
sgovindacc736782017-05-02 20:06:37 +0530269 agent.start()
270 self.agent_map[(datapath_id,controller_endpoint)] = agent
271 self.device_id_to_datapath_id_map[device_id] = datapath_id
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700272
273 def delete_agent(self, datapath_id):
sgovindacc736782017-05-02 20:06:37 +0530274 for controller_endpoint in self.controller_endpoints:
275 agent = self.agent_map[(datapath_id,controller_endpoint)]
276 device_id = agent.get_device_id()
277 agent.stop()
278 del self.agent_map[(datapath_id,controller_endpoint)]
279 del self.device_id_to_datapath_id_map[device_id]
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400280
281 @inlineCallbacks
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700282 def monitor_logical_devices(self):
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400283 log.debug('start-monitor-logical-devices')
284
285 while self.running:
286 log.info('monitoring-logical-devices')
287
alshabibc3fb4942017-01-26 15:34:24 -0800288 # should change to a gRPC streaming call
289 # see https://jira.opencord.org/browse/CORD-821
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700290
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400291 try:
Richard Jankowskidb9a86e2018-09-17 13:33:29 -0400292 if self.channel is not None and self.grpc_client is not None and \
293 self.subscription is not None:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400294 # get current list from Voltha
295 devices = yield self.get_list_of_logical_devices_from_voltha()
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700296
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400297 # update agent list and mapping tables as needed
298 self.refresh_agent_connections(devices)
299 else:
300 log.info('vcore-communication-unavailable')
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700301
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400302 # wait before next poll
303 yield asleep(self.devices_refresh_interval)
304
305 except _Rendezvous, e:
306 log.error('vcore-communication-failure', exception=repr(e), status=e.code())
307
308 except Exception as e:
309 log.exception('unexpected-vcore-communication-failure', exception=repr(e))
310
311 log.debug('stop-monitor-logical-devices')
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400312
Zsolt Haraszticd22adc2016-10-25 00:13:06 -0700313 def forward_packet_in(self, device_id, ofp_packet_in):
314 datapath_id = self.device_id_to_datapath_id_map.get(device_id, None)
315 if datapath_id:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400316 for controller_endpoint in self.controller_endpoints:
317 agent = self.agent_map[(datapath_id, controller_endpoint)]
318 agent.forward_packet_in(ofp_packet_in)
Zsolt Haraszti217a12e2016-12-19 16:37:55 -0800319
320 def forward_change_event(self, device_id, event):
321 datapath_id = self.device_id_to_datapath_id_map.get(device_id, None)
322 if datapath_id:
Stephane Barbarie2940dac2017-08-18 14:15:17 -0400323 for controller_endpoint in self.controller_endpoints:
324 agent = self.agent_map[(datapath_id, controller_endpoint)]
325 agent.forward_change_event(event)