diff options
Diffstat (limited to 'applications')
6 files changed, 233 insertions, 295 deletions
diff --git a/applications/luci-app-sqm/Makefile b/applications/luci-app-sqm/Makefile index ab2ec47f7..4ab842b24 100644 --- a/applications/luci-app-sqm/Makefile +++ b/applications/luci-app-sqm/Makefile @@ -6,12 +6,9 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for SQM Scripts LUCI_DESCRIPTION:=Luci interface for the SQM scripts queue management package -PKG_VERSION:=1.4.0 -PKG_RELEASE:=8 - PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk> -LUCI_DEPENDS:=+luci-compat +sqm-scripts +LUCI_DEPENDS:=+sqm-scripts LUCI_PKGARCH:=all include ../../luci.mk diff --git a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js new file mode 100644 index 000000000..c60e00b40 --- /dev/null +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -0,0 +1,210 @@ +'use strict'; +'require fs'; +'require rpc'; +'require uci'; +'require view'; +'require form'; +'require tools.widgets as widgets'; + +return view.extend({ + handleGetHelpText: function(script_name, tbl) { + return fs.read("/usr/lib/sqm/" + script_name + ".help").then(function (text) { + if (text) + return [script_name, text]; + }); + }, + + handleEnableSQM: rpc.declare({ + object: 'luci', + method: 'setInitAction', + params: [ 'sqm', 'enable' ], + expect: { result: false } + }), + + load: function() { + return Promise.all([ + fs.list("/var/run/sqm/available_qdiscs"), + fs.list("/usr/lib/sqm").then(L.bind(function(scripts) { + var tasks = [], scriptHelpTbl = {}; + + for (var i = 0; i < scripts.length; i++) + if (scripts[i].name.search(/\.qos$/) != -1) + tasks.push(L.resolveDefault(this.handleGetHelpText(scripts[i].name, scriptHelpTbl), [scripts[i].name, null])); + + return Promise.all(tasks); + }, this)), + uci.load('sqm') + ]); + }, + + render: function(data) { + var qdiscs = data[0], + scripts = data[1]; + + var m, s, o; + + m = new form.Map('sqm', _('Smart Queue Management')); + m.description = _("With <abbr title=\"Smart Queue Management\">SQM</abbr> you " + + "can enable traffic shaping, better mixing (Fair Queueing)," + + " active queue length management (AQM) " + + " and prioritisation on one " + + "network interface."); + + s = m.section(form.TypedSection, 'queue', _('Queues')); + s.tab("tab_basic", _("Basic Settings")); + s.tab("tab_qdisc", _("Queue Discipline")); + s.tab("tab_linklayer", _("Link Layer Adaptation")); + s.anonymous = true; + s.addremove = true; + + o = s.taboption("tab_basic", form.Flag, "enabled", _("Enable this SQM instance.")); + o.rmempty = false; + o.write = L.bind(function(section, value) { + if (value == "1") { + this.handleEnableSQM(); + L.ui.addNotification(null, E('p', _("The SQM GUI has just enabled the sqm initscript on your behalf. Remember to disable the sqm initscript manually under System Startup menu in case this change was not wished for."))); + } + + return uci.set("sqm", section, "enabled", value); + }, this); + + o = s.taboption("tab_basic", widgets.NetworkSelect, "interface", _("Interface name")); + o.rmempty = false; + + o = s.taboption("tab_basic", form.Value, "download", _("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:")); + o.datatype = "and(uinteger,min(0))"; + o.rmempty = false; + + o = s.taboption("tab_basic", form.Value, "upload", _("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping:")); + o.datatype = "and(uinteger,min(0))"; + o.rmempty = false; + + o = s.taboption("tab_basic", form.Flag, "debug_logging", _("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log.")); + o.rmempty = false; + + o = s.taboption("tab_basic", form.ListValue, "verbosity", _("Verbosity of SQM's output into the system log.")); + o.value("0", "silent"); + o.value("1", "error"); + o.value("2", "warning"); + o.value("5", "info ("+_("default")+")"); + o.value("8", "debug"); + o.value("10", "trace"); + o.default = "5"; + + o = s.taboption("tab_qdisc", form.ListValue, "qdisc", _("Queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!")); + for (var i=0; i < qdiscs.length; i++) { + o.value(qdiscs[i].name); + } + o.default = "fq_codel"; + o.rmempty = false; + + var qos_desc = ""; + o = s.taboption("tab_qdisc", form.ListValue, "script", _("Queue setup script")); + for (i = 0; i < scripts.length; i++) { + o.value(scripts[i][0]); + qos_desc += "<p><b>" + scripts[i][0] + ":</b><br />"; + if (scripts[i][1]) + qos_desc += scripts[i][1] + "</p>"; + else + qos_desc += "No help text</p>"; + } + o.default = "simple.qos"; + o.rmempty = false; + o.description = qos_desc; + + o = s.taboption("tab_qdisc", form.Flag, "qdisc_advanced", _("Show and Use Advanced Configuration. Advanced options will only be used as long as this box is checked.")); + o.default = false; + + o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP on inbound packets (ingress):")); + o.value("1", "SQUASH"); + o.value("0", "DO NOT SQUASH"); + o.default = "1"; + o.depends("qdisc_advanced", "1"); + + o = s.taboption("tab_qdisc", form.ListValue, "squash_ingress", _("Ignore DSCP on ingress:")); + o.value("1", "Ignore"); + o.value("0", "Allow"); + o.default = "1"; + o.depends("qdisc_advanced", "1"); + + o = s.taboption("tab_qdisc", form.ListValue, "ingress_ecn", _("Explicit congestion notification (ECN) status on inbound packets (ingress):")); + o.value("ECN", "ECN (" + _("default") + ")"); + o.value("NOECN"); + o.default = "ECN"; + o.depends("qdisc_advanced", "1"); + + o = s.taboption("tab_qdisc", form.ListValue, "egress_ecn", _("Explicit congestion notification (ECN) status on outbound packets (egress).")); + o.value("NOECN", "NOECN (" + _("default") + ")"); + o.value("ECN"); + o.default = "NOECN"; + o.depends("qdisc_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Flag, "qdisc_really_really_advanced", _("Show and Use Dangerous Configuration. Dangerous options will only be used as long as this box is checked.")); + o.default = false + o.depends("qdisc_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "ilimit", _("Hard limit on ingress queues; leave empty for default.")); + o.datatype = "and(uinteger,min(0))"; + o.depends("qdisc_really_really_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "elimit", _("Hard limit on egress queues; leave empty for default.")); + o.datatype = "and(uinteger,min(0))"; + o.depends("qdisc_really_really_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "itarget", _("Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); + o.datatype = "string"; + o.depends("qdisc_really_really_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "etarget", _("Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); + o.datatype = "string"; + o.depends("qdisc_really_really_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "iqdisc_opts", _("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully.")); + o.depends("qdisc_really_really_advanced", "1"); + + o = s.taboption("tab_qdisc", form.Value, "eqdisc_opts", _("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully.")); + o.depends("qdisc_really_really_advanced", "1"); + + // LINKLAYER + o = s.taboption("tab_linklayer", form.ListValue, "linklayer", _("Which link layer to account for:")); + o.value("none", "none (" + _("default") + ")"); + o.value("ethernet", "Ethernet with overhead: select for e.g. VDSL2."); + o.value("atm", "ATM: select for e.g. ADSL1, ADSL2, ADSL2+."); + o.default = "none"; + + o = s.taboption("tab_linklayer", form.Value, "overhead", _("Per Packet Overhead (byte):")); + o.datatype = "and(integer,min(-1500))"; + o.default = 0 + o.depends("linklayer", "ethernet"); + o.depends("linklayer", "atm"); + + o = s.taboption("tab_linklayer", form.Flag, "linklayer_advanced", _("Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced options will only be used as long as this box is checked.")); + o.depends("linklayer", "ethernet"); + o.depends("linklayer", "atm"); + + o = s.taboption("tab_linklayer", form.Value, "tcMTU", _("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead:")); + o.datatype = "and(uinteger,min(0))"; + o.default = 2047 + o.depends("linklayer_advanced", "1"); + + o = s.taboption("tab_linklayer", form.Value, "tcTSIZE", _("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16:")); + o.datatype = "and(uinteger,min(0))"; + o.default = 128 + o.depends("linklayer_advanced", "1"); + + o = s.taboption("tab_linklayer", form.Value, "tcMPU", _("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:")); + o.datatype = "and(uinteger,min(0))"; + o.default = 0 + o.depends("linklayer_advanced", "1"); + + o = s.taboption("tab_linklayer", form.ListValue, "linklayer_adaptation_mechanism", _("Which linklayer adaptation mechanism to use; for testing only")); + o.value("default", "default (" + _("default") + ")"); + o.value("cake"); + o.value("htb_private"); + o.value("tc_stab"); + o.default = "default"; + o.depends("linklayer_advanced", "1"); + + return m.render(); + } +})
\ No newline at end of file diff --git a/applications/luci-app-sqm/luasrc/controller/sqm.lua b/applications/luci-app-sqm/luasrc/controller/sqm.lua deleted file mode 100644 index 3bf0af2de..000000000 --- a/applications/luci-app-sqm/luasrc/controller/sqm.lua +++ /dev/null @@ -1,27 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2008 Steven Barth <steven@midlink.org> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -$Id$ -]]-- - -module("luci.controller.sqm", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/sqm") then - return - end - - local page - - page = entry({"admin", "network", "sqm"}, cbi("sqm"), _("SQM QoS")) - page.dependent = true - page.acl_depends = { "luci-app-sqm" } -end diff --git a/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua b/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua deleted file mode 100644 index f6cdaca8a..000000000 --- a/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua +++ /dev/null @@ -1,263 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2014 Steven Barth <steven@midlink.org> -Copyright 2014 Dave Taht <dave.taht@bufferbloat.net> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -$Id$ -]]-- - -local wa = require "luci.tools.webadmin" -local fs = require "nixio.fs" -local net = require "luci.model.network".init() -local sys = require "luci.sys" ---local ifaces = net:get_interfaces() -local ifaces = sys.net:devices() -local path = "/usr/lib/sqm" -local run_path = "/var/run/sqm/available_qdiscs" - -m = Map("sqm", translate("Smart Queue Management"), - translate("With <abbr title=\"Smart Queue Management\">SQM</abbr> you " .. - "can enable traffic shaping, better mixing (Fair Queueing)," .. - " active queue length management (AQM) " .. - " and prioritisation on one " .. - "network interface.")) - -s = m:section(TypedSection, "queue", translate("Queues")) -s:tab("tab_basic", translate("Basic Settings")) -s:tab("tab_qdisc", translate("Queue Discipline")) -s:tab("tab_linklayer", translate("Link Layer Adaptation")) -s.addremove = true -- set to true to allow adding SQM instances in the GUI -s.anonymous = true - --- BASIC -e = s:taboption("tab_basic", Flag, "enabled", translate("Enable this SQM instance.")) -e.rmempty = false - --- sm: following jow's advise, be helpful to the user and enable --- sqm's init script if even a single sm instance/interface --- is enabled; this is unexpected in that the init script gets --- enabled as soon as at least one sqm instance is enabled --- and that state is saved, so it does not require "Save & Apply" --- to effect the init scripts. --- the implementation was inpired/lifted from --- https://github.com/openwrt/luci/blob/master/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua -function e.write(self, section, value) - if value == "1" then - luci.sys.init.enable("sqm") - m.message = translate("The SQM GUI has just enabled the sqm initscript on your behalf. Remember to disable the sqm initscript manually under System Startup menu in case this change was not wished for.") - end - return Flag.write(self, section, value) -end --- TODO: inform the user what we just did... - - --- Add to physical interface list a hint of the correpsonding network names, --- used to help users better select e.g. lan or wan interface. - -n = s:taboption("tab_basic", ListValue, "interface", translate("Interface name")) --- sm lifted from luci-app-wol, the original implementation failed to show pppoe-ge00 type interface names -for _, iface in ipairs(ifaces) do - if not (iface == "lo" or iface:match("^ifb.*")) then - local nets = net:get_interface(iface) - nets = nets and nets:get_networks() or {} - for k, v in pairs(nets) do - nets[k] = nets[k].sid - end - nets = table.concat(nets, ",") - n:value(iface, ((#nets > 0) and "%s (%s)" % {iface, nets} or iface)) - end -end -n.rmempty = false - - -dl = s:taboption("tab_basic", Value, "download", translate("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:")) -dl.datatype = "and(uinteger,min(0))" -dl.rmempty = false - -ul = s:taboption("tab_basic", Value, "upload", translate("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping:")) -ul.datatype = "and(uinteger,min(0))" -ul.rmempty = false - -dbl = s:taboption("tab_basic", Flag, "debug_logging", translate("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log.")) -dbl.rmempty = false - - -verb = s:taboption("tab_basic", ListValue, "verbosity", translate("Verbosity of SQM's output into the system log.")) -verb:value("0", "silent") -verb:value("1", "error") -verb:value("2", "warning") -verb:value("5", "info ("..translate("default")..")") -verb:value("8", "debug") -verb:value("10", "trace") -verb.default = "5" -verb.rmempty = true - - - - --- QDISC - -local val_qdisc_name = "" -c = s:taboption("tab_qdisc", ListValue, "qdisc", translate("Queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!")) -c:value("fq_codel", "fq_codel ("..translate("default")..")") - -if fs.stat(run_path) then - for file in fs.dir(run_path) do - c:value( file ) - end -end -c.default = "fq_codel" -c.rmempty = false - - - -local qos_desc = "" -sc = s:taboption("tab_qdisc", ListValue, "script", translate("Queue setup script")) -for file in fs.dir(path) do - if string.find(file, ".qos$") and not fs.stat(path .. "/" .. file .. ".hidden") then - sc:value(file) - qos_desc = qos_desc .. "<p><b>" .. file .. ":</b><br />" - fh = io.open(path .. "/" .. file .. ".help", "r") - if fh then - qos_desc = qos_desc .. fh:read("*a") .. "</p>" - else - qos_desc = qos_desc .. "No help text</p>" - end - end -end -sc.default = "simple.qos" -sc.rmempty = false -sc.description = qos_desc - -ad = s:taboption("tab_qdisc", Flag, "qdisc_advanced", translate("Show and Use Advanced Configuration. Advanced options will only be used as long as this box is checked.")) -ad.default = false -ad.rmempty = true - -squash_dscp = s:taboption("tab_qdisc", ListValue, "squash_dscp", translate("Squash DSCP on inbound packets (ingress):")) -squash_dscp:value("1", "SQUASH") -squash_dscp:value("0", "DO NOT SQUASH") -squash_dscp.default = "1" -squash_dscp.rmempty = true -squash_dscp:depends("qdisc_advanced", "1") - -squash_ingress = s:taboption("tab_qdisc", ListValue, "squash_ingress", translate("Ignore DSCP on ingress:")) -squash_ingress:value("1", "Ignore") -squash_ingress:value("0", "Allow") -squash_ingress.default = "1" -squash_ingress.rmempty = true -squash_ingress:depends("qdisc_advanced", "1") - -iecn = s:taboption("tab_qdisc", ListValue, "ingress_ecn", translate("Explicit congestion notification (ECN) status on inbound packets (ingress):")) -iecn:value("ECN", "ECN ("..translate("default")..")") -iecn:value("NOECN") -iecn.default = "ECN" -iecn.rmempty = true -iecn:depends("qdisc_advanced", "1") - -eecn = s:taboption("tab_qdisc", ListValue, "egress_ecn", translate("Explicit congestion notification (ECN) status on outbound packets (egress).")) -eecn:value("NOECN", "NOECN ("..translate("default")..")") -eecn:value("ECN") -eecn.default = "NOECN" -eecn.rmempty = true -eecn:depends("qdisc_advanced", "1") - -ad2 = s:taboption("tab_qdisc", Flag, "qdisc_really_really_advanced", translate("Show and Use Dangerous Configuration. Dangerous options will only be used as long as this box is checked.")) -ad2.default = false -ad2.rmempty = true -ad2:depends("qdisc_advanced", "1") - -ilim = s:taboption("tab_qdisc", Value, "ilimit", translate("Hard limit on ingress queues; leave empty for default.")) --- ilim.default = 1000 -ilim.isnumber = true -ilim.datatype = "and(uinteger,min(0))" -ilim.rmempty = true -ilim:depends("qdisc_really_really_advanced", "1") - -elim = s:taboption("tab_qdisc", Value, "elimit", translate("Hard limit on egress queues; leave empty for default.")) --- elim.default = 1000 -elim.datatype = "and(uinteger,min(0))" -elim.rmempty = true -elim:depends("qdisc_really_really_advanced", "1") - - -itarg = s:taboption("tab_qdisc", Value, "itarget", translate("Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")) -itarg.datatype = "string" -itarg.rmempty = true -itarg:depends("qdisc_really_really_advanced", "1") - -etarg = s:taboption("tab_qdisc", Value, "etarget", translate("Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")) -etarg.datatype = "string" -etarg.rmempty = true -etarg:depends("qdisc_really_really_advanced", "1") - - - -iqdisc_opts = s:taboption("tab_qdisc", Value, "iqdisc_opts", translate("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully.")) -iqdisc_opts.rmempty = true -iqdisc_opts:depends("qdisc_really_really_advanced", "1") - -eqdisc_opts = s:taboption("tab_qdisc", Value, "eqdisc_opts", translate("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully.")) -eqdisc_opts.rmempty = true -eqdisc_opts:depends("qdisc_really_really_advanced", "1") - --- LINKLAYER -ll = s:taboption("tab_linklayer", ListValue, "linklayer", translate("Which link layer to account for:")) -ll:value("none", "none ("..translate("default")..")") -ll:value("ethernet", "Ethernet with overhead: select for e.g. VDSL2.") -ll:value("atm", "ATM: select for e.g. ADSL1, ADSL2, ADSL2+.") -ll.default = "none" - -po = s:taboption("tab_linklayer", Value, "overhead", translate("Per Packet Overhead (byte):")) -po.datatype = "and(integer,min(-1500))" -po.default = 0 -po.isnumber = true -po.rmempty = true -po:depends("linklayer", "ethernet") -po:depends("linklayer", "atm") - - -adll = s:taboption("tab_linklayer", Flag, "linklayer_advanced", translate("Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced options will only be used as long as this box is checked.")) -adll.rmempty = true -adll:depends("linklayer", "ethernet") -adll:depends("linklayer", "atm") - -smtu = s:taboption("tab_linklayer", Value, "tcMTU", translate("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead:")) -smtu.datatype = "and(uinteger,min(0))" -smtu.default = 2047 -smtu.isnumber = true -smtu.rmempty = true -smtu:depends("linklayer_advanced", "1") - -stsize = s:taboption("tab_linklayer", Value, "tcTSIZE", translate("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16:")) -stsize.datatype = "and(uinteger,min(0))" -stsize.default = 128 -stsize.isnumber = true -stsize.rmempty = true -stsize:depends("linklayer_advanced", "1") - -smpu = s:taboption("tab_linklayer", Value, "tcMPU", translate("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:")) -smpu.datatype = "and(uinteger,min(0))" -smpu.default = 0 -smpu.isnumber = true -smpu.rmempty = true -smpu:depends("linklayer_advanced", "1") - -lla = s:taboption("tab_linklayer", ListValue, "linklayer_adaptation_mechanism", translate("Which linklayer adaptation mechanism to use; for testing only")) -lla:value("default", "default ("..translate("default")..")") -lla:value("cake") -lla:value("htb_private") -lla:value("tc_stab") -lla.default = "default" -lla.rmempty = true -lla:depends("linklayer_advanced", "1") - --- PRORITIES? - -return m diff --git a/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json b/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json new file mode 100644 index 000000000..6c5ff4fa6 --- /dev/null +++ b/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json @@ -0,0 +1,13 @@ +{ + "admin/network/sqm": { + "title": "SQM QoS", + "order": 59, + "action": { + "type": "view", + "path": "network/sqm" + }, + "depends": { + "acl": [ "luci-app-sqm" ] + } + } +} diff --git a/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json b/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json index 583a54ae5..2b56b1fc7 100644 --- a/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json +++ b/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json @@ -2,7 +2,15 @@ "luci-app-sqm": { "description": "Grant UCI access for luci-app-sqm", "read": { - "uci": [ "sqm" ] + "file": { + "/var/run/sqm/available_qdiscs": [ "list" ], + "/usr/lib/sqm/*.qos.help": [ "read" ] + }, + "uci": [ "sqm" ], + "ubus": { + "file": [ "read", "list" ], + "luci": [ "setInitAction" ] + } }, "write": { "uci": [ "sqm" ] |