Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright 2016 the original author or authors. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 17 | import argparse |
| 18 | import os |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 19 | import readline |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 20 | import sys |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 21 | from optparse import make_option |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 22 | from time import sleep, time |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 23 | |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 24 | import grpc |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 25 | import requests |
| 26 | from cmd2 import Cmd, options |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 27 | from consul import Consul |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 28 | from google.protobuf.empty_pb2 import Empty |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 29 | from simplejson import dumps |
| 30 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 31 | from cli.device import DeviceCli |
Nikolay Titov | 89004ec | 2017-06-19 18:22:42 -0400 | [diff] [blame] | 32 | from cli.xpon import XponCli |
Chip Boling | 69abce8 | 2018-06-18 09:56:23 -0500 | [diff] [blame] | 33 | from cli.omci import OmciCli |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 34 | from cli.alarm_filters import AlarmFiltersCli |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 35 | from cli.logical_device import LogicalDeviceCli |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 36 | from cli.table import print_pb_list_as_table |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 37 | from voltha.core.flow_decomposer import * |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 38 | from voltha.protos import third_party |
| 39 | from voltha.protos import voltha_pb2 |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 40 | from voltha.protos.openflow_13_pb2 import FlowTableUpdate, FlowGroupTableUpdate |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 41 | |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 42 | _ = third_party |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 43 | from cli.utils import pb2dict |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 44 | |
| 45 | defs = dict( |
| 46 | # config=os.environ.get('CONFIG', './cli.yml'), |
| 47 | consul=os.environ.get('CONSUL', 'localhost:8500'), |
| 48 | voltha_grpc_endpoint=os.environ.get('VOLTHA_GRPC_ENDPOINT', |
| 49 | 'localhost:50055'), |
| 50 | voltha_sim_rest_endpoint=os.environ.get('VOLTHA_SIM_REST_ENDPOINT', |
| 51 | 'localhost:18880'), |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 52 | global_request=os.environ.get('GLOBAL_REQUEST', False) |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 53 | ) |
| 54 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 55 | banner = """\ |
Zsolt Haraszti | 313c4be | 2016-12-27 11:06:53 -0800 | [diff] [blame] | 56 | _ _ _ ___ _ ___ |
| 57 | __ _____| | |_| |_ __ _ / __| | |_ _| |
| 58 | \ V / _ \ | _| ' \/ _` | | (__| |__ | | |
| 59 | \_/\___/_|\__|_||_\__,_| \___|____|___| |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 60 | (to exit type quit or hit Ctrl-D) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 61 | """ |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 62 | |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 63 | |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 64 | class VolthaCli(Cmd): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 65 | prompt = 'voltha' |
| 66 | history_file_name = '.voltha_cli_history' |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 67 | |
| 68 | # Settable CLI parameters |
| 69 | voltha_grpc = 'localhost:50055' |
| 70 | voltha_sim_rest = 'localhost:18880' |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 71 | global_request = False |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 72 | max_history_lines = 500 |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 73 | default_device_id = None |
| 74 | default_logical_device_id = None |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 75 | |
| 76 | Cmd.settable.update(dict( |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 77 | voltha_grpc='Voltha GRPC endpoint in form of <host>:<port>', |
| 78 | voltha_sim_rest='Voltha simulation back door for testing in form ' |
| 79 | 'of <host>:<port>', |
| 80 | max_history_lines='Maximum number of history lines stored across ' |
| 81 | 'sessions', |
| 82 | default_device_id='Device id used when no device id is specified', |
| 83 | default_logical_device_id='Logical device id used when no device id ' |
| 84 | 'is specified', |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 85 | )) |
| 86 | |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 87 | # cleanup of superfluous commands from cmd2 |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 88 | del Cmd.do_cmdenvironment |
Steve Crooks | 05f2452 | 2017-02-27 13:32:27 -0500 | [diff] [blame] | 89 | del Cmd.do_load |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 90 | del Cmd.do__relative_load |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 91 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 92 | def __init__(self, voltha_grpc, voltha_sim_rest, global_request=False): |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 93 | VolthaCli.voltha_grpc = voltha_grpc |
| 94 | VolthaCli.voltha_sim_rest = voltha_sim_rest |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 95 | VolthaCli.global_request = global_request |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 96 | Cmd.__init__(self) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 97 | self.prompt = '(' + self.colorize( |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 98 | self.colorize(self.prompt, 'blue'), 'bold') + ') ' |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 99 | self.channel = None |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 100 | self.stub = None |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 101 | self.device_ids_cache = None |
| 102 | self.device_ids_cache_ts = time() |
| 103 | self.logical_device_ids_cache = None |
| 104 | self.logical_device_ids_cache_ts = time() |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 105 | |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 106 | # we override cmd2's method to avoid its optparse conflicting with our |
| 107 | # command line parsing |
| 108 | def cmdloop(self): |
| 109 | self._cmdloop() |
| 110 | |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 111 | def load_history(self): |
| 112 | """Load saved command history from local history file""" |
| 113 | try: |
| 114 | with file(self.history_file_name, 'r') as f: |
| 115 | for line in f.readlines(): |
| 116 | stripped_line = line.strip() |
| 117 | self.history.append(stripped_line) |
| 118 | readline.add_history(stripped_line) |
| 119 | except IOError: |
| 120 | pass # ignore if file cannot be read |
| 121 | |
| 122 | def save_history(self): |
| 123 | try: |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 124 | with open(self.history_file_name, 'w') as f: |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 125 | f.write('\n'.join(self.history[-self.max_history_lines:])) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 126 | except IOError as e: |
| 127 | self.perror('Could not save history in {}: {}'.format( |
| 128 | self.history_file_name, e)) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 129 | else: |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 130 | self.poutput('History saved as {}'.format( |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 131 | self.history_file_name)) |
| 132 | |
| 133 | def perror(self, errmsg, statement=None): |
| 134 | # Touch it up to make sure error is prefixed and colored |
| 135 | Cmd.perror(self, self.colorize('***ERROR: ', 'red') + errmsg, |
| 136 | statement) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 137 | |
| 138 | def get_channel(self): |
| 139 | if self.channel is None: |
| 140 | self.channel = grpc.insecure_channel(self.voltha_grpc) |
| 141 | return self.channel |
| 142 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 143 | def get_stub(self): |
| 144 | if self.stub is None: |
| 145 | self.stub = \ |
| 146 | voltha_pb2.VolthaGlobalServiceStub(self.get_channel()) \ |
| 147 | if self.global_request else \ |
| 148 | voltha_pb2.VolthaLocalServiceStub(self.get_channel()) |
| 149 | return self.stub |
| 150 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 151 | # ~~~~~~~~~~~~~~~~~ ACTUAL COMMAND IMPLEMENTATIONS ~~~~~~~~~~~~~~~~~~~~~~~~ |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 152 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 153 | def do_reset_history(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 154 | """Reset CLI history""" |
| 155 | while self.history: |
| 156 | self.history.pop() |
| 157 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 158 | def do_launch(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 159 | """If Voltha is not running yet, launch it""" |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 160 | raise NotImplementedError('not implemented yet') |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 161 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 162 | def do_restart(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 163 | """Launch Voltha, but if it is already running, terminate it first""" |
| 164 | pass |
| 165 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 166 | def do_adapters(self, line): |
| 167 | """List loaded adapter""" |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 168 | stub = self.get_stub() |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 169 | res = stub.ListAdapters(Empty()) |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 170 | omit_fields = {'config.log_level', 'logical_device_ids'} |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 171 | print_pb_list_as_table('Adapters:', res.items, omit_fields, self.poutput) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 172 | |
| 173 | def get_devices(self): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 174 | stub = self.get_stub() |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 175 | res = stub.ListDevices(Empty()) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 176 | return res.items |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 177 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 178 | def get_logical_devices(self): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 179 | stub = self.get_stub() |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 180 | res = stub.ListLogicalDevices(Empty()) |
| 181 | return res.items |
| 182 | |
| 183 | def do_devices(self, line): |
| 184 | """List devices registered in Voltha""" |
| 185 | devices = self.get_devices() |
| 186 | omit_fields = { |
| 187 | 'adapter', |
| 188 | 'vendor', |
| 189 | 'model', |
| 190 | 'hardware_version', |
ggowdru | 236bd95 | 2017-06-20 20:32:55 -0700 | [diff] [blame] | 191 | 'images', |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 192 | 'firmware_version', |
Nicolas Palpacuer | b83853e | 2018-06-28 16:11:30 -0400 | [diff] [blame] | 193 | 'vendor_id' |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 194 | } |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 195 | print_pb_list_as_table('Devices:', devices, omit_fields, self.poutput) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 196 | |
| 197 | def do_logical_devices(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 198 | """List logical devices in Voltha""" |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 199 | stub = self.get_stub() |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 200 | res = stub.ListLogicalDevices(Empty()) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 201 | omit_fields = { |
| 202 | 'desc.mfr_desc', |
| 203 | 'desc.hw_desc', |
| 204 | 'desc.sw_desc', |
| 205 | 'desc.dp_desc', |
| 206 | 'desc.serial_number', |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 207 | 'switch_features.capabilities' |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 208 | } |
Jonathan Hart | 7d4a23d | 2018-06-28 07:36:28 -0700 | [diff] [blame] | 209 | presfns = { |
| 210 | 'datapath_id': lambda x: "{0:0{1}x}".format(int(x), 16) |
| 211 | } |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 212 | print_pb_list_as_table('Logical devices:', res.items, omit_fields, |
Jonathan Hart | 7d4a23d | 2018-06-28 07:36:28 -0700 | [diff] [blame] | 213 | self.poutput, presfns=presfns) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 214 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 215 | def do_device(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 216 | """Enter device level command mode""" |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 217 | device_id = line.strip() or self.default_device_id |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 218 | if not device_id: |
| 219 | raise Exception('<device-id> parameter needed') |
Venkata Telu | 133b27d | 2018-06-12 14:22:28 -0500 | [diff] [blame] | 220 | if device_id not in self.device_ids(): |
Venkata Telu | 35cc472 | 2018-06-01 12:05:30 -0500 | [diff] [blame] | 221 | self.poutput( self.colorize('Error: ', 'red') + |
| 222 | 'There is no such device') |
| 223 | raise Exception('<device-id> is not a valid one') |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 224 | sub = DeviceCli(device_id, self.get_stub) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 225 | sub.cmdloop() |
| 226 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 227 | def do_logical_device(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 228 | """Enter logical device level command mode""" |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 229 | logical_device_id = line.strip() or self.default_logical_device_id |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 230 | if not logical_device_id: |
| 231 | raise Exception('<logical-device-id> parameter needed') |
Venkata Telu | 133b27d | 2018-06-12 14:22:28 -0500 | [diff] [blame] | 232 | if logical_device_id not in self.logical_device_ids(): |
Venkata Telu | 35cc472 | 2018-06-01 12:05:30 -0500 | [diff] [blame] | 233 | self.poutput( self.colorize('Error: ', 'red') + |
| 234 | 'There is no such device') |
| 235 | raise Exception('<logical-device-id> is not a valid one') |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 236 | sub = LogicalDeviceCli(logical_device_id, self.get_stub) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 237 | sub.cmdloop() |
| 238 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 239 | def device_ids(self, force_refresh=False): |
| 240 | if force_refresh or self.device_ids is None or \ |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 241 | (time() - self.device_ids_cache_ts) > 1: |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 242 | self.device_ids_cache = [d.id for d in self.get_devices()] |
| 243 | self.device_ids_cache_ts = time() |
| 244 | return self.device_ids_cache |
| 245 | |
| 246 | def logical_device_ids(self, force_refresh=False): |
| 247 | if force_refresh or self.logical_device_ids is None or \ |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 248 | (time() - self.logical_device_ids_cache_ts) > 1: |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 249 | self.logical_device_ids_cache = [d.id for d |
| 250 | in self.get_logical_devices()] |
| 251 | self.logical_device_ids_cache_ts = time() |
| 252 | return self.logical_device_ids_cache |
| 253 | |
| 254 | def complete_device(self, text, line, begidx, endidx): |
| 255 | if not text: |
| 256 | completions = self.device_ids()[:] |
| 257 | else: |
| 258 | completions = [d for d in self.device_ids() if d.startswith(text)] |
| 259 | return completions |
| 260 | |
| 261 | def complete_logical_device(self, text, line, begidx, endidx): |
| 262 | if not text: |
| 263 | completions = self.logical_device_ids()[:] |
| 264 | else: |
| 265 | completions = [d for d in self.logical_device_ids() |
| 266 | if d.startswith(text)] |
| 267 | return completions |
| 268 | |
Nikolay Titov | 89004ec | 2017-06-19 18:22:42 -0400 | [diff] [blame] | 269 | def do_xpon(self, line): |
| 270 | """xpon <optional> [device_ID] - Enter xpon level command mode""" |
| 271 | device_id = line.strip() |
Nikolay Titov | 3f0c9dd | 2017-07-17 17:37:25 -0400 | [diff] [blame] | 272 | if device_id: |
| 273 | stub = self.get_stub() |
| 274 | try: |
| 275 | res = stub.GetDevice(voltha_pb2.ID(id=device_id)) |
| 276 | except Exception: |
Nikolay Titov | 176f1db | 2017-08-10 12:38:43 -0400 | [diff] [blame] | 277 | self.poutput( |
| 278 | self.colorize('Error: ', 'red') + 'No device id ' + |
| 279 | self.colorize(device_id, 'blue') + ' is found') |
Nikolay Titov | 3f0c9dd | 2017-07-17 17:37:25 -0400 | [diff] [blame] | 280 | return |
| 281 | sub = XponCli(self.get_channel, device_id) |
Nikolay Titov | 89004ec | 2017-06-19 18:22:42 -0400 | [diff] [blame] | 282 | sub.cmdloop() |
| 283 | |
Chip Boling | 69abce8 | 2018-06-18 09:56:23 -0500 | [diff] [blame] | 284 | def do_omci(self, line): |
| 285 | """omci <device_ID> - Enter OMCI level command mode""" |
| 286 | |
| 287 | device_id = line.strip() or self.default_device_id |
| 288 | if not device_id: |
| 289 | raise Exception('<device-id> parameter needed') |
| 290 | sub = OmciCli(device_id, self.get_stub) |
| 291 | sub.cmdloop() |
| 292 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 293 | def do_pdb(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 294 | """Launch PDB debug prompt in CLI (for CLI development)""" |
| 295 | from pdb import set_trace |
| 296 | set_trace() |
| 297 | |
Jonathan Hart | da93ac6 | 2018-05-01 11:25:29 -0700 | [diff] [blame] | 298 | def do_version(self, line): |
| 299 | """Show the VOLTHA core version""" |
| 300 | stub = self.get_stub() |
| 301 | voltha = stub.GetVoltha(Empty()) |
| 302 | self.poutput('{}'.format(voltha.version)) |
| 303 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 304 | def do_health(self, line): |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 305 | """Show connectivity status to Voltha status""" |
| 306 | stub = voltha_pb2.HealthServiceStub(self.get_channel()) |
| 307 | res = stub.GetHealthStatus(Empty()) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 308 | self.poutput(dumps(pb2dict(res), indent=4)) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 309 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 310 | @options([ |
| 311 | make_option('-t', '--device-type', action="store", dest='device_type', |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 312 | help="Device type", default='simulated_olt'), |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 313 | make_option('-m', '--mac-address', action='store', dest='mac_address', |
| 314 | default='00:0c:e2:31:40:00'), |
| 315 | make_option('-i', '--ip-address', action='store', dest='ip_address'), |
Zsolt Haraszti | 656ecc6 | 2016-12-28 15:08:23 -0800 | [diff] [blame] | 316 | make_option('-H', '--host_and_port', action='store', |
| 317 | dest='host_and_port'), |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 318 | ]) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 319 | def do_preprovision_olt(self, line, opts): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 320 | """Preprovision a new OLT with given device type""" |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 321 | stub = self.get_stub() |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 322 | kw = dict(type=opts.device_type) |
Zsolt Haraszti | 656ecc6 | 2016-12-28 15:08:23 -0800 | [diff] [blame] | 323 | if opts.host_and_port: |
| 324 | kw['host_and_port'] = opts.host_and_port |
| 325 | elif opts.ip_address: |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 326 | kw['ipv4_address'] = opts.ip_address |
| 327 | elif opts.mac_address: |
Venkata Telu | dc1a15b | 2018-07-06 14:31:05 -0500 | [diff] [blame] | 328 | kw['mac_address'] = opts.mac_address.lower() |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 329 | else: |
| 330 | raise Exception('Either IP address or Mac Address is needed') |
Chip Boling | 90b224d | 2017-06-02 11:51:48 -0500 | [diff] [blame] | 331 | # Pass any extra arguments past '--' to the device as custom arguments |
| 332 | kw['extra_args'] = line |
| 333 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 334 | device = voltha_pb2.Device(**kw) |
| 335 | device = stub.CreateDevice(device) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 336 | self.poutput('success (device id = {})'.format(device.id)) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 337 | self.default_device_id = device.id |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 338 | |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 339 | def do_enable(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 340 | """ |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 341 | Enable a device. If the <id> is not provided, it will be on the last |
| 342 | pre-provisioned device. |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 343 | """ |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 344 | device_id = line or self.default_device_id |
Venkata Telu | 0ccc430 | 2018-07-27 15:11:13 -0500 | [diff] [blame] | 345 | if device_id not in self.device_ids(): |
| 346 | self.poutput('Error: There is no such preprovisioned device') |
| 347 | return |
| 348 | |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 349 | try: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 350 | stub = self.get_stub() |
Venkata Telu | 0ccc430 | 2018-07-27 15:11:13 -0500 | [diff] [blame] | 351 | device = stub.GetDevice(voltha_pb2.ID(id=device_id)) |
| 352 | if device.admin_state == voltha_pb2.AdminState.ENABLED: |
Nicolas Palpacuer | 5807dfc | 2018-08-27 15:47:03 -0400 | [diff] [blame] | 353 | if device.oper_status != voltha_pb2.OperStatus.ACTIVATING: |
| 354 | self.poutput('Error: Device is already enabled') |
| 355 | return |
| 356 | else: |
| 357 | stub.EnableDevice(voltha_pb2.ID(id=device_id)) |
| 358 | self.poutput('enabling {}'.format(device_id)) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 359 | |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 360 | while True: |
| 361 | device = stub.GetDevice(voltha_pb2.ID(id=device_id)) |
| 362 | # If this is an OLT then acquire logical device id |
| 363 | if device.oper_status == voltha_pb2.OperStatus.ACTIVE: |
| 364 | if device.type.endswith('_olt'): |
| 365 | assert device.parent_id |
| 366 | self.default_logical_device_id = device.parent_id |
| 367 | self.poutput('success (logical device id = {})'.format( |
| 368 | self.default_logical_device_id)) |
| 369 | else: |
| 370 | self.poutput('success (device id = {})'.format(device.id)) |
| 371 | break |
| 372 | self.poutput('waiting for device to be enabled...') |
| 373 | sleep(.5) |
Chip Boling | 69abce8 | 2018-06-18 09:56:23 -0500 | [diff] [blame] | 374 | except Exception as e: |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 375 | self.poutput('Error enabling {}. Error:{}'.format(device_id, e)) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 376 | |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 377 | complete_activate_olt = complete_device |
| 378 | |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 379 | def do_reboot(self, line): |
| 380 | """ |
| 381 | Rebooting a device. ID of the device needs to be provided |
| 382 | """ |
| 383 | device_id = line or self.default_device_id |
| 384 | self.poutput('rebooting {}'.format(device_id)) |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 385 | try: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 386 | stub = self.get_stub() |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 387 | stub.RebootDevice(voltha_pb2.ID(id=device_id)) |
| 388 | self.poutput('rebooted {}'.format(device_id)) |
ggowdru | 64d738a | 2018-05-10 07:08:06 -0700 | [diff] [blame] | 389 | except Exception as e: |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 390 | self.poutput('Error rebooting {}. Error:{}'.format(device_id, e)) |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 391 | |
sathishg | 5ae8622 | 2017-06-28 15:16:29 +0530 | [diff] [blame] | 392 | def do_self_test(self, line): |
| 393 | """ |
| 394 | Self Test a device. ID of the device needs to be provided |
| 395 | """ |
| 396 | device_id = line or self.default_device_id |
| 397 | self.poutput('Self Testing {}'.format(device_id)) |
| 398 | try: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 399 | stub = self.get_stub() |
sathishg | 5ae8622 | 2017-06-28 15:16:29 +0530 | [diff] [blame] | 400 | res = stub.SelfTest(voltha_pb2.ID(id=device_id)) |
| 401 | self.poutput('Self Tested {}'.format(device_id)) |
| 402 | self.poutput(dumps(pb2dict(res), indent=4)) |
ggowdru | 64d738a | 2018-05-10 07:08:06 -0700 | [diff] [blame] | 403 | except Exception as e: |
sathishg | 5ae8622 | 2017-06-28 15:16:29 +0530 | [diff] [blame] | 404 | self.poutput('Error in self test {}. Error:{}'.format(device_id, e)) |
| 405 | |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 406 | def do_delete(self, line): |
| 407 | """ |
| 408 | Deleting a device. ID of the device needs to be provided |
| 409 | """ |
| 410 | device_id = line or self.default_device_id |
| 411 | self.poutput('deleting {}'.format(device_id)) |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 412 | try: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 413 | stub = self.get_stub() |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 414 | stub.DeleteDevice(voltha_pb2.ID(id=device_id)) |
| 415 | self.poutput('deleted {}'.format(device_id)) |
ggowdru | 64d738a | 2018-05-10 07:08:06 -0700 | [diff] [blame] | 416 | except Exception as e: |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 417 | self.poutput('Error deleting {}. Error:{}'.format(device_id, e)) |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 418 | |
| 419 | def do_disable(self, line): |
| 420 | """ |
| 421 | Disable a device. ID of the device needs to be provided |
| 422 | """ |
| 423 | device_id = line |
Venkata Telu | f468de8 | 2018-08-07 13:03:58 -0500 | [diff] [blame] | 424 | if device_id not in self.device_ids(): |
| 425 | self.poutput('Error: There is no such device') |
| 426 | return |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 427 | try: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 428 | stub = self.get_stub() |
Venkata Telu | f468de8 | 2018-08-07 13:03:58 -0500 | [diff] [blame] | 429 | device = stub.GetDevice(voltha_pb2.ID(id=device_id)) |
| 430 | if device.admin_state == voltha_pb2.AdminState.DISABLED: |
| 431 | self.poutput('Error: Device is already disabled') |
| 432 | return |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 433 | stub.DisableDevice(voltha_pb2.ID(id=device_id)) |
Venkata Telu | f468de8 | 2018-08-07 13:03:58 -0500 | [diff] [blame] | 434 | self.poutput('disabling {}'.format(device_id)) |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 435 | |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 436 | # Do device query and verify that the device admin status is |
| 437 | # DISABLED and Operational Status is unknown |
| 438 | device = stub.GetDevice(voltha_pb2.ID(id=device_id)) |
ggowdru | 64d738a | 2018-05-10 07:08:06 -0700 | [diff] [blame] | 439 | if device.admin_state == voltha_pb2.AdminState.DISABLED: |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 440 | self.poutput('disabled successfully {}'.format(device_id)) |
| 441 | else: |
| 442 | self.poutput('disabling failed {}. Admin State:{} ' |
| 443 | 'Operation State: {}'.format(device_id, |
| 444 | device.admin_state, |
| 445 | device.oper_status)) |
ggowdru | 64d738a | 2018-05-10 07:08:06 -0700 | [diff] [blame] | 446 | except Exception as e: |
Khen Nursimulu | c60afa1 | 2017-03-13 14:33:50 -0400 | [diff] [blame] | 447 | self.poutput('Error disabling {}. Error:{}'.format(device_id, e)) |
Khen Nursimulu | d068d81 | 2017-03-06 11:44:18 -0500 | [diff] [blame] | 448 | |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 449 | def do_test(self, line): |
| 450 | """Enter test mode, which makes a bunch on new commands available""" |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 451 | sub = TestCli(self.history, self.voltha_grpc, |
| 452 | self.get_stub, self.voltha_sim_rest) |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 453 | sub.cmdloop() |
| 454 | |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 455 | def do_alarm_filters(self, line): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 456 | sub = AlarmFiltersCli(self.get_stub) |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 457 | sub.cmdloop() |
| 458 | |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 459 | |
| 460 | class TestCli(VolthaCli): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 461 | def __init__(self, history, voltha_grpc, get_stub, voltha_sim_rest): |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 462 | VolthaCli.__init__(self, voltha_grpc, voltha_sim_rest) |
| 463 | self.history = history |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 464 | self.get_stub = get_stub |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 465 | self.prompt = '(' + self.colorize(self.colorize('test', 'cyan'), |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 466 | 'bold') + ') ' |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 467 | |
| 468 | def get_device(self, device_id, depth=0): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 469 | stub = self.get_stub() |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 470 | res = stub.GetDevice(voltha_pb2.ID(id=device_id), |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 471 | metadata=(('get-depth', str(depth)),)) |
Zsolt Haraszti | 50cae7d | 2017-01-08 22:27:07 -0800 | [diff] [blame] | 472 | return res |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 473 | |
| 474 | def do_arrive_onus(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 475 | """ |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 476 | Simulate the arrival of ONUs (available only on simulated_olt) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 477 | """ |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 478 | device_id = line or self.default_device_id |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 479 | |
| 480 | # verify that device is of type simulated_olt |
| 481 | device = self.get_device(device_id) |
| 482 | assert device.type == 'simulated_olt', ( |
| 483 | 'Cannot use it on this device type (only on simulated_olt type)') |
| 484 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 485 | requests.get('http://{}/devices/{}/detect_onus'.format( |
| 486 | self.voltha_sim_rest, device_id |
| 487 | )) |
| 488 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 489 | complete_arrive_onus = VolthaCli.complete_device |
| 490 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 491 | def get_logical_ports(self, logical_device_id): |
| 492 | """ |
| 493 | Return the NNI port number and the first usable UNI port of logical |
| 494 | device, and the vlan associated with the latter. |
| 495 | """ |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 496 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 497 | ports = stub.ListLogicalDevicePorts( |
| 498 | voltha_pb2.ID(id=logical_device_id)).items |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 499 | nni = None |
| 500 | unis = [] |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 501 | for port in ports: |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 502 | if port.root_port: |
| 503 | assert nni is None, "There shall be only one root port" |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 504 | nni = port.ofp_port.port_no |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 505 | else: |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 506 | uni = port.ofp_port.port_no |
| 507 | uni_device = self.get_device(port.device_id) |
| 508 | vlan = uni_device.vlan |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 509 | unis.append((uni, vlan)) |
| 510 | |
| 511 | assert nni is not None, "No NNI port found" |
| 512 | assert unis, "Not a single UNI?" |
| 513 | |
| 514 | return nni, unis |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 515 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 516 | def do_install_eapol_flow(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 517 | """ |
| 518 | Install an EAPOL flow on the given logical device. If device is not |
| 519 | given, it will be applied to logical device of the last pre-provisioned |
| 520 | OLT device. |
| 521 | """ |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 522 | logical_device_id = line or self.default_logical_device_id |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 523 | |
| 524 | # gather NNI and UNI port IDs |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 525 | nni_port_no, unis = self.get_logical_ports(logical_device_id) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 526 | |
| 527 | # construct and push flow rule |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 528 | stub = self.get_stub() |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 529 | for uni_port_no, _ in unis: |
| 530 | update = FlowTableUpdate( |
| 531 | id=logical_device_id, |
| 532 | flow_mod=mk_simple_flow_mod( |
| 533 | priority=2000, |
| 534 | match_fields=[in_port(uni_port_no), eth_type(0x888e)], |
| 535 | actions=[ |
| 536 | # push_vlan(0x8100), |
| 537 | # set_field(vlan_vid(4096 + 4000)), |
| 538 | output(ofp.OFPP_CONTROLLER) |
| 539 | ] |
| 540 | ) |
| 541 | ) |
| 542 | res = stub.UpdateLogicalDeviceFlowTable(update) |
| 543 | self.poutput('success for uni {} ({})'.format(uni_port_no, res)) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 544 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 545 | complete_install_eapol_flow = VolthaCli.complete_logical_device |
| 546 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 547 | def do_install_all_controller_bound_flows(self, line): |
| 548 | """ |
| 549 | Install all flow rules for controller bound flows, including EAPOL, |
| 550 | IGMP and DHCP. If device is not given, it will be applied to logical |
| 551 | device of the last pre-provisioned OLT device. |
| 552 | """ |
| 553 | logical_device_id = line or self.default_logical_device_id |
| 554 | |
| 555 | # gather NNI and UNI port IDs |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 556 | nni_port_no, unis = self.get_logical_ports(logical_device_id) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 557 | |
| 558 | # construct and push flow rules |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 559 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 560 | |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 561 | for uni_port_no, _ in unis: |
| 562 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 563 | id=logical_device_id, |
| 564 | flow_mod=mk_simple_flow_mod( |
| 565 | priority=2000, |
| 566 | match_fields=[ |
| 567 | in_port(uni_port_no), |
| 568 | eth_type(0x888e) |
| 569 | ], |
| 570 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 571 | ) |
| 572 | )) |
| 573 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 574 | id=logical_device_id, |
| 575 | flow_mod=mk_simple_flow_mod( |
| 576 | priority=1000, |
| 577 | match_fields=[ |
| 578 | in_port(uni_port_no), |
| 579 | eth_type(0x800), |
| 580 | ip_proto(2) |
| 581 | ], |
| 582 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 583 | ) |
| 584 | )) |
| 585 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 586 | id=logical_device_id, |
| 587 | flow_mod=mk_simple_flow_mod( |
| 588 | priority=1000, |
| 589 | match_fields=[ |
| 590 | in_port(uni_port_no), |
| 591 | eth_type(0x800), |
| 592 | ip_proto(17), |
| 593 | udp_dst(67) |
| 594 | ], |
| 595 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 596 | ) |
| 597 | )) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 598 | self.poutput('success') |
| 599 | |
| 600 | complete_install_all_controller_bound_flows = \ |
| 601 | VolthaCli.complete_logical_device |
| 602 | |
| 603 | def do_install_all_sample_flows(self, line): |
| 604 | """ |
| 605 | Install all flows that are representative of the virtualized access |
| 606 | scenario in a PON network. |
| 607 | """ |
| 608 | logical_device_id = line or self.default_logical_device_id |
| 609 | |
| 610 | # gather NNI and UNI port IDs |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 611 | nni_port_no, unis = self.get_logical_ports(logical_device_id) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 612 | |
| 613 | # construct and push flow rules |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 614 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 615 | |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 616 | for uni_port_no, c_vid in unis: |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 617 | # Controller-bound flows |
| 618 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 619 | id=logical_device_id, |
| 620 | flow_mod=mk_simple_flow_mod( |
| 621 | priority=2000, |
| 622 | match_fields=[in_port(uni_port_no), eth_type(0x888e)], |
| 623 | actions=[ |
| 624 | # push_vlan(0x8100), |
| 625 | # set_field(vlan_vid(4096 + 4000)), |
| 626 | output(ofp.OFPP_CONTROLLER) |
| 627 | ] |
| 628 | ) |
| 629 | )) |
| 630 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 631 | id=logical_device_id, |
| 632 | flow_mod=mk_simple_flow_mod( |
| 633 | priority=1000, |
| 634 | match_fields=[eth_type(0x800), ip_proto(2)], |
| 635 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 636 | ) |
| 637 | )) |
| 638 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 639 | id=logical_device_id, |
| 640 | flow_mod=mk_simple_flow_mod( |
| 641 | priority=1000, |
| 642 | match_fields=[eth_type(0x800), ip_proto(17), udp_dst(67)], |
| 643 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 644 | ) |
| 645 | )) |
| 646 | |
| 647 | # Unicast flows: |
| 648 | # Downstream flow 1 |
| 649 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 650 | id=logical_device_id, |
| 651 | flow_mod=mk_simple_flow_mod( |
| 652 | priority=500, |
| 653 | match_fields=[ |
| 654 | in_port(nni_port_no), |
| 655 | vlan_vid(4096 + 1000), |
| 656 | metadata(c_vid) # here to mimic an ONOS artifact |
| 657 | ], |
| 658 | actions=[pop_vlan()], |
| 659 | next_table_id=1 |
| 660 | ) |
| 661 | )) |
| 662 | # Downstream flow 2 |
| 663 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 664 | id=logical_device_id, |
| 665 | flow_mod=mk_simple_flow_mod( |
| 666 | priority=500, |
| 667 | table_id=1, |
| 668 | match_fields=[in_port(nni_port_no), vlan_vid(4096 + c_vid)], |
| 669 | actions=[set_field(vlan_vid(4096 + 0)), output(uni_port_no)] |
| 670 | ) |
| 671 | )) |
| 672 | # Upstream flow 1 for 0-tagged case |
| 673 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 674 | id=logical_device_id, |
| 675 | flow_mod=mk_simple_flow_mod( |
| 676 | priority=500, |
| 677 | match_fields=[in_port(uni_port_no), vlan_vid(4096 + 0)], |
| 678 | actions=[set_field(vlan_vid(4096 + c_vid))], |
| 679 | next_table_id=1 |
| 680 | ) |
| 681 | )) |
| 682 | # Upstream flow 1 for untagged case |
| 683 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 684 | id=logical_device_id, |
| 685 | flow_mod=mk_simple_flow_mod( |
| 686 | priority=500, |
| 687 | match_fields=[in_port(uni_port_no), vlan_vid(0)], |
| 688 | actions=[push_vlan(0x8100), set_field(vlan_vid(4096 + c_vid))], |
| 689 | next_table_id=1 |
| 690 | ) |
| 691 | )) |
| 692 | # Upstream flow 2 for s-tag |
| 693 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 694 | id=logical_device_id, |
| 695 | flow_mod=mk_simple_flow_mod( |
| 696 | priority=500, |
| 697 | table_id=1, |
| 698 | match_fields=[in_port(uni_port_no), vlan_vid(4096 + c_vid)], |
| 699 | actions=[ |
| 700 | push_vlan(0x8100), |
| 701 | set_field(vlan_vid(4096 + 1000)), |
| 702 | output(nni_port_no) |
| 703 | ] |
| 704 | ) |
| 705 | )) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 706 | |
| 707 | # Push a few multicast flows |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 708 | # 1st with one bucket for our uni 0 |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 709 | stub.UpdateLogicalDeviceFlowGroupTable(FlowGroupTableUpdate( |
| 710 | id=logical_device_id, |
| 711 | group_mod=mk_multicast_group_mod( |
| 712 | group_id=1, |
| 713 | buckets=[ |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 714 | ofp.ofp_bucket(actions=[ |
| 715 | pop_vlan(), |
| 716 | output(unis[0][0]) |
| 717 | ]) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 718 | ] |
| 719 | ) |
| 720 | )) |
| 721 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 722 | id=logical_device_id, |
| 723 | flow_mod=mk_simple_flow_mod( |
| 724 | priority=1000, |
| 725 | match_fields=[ |
| 726 | in_port(nni_port_no), |
| 727 | eth_type(0x800), |
| 728 | vlan_vid(4096 + 140), |
| 729 | ipv4_dst(0xe4010101) |
| 730 | ], |
| 731 | actions=[group(1)] |
| 732 | ) |
| 733 | )) |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 734 | |
| 735 | # 2nd with one bucket for uni 0 and 1 |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 736 | stub.UpdateLogicalDeviceFlowGroupTable(FlowGroupTableUpdate( |
| 737 | id=logical_device_id, |
| 738 | group_mod=mk_multicast_group_mod( |
| 739 | group_id=2, |
| 740 | buckets=[ |
Nathan Knuth | 6b7b6ff | 2017-02-12 03:30:48 -0800 | [diff] [blame] | 741 | ofp.ofp_bucket(actions=[pop_vlan(), output(unis[0][0])]) |
Stephane Barbarie | 4db8ca2 | 2017-04-24 10:30:20 -0400 | [diff] [blame] | 742 | # ofp.ofp_bucket(actions=[pop_vlan(), output(unis[1][0])]) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 743 | ] |
| 744 | ) |
| 745 | )) |
| 746 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 747 | id=logical_device_id, |
| 748 | flow_mod=mk_simple_flow_mod( |
| 749 | priority=1000, |
| 750 | match_fields=[ |
| 751 | in_port(nni_port_no), |
| 752 | eth_type(0x800), |
| 753 | vlan_vid(4096 + 140), |
| 754 | ipv4_dst(0xe4020202) |
| 755 | ], |
| 756 | actions=[group(2)] |
| 757 | ) |
| 758 | )) |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 759 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 760 | # 3rd with empty bucket |
| 761 | stub.UpdateLogicalDeviceFlowGroupTable(FlowGroupTableUpdate( |
| 762 | id=logical_device_id, |
| 763 | group_mod=mk_multicast_group_mod( |
| 764 | group_id=3, |
| 765 | buckets=[] |
| 766 | ) |
| 767 | )) |
| 768 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 769 | id=logical_device_id, |
| 770 | flow_mod=mk_simple_flow_mod( |
| 771 | priority=1000, |
| 772 | match_fields=[ |
| 773 | in_port(nni_port_no), |
| 774 | eth_type(0x800), |
| 775 | vlan_vid(4096 + 140), |
| 776 | ipv4_dst(0xe4030303) |
| 777 | ], |
| 778 | actions=[group(3)] |
| 779 | ) |
| 780 | )) |
| 781 | |
| 782 | self.poutput('success') |
| 783 | |
| 784 | complete_install_all_sample_flows = VolthaCli.complete_logical_device |
| 785 | |
Nathan Knuth | 5f4163e | 2017-01-11 18:21:10 -0600 | [diff] [blame] | 786 | def do_install_dhcp_flows(self, line): |
| 787 | """ |
| 788 | Install all dhcp flows that are representative of the virtualized access |
| 789 | scenario in a PON network. |
| 790 | """ |
| 791 | logical_device_id = line or self.default_logical_device_id |
| 792 | |
| 793 | # gather NNI and UNI port IDs |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 794 | nni_port_no, unis = self.get_logical_ports(logical_device_id) |
Nathan Knuth | 5f4163e | 2017-01-11 18:21:10 -0600 | [diff] [blame] | 795 | |
| 796 | # construct and push flow rules |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 797 | stub = self.get_stub() |
Nathan Knuth | 5f4163e | 2017-01-11 18:21:10 -0600 | [diff] [blame] | 798 | |
| 799 | # Controller-bound flows |
Zsolt Haraszti | b9a5f75 | 2017-02-11 06:07:08 -0800 | [diff] [blame] | 800 | for uni_port_no, _ in unis: |
| 801 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 802 | id=logical_device_id, |
| 803 | flow_mod=mk_simple_flow_mod( |
| 804 | priority=1000, |
| 805 | match_fields=[ |
| 806 | in_port(uni_port_no), |
| 807 | eth_type(0x800), |
| 808 | ip_proto(17), |
| 809 | udp_dst(67) |
| 810 | ], |
| 811 | actions=[output(ofp.OFPP_CONTROLLER)] |
| 812 | ) |
| 813 | )) |
Nathan Knuth | 5f4163e | 2017-01-11 18:21:10 -0600 | [diff] [blame] | 814 | |
| 815 | self.poutput('success') |
| 816 | |
| 817 | complete_install_dhcp_flows = VolthaCli.complete_logical_device |
| 818 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 819 | def do_delete_all_flows(self, line): |
| 820 | """ |
| 821 | Remove all flows and flow groups from given logical device |
| 822 | """ |
| 823 | logical_device_id = line or self.default_logical_device_id |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 824 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 825 | stub.UpdateLogicalDeviceFlowTable(FlowTableUpdate( |
| 826 | id=logical_device_id, |
| 827 | flow_mod=ofp.ofp_flow_mod( |
| 828 | command=ofp.OFPFC_DELETE, |
| 829 | table_id=ofp.OFPTT_ALL, |
| 830 | cookie_mask=0, |
| 831 | out_port=ofp.OFPP_ANY, |
| 832 | out_group=ofp.OFPG_ANY |
| 833 | ) |
| 834 | )) |
| 835 | stub.UpdateLogicalDeviceFlowGroupTable(FlowGroupTableUpdate( |
| 836 | id=logical_device_id, |
| 837 | group_mod=ofp.ofp_group_mod( |
| 838 | command=ofp.OFPGC_DELETE, |
| 839 | group_id=ofp.OFPG_ALL |
| 840 | ) |
| 841 | )) |
| 842 | self.poutput('success') |
| 843 | |
| 844 | complete_delete_all_flows = VolthaCli.complete_logical_device |
| 845 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 846 | def do_send_simulated_upstream_eapol(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 847 | """ |
| 848 | Send an EAPOL upstream from a simulated OLT |
| 849 | """ |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 850 | device_id = line or self.default_device_id |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 851 | requests.get('http://{}/devices/{}/test_eapol_in'.format( |
| 852 | self.voltha_sim_rest, device_id |
| 853 | )) |
| 854 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 855 | complete_send_simulated_upstream_eapol = VolthaCli.complete_device |
| 856 | |
| 857 | def do_inject_eapol_start(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 858 | """ |
| 859 | Send out an an EAPOL start message into the given Unix interface |
| 860 | """ |
| 861 | pass |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 862 | |
| 863 | |
| 864 | if __name__ == '__main__': |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 865 | |
| 866 | parser = argparse.ArgumentParser() |
| 867 | |
| 868 | _help = '<hostname>:<port> to consul agent (default: %s)' % defs['consul'] |
| 869 | parser.add_argument( |
| 870 | '-C', '--consul', action='store', default=defs['consul'], help=_help) |
| 871 | |
| 872 | _help = 'Lookup Voltha endpoints based on service entries in Consul' |
| 873 | parser.add_argument( |
| 874 | '-L', '--lookup', action='store_true', help=_help) |
| 875 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 876 | _help = 'All requests to the Voltha gRPC service are global' |
| 877 | parser.add_argument( |
| 878 | '-G', '--global_request', action='store_true', help=_help) |
| 879 | |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 880 | _help = '<hostname>:<port> of Voltha gRPC service (default={})'.format( |
| 881 | defs['voltha_grpc_endpoint']) |
| 882 | parser.add_argument('-g', '--grpc-endpoint', action='store', |
| 883 | default=defs['voltha_grpc_endpoint'], help=_help) |
| 884 | |
| 885 | _help = '<hostname>:<port> of Voltha simulated adapter backend for ' \ |
| 886 | 'testing (default={})'.format( |
| 887 | defs['voltha_sim_rest_endpoint']) |
| 888 | parser.add_argument('-s', '--sim-rest-endpoint', action='store', |
| 889 | default=defs['voltha_sim_rest_endpoint'], help=_help) |
| 890 | |
| 891 | args = parser.parse_args() |
| 892 | |
| 893 | if args.lookup: |
| 894 | host = args.consul.split(':')[0].strip() |
| 895 | port = int(args.consul.split(':')[1].strip()) |
| 896 | consul = Consul(host=host, port=port) |
| 897 | |
| 898 | _, services = consul.catalog.service('voltha-grpc') |
| 899 | if not services: |
| 900 | print('No voltha-grpc service registered in consul; exiting') |
| 901 | sys.exit(1) |
| 902 | args.grpc_endpoint = '{}:{}'.format(services[0]['ServiceAddress'], |
| 903 | services[0]['ServicePort']) |
| 904 | |
| 905 | _, services = consul.catalog.service('voltha-sim-rest') |
| 906 | if not services: |
| 907 | print('No voltha-sim-rest service registered in consul; exiting') |
| 908 | sys.exit(1) |
| 909 | args.sim_rest_endpoint = '{}:{}'.format(services[0]['ServiceAddress'], |
| 910 | services[0]['ServicePort']) |
| 911 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 912 | c = VolthaCli(args.grpc_endpoint, args.sim_rest_endpoint, |
| 913 | args.global_request) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 914 | c.poutput(banner) |
Zsolt Haraszti | a133a45 | 2016-12-22 01:26:57 -0800 | [diff] [blame] | 915 | c.load_history() |
| 916 | c.cmdloop() |
| 917 | c.save_history() |