blob: 6401a183d3d380d42a529b0cff043bbfa2f537ef [file] [log] [blame]
A.R Karthick95d044e2016-06-10 18:44:36 -07001#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07002# Copyright 2016-present Ciena Corporation
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
A.R Karthick95d044e2016-06-10 18:44:36 -07007#
Chetan Gaonkercfcce782016-05-10 10:10:42 -07008# http://www.apache.org/licenses/LICENSE-2.0
A.R Karthick95d044e2016-06-10 18:44:36 -07009#
Chetan Gaonkercfcce782016-05-10 10:10:42 -070010# 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#
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080016import json
17import requests
18import os,sys,time
A R Karthickb03cecd2016-07-27 10:27:55 -070019from OltConfig import OltConfig
20import fcntl, socket, struct
21
A R Karthick078e63a2016-07-28 13:59:31 -070022def get_mac(iface = None, pad = 4):
23 if iface is None:
24 iface = os.getenv('TEST_SWITCH', 'ovsbr0')
A R Karthickb03cecd2016-07-27 10:27:55 -070025 s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
26 try:
27 info = fcntl.ioctl(s.fileno(), 0x8927, struct.pack('256s', bytes(iface[:15])))
28 except:
29 info = ['0'] * 24
30 s.close()
31 sep = ''
32 if pad == 0:
33 sep = ':'
34 return '0'*pad + sep.join(['%02x' %ord(char) for char in info[18:24]])
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080035
A R Karthick2b93d6a2016-09-06 15:19:09 -070036def get_controller():
37 controller = os.getenv('ONOS_CONTROLLER_IP') or 'localhost'
38 controller = controller.split(',')[0]
39 return controller
40
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080041class OnosCtrl:
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070042
43 auth = ('karaf', 'karaf')
A R Karthick2b93d6a2016-09-06 15:19:09 -070044 controller = get_controller()
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070045 cfg_url = 'http://%s:8181/onos/v1/network/configuration/' %(controller)
A.R Karthick95d044e2016-06-10 18:44:36 -070046 maven_repo = 'http://central.maven.org/maven2/org/onosproject'
Chetan Gaonker93e302d2016-04-05 10:51:07 -070047 applications_url = 'http://%s:8181/onos/v1/applications' %(controller)
ChetanGaonkerf9c2f8b2016-07-19 15:49:41 -070048 host_cfg_url = 'http://%s:8181/onos/v1/hosts/' %(controller)
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070049
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080050 def __init__(self, app, controller = None):
51 self.app = app
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070052 if controller is not None:
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080053 self.controller = controller
54 self.app_url = 'http://%s:8181/onos/v1/applications/%s' %(self.controller, self.app)
55 self.cfg_url = 'http://%s:8181/onos/v1/network/configuration/' %(self.controller)
56 self.auth = ('karaf', 'karaf')
57
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070058 @classmethod
A R Karthickbd82f362016-11-10 15:08:52 -080059 def config(cls, config, controller=None):
A R Karthick4e0c0912016-08-17 16:57:42 -070060 if config is not None:
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080061 json_data = json.dumps(config)
ChetanGaonker689b3862016-10-17 16:25:01 -070062 if controller is None:
63 print('default Onos config url is %s'%cls.cfg_url)
64 resp = requests.post(cls.cfg_url, auth = cls.auth, data = json_data)
65 else:
66 cfg_url = 'http://%s:8181/onos/v1/network/configuration/' %(controller)
67 print('non-default Onos config url is %s'%cfg_url)
68 resp = requests.post(cfg_url, auth = cls.auth, data = json_data)
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080069 return resp.ok, resp.status_code
70 return False, 400
71
A R Karthickbd82f362016-11-10 15:08:52 -080072 @classmethod
73 def delete(cls, config, controller=None):
74 if config:
75 json_data = json.dumps(config)
76 if controller is None:
77 print('default Onos config url is %s'%cls.cfg_url)
78 resp = requests.delete(cls.cfg_url, auth = cls.auth, data = json_data)
79 else:
80 cfg_url = 'http://%s:8181/onos/v1/network/configuration/' %(controller)
81 print('non-default Onos config url is %s'%cfg_url)
82 resp = requests.delete(cfg_url, auth = cls.auth, data = json_data)
83 return resp.ok, resp.status_code
84 return False, 400
85
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -080086 def activate(self):
87 resp = requests.post(self.app_url + '/active', auth = self.auth)
88 return resp.ok, resp.status_code
89
90 def deactivate(self):
91 resp = requests.delete(self.app_url + '/active', auth = self.auth)
92 return resp.ok, resp.status_code
93
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070094 @classmethod
A R Karthick946141b2017-01-24 16:37:47 -080095 def get_devices(cls, controller = None):
96 if controller is None:
97 controller = cls.controller
98 url = 'http://%s:8181/onos/v1/devices' %(controller)
Chetan Gaonkera2b87df2016-03-31 15:41:31 -070099 result = requests.get(url, auth = cls.auth)
100 if result.ok:
101 devices = result.json()['devices']
102 return filter(lambda d: d['available'], devices)
Chetan Gaonker4a25e2b2016-03-04 14:45:15 -0800103
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700104 return None
105
106 @classmethod
A R Karthick946141b2017-01-24 16:37:47 -0800107 def get_device_id(cls, controller = None):
A R Karthickb03cecd2016-07-27 10:27:55 -0700108 '''If running under olt, we get the first switch connected to onos'''
109 olt = OltConfig()
A R Karthick078e63a2016-07-28 13:59:31 -0700110 did = 'of:' + get_mac()
A R Karthickb03cecd2016-07-27 10:27:55 -0700111 if olt.on_olt():
A R Karthick946141b2017-01-24 16:37:47 -0800112 devices = cls.get_devices(controller = controller)
A R Karthickb03cecd2016-07-27 10:27:55 -0700113 if devices:
114 dids = map(lambda d: d['id'], devices)
115 if len(dids) == 1:
116 did = dids[0]
117 else:
118 ###If we have more than 1, then check for env before using first one
119 did = os.getenv('OLT_DEVICE_ID', dids[0])
A R Karthickb03cecd2016-07-27 10:27:55 -0700120
121 return did
122
123 @classmethod
A R Karthick946141b2017-01-24 16:37:47 -0800124 def get_device_ids(cls, controller = None):
A R Karthick0f6b6842016-12-06 17:17:44 -0800125 '''If running under olt, we get the first switch connected to onos'''
126 olt = OltConfig()
127 did = 'of:' + get_mac()
128 device_ids = []
129 if olt.on_olt():
A R Karthick946141b2017-01-24 16:37:47 -0800130 devices = cls.get_devices(controller = controller)
A R Karthick0f6b6842016-12-06 17:17:44 -0800131 if devices:
132 device_ids = map(lambda d: d['id'], devices)
133 else:
134 device_ids.append(did)
135
136 return device_ids
137
138 @classmethod
ChetanGaonker689b3862016-10-17 16:25:01 -0700139 def get_flows(cls, device_id,controller=None):
140 if controller is None:
A R Karthick946141b2017-01-24 16:37:47 -0800141 url = 'http://%s:8181/onos/v1/flows/' %(cls.controller) + device_id
ChetanGaonker689b3862016-10-17 16:25:01 -0700142 else:
A R Karthick946141b2017-01-24 16:37:47 -0800143 url = 'http://%s:8181/onos/v1/flows/' %(controller) + device_id
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700144 result = requests.get(url, auth = cls.auth)
145 if result.ok:
146 return result.json()['flows']
147 return None
148
149 @classmethod
A R Karthick0f6b6842016-12-06 17:17:44 -0800150 def get_ports_device(cls, device_id, controller = None):
151 if controller is None:
152 url = 'http://{}:8181/onos/v1/devices/{}/ports'.format(cls.controller, device_id)
153 else:
154 url = 'http://{}:8181/onos/v1/devices/{}/ports'.format(controller, device_id)
155
156 result = requests.get(url, auth = cls.auth)
157 if result.ok:
158 return result.json()['ports']
159 return None
160
161 @classmethod
162 def cord_olt_device_map(cls, olt_config, controller = None):
163 olt_device_list = []
164 olt_port_map, _ = olt_config.olt_port_map()
165 switches = olt_port_map['switches']
166 if len(switches) > 1:
A R Karthick946141b2017-01-24 16:37:47 -0800167 device_ids = cls.get_device_ids(controller = controller)
A R Karthick0f6b6842016-12-06 17:17:44 -0800168 else:
A R Karthick946141b2017-01-24 16:37:47 -0800169 did = cls.get_device_id(controller = controller)
A R Karthick0f6b6842016-12-06 17:17:44 -0800170 if did is None:
171 return olt_device_list
172 uplink_dict = {}
173 uplink_dict['did'] = did
174 uplink_dict['switch'] = switches[0]
175 uplink_dict['uplink'] = str(olt_config.olt_conf['uplink'])
176 uplink_dict['vlan'] = str(olt_config.olt_conf['vlan'])
177 olt_device_list.append(uplink_dict)
178 return olt_device_list
179
180 for did in device_ids:
181 ports = cls.get_ports_device(did, controller = controller)
182 if ports:
183 matched = False
184 for port in ports:
185 for switch in switches:
186 if port['annotations']['portName'] == switch:
187 uplink_dict = {}
188 uplink = olt_port_map[switch]['uplink']
189 uplink_dict['did'] = did
190 uplink_dict['switch'] = switch
191 uplink_dict['uplink'] = str(uplink)
192 uplink_dict['vlan'] = str(olt_config.olt_conf['vlan'])
193 olt_device_list.append(uplink_dict)
194 matched = True
195 break
196 if matched == True:
197 break
198
199 return olt_device_list
200
201 @classmethod
202 def cord_olt_config(cls, olt_config, controller=None):
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700203 '''Configures OLT data for existing devices/switches'''
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700204 did_dict = {}
205 config = { 'devices' : did_dict }
A R Karthick0f6b6842016-12-06 17:17:44 -0800206 olt_device_list = cls.cord_olt_device_map(olt_config, controller = controller)
207 if not olt_device_list:
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700208 return
A R Karthick0f6b6842016-12-06 17:17:44 -0800209 for olt_map in olt_device_list:
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700210 access_device_dict = {}
A R Karthick0f6b6842016-12-06 17:17:44 -0800211 device_data = {'uplink': olt_map['uplink'], 'vlan': olt_map['vlan']}
212 access_device_dict['accessDevice'] = device_data
213 did_dict[olt_map['did']] = access_device_dict
Chetan Gaonkera2b87df2016-03-31 15:41:31 -0700214
215 ##configure the device list with access information
A R Karthick0f6b6842016-12-06 17:17:44 -0800216 return cls.config(config, controller=controller)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700217
218 @classmethod
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700219 def install_app(cls, app_file, onos_ip = None):
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700220 params = {'activate':'true'}
221 headers = {'content-type':'application/octet-stream'}
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700222 url = cls.applications_url if onos_ip is None else 'http://{0}:8181/onos/v1/applications'.format(onos_ip)
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700223 with open(app_file, 'rb') as payload:
Chetan Gaonker5209fe82016-04-19 10:09:53 -0700224 result = requests.post(url, auth = cls.auth,
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700225 params = params, headers = headers,
226 data = payload)
ChetanGaonker689b3862016-10-17 16:25:01 -0700227 print('result.ok, result.status_code are %s and %s'%(result.ok, result.status_code))
Chetan Gaonker93e302d2016-04-05 10:51:07 -0700228 return result.ok, result.status_code
A R Karthickb7e80902016-05-17 09:38:31 -0700229
230 @classmethod
A.R Karthick95d044e2016-06-10 18:44:36 -0700231 def install_app_from_url(cls, app_name, app_version, app_url = None, onos_ip = None):
232 params = {'activate':'true'}
233 headers = {'content-type':'application/json'}
234 if app_url is None:
235 app_oar_file = '{}-{}.oar'.format(app_name, app_version)
236 app_url = '{0}/{1}/{2}/{3}'.format(cls.maven_repo, app_name, app_version, app_oar_file)
237 params['url'] = app_url
238 url = cls.applications_url if onos_ip is None else 'http://{0}:8181/onos/v1/applications'.format(onos_ip)
239 result = requests.post(url, auth = cls.auth,
240 json = params, headers = headers)
241 return result.ok, result.status_code
242
243 @classmethod
A R Karthickb7e80902016-05-17 09:38:31 -0700244 def uninstall_app(cls, app_name, onos_ip = None):
245 params = {'activate':'true'}
246 headers = {'content-type':'application/octet-stream'}
247 url = cls.applications_url if onos_ip is None else 'http://{0}:8181/onos/v1/applications'.format(onos_ip)
248 app_url = '{}/{}'.format(url, app_name)
249 resp = requests.delete(app_url, auth = cls.auth)
250 return resp.ok, resp.status_code
ChetanGaonkerf9c2f8b2016-07-19 15:49:41 -0700251
252 @classmethod
ChetanGaonker689b3862016-10-17 16:25:01 -0700253 def host_config(cls, config,onos_ip=None):
ChetanGaonkerf9c2f8b2016-07-19 15:49:41 -0700254 if config:
255 json_data = json.dumps(config)
ChetanGaonker689b3862016-10-17 16:25:01 -0700256 url = cls.host_cfg_url if onos_ip is None else 'http://%s:8181/onos/v1/hosts/'.format(onos_ip)
ChetanGaonkerf9c2f8b2016-07-19 15:49:41 -0700257 resp = requests.post(cls.host_cfg_url, auth = cls.auth, data = json_data)
258 return resp.ok, resp.status_code
259 return False, 400