1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 19:11:51 +00:00
openmptcprouter-feeds/luci-app-mptcp/luasrc/controller/mptcp.lua

117 lines
3.8 KiB
Lua
Raw Normal View History

2018-03-27 14:22:25 +00:00
-- Copyright 2008 Steven Barth <steven@midlink.org>
-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
-- Copyright 2018 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
-- Licensed to the public under the Apache License 2.0.
2018-03-21 16:30:44 +00:00
module("luci.controller.mptcp", package.seeall)
function index()
2018-03-27 14:22:25 +00:00
entry({"admin", "network", "mptcp"}, alias("admin", "network", "mptcp", "settings"), _("MPTCP"))
2018-03-28 08:59:15 +00:00
entry({"admin", "network", "mptcp", "settings"}, cbi("mptcp"), _("Settings"),2).leaf = true
entry({"admin", "network", "mptcp", "bandwidth"}, template("mptcp/multipath"), _("Bandwidth"), 3).leaf = true
2018-03-27 14:22:25 +00:00
entry({"admin", "network", "mptcp", "multipath_bandwidth"}, call("multipath_bandwidth")).leaf = true
entry({"admin", "network", "mptcp", "interface_bandwidth"}, call("interface_bandwidth")).leaf = true
2018-11-27 14:18:03 +00:00
entry({"admin", "network", "mptcp", "mptcp_check"}, template("mptcp/mptcp_check"), _("MPTCP Support Check"), 4).leaf = true
entry({"admin", "network", "mptcp", "mptcp_check_trace"}, post("mptcp_check_trace")).leaf = true
2019-01-03 14:56:49 +00:00
entry({"admin", "network", "mptcp", "mptcp_fullmesh"}, template("mptcp/mptcp_fullmesh"), _("MPTCP Fullmesh"), 5).leaf = true
2019-01-03 10:47:02 +00:00
entry({"admin", "network", "mptcp", "mptcp_fullmesh_data"}, post("mptcp_fullmesh_data")).leaf = true
2019-01-03 14:56:49 +00:00
entry({"admin", "network", "mptcp", "mptcp_connections"}, template("mptcp/mptcp_connections"), _("Established connections"), 6).leaf = true
entry({"admin", "network", "mptcp", "mptcp_connections_data"}, post("mptcp_connections_data")).leaf = true
2018-03-27 14:22:25 +00:00
end
function interface_bandwidth(iface)
luci.http.prepare_content("application/json")
local bwc = io.popen("luci-bwc -i %q 2>/dev/null" % iface)
if bwc then
luci.http.write("[")
while true do
local ln = bwc:read("*l")
if not ln then break end
luci.http.write(ln)
end
luci.http.write("]")
bwc:close()
end
end
function multipath_bandwidth()
local result = { };
local uci = luci.model.uci.cursor()
2018-05-22 09:13:28 +00:00
uci:foreach("network", "interface", function(s)
2018-09-14 21:04:06 +00:00
local dev = s["ifname"] or ""
2018-05-22 09:13:28 +00:00
if dev ~= "lo" and dev ~= "" then
local multipath = s["multipath"] or "off"
2018-03-27 14:22:25 +00:00
if multipath == "on" or multipath == "master" or multipath == "backup" or multipath == "handover" then
local bwc = luci.sys.exec("luci-bwc -i %q 2>/dev/null" % dev) or ""
if bwc ~= nil then
result[dev] = "[" .. string.gsub(bwc, '[\r\n]', '') .. "]"
else
result[dev] = "[]"
end
2018-03-27 14:22:25 +00:00
end
end
2018-05-22 09:13:28 +00:00
end)
2018-03-27 14:22:25 +00:00
luci.http.prepare_content("application/json")
luci.http.write_json(result)
2018-03-21 16:30:44 +00:00
end
2018-11-27 14:18:03 +00:00
2018-11-30 14:34:21 +00:00
function get_device(interface)
local dump = require("luci.util").ubus("network.interface.%s" % interface, "status", {})
return dump['l3_device']
end
2018-11-27 14:18:03 +00:00
function mptcp_check_trace(iface)
luci.http.prepare_content("text/plain")
local tracebox
local uci = require "luci.model.uci".cursor()
local interface = get_device(iface)
local server = uci:get("shadowsocks-libev", "sss0", "server") or ""
if server == "" then return end
if interface == "" then
tracebox = io.popen("tracebox -s /usr/share/tracebox/omr-mptcp-trace.lua " .. server)
else
tracebox = io.popen("tracebox -s /usr/share/tracebox/omr-mptcp-trace.lua -i " .. interface .. " " .. server)
end
if tracebox then
while true do
local ln = tracebox:read("*l")
if not ln then break end
luci.http.write(ln)
luci.http.write("\n")
end
end
return
end
2019-01-03 10:47:02 +00:00
function mptcp_fullmesh_data()
luci.http.prepare_content("text/plain")
2019-01-03 14:56:49 +00:00
local fullmesh
2019-01-03 10:47:02 +00:00
fullmesh = io.popen("multipath -f")
if fullmesh then
while true do
local ln = fullmesh:read("*l")
if not ln then break end
luci.http.write(ln)
luci.http.write("\n")
end
end
return
end
2019-01-03 14:56:49 +00:00
function mptcp_connections_data()
luci.http.prepare_content("text/plain")
local connections
connections = io.popen("multipath -c")
if connections then
while true do
local ln = connections:read("*l")
if not ln then break end
luci.http.write(ln)
luci.http.write("\n")
end
end
return
end