Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python |
| 2 | import pprint |
| 3 | import os |
| 4 | import sys |
| 5 | import subprocess |
| 6 | import json |
| 7 | import argparse |
| 8 | import io |
| 9 | import time |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 10 | import random |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 11 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 12 | import re |
| 13 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 14 | from flask import Flask, json, Response, render_template, make_response, request |
| 15 | |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 16 | CONFIG_FILE=os.getenv("HOME") + "/ONOS/web/config.json" |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 17 | LINK_FILE=os.getenv("HOME") + "/ONOS/web/link.json" |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 18 | ONOSDIR=os.getenv("HOME") + "/ONOS" |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 19 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 20 | ## Global Var for ON.Lab local REST ## |
Ubuntu | f6ce96c | 2013-02-07 01:45:07 +0000 | [diff] [blame] | 21 | RestIP="localhost" |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 22 | RestPort=8080 |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 23 | ONOS_DEFAULT_HOST="localhost" ;# Has to set if LB=False |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 24 | DEBUG=1 |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 25 | |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 26 | pp = pprint.PrettyPrinter(indent=4) |
| 27 | app = Flask(__name__) |
| 28 | |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 29 | def read_config(): |
Jonathan Hart | b255448 | 2013-04-08 13:40:31 -0700 | [diff] [blame] | 30 | global LB, TESTBED, controllers, core_switches, ONOS_GUI3_HOST, ONOS_GUI3_CONTROL_HOST |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 31 | f = open(CONFIG_FILE) |
| 32 | conf = json.load(f) |
| 33 | LB = conf['LB'] |
Jonathan Hart | b255448 | 2013-04-08 13:40:31 -0700 | [diff] [blame] | 34 | TESTBED = conf['TESTBED'] |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 35 | controllers = conf['controllers'] |
Jonathan Hart | b255448 | 2013-04-08 13:40:31 -0700 | [diff] [blame] | 36 | core_switches=conf['core_switches'] |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 37 | ONOS_GUI3_HOST=conf['ONOS_GUI3_HOST'] |
| 38 | ONOS_GUI3_CONTROL_HOST=conf['ONOS_GUI3_CONTROL_HOST'] |
| 39 | f.close() |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 40 | |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 41 | def read_link_def(): |
| 42 | global link_def |
| 43 | f=open(LINK_FILE) |
| 44 | try: |
| 45 | link_def=json.load(f) |
| 46 | f.close() |
| 47 | except: |
| 48 | print "Can't read link def file (link.json)" |
| 49 | sys.exit(1) |
| 50 | |
| 51 | def get_link_ports(src_dpid, dst_dpid): |
| 52 | ret = (-1, -1) |
| 53 | for link in link_def: |
| 54 | if link['src-switch'] == src_dpid and link['dst-switch'] == dst_dpid: |
| 55 | ret = (link['src-port'], link['dst-port']) |
| 56 | break |
| 57 | return ret |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 58 | |
| 59 | ## Worker Functions ## |
| 60 | def log_error(txt): |
| 61 | print '%s' % (txt) |
| 62 | |
| 63 | def debug(txt): |
| 64 | if DEBUG: |
| 65 | print '%s' % (txt) |
| 66 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 67 | ### File Fetch ### |
| 68 | @app.route('/ui/img/<filename>', methods=['GET']) |
| 69 | @app.route('/img/<filename>', methods=['GET']) |
| 70 | @app.route('/css/<filename>', methods=['GET']) |
| 71 | @app.route('/js/models/<filename>', methods=['GET']) |
| 72 | @app.route('/js/views/<filename>', methods=['GET']) |
| 73 | @app.route('/js/<filename>', methods=['GET']) |
| 74 | @app.route('/lib/<filename>', methods=['GET']) |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 75 | @app.route('/log/<filename>', methods=['GET']) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 76 | @app.route('/', methods=['GET']) |
| 77 | @app.route('/<filename>', methods=['GET']) |
| 78 | @app.route('/tpl/<filename>', methods=['GET']) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 79 | @app.route('/ons-demo/<filename>', methods=['GET']) |
| 80 | @app.route('/ons-demo/js/<filename>', methods=['GET']) |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 81 | @app.route('/ons-demo/d3/<filename>', methods=['GET']) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 82 | @app.route('/ons-demo/css/<filename>', methods=['GET']) |
| 83 | @app.route('/ons-demo/assets/<filename>', methods=['GET']) |
| 84 | @app.route('/ons-demo/data/<filename>', methods=['GET']) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 85 | def return_file(filename="index.html"): |
| 86 | if request.path == "/": |
| 87 | fullpath = "./index.html" |
| 88 | else: |
| 89 | fullpath = str(request.path)[1:] |
| 90 | |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 91 | try: |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 92 | open(fullpath) |
| 93 | except: |
| 94 | response = make_response("Cannot find a file: %s" % (fullpath), 500) |
| 95 | response.headers["Content-type"] = "text/html" |
| 96 | return response |
| 97 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 98 | response = make_response(open(fullpath).read()) |
| 99 | suffix = fullpath.split(".")[-1] |
| 100 | |
| 101 | if suffix == "html" or suffix == "htm": |
| 102 | response.headers["Content-type"] = "text/html" |
| 103 | elif suffix == "js": |
| 104 | response.headers["Content-type"] = "application/javascript" |
| 105 | elif suffix == "css": |
| 106 | response.headers["Content-type"] = "text/css" |
| 107 | elif suffix == "png": |
| 108 | response.headers["Content-type"] = "image/png" |
Paul Greyson | 2913af8 | 2013-03-27 14:53:17 -0700 | [diff] [blame] | 109 | elif suffix == "svg": |
| 110 | response.headers["Content-type"] = "image/svg+xml" |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 111 | |
| 112 | return response |
| 113 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 114 | ## Proxy ## |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 115 | @app.route("/proxy/gui/link/<cmd>/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>") |
| 116 | def proxy_link_change(cmd, src_dpid, src_port, dst_dpid, dst_port): |
| 117 | try: |
Paul Greyson | 8d1c636 | 2013-03-27 13:05:24 -0700 | [diff] [blame] | 118 | command = "curl -s %s/gui/link/%s/%s/%s/%s/%s" % (ONOS_GUI3_CONTROL_HOST, cmd, src_dpid, src_port, dst_dpid, dst_port) |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 119 | print command |
| 120 | result = os.popen(command).read() |
| 121 | except: |
| 122 | print "REST IF has issue" |
| 123 | exit |
| 124 | |
| 125 | resp = Response(result, status=200, mimetype='application/json') |
| 126 | return resp |
| 127 | |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 128 | @app.route("/proxy/gui/switchctrl/<cmd>") |
| 129 | def proxy_switch_controller_setting(cmd): |
| 130 | try: |
| 131 | command = "curl -s %s/gui/switchctrl/%s" % (ONOS_GUI3_CONTROL_HOST, cmd) |
| 132 | print command |
| 133 | result = os.popen(command).read() |
| 134 | except: |
| 135 | print "REST IF has issue" |
| 136 | exit |
| 137 | |
| 138 | resp = Response(result, status=200, mimetype='application/json') |
| 139 | return resp |
| 140 | |
Paul Greyson | 8d1c636 | 2013-03-27 13:05:24 -0700 | [diff] [blame] | 141 | @app.route("/proxy/gui/switch/<cmd>/<dpid>") |
| 142 | def proxy_switch_status_change(cmd, dpid): |
| 143 | try: |
| 144 | command = "curl -s %s/gui/switch/%s/%s" % (ONOS_GUI3_CONTROL_HOST, cmd, dpid) |
| 145 | print command |
| 146 | result = os.popen(command).read() |
| 147 | except: |
| 148 | print "REST IF has issue" |
| 149 | exit |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 150 | |
Paul Greyson | 8d1c636 | 2013-03-27 13:05:24 -0700 | [diff] [blame] | 151 | resp = Response(result, status=200, mimetype='application/json') |
| 152 | return resp |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 153 | |
Paul Greyson | 2913af8 | 2013-03-27 14:53:17 -0700 | [diff] [blame] | 154 | @app.route("/proxy/gui/controller/<cmd>/<controller_name>") |
| 155 | def proxy_controller_status_change(cmd, controller_name): |
| 156 | try: |
| 157 | command = "curl -s %s/gui/controller/%s/%s" % (ONOS_GUI3_CONTROL_HOST, cmd, controller_name) |
| 158 | print command |
| 159 | result = os.popen(command).read() |
| 160 | except: |
| 161 | print "REST IF has issue" |
| 162 | exit |
| 163 | |
| 164 | resp = Response(result, status=200, mimetype='application/json') |
| 165 | return resp |
| 166 | |
Paul Greyson | 472da4c | 2013-03-28 11:43:17 -0700 | [diff] [blame] | 167 | @app.route("/proxy/gui/addflow/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>/<srcMAC>/<dstMAC>") |
| 168 | def proxy_add_flow(src_dpid, src_port, dst_dpid, dst_port, srcMAC, dstMAC): |
| 169 | try: |
| 170 | command = "curl -s %s/gui/addflow/%s/%s/%s/%s/%s/%s" % (ONOS_GUI3_CONTROL_HOST, src_dpid, src_port, dst_dpid, dst_port, srcMAC, dstMAC) |
| 171 | print command |
| 172 | result = os.popen(command).read() |
| 173 | except: |
| 174 | print "REST IF has issue" |
| 175 | exit |
| 176 | |
| 177 | resp = Response(result, status=200, mimetype='application/json') |
| 178 | return resp |
| 179 | |
Paul Greyson | 6f91840 | 2013-03-28 12:18:30 -0700 | [diff] [blame] | 180 | @app.route("/proxy/gui/delflow/<flow_id>") |
| 181 | def proxy_del_flow(flow_id): |
| 182 | try: |
| 183 | command = "curl -s %s/gui/delflow/%s" % (ONOS_GUI3_CONTROL_HOST, flow_id) |
| 184 | print command |
| 185 | result = os.popen(command).read() |
| 186 | except: |
| 187 | print "REST IF has issue" |
| 188 | exit |
| 189 | |
| 190 | resp = Response(result, status=200, mimetype='application/json') |
| 191 | return resp |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 192 | |
Paul Greyson | 4b4c8af | 2013-04-04 09:02:09 -0700 | [diff] [blame] | 193 | @app.route("/proxy/gui/iperf/start/<flow_id>/<duration>/<samples>") |
| 194 | def proxy_iperf_start(flow_id,duration,samples): |
| 195 | try: |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 196 | command = "curl -m 40 -s %s/gui/iperf/start/%s/%s/%s" % (ONOS_GUI3_CONTROL_HOST, flow_id, duration, samples) |
Paul Greyson | 4b4c8af | 2013-04-04 09:02:09 -0700 | [diff] [blame] | 197 | print command |
| 198 | result = os.popen(command).read() |
| 199 | except: |
| 200 | print "REST IF has issue" |
| 201 | exit |
| 202 | |
| 203 | resp = Response(result, status=200, mimetype='application/json') |
| 204 | return resp |
| 205 | |
| 206 | @app.route("/proxy/gui/iperf/rate/<flow_id>") |
| 207 | def proxy_iperf_rate(flow_id): |
| 208 | try: |
| 209 | command = "curl -s %s/gui/iperf/rate/%s" % (ONOS_GUI3_CONTROL_HOST, flow_id) |
| 210 | print command |
| 211 | result = os.popen(command).read() |
| 212 | except: |
| 213 | print "REST IF has issue" |
| 214 | exit |
| 215 | |
| 216 | resp = Response(result, status=200, mimetype='application/json') |
| 217 | return resp |
| 218 | |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 219 | @app.route("/proxy/gui/reset") |
| 220 | def proxy_gui_reset(): |
| 221 | result = "" |
| 222 | try: |
| 223 | command = "curl -m 300 -s %s/gui/reset" % (ONOS_GUI3_CONTROL_HOST) |
| 224 | print command |
| 225 | result = os.popen(command).read() |
| 226 | except: |
| 227 | print "REST IF has issue" |
| 228 | exit |
Paul Greyson | 4b4c8af | 2013-04-04 09:02:09 -0700 | [diff] [blame] | 229 | |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 230 | resp = Response(result, status=200, mimetype='application/json') |
| 231 | return resp |
| 232 | |
| 233 | @app.route("/proxy/gui/scale") |
| 234 | def proxy_gui_scale(): |
| 235 | result = "" |
| 236 | try: |
| 237 | command = "curl -m 300 -s %s/gui/scale" % (ONOS_GUI3_CONTROL_HOST) |
| 238 | print command |
| 239 | result = os.popen(command).read() |
| 240 | except: |
| 241 | print "REST IF has issue" |
| 242 | exit |
| 243 | |
| 244 | resp = Response(result, status=200, mimetype='application/json') |
| 245 | return resp |
| 246 | |
| 247 | ###### ONOS REST API ############################## |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 248 | ## Worker Func ### |
| 249 | def get_json(url): |
| 250 | code = 200 |
| 251 | try: |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 252 | command = "curl -m 60 -s %s" % (url) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 253 | result = os.popen(command).read() |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 254 | parsedResult = json.loads(result) |
Masayoshi Kobayashi | 8ac3336 | 2013-04-05 03:17:26 +0000 | [diff] [blame] | 255 | if type(parsedResult) == 'dict' and parsedResult.has_key('code'): |
| 256 | print "REST %s returned code %s" % (command, parsedResult['code']) |
| 257 | code=500 |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 258 | except: |
| 259 | print "REST IF %s has issue" % command |
| 260 | result = "" |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 261 | code = 500 |
| 262 | |
| 263 | return (code, result) |
| 264 | |
| 265 | def pick_host(): |
| 266 | if LB == True: |
| 267 | nr_host=len(controllers) |
| 268 | r=random.randint(0, nr_host - 1) |
| 269 | host=controllers[r] |
| 270 | else: |
| 271 | host=ONOS_DEFAULT_HOST |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 272 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 273 | return "http://" + host + ":8080" |
| 274 | |
| 275 | ## Switch ## |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 276 | @app.route("/wm/onos/topology/switches/all/json") |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 277 | def switches(): |
| 278 | if request.args.get('proxy') == None: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 279 | host = pick_host() |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 280 | else: |
| 281 | host = ONOS_GUI3_HOST |
| 282 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 283 | url ="%s/wm/onos/topology/switches/all/json" % (host) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 284 | (code, result) = get_json(url) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 285 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 286 | resp = Response(result, status=code, mimetype='application/json') |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 287 | return resp |
| 288 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 289 | ## Link ## |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 290 | @app.route("/wm/onos/topology/links/json") |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 291 | def links(): |
| 292 | if request.args.get('proxy') == None: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 293 | host = pick_host() |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 294 | else: |
| 295 | host = ONOS_GUI3_HOST |
| 296 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 297 | url ="%s/wm/onos/topology/links/json" % (host) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 298 | (code, result) = get_json(url) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 299 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 300 | resp = Response(result, status=code, mimetype='application/json') |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 301 | return resp |
| 302 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 303 | ## FlowSummary ## |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 304 | @app.route("/wm/onos/flows/getsummary/<start>/<range>/json") |
Masayoshi Kobayashi | cdb652f | 2013-04-04 18:24:29 +0000 | [diff] [blame] | 305 | def flows(start, range): |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 306 | if request.args.get('proxy') == None: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 307 | host = pick_host() |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 308 | else: |
| 309 | host = ONOS_GUI3_HOST |
| 310 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 311 | url ="%s/wm/onos/flows/getsummary/%s/%s/json" % (host, start, range) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 312 | (code, result) = get_json(url) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 313 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 314 | resp = Response(result, status=code, mimetype='application/json') |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 315 | return resp |
| 316 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 317 | @app.route("/wm/onos/registry/controllers/json") |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 318 | def registry_controllers(): |
| 319 | if request.args.get('proxy') == None: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 320 | host = pick_host() |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 321 | else: |
| 322 | host = ONOS_GUI3_HOST |
| 323 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 324 | url= "%s/wm/onos/registry/controllers/json" % (host) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 325 | (code, result) = get_json(url) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 326 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 327 | resp = Response(result, status=code, mimetype='application/json') |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 328 | return resp |
| 329 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 330 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 331 | @app.route("/wm/onos/registry/switches/json") |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 332 | def registry_switches(): |
| 333 | if request.args.get('proxy') == None: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 334 | host = pick_host() |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 335 | else: |
| 336 | host = ONOS_GUI3_HOST |
| 337 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 338 | url="%s/wm/onos/registry/switches/json" % (host) |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 339 | (code, result) = get_json(url) |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 340 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 341 | resp = Response(result, status=code, mimetype='application/json') |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 342 | return resp |
| 343 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 344 | def node_id(switch_array, dpid): |
| 345 | id = -1 |
| 346 | for i, val in enumerate(switch_array): |
| 347 | if val['name'] == dpid: |
| 348 | id = i |
| 349 | break |
| 350 | |
| 351 | return id |
| 352 | |
Masayoshi Kobayashi | 13e2ebe | 2013-03-26 18:38:41 +0000 | [diff] [blame] | 353 | ## API for ON.Lab local GUI ## |
Masayoshi Kobayashi | f63ef2f | 2013-02-20 21:47:21 +0000 | [diff] [blame] | 354 | @app.route('/topology', methods=['GET']) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 355 | def topology_for_gui(): |
| 356 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 357 | command = "curl -s \'http://%s:%s/wm/onos/topology/switches/all/json\'" % (RestIP, RestPort) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 358 | result = os.popen(command).read() |
| 359 | parsedResult = json.loads(result) |
| 360 | except: |
| 361 | log_error("REST IF has issue: %s" % command) |
| 362 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 363 | return |
| 364 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 365 | |
| 366 | topo = {} |
| 367 | switches = [] |
| 368 | links = [] |
Ubuntu | 37ebda6 | 2013-03-01 00:35:31 +0000 | [diff] [blame] | 369 | devices = [] |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 370 | |
| 371 | for v in parsedResult: |
| 372 | if v.has_key('dpid'): |
| 373 | # if v.has_key('dpid') and str(v['state']) == "ACTIVE":#;if you want only ACTIVE nodes |
| 374 | dpid = str(v['dpid']) |
| 375 | state = str(v['state']) |
| 376 | sw = {} |
| 377 | sw['name']=dpid |
Ubuntu | 5b2b24a | 2013-02-27 09:51:13 +0000 | [diff] [blame] | 378 | sw['group']= -1 |
Ubuntu | 37ebda6 | 2013-03-01 00:35:31 +0000 | [diff] [blame] | 379 | |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 380 | if state == "INACTIVE": |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 381 | sw['group']=0 |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 382 | switches.append(sw) |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 383 | |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 384 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 385 | command = "curl -s \'http://%s:%s/wm/onos/registry/switches/json\'" % (RestIP, RestPort) |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 386 | result = os.popen(command).read() |
| 387 | parsedResult = json.loads(result) |
| 388 | except: |
| 389 | log_error("REST IF has issue: %s" % command) |
| 390 | log_error("%s" % result) |
| 391 | |
| 392 | for key in parsedResult: |
| 393 | dpid = key |
| 394 | ctrl = parsedResult[dpid][0]['controllerId'] |
| 395 | sw_id = node_id(switches, dpid) |
| 396 | if sw_id != -1: |
| 397 | if switches[sw_id]['group'] != 0: |
| 398 | switches[sw_id]['group'] = controllers.index(ctrl) + 1 |
| 399 | |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 400 | # try: |
| 401 | # v1 = "00:00:00:00:00:0a:0d:00" |
Ubuntu | 765deff | 2013-02-28 18:39:13 +0000 | [diff] [blame] | 402 | # v1 = "00:00:00:00:00:0d:00:d1" |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 403 | # p1=1 |
| 404 | # v2 = "00:00:00:00:00:0b:0d:03" |
Ubuntu | 765deff | 2013-02-28 18:39:13 +0000 | [diff] [blame] | 405 | # v2 = "00:00:00:00:00:0d:00:d3" |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 406 | # p2=1 |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 407 | # command = "curl -s http://%s:%s/wm/onos/topology/route/%s/%s/%s/%s/json" % (RestIP, RestPort, v1, p1, v2, p2) |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 408 | # result = os.popen(command).read() |
| 409 | # parsedResult = json.loads(result) |
| 410 | # except: |
| 411 | # log_error("No route") |
| 412 | # parsedResult = {} |
Ubuntu | 5b2b24a | 2013-02-27 09:51:13 +0000 | [diff] [blame] | 413 | |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 414 | #path = [] |
| 415 | #if parsedResult.has_key('flowEntries'): |
| 416 | # flowEntries= parsedResult['flowEntries'] |
| 417 | # for i, v in enumerate(flowEntries): |
| 418 | # if i < len(flowEntries) - 1: |
| 419 | # sdpid= flowEntries[i]['dpid']['value'] |
| 420 | # ddpid = flowEntries[i+1]['dpid']['value'] |
| 421 | # path.append( (sdpid, ddpid)) |
Ubuntu | 5b2b24a | 2013-02-27 09:51:13 +0000 | [diff] [blame] | 422 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 423 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 424 | command = "curl -s \'http://%s:%s/wm/onos/topology/links/json\'" % (RestIP, RestPort) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 425 | result = os.popen(command).read() |
| 426 | parsedResult = json.loads(result) |
| 427 | except: |
| 428 | log_error("REST IF has issue: %s" % command) |
| 429 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 430 | return |
| 431 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 432 | |
| 433 | for v in parsedResult: |
| 434 | link = {} |
| 435 | if v.has_key('dst-switch'): |
| 436 | dst_dpid = str(v['dst-switch']) |
| 437 | dst_id = node_id(switches, dst_dpid) |
| 438 | if v.has_key('src-switch'): |
| 439 | src_dpid = str(v['src-switch']) |
| 440 | src_id = node_id(switches, src_dpid) |
| 441 | link['source'] = src_id |
| 442 | link['target'] = dst_id |
Masayoshi Kobayashi | 3bc5fde | 2013-02-28 01:02:54 +0000 | [diff] [blame] | 443 | |
Jonathan Hart | bf66dff | 2013-10-28 14:07:41 -0700 | [diff] [blame] | 444 | #onpath = 0 |
| 445 | #for (s,d) in path: |
| 446 | # if s == v['src-switch'] and d == v['dst-switch']: |
| 447 | # onpath = 1 |
| 448 | # break |
| 449 | #link['type'] = onpath |
Masayoshi Kobayashi | 3bc5fde | 2013-02-28 01:02:54 +0000 | [diff] [blame] | 450 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 451 | links.append(link) |
| 452 | |
| 453 | topo['nodes'] = switches |
| 454 | topo['links'] = links |
| 455 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 456 | js = json.dumps(topo) |
| 457 | resp = Response(js, status=200, mimetype='application/json') |
| 458 | return resp |
| 459 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 460 | #@app.route("/wm/floodlight/topology/toporoute/00:00:00:00:00:a1/2/00:00:00:00:00:c1/3/json") |
| 461 | #@app.route("/wm/floodlight/topology/toporoute/<srcdpid>/<srcport>/<destdpid>/<destport>/json") |
| 462 | @app.route("/wm/floodlight/topology/toporoute/<v1>/<p1>/<v2>/<p2>/json") |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 463 | def shortest_path(v1, p1, v2, p2): |
| 464 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 465 | command = "curl -s \'http://%s:%s/wm/onos/topology/switches/all/json\'" % (RestIP, RestPort) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 466 | result = os.popen(command).read() |
| 467 | parsedResult = json.loads(result) |
| 468 | except: |
| 469 | log_error("REST IF has issue: %s" % command) |
| 470 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 471 | return |
| 472 | # sys.exit(0) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 473 | |
| 474 | topo = {} |
| 475 | switches = [] |
| 476 | links = [] |
| 477 | |
| 478 | for v in parsedResult: |
| 479 | if v.has_key('dpid'): |
| 480 | dpid = str(v['dpid']) |
| 481 | state = str(v['state']) |
| 482 | sw = {} |
| 483 | sw['name']=dpid |
| 484 | if str(v['state']) == "ACTIVE": |
| 485 | if dpid[-2:-1] == "a": |
| 486 | sw['group']=1 |
| 487 | if dpid[-2:-1] == "b": |
| 488 | sw['group']=2 |
| 489 | if dpid[-2:-1] == "c": |
| 490 | sw['group']=3 |
| 491 | if str(v['state']) == "INACTIVE": |
| 492 | sw['group']=0 |
| 493 | |
| 494 | switches.append(sw) |
| 495 | |
| 496 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 497 | command = "curl -s http://%s:%s/wm/onos/topology/route/%s/%s/%s/%s/json" % (RestIP, RestPort, v1, p1, v2, p2) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 498 | result = os.popen(command).read() |
| 499 | parsedResult = json.loads(result) |
| 500 | except: |
| 501 | log_error("No route") |
| 502 | parsedResult = [] |
| 503 | # exit(1) |
| 504 | |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 505 | path = []; |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 506 | for i, v in enumerate(parsedResult): |
| 507 | if i < len(parsedResult) - 1: |
| 508 | sdpid= parsedResult[i]['switch'] |
| 509 | ddpid = parsedResult[i+1]['switch'] |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 510 | path.append( (sdpid, ddpid)) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 511 | |
| 512 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 513 | command = "curl -s \'http://%s:%s/wm/onos/topology/links/json\'" % (RestIP, RestPort) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 514 | result = os.popen(command).read() |
| 515 | parsedResult = json.loads(result) |
| 516 | except: |
| 517 | log_error("REST IF has issue: %s" % command) |
| 518 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 519 | return |
| 520 | # sys.exit(0) |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 521 | |
| 522 | for v in parsedResult: |
| 523 | link = {} |
| 524 | if v.has_key('dst-switch'): |
| 525 | dst_dpid = str(v['dst-switch']) |
| 526 | dst_id = node_id(switches, dst_dpid) |
| 527 | if v.has_key('src-switch'): |
| 528 | src_dpid = str(v['src-switch']) |
| 529 | src_id = node_id(switches, src_dpid) |
| 530 | link['source'] = src_id |
| 531 | link['target'] = dst_id |
| 532 | onpath = 0 |
| 533 | for (s,d) in path: |
| 534 | if s == v['src-switch'] and d == v['dst-switch']: |
| 535 | onpath = 1 |
| 536 | break |
| 537 | |
| 538 | link['type'] = onpath |
| 539 | links.append(link) |
| 540 | |
| 541 | topo['nodes'] = switches |
| 542 | topo['links'] = links |
| 543 | |
Ubuntu | aea2a68 | 2013-02-08 08:30:10 +0000 | [diff] [blame] | 544 | js = json.dumps(topo) |
| 545 | resp = Response(js, status=200, mimetype='application/json') |
| 546 | return resp |
| 547 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 548 | @app.route("/wm/floodlight/core/controller/switches/json") |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 549 | def query_switch(): |
| 550 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 551 | command = "curl -s \'http://%s:%s/wm/onos/topology/switches/all/json\'" % (RestIP, RestPort) |
| 552 | # http://localhost:8080/wm/onos/topology/switches/active/json |
Masayoshi Kobayashi | f63ef2f | 2013-02-20 21:47:21 +0000 | [diff] [blame] | 553 | print command |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 554 | result = os.popen(command).read() |
| 555 | parsedResult = json.loads(result) |
| 556 | except: |
| 557 | log_error("REST IF has issue: %s" % command) |
| 558 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 559 | return |
| 560 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 561 | |
| 562 | # print command |
| 563 | # print result |
| 564 | switches_ = [] |
| 565 | for v in parsedResult: |
| 566 | if v.has_key('dpid'): |
| 567 | if v.has_key('dpid') and str(v['state']) == "ACTIVE":#;if you want only ACTIVE nodes |
| 568 | dpid = str(v['dpid']) |
| 569 | state = str(v['state']) |
| 570 | sw = {} |
| 571 | sw['dpid']=dpid |
| 572 | sw['active']=state |
| 573 | switches_.append(sw) |
| 574 | |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 575 | # pp.pprint(switches_) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 576 | js = json.dumps(switches_) |
| 577 | resp = Response(js, status=200, mimetype='application/json') |
| 578 | return resp |
| 579 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 580 | @app.route("/wm/floodlight/device/") |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 581 | def devices(): |
| 582 | try: |
| 583 | command = "curl -s http://%s:%s/graphs/%s/vertices\?key=type\&value=device" % (RestIP, RestPort, DBName) |
| 584 | result = os.popen(command).read() |
| 585 | parsedResult = json.loads(result)['results'] |
| 586 | except: |
| 587 | log_error("REST IF has issue: %s" % command) |
| 588 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 589 | return |
| 590 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 591 | |
| 592 | devices = [] |
| 593 | for v in parsedResult: |
| 594 | dl_addr = v['dl_addr'] |
| 595 | nw_addr = v['nw_addr'] |
| 596 | vertex = v['_id'] |
| 597 | mac = [] |
| 598 | mac.append(dl_addr) |
| 599 | ip = [] |
| 600 | ip.append(nw_addr) |
| 601 | device = {} |
| 602 | device['entryClass']="DefaultEntryClass" |
| 603 | device['mac']=mac |
| 604 | device['ipv4']=ip |
| 605 | device['vlan']=[] |
| 606 | device['lastSeen']=0 |
| 607 | attachpoints =[] |
| 608 | |
| 609 | port, dpid = deviceV_to_attachpoint(vertex) |
| 610 | attachpoint = {} |
| 611 | attachpoint['port']=port |
| 612 | attachpoint['switchDPID']=dpid |
| 613 | attachpoints.append(attachpoint) |
| 614 | device['attachmentPoint']=attachpoints |
| 615 | devices.append(device) |
| 616 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 617 | js = json.dumps(devices) |
| 618 | resp = Response(js, status=200, mimetype='application/json') |
| 619 | return resp |
| 620 | |
| 621 | #{"entityClass":"DefaultEntityClass","mac":["7c:d1:c3:e0:8c:a3"],"ipv4":["192.168.2.102","10.1.10.35"],"vlan":[],"attachmentPoint":[{"port":13,"switchDPID":"00:01:00:12:e2:78:32:44","errorStatus":null}],"lastSeen":1357333593496} |
| 622 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 623 | ## return fake stat for now |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 624 | @app.route("/wm/floodlight/core/switch/<switchId>/<statType>/json") |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 625 | def switch_stat(switchId, statType): |
| 626 | if statType == "desc": |
| 627 | desc=[{"length":1056,"serialNumber":"None","manufacturerDescription":"Nicira Networks, Inc.","hardwareDescription":"Open vSwitch","softwareDescription":"1.4.0+build0","datapathDescription":"None"}] |
| 628 | ret = {} |
| 629 | ret[switchId]=desc |
| 630 | elif statType == "aggregate": |
| 631 | aggr = {"packetCount":0,"byteCount":0,"flowCount":0} |
| 632 | ret = {} |
| 633 | ret[switchId]=aggr |
| 634 | else: |
Paul Greyson | 4e6dc3a | 2013-03-27 11:37:14 -0700 | [diff] [blame] | 635 | ret = {} |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 636 | |
| 637 | js = json.dumps(ret) |
| 638 | resp = Response(js, status=200, mimetype='application/json') |
| 639 | return resp |
| 640 | |
| 641 | |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 642 | @app.route("/wm/onos/linkdiscovery/links/json") |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 643 | def query_links(): |
| 644 | try: |
| 645 | command = 'curl -s http://%s:%s/graphs/%s/vertices?key=type\&value=port' % (RestIP, RestPort, DBName) |
Masayoshi Kobayashi | f63ef2f | 2013-02-20 21:47:21 +0000 | [diff] [blame] | 646 | print command |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 647 | result = os.popen(command).read() |
| 648 | parsedResult = json.loads(result)['results'] |
| 649 | except: |
| 650 | log_error("REST IF has issue: %s" % command) |
| 651 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 652 | return |
| 653 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 654 | |
| 655 | debug("query_links %s" % command) |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 656 | # pp.pprint(parsedResult) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 657 | sport = [] |
| 658 | links = [] |
| 659 | for v in parsedResult: |
| 660 | srcport = v['_id'] |
| 661 | try: |
| 662 | command = "curl -s http://%s:%s/graphs/%s/vertices/%d/out?_label=link" % (RestIP, RestPort, DBName, srcport) |
| 663 | print command |
| 664 | result = os.popen(command).read() |
| 665 | linkResults = json.loads(result)['results'] |
| 666 | except: |
| 667 | log_error("REST IF has issue: %s" % command) |
| 668 | log_error("%s" % result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 669 | return |
| 670 | # sys.exit(0) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 671 | |
| 672 | for p in linkResults: |
| 673 | if p.has_key('type') and p['type'] == "port": |
| 674 | dstport = p['_id'] |
| 675 | (sport, sdpid) = portV_to_port_dpid(srcport) |
| 676 | (dport, ddpid) = portV_to_port_dpid(dstport) |
| 677 | link = {} |
| 678 | link["src-switch"]=sdpid |
| 679 | link["src-port"]=sport |
| 680 | link["src-port-state"]=0 |
| 681 | link["dst-switch"]=ddpid |
| 682 | link["dst-port"]=dport |
| 683 | link["dst-port-state"]=0 |
| 684 | link["type"]="internal" |
| 685 | links.append(link) |
| 686 | |
Masayoshi Kobayashi | 1407a50 | 2013-02-27 06:23:08 +0000 | [diff] [blame] | 687 | # pp.pprint(links) |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 688 | js = json.dumps(links) |
| 689 | resp = Response(js, status=200, mimetype='application/json') |
| 690 | return resp |
| 691 | |
Ubuntu | c016ba1 | 2013-02-27 21:53:41 +0000 | [diff] [blame] | 692 | @app.route("/controller_status") |
| 693 | def controller_status(): |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 694 | # onos_check="ssh -i ~/.ssh/onlabkey.pem %s ONOS/start-onos.sh status | awk '{print $1}'" |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 695 | onos_check="cd; onos status | grep %s | awk '{print $2}'" |
Ubuntu | c016ba1 | 2013-02-27 21:53:41 +0000 | [diff] [blame] | 696 | #cassandra_check="ssh -i ~/.ssh/onlabkey.pem %s ONOS/start-cassandra.sh status" |
| 697 | |
| 698 | cont_status=[] |
| 699 | for i in controllers: |
| 700 | status={} |
| 701 | onos=os.popen(onos_check % i).read()[:-1] |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 702 | # onos=os.popen(onos_check % (i, i.lower())).read()[:-1] |
Ubuntu | c016ba1 | 2013-02-27 21:53:41 +0000 | [diff] [blame] | 703 | status["name"]=i |
| 704 | status["onos"]=onos |
Masayoshi Kobayashi | 5e91bdf | 2013-03-15 01:22:51 +0000 | [diff] [blame] | 705 | status["cassandra"]=0 |
Ubuntu | c016ba1 | 2013-02-27 21:53:41 +0000 | [diff] [blame] | 706 | cont_status.append(status) |
| 707 | |
| 708 | js = json.dumps(cont_status) |
| 709 | resp = Response(js, status=200, mimetype='application/json') |
Ubuntu | c016ba1 | 2013-02-27 21:53:41 +0000 | [diff] [blame] | 710 | return resp |
| 711 | |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 712 | ### Command ### |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 713 | @app.route("/gui/controller/<cmd>/<controller_name>") |
| 714 | def controller_status_change(cmd, controller_name): |
Masayoshi Kobayashi | df787a4 | 2013-04-09 01:18:48 +0000 | [diff] [blame] | 715 | if (TESTBED == "hw"): |
Tim Lindberg | 34c9ff6 | 2013-04-10 15:06:17 -0700 | [diff] [blame] | 716 | start_onos="/home/admin/bin/onos start %s" % (controller_name[-1:]) |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 717 | # start_onos="/home/admin/bin/onos start %s > /tmp/debug " % (controller_name[-1:]) |
Tim Lindberg | 34c9ff6 | 2013-04-10 15:06:17 -0700 | [diff] [blame] | 718 | stop_onos="/home/admin/bin/onos stop %s" % (controller_name[-1:]) |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 719 | # stop_onos="/home/admin/bin/onos stop %s > /tmp/debug " % (controller_name[-1:]) |
| 720 | # print "Debug: Controller command %s called %s" % (cmd, controller_name) |
Masayoshi Kobayashi | df787a4 | 2013-04-09 01:18:48 +0000 | [diff] [blame] | 721 | else: |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 722 | # No longer use -i to specify keys (use .ssh/config to specify it) |
Pavlin Radoslavov | 1a9c23d | 2013-11-27 11:23:46 -0800 | [diff] [blame] | 723 | start_onos="ssh %s \"cd ONOS; ./start-onos.sh start\"" % (controller_name) |
| 724 | stop_onos="ssh %s \"cd ONOS; ./start-onos.sh stop\"" % (controller_name) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 725 | # start_onos="ssh -i ~/.ssh/onlabkey.pem %s ONOS/start-onos.sh start" % (controller_name) |
| 726 | # stop_onos="ssh -i ~/.ssh/onlabkey.pem %s ONOS/start-onos.sh stop" % (controller_name) |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 727 | |
| 728 | if cmd == "up": |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 729 | result=os.popen(start_onos).read() |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 730 | ret = "controller %s is up: %s" % (controller_name, result) |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 731 | elif cmd == "down": |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 732 | result=os.popen(stop_onos).read() |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 733 | ret = "controller %s is down: %s" % (controller_name, result) |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 734 | |
| 735 | return ret |
| 736 | |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 737 | @app.route("/gui/switchctrl/<cmd>") |
| 738 | def switch_controller_setting(cmd): |
| 739 | if cmd =="local": |
| 740 | print "All aggr switches connects to local controller only" |
| 741 | result="" |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 742 | if (TESTBED == "sw"): |
Jonathan Hart | 4dbaa50 | 2013-04-13 20:21:29 -0700 | [diff] [blame] | 743 | for i in range(1, len(controllers)): |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 744 | cmd_string="ssh %s 'cd ONOS/scripts; ./ctrl-local.sh'" % (controllers[i]) |
| 745 | result += os.popen(cmd_string).read() |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 746 | else: |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 747 | cmd_string="cd; switch local > /tmp/watch" |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 748 | result += os.popen(cmd_string).read() |
| 749 | elif cmd =="all": |
| 750 | print "All aggr switches connects to all controllers except for core controller" |
| 751 | result="" |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 752 | if (TESTBED == "sw"): |
Jonathan Hart | 4dbaa50 | 2013-04-13 20:21:29 -0700 | [diff] [blame] | 753 | for i in range(1, len(controllers)): |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 754 | cmd_string="ssh %s 'cd ONOS/scripts; ./ctrl-add-ext.sh'" % (controllers[i]) |
| 755 | # cmd_string="ssh -i ~/.ssh/onlabkey.pem %s 'cd ONOS/scripts; ./ctrl-add-ext.sh'" % (controllers[i]) |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 756 | print "cmd is: "+cmd_string |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 757 | result += os.popen(cmd_string).read() |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 758 | else: |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 759 | cmd_string="/home/admin/bin/switch all > /tmp/watch" |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 760 | result += os.popen(cmd_string).read() |
| 761 | |
| 762 | return result |
| 763 | |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 764 | @app.route("/gui/reset") |
| 765 | def reset_demo(): |
Masayoshi Kobayashi | 1ef9ec0 | 2013-04-12 18:03:12 +0000 | [diff] [blame] | 766 | if (TESTBED == "hw"): |
| 767 | cmd_string="cd ~/bin; ./demo-reset-hw.sh > /tmp/watch &" |
| 768 | else: |
| 769 | cmd_string="cd ~/ONOS/scripts; ./demo-reset-sw.sh > /tmp/watch &" |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 770 | os.popen(cmd_string) |
| 771 | return "Reset" |
| 772 | |
| 773 | @app.route("/gui/scale") |
| 774 | def scale_demo(): |
Masayoshi Kobayashi | 1ef9ec0 | 2013-04-12 18:03:12 +0000 | [diff] [blame] | 775 | if (TESTBED == "hw"): |
| 776 | cmd_string="cd ~/bin; ~/bin/demo-scale-out-hw.sh > /tmp/watch &" |
| 777 | else: |
| 778 | cmd_string="cd ~/ONOS/scripts; ./demo-scale-out-sw.sh > /tmp/watch &" |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 779 | os.popen(cmd_string) |
| 780 | return "scale" |
Masayoshi Kobayashi | 03e64b4 | 2013-04-05 05:56:27 +0000 | [diff] [blame] | 781 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 782 | @app.route("/gui/switch/<cmd>/<dpid>") |
| 783 | def switch_status_change(cmd, dpid): |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 784 | result = "" |
| 785 | if (TESTBED == "hw"): |
| 786 | return result |
| 787 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 788 | r = re.compile(':') |
| 789 | dpid = re.sub(r, '', dpid) |
Masayoshi Kobayashi | c0bc319 | 2013-03-27 23:12:03 +0000 | [diff] [blame] | 790 | host=controllers[0] |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 791 | cmd_string="ssh %s 'cd ONOS/scripts; ./switch.sh %s %s'" % (host, dpid, cmd) |
| 792 | # cmd_string="ssh -i ~/.ssh/onlabkey.pem %s 'cd ONOS/scripts; ./switch.sh %s %s'" % (host, dpid, cmd) |
Masayoshi Kobayashi | c0bc319 | 2013-03-27 23:12:03 +0000 | [diff] [blame] | 793 | get_status="ssh -i ~/.ssh/onlabkey.pem %s 'cd ONOS/scripts; ./switch.sh %s'" % (host, dpid) |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 794 | print "cmd_string" |
| 795 | |
| 796 | if cmd =="up" or cmd=="down": |
| 797 | print "make dpid %s %s" % (dpid, cmd) |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 798 | os.popen(cmd_string) |
| 799 | result=os.popen(get_status).read() |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 800 | |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 801 | return result |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 802 | |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 803 | #* Link Up |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 804 | #http://localhost:9000/gui/link/up/<src_dpid>/<src_port>/<dst_dpid>/<dst_port> |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 805 | @app.route("/gui/link/up/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>") |
| 806 | def link_up(src_dpid, src_port, dst_dpid, dst_port): |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 807 | result = "" |
| 808 | |
Paul Greyson | c090d14 | 2013-04-09 16:59:03 -0700 | [diff] [blame] | 809 | if (TESTBED == "sw"): |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 810 | result = link_up_sw(src_dpid, src_port, dst_dpid, dst_port) |
| 811 | else: |
| 812 | result = link_up_hw(src_dpid, src_port, dst_dpid, dst_port) |
| 813 | return result |
| 814 | |
| 815 | # Link up on software testbed |
| 816 | def link_up_sw(src_dpid, src_port, dst_dpid, dst_port): |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 817 | |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 818 | cmd = 'up' |
| 819 | result="" |
Paul Greyson | 472da4c | 2013-03-28 11:43:17 -0700 | [diff] [blame] | 820 | for dpid in (src_dpid, dst_dpid): |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 821 | if dpid in core_switches: |
| 822 | host = controllers[0] |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 823 | else: |
Masayoshi Kobayashi | 05f12b3 | 2013-04-01 09:08:09 +0000 | [diff] [blame] | 824 | hostid=int(dpid.split(':')[-2]) |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 825 | host = controllers[hostid-1] |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 826 | |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 827 | if dpid == src_dpid: |
| 828 | (port, dontcare) = get_link_ports(dpid, dst_dpid) |
| 829 | else: |
| 830 | (port, dontcare) = get_link_ports(dpid, src_dpid) |
| 831 | |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 832 | # cmd_string="ssh -i ~/.ssh/onlabkey.pem %s 'cd ONOS/scripts; ./link.sh %s %s %s'" % (host, dpid, port, cmd) |
| 833 | cmd_string="ssh %s 'cd ONOS/scripts; ./link.sh %s %s %s'" % (host, dpid, port, cmd) |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 834 | print cmd_string |
| 835 | res=os.popen(cmd_string).read() |
| 836 | result = result + ' ' + res |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 837 | |
| 838 | return result |
| 839 | |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 840 | # if hostid == 2 : |
| 841 | # src_ports = [51] |
| 842 | # else : |
| 843 | # src_ports = [26] |
| 844 | # |
| 845 | # for port in src_ports : |
| 846 | # cmd_string="ssh -i ~/.ssh/onlabkey.pem %s 'cd ONOS/scripts; ./link.sh %s %s %s'" % (host, dpid, port, cmd) |
| 847 | # print cmd_string |
| 848 | # res=os.popen(cmd_string).read() |
| 849 | |
| 850 | |
| 851 | |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 852 | # Link up on hardware testbed |
| 853 | def link_up_hw(src_dpid, src_port, dst_dpid, dst_port): |
| 854 | |
| 855 | port1 = src_port |
| 856 | port2 = dst_port |
| 857 | if src_dpid == "00:00:00:00:ba:5e:ba:11": |
| 858 | if dst_dpid == "00:00:00:08:a2:08:f9:01": |
| 859 | port1 = 24 |
| 860 | port2 = 24 |
| 861 | elif dst_dpid == "00:01:00:16:97:08:9a:46": |
| 862 | port1 = 23 |
| 863 | port2 = 23 |
| 864 | elif src_dpid == "00:00:00:00:ba:5e:ba:13": |
| 865 | if dst_dpid == "00:00:20:4e:7f:51:8a:35": |
| 866 | port1 = 22 |
| 867 | port2 = 22 |
| 868 | elif dst_dpid == "00:00:00:00:00:00:ba:12": |
| 869 | port1 = 23 |
| 870 | port2 = 23 |
| 871 | elif src_dpid == "00:00:00:00:00:00:ba:12": |
| 872 | if dst_dpid == "00:00:00:00:ba:5e:ba:13": |
| 873 | port1 = 23 |
| 874 | port2 = 23 |
| 875 | elif dst_dpid == "00:00:00:08:a2:08:f9:01": |
| 876 | port1 = 22 |
| 877 | port2 = 22 |
| 878 | elif dst_dpid == "00:00:20:4e:7f:51:8a:35": |
| 879 | port1 = 24 |
| 880 | port2 = 21 |
| 881 | elif src_dpid == "00:01:00:16:97:08:9a:46": |
| 882 | if dst_dpid == "00:00:00:00:ba:5e:ba:11": |
| 883 | port1 = 23 |
| 884 | port2 = 23 |
| 885 | elif dst_dpid == "00:00:20:4e:7f:51:8a:35": |
| 886 | port1 = 24 |
| 887 | port2 = 24 |
| 888 | elif src_dpid == "00:00:00:08:a2:08:f9:01": |
| 889 | if dst_dpid == "00:00:00:00:ba:5e:ba:11": |
| 890 | port1 = 24 |
| 891 | port2 = 24 |
| 892 | elif dst_dpid == "00:00:00:00:00:00:ba:12": |
| 893 | port1 = 22 |
| 894 | port2 = 22 |
| 895 | elif dst_dpid == "00:00:20:4e:7f:51:8a:35": |
| 896 | port1 = 23 |
| 897 | port2 = 23 |
| 898 | elif src_dpid == "00:00:20:4e:7f:51:8a:35": |
| 899 | if dst_dpid == "00:00:00:00:00:00:ba:12": |
| 900 | port1 = 21 |
| 901 | port2 = 24 |
| 902 | elif dst_dpid == "00:00:00:00:ba:5e:ba:13": |
| 903 | port1 = 22 |
| 904 | port2 = 22 |
| 905 | elif dst_dpid == "00:01:00:16:97:08:9a:46": |
| 906 | port1 = 24 |
| 907 | port2 = 24 |
| 908 | elif dst_dpid == "00:00:00:08:a2:08:f9:01": |
| 909 | port1 = 23 |
| 910 | port2 = 23 |
| 911 | |
| 912 | cmd = 'up' |
| 913 | result="" |
| 914 | host = controllers[0] |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 915 | cmd_string="~/ONOS/scripts/link-hw.sh %s %s %s " % (src_dpid, port1, cmd) |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 916 | print cmd_string |
| 917 | res=os.popen(cmd_string).read() |
| 918 | result = result + ' ' + res |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 919 | cmd_string="~/ONOS/scripts/link-hw.sh %s %s %s " % (dst_dpid, port2, cmd) |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 920 | print cmd_string |
| 921 | res=os.popen(cmd_string).read() |
| 922 | result = result + ' ' + res |
| 923 | |
| 924 | |
| 925 | return result |
| 926 | |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 927 | |
| 928 | #* Link Down |
| 929 | #http://localhost:9000/gui/link/down/<src_dpid>/<src_port>/<dst_dpid>/<dst_port> |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 930 | @app.route("/gui/link/<cmd>/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>") |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 931 | def link_down(cmd, src_dpid, src_port, dst_dpid, dst_port): |
| 932 | |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 933 | if src_dpid in core_switches: |
| 934 | host = controllers[0] |
| 935 | else: |
| 936 | hostid=int(src_dpid.split(':')[-2]) |
| 937 | host = controllers[hostid-1] |
| 938 | |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 939 | if (TESTBED == "sw"): |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 940 | cmd_string="ssh %s 'cd ONOS/scripts; ./link.sh %s %s %s'" % (host, src_dpid, src_port, cmd) |
Tim Lindberg | 201ade2 | 2013-04-05 11:52:08 -0700 | [diff] [blame] | 941 | else: |
Tim Lindberg | a6c0417 | 2013-04-05 17:34:05 -0700 | [diff] [blame] | 942 | if ( src_dpid == "00:00:00:08:a2:08:f9:01" ): |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 943 | cmd_string="~/ONOS/scripts/link-hw.sh %s %s %s " % ( dst_dpid, dst_port, cmd) |
Tim Lindberg | a6c0417 | 2013-04-05 17:34:05 -0700 | [diff] [blame] | 944 | else: |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 945 | cmd_string="~/ONOS/scripts/link-hw.sh %s %s %s " % ( src_dpid, src_port, cmd) |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 946 | print cmd_string |
| 947 | |
Masayoshi Kobayashi | decab44 | 2013-03-28 11:19:13 +0000 | [diff] [blame] | 948 | result=os.popen(cmd_string).read() |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 949 | |
| 950 | return result |
| 951 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 952 | #* Create Flow |
| 953 | #http://localhost:9000/gui/addflow/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>/<srcMAC>/<dstMAC> |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 954 | #1 FOOBAR 00:00:00:00:00:00:01:01 1 00:00:00:00:00:00:01:0b 1 matchSrcMac 00:00:00:00:00:00 matchDstMac 00:01:00:00:00:00 |
Masayoshi Kobayashi | 81f6565 | 2013-03-28 21:06:39 +0000 | [diff] [blame] | 955 | @app.route("/gui/addflow/<src_dpid>/<src_port>/<dst_dpid>/<dst_port>/<srcMAC>/<dstMAC>") |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 956 | def add_flow(src_dpid, src_port, dst_dpid, dst_port, srcMAC, dstMAC): |
Masayoshi Kobayashi | ab01bcf | 2013-04-09 04:21:57 +0000 | [diff] [blame] | 957 | host = pick_host() |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 958 | url ="%s/wm/onos/flows/getsummary/%s/%s/json" % (host, 0, 0) |
Masayoshi Kobayashi | ab01bcf | 2013-04-09 04:21:57 +0000 | [diff] [blame] | 959 | (code, result) = get_json(url) |
| 960 | parsedResult = json.loads(result) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 961 | if len(parsedResult) > 0: |
| 962 | if parsedResult[-1].has_key('flowId'): |
Pavlin Radoslavov | 2e74257 | 2013-11-26 18:50:23 -0800 | [diff] [blame] | 963 | flow_nr = int(parsedResult[-1]['flowId']['value'], 16) |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 964 | else: |
| 965 | flow_nr = -1 # first flow |
| 966 | print "first flow" |
| 967 | |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 968 | flow_nr += 1 |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 969 | command = "%s/web/add_flow.py -m onos %d %s %s %s %s %s matchSrcMac %s matchDstMac %s" % (ONOSDIR, flow_nr, "dummy", src_dpid, src_port, dst_dpid, dst_port, srcMAC, dstMAC) |
Masayoshi Kobayashi | df787a4 | 2013-04-09 01:18:48 +0000 | [diff] [blame] | 970 | flow_nr += 1 |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 971 | command1 = "%s/web/add_flow.py -m onos %d %s %s %s %s %s matchSrcMac %s matchDstMac %s" % (ONOSDIR, flow_nr, "dummy", dst_dpid, dst_port, src_dpid, src_port, dstMAC, srcMAC) |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 972 | print "add flow: %s, %s" % (command, command1) |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 973 | errcode = os.popen(command).read() |
Masayoshi Kobayashi | cdb652f | 2013-04-04 18:24:29 +0000 | [diff] [blame] | 974 | errcode1 = os.popen(command1).read() |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 975 | ret=command+":"+errcode+" "+command1+":"+errcode1 |
| 976 | print ret |
| 977 | return ret |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 978 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 979 | #* Delete Flow |
| 980 | #http://localhost:9000/gui/delflow/<flow_id> |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 981 | @app.route("/gui/delflow/<flow_id>") |
| 982 | def del_flow(flow_id): |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 983 | command = "%/web/delete_flow.py %s" % (ONOSDIR, flow_id) |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 984 | print command |
| 985 | errcode = os.popen(command).read() |
| 986 | return errcode |
| 987 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 988 | #* Start Iperf Througput |
Umesh Krishnaswamy | 6689be3 | 2013-03-27 18:12:26 -0700 | [diff] [blame] | 989 | #http://localhost:9000/gui/iperf/start/<flow_id>/<duration> |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 990 | @app.route("/gui/iperf/start/<flow_id>/<duration>/<samples>") |
| 991 | def iperf_start(flow_id,duration,samples): |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 992 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 993 | command = "curl -s \'http://%s:%s/wm/onos/flows/get/%s/json\'" % (RestIP, RestPort, flow_id) |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 994 | print command |
| 995 | result = os.popen(command).read() |
| 996 | if len(result) == 0: |
| 997 | print "No Flow found" |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 998 | return "Flow %s not found" % (flow_id); |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 999 | except: |
| 1000 | print "REST IF has issue" |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 1001 | return "REST IF has issue" |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1002 | exit |
| 1003 | |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1004 | parsedResult = json.loads(result) |
| 1005 | |
| 1006 | flowId = int(parsedResult['flowId']['value'], 16) |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1007 | src_dpid = parsedResult['dataPath']['srcPort']['dpid']['value'] |
| 1008 | src_port = parsedResult['dataPath']['srcPort']['port']['value'] |
| 1009 | dst_dpid = parsedResult['dataPath']['dstPort']['dpid']['value'] |
| 1010 | dst_port = parsedResult['dataPath']['dstPort']['port']['value'] |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1011 | # print "FlowPath: (flowId = %s src = %s/%s dst = %s/%s" % (flowId, src_dpid, src_port, dst_dpid, dst_port) |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1012 | |
| 1013 | if src_dpid in core_switches: |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1014 | src_host = controllers[0] |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1015 | else: |
| 1016 | hostid=int(src_dpid.split(':')[-2]) |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1017 | if TESTBED == "hw": |
| 1018 | src_host = "mininet%i" % hostid |
| 1019 | else: |
| 1020 | src_host = controllers[hostid-1] |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1021 | |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1022 | if dst_dpid in core_switches: |
| 1023 | dst_host = controllers[0] |
| 1024 | else: |
| 1025 | hostid=int(dst_dpid.split(':')[-2]) |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1026 | if TESTBED == "hw": |
| 1027 | dst_host = "mininet%i" % hostid |
| 1028 | else: |
| 1029 | dst_host = controllers[hostid-1] |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1030 | |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1031 | # /runiperf.sh <flowid> <src_dpid> <dst_dpid> hw:svr|sw:svr|hw:client|sw:client <proto>/<duration>/<interval>/<samples> |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1032 | protocol="udp" |
| 1033 | interval=0.1 |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1034 | if TESTBED == "hw": |
| 1035 | cmd_string="dsh -w %s 'cd ONOS/scripts; " % dst_host |
| 1036 | else: |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 1037 | cmd_string="ssh %s 'cd ONOS/scripts; " % dst_host |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1038 | cmd_string += "./runiperf.sh %d %s %s %s:%s %s/%s/%s/%s'" % (flowId, src_dpid, dst_dpid, TESTBED, "svr", protocol, duration, interval, samples) |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1039 | print cmd_string |
| 1040 | os.popen(cmd_string) |
| 1041 | |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1042 | if TESTBED == "hw": |
| 1043 | cmd_string="dsh -w %s 'cd ONOS/scripts; " % src_host |
| 1044 | else: |
Masayoshi Kobayashi | 7fa3fb8 | 2013-06-20 18:10:46 -0700 | [diff] [blame] | 1045 | cmd_string="ssh %s 'cd ONOS/scripts;" % src_host |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1046 | cmd_string+="./runiperf.sh %d %s %s %s:%s %s/%s/%s/%s'" % (flowId, src_dpid, dst_dpid, TESTBED, "client", protocol, duration, interval, samples) |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1047 | print cmd_string |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1048 | os.popen(cmd_string) |
Masayoshi Kobayashi | fd56631 | 2013-04-01 10:34:01 +0000 | [diff] [blame] | 1049 | |
Masayoshi Kobayashi | cdb652f | 2013-04-04 18:24:29 +0000 | [diff] [blame] | 1050 | return cmd_string |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1051 | |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1052 | |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 1053 | #* Get Iperf Throughput |
| 1054 | #http://localhost:9000/gui/iperf/rate/<flow_id> |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1055 | @app.route("/gui/iperf/rate/<flow_id>") |
| 1056 | def iperf_rate(flow_id): |
| 1057 | try: |
Naoki Shiota | 862cc3b | 2013-12-13 15:42:50 -0800 | [diff] [blame] | 1058 | command = "curl -s \'http://%s:%s/wm/onos/flows/get/%s/json\'" % (RestIP, RestPort, flow_id) |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1059 | print command |
| 1060 | result = os.popen(command).read() |
| 1061 | if len(result) == 0: |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 1062 | resp = Response(result, status=400, mimetype='text/html') |
| 1063 | return "no such iperf flow (flowid %s)" % flow_id; |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1064 | except: |
| 1065 | print "REST IF has issue" |
| 1066 | exit |
| 1067 | |
| 1068 | parsedResult = json.loads(result) |
| 1069 | |
| 1070 | flowId = int(parsedResult['flowId']['value'], 16) |
| 1071 | src_dpid = parsedResult['dataPath']['srcPort']['dpid']['value'] |
| 1072 | src_port = parsedResult['dataPath']['srcPort']['port']['value'] |
| 1073 | dst_dpid = parsedResult['dataPath']['dstPort']['dpid']['value'] |
| 1074 | dst_port = parsedResult['dataPath']['dstPort']['port']['value'] |
| 1075 | |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1076 | if dst_dpid in core_switches: |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1077 | host = controllers[0] |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1078 | else: |
Tim Lindberg | b03673d | 2013-04-10 13:47:31 -0700 | [diff] [blame] | 1079 | hostid=int(dst_dpid.split(':')[-2]) |
| 1080 | if TESTBED == "hw": |
| 1081 | host = "mininet%i" % hostid |
| 1082 | else: |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1083 | host = controllers[hostid-1] |
| 1084 | |
| 1085 | try: |
Umesh Krishnaswamy | 5c3eddf | 2013-04-06 00:24:01 -0700 | [diff] [blame] | 1086 | command = "curl -s http://%s:%s/log/iperfsvr_%s.out" % (host, 9000, flow_id) |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1087 | print command |
| 1088 | result = os.popen(command).read() |
| 1089 | except: |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1090 | exit |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 1091 | |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 1092 | if re.match("Cannot", result): |
Masayoshi Kobayashi | b56f297 | 2013-04-05 02:57:29 +0000 | [diff] [blame] | 1093 | resp = Response(result, status=400, mimetype='text/html') |
Tim Lindberg | 6445a18 | 2013-04-15 10:17:18 -0700 | [diff] [blame] | 1094 | return "no iperf file found (host %s flowid %s): %s" % (host, flow_id, result) |
Masayoshi Kobayashi | b56f297 | 2013-04-05 02:57:29 +0000 | [diff] [blame] | 1095 | else: |
| 1096 | resp = Response(result, status=200, mimetype='application/json') |
| 1097 | return resp |
Masayoshi Kobayashi | 5101152 | 2013-03-27 00:18:12 +0000 | [diff] [blame] | 1098 | |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 1099 | if __name__ == "__main__": |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 1100 | random.seed() |
Pavlin Radoslavov | 092d0e2 | 2013-04-07 05:42:51 +0000 | [diff] [blame] | 1101 | read_config() |
Masayoshi Kobayashi | 8158d44 | 2013-04-09 02:43:39 +0000 | [diff] [blame] | 1102 | read_link_def() |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 1103 | if len(sys.argv) > 1 and sys.argv[1] == "-d": |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1104 | # add_flow("00:00:00:00:00:00:02:02", 1, "00:00:00:00:00:00:03:02", 1, "00:00:00:00:02:02", "00:00:00:00:03:0c") |
| 1105 | # link_change("up", "00:00:00:00:ba:5e:ba:11", 1, "00:00:00:00:00:00:00:00", 1) |
| 1106 | # link_change("down", "00:00:20:4e:7f:51:8a:35", 1, "00:00:00:00:00:00:00:00", 1) |
| 1107 | # link_change("up", "00:00:00:00:00:00:02:03", 1, "00:00:00:00:00:00:00:00", 1) |
| 1108 | # link_change("down", "00:00:00:00:00:00:07:12", 1, "00:00:00:00:00:00:00:00", 1) |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1109 | # print "-- query all switches --" |
| 1110 | # query_switch() |
| 1111 | # print "-- query topo --" |
| 1112 | # topology_for_gui() |
Masayoshi Kobayashi | 1e07238 | 2013-03-27 05:17:09 +0000 | [diff] [blame] | 1113 | # link_change(1,2,3,4) |
| 1114 | print "-- query all links --" |
Masayoshi Kobayashi | 3d04931 | 2013-04-02 22:15:16 +0000 | [diff] [blame] | 1115 | # query_links() |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 1116 | # print "-- query all devices --" |
| 1117 | # devices() |
Masayoshi Kobayashi | 2ae891a | 2013-04-05 02:16:19 +0000 | [diff] [blame] | 1118 | # iperf_start(1,10,15) |
| 1119 | # iperf_rate(1) |
Masayoshi Kobayashi | ab01bcf | 2013-04-09 04:21:57 +0000 | [diff] [blame] | 1120 | # switches() |
Tim Lindberg | 9ec5e22 | 2013-04-12 10:46:02 -0700 | [diff] [blame] | 1121 | # add_flow(1,2,3,4,5,6) |
| 1122 | reset_demo() |
Ubuntu | 82b8a83 | 2013-02-06 22:00:11 +0000 | [diff] [blame] | 1123 | else: |
| 1124 | app.debug = True |
Masayoshi Kobayashi | f63ef2f | 2013-02-20 21:47:21 +0000 | [diff] [blame] | 1125 | app.run(threaded=True, host="0.0.0.0", port=9000) |