2 LuCI - Lua Configuration Interface
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2010-2011 Jo-Philipp Wich <xm@subsignal.org>
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
16 m = Map("network", translate("Switch"), translate("The network ports on your router can be combined to several <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can communicate directly with each other. <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s are often used to separate different network segments. Often there is by default one Uplink port for a connection to the next greater network like the internet and other ports for a local network."))
18 m.uci:foreach("network", "switch",
20 local switch_name = x.name or x['.name']
23 local has_vlan4k = nil
24 local has_ptpvid = nil
25 local has_jumbo3 = nil
32 local enable_vlan4k = false
34 -- Parse some common switch properties from swconfig help output.
35 local swc = io.popen("swconfig dev %q help 2>/dev/null" % switch_name)
38 local is_port_attr = false
39 local is_vlan_attr = false
42 local line = swc:read("*l")
43 if not line then break end
45 if line:match("^%s+%-%-vlan") then
48 elseif line:match("^%s+%-%-port") then
52 elseif line:match("^Switch %d+:") then
53 num_ports, cpu_port, num_vlans =
54 line:match("ports: (%d+) %(cpu @ (%d+)%), vlans: (%d+)")
56 num_ports = tonumber(num_ports) or 6
57 num_vlans = tonumber(num_vlans) or 16
58 cpu_port = tonumber(cpu_port) or 5
61 elseif line:match(": pvid") or line:match(": tag") or line:match(": vid") then
62 if is_vlan_attr then has_vlan4k = line:match(": (%w+)") end
63 if is_port_attr then has_ptpvid = line:match(": (%w+)") end
65 elseif line:match(": enable_vlan4k") then
68 elseif line:match(": enable_vlan") then
69 has_vlan = "enable_vlan"
71 elseif line:match(": enable_learning") then
72 has_learn = "enable_learning"
74 elseif line:match(": max_length") then
75 has_jumbo3 = "max_length"
83 -- The PVID options (if any) are added to this table so that
84 -- section create below can add the just created vlan to the
85 -- choice list of the PVID options...
88 -- This function re-reads all existing vlan ids and populates
89 -- PVID options choice lists
90 local function populate_pvids()
92 m.uci:foreach("network", "switch_vlan",
94 local vid = s[has_vlan4k or "vlan"] or s["vlan"]
96 vlan_ids[#vlan_ids+1] = vid
101 for _, opt in ipairs(pvid_opts) do
103 opt:value("", translate("none"))
104 for _, vid in luci.util.vspairs(vlan_ids) do
105 opt:value(vid, translatef("VLAN %d", tonumber(vid)))
111 s = m:section(NamedSection, x['.name'], "switch", translatef("Switch %q", switch_name))
115 s:option(Flag, has_vlan, translate("Enable VLAN functionality"))
118 if enable_vlan4k then
119 s:option(Flag, "enable_vlan4k", translate("Enable 4K VLANs"))
123 x = s:option(Flag, has_learn, translate("Enable learning and aging"))
124 x.default = x.enabled
128 x = s:option(Flag, has_jumbo3, translate("Enable Jumbo Frame passthrough"))
135 s = m:section(TypedSection, "switch_vlan", translatef("VLANs on %q", switch_name))
136 s.template = "cbi/tblsection"
140 -- Override cfgsections callback to enforce row ordering by vlan id.
141 s.cfgsections = function(self)
142 local osections = TypedSection.cfgsections(self)
146 for _, section in luci.util.spairs(
149 return (tonumber(m.uci:get("network", osections[a], has_vlan4k or "vlan")) or 9999)
150 < (tonumber(m.uci:get("network", osections[b], has_vlan4k or "vlan")) or 9999)
153 sections[#sections+1] = section
159 -- When creating a new vlan, preset it with the highest found vid + 1.
160 -- Repopulate the PVID choice lists afterwards.
161 s.create = function(self, section)
162 local sid = TypedSection.create(self, section)
167 m.uci:foreach("network", "switch_vlan",
169 local nr = tonumber(s.vlan)
170 local id = has_vlan4k and tonumber(s[has_vlan4k])
171 if nr ~= nil and nr > max_nr then max_nr = nr end
172 if id ~= nil and id > max_id then max_id = id end
175 m.uci:set("network", sid, "device", switch_name)
176 m.uci:set("network", sid, "vlan", max_nr + 1)
179 m.uci:set("network", sid, has_vlan4k, max_id + 1)
182 -- add newly created vlan to the pvid choice list
188 -- Repopulate PVId choice lists if a vlan gets removed.
189 s.remove = function(self, section)
190 local rv = TypedSection.remove(self, section)
192 -- repopulate pvid choices
199 local port_opts = { }
202 -- Parse current tagging state from the "ports" option.
203 local portvalue = function(self, section)
205 for pt in (m.uci:get("network", section, "ports") or ""):gmatch("%w+") do
206 local pc, tu = pt:match("^(%d+)([tu]*)")
207 if pc == self.option then return (#tu > 0) and tu or "u" end
212 -- Validate port tagging. Ensure that a port is only untagged once,
214 local portvalidate = function(self, value, section)
215 -- ensure that the ports appears untagged only once
217 if not untagged[self.option] then
218 untagged[self.option] = true
219 elseif min_vid > 0 or tonumber(self.option) ~= cpu_port then -- enable multiple untagged cpu ports due to weird broadcom default setup
221 translatef("Port %d is untagged in multiple VLANs!", tonumber(self.option) + 1)
228 local vid = s:option(Value, has_vlan4k or "vlan", "VLAN ID")
231 vid.forcewrite = true
233 -- Validate user provided VLAN ID, make sure its within the bounds
234 -- allowed by the switch.
235 vid.validate = function(self, value, section)
236 local v = tonumber(value)
237 local m = has_vlan4k and 4094 or (num_vlans - 1)
238 if v ~= nil and v >= min_vid and v <= m then
242 translatef("Invalid VLAN ID given! Only IDs between %d and %d are allowed.", min_vid, m)
246 -- When writing the "vid" or "vlan" option, serialize the port states
247 -- as well and write them as "ports" option to uci.
248 vid.write = function(self, section, value)
252 for _, o in ipairs(port_opts) do
253 local v = o:formvalue(section)
255 p[#p+1] = o.option .. v
261 m.uci:set("network", section, "ports", table.concat(p, " "))
262 return Value.write(self, section, value)
265 -- Fallback to "vlan" option if "vid" option is supported but unset.
266 vid.cfgvalue = function(self, section)
267 return m.uci:get("network", section, has_vlan4k or "vlan")
268 or m.uci:get("network", section, "vlan")
271 -- Build per-port off/untagged/tagged choice lists.
273 for pt = 0, num_ports - 1 do
274 local po = s:option(ListValue, tostring(pt),
275 (pt == cpu_port) and translate("CPU") or translatef("Port %d", (pt + 1)))
277 po:value("", translate("off"))
278 po:value("u" % pt, translate("untagged"))
279 po:value("t" % pt, translate("tagged"))
281 po.cfgvalue = portvalue
282 po.validate = portvalidate
283 po.write = function() end
285 port_opts[#port_opts+1] = po
289 -- Does this switch support PVIDs?
292 -- Spawn a "virtual" section. We just attach it to the global
293 -- switch section here, the overrides below take care of writing
294 -- the actual values to the correct uci sections.
295 s = m:section(TypedSection, "switch",
296 translatef("Port PVIDs on %q", switch_name),
297 translate("Port <abbr title=\"Primary VLAN IDs\">PVIDs</abbr> specify " ..
298 "the default VLAN ID added to received untagged frames."))
300 s.template = "cbi/tblsection"
304 -- Build port list, store pointers to the option objects in the
305 -- pvid_opts array so that other callbacks can repopulate their
308 for pt = 0, num_ports - 1 do
309 local po = s:option(ListValue, tostring(pt),
310 (pt == cpu_port) and translate("CPU") or translatef("Port %d", (pt + 1)))
312 -- When cbi queries the current config value for this post,
313 -- lookup the associated switch_port section (if any) and
314 -- return its "pvid" or "vlan" option value.
315 po.cfgvalue = function(self, section)
317 m.uci:foreach("network", "switch_port",
319 if s.port == self.option then
327 -- On write, find the actual switch_port section associated
328 -- to this port and set the value there. Create a new
329 -- switch_port section for this port if there is none yet.
330 po.write = function(self, section, value)
333 m.uci:foreach("network", "switch_port",
335 if s.port == self.option then
336 m.uci:set("network", s['.name'], has_ptpvid, value)
343 m.uci:section("network", "switch_port", nil, {
344 ["port"] = self.option,
350 -- If the user cleared the PVID value on this port, find
351 -- the associated switch_port section and clear it.
352 -- If the section does not contain any other unrelated
353 -- options (like led or blinkrate) then remove it completely,
354 -- else just clear out the "pvid" option.
355 po.remove = function(self, section)
356 m.uci:foreach("network", "switch_port",
358 if s.port == self.option then
362 for k, _ in pairs(s) do
363 if k:sub(1,1) ~= "." and k ~= "port" and k ~= has_ptpvid then
370 m.uci:delete("network", s['.name'])
372 m.uci:delete("network", s['.name'], has_ptpvid)
380 -- The referenced VLAN might just have been removed, simply
381 -- return "" (none) in this case to avoid triggering a
383 po.validate = function(...)
384 return ListValue.validate(...) or ""
387 pvid_opts[#pvid_opts+1] = po