7e9db5ea1b6bb6a3a6c75bfb13da0333ab1e054b
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_network / vlan.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
6
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
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15
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."))
17
18 m.uci:foreach("network", "switch",
19 function(x)
20 local switch_name = x.name or x['.name']
21 local has_vlan4k = nil
22 local has_ptpvid = nil
23 local max_vid = 16
24 local num_vlans = 16
25 local num_ports = 5
26 local cpu_port = 5
27
28 local enable_vlan4k = false
29
30 -- Parse some common switch properties from swconfig help output.
31 local swc = io.popen("swconfig dev %q help 2>/dev/null" % switch_name)
32 if swc then
33
34 local is_port_attr = false
35 local is_vlan_attr = false
36
37 while true do
38 local line = swc:read("*l")
39 if not line then break end
40
41 if line:match("^%s+%-%-vlan") then
42 is_vlan_attr = true
43
44 elseif line:match("^%s+%-%-port") then
45 is_vlan_attr = false
46 is_port_attr = true
47
48 elseif line:match("^Switch %d+:") then
49 num_ports, cpu_port, num_vlans =
50 line:match("ports: (%d+) %(cpu @ (%d+)%), vlans: (%d+)")
51
52 num_ports = tonumber(num_ports or 5)
53 num_vlans = tonumber(num_vlans or 16)
54 cpu_port = tonumber(cpu_port or 5)
55
56 elseif line:match(": pvid") or line:match(": tag") or line:match(": vid") then
57 if is_vlan_attr then has_vlan4k = line:match(": (%w+)") end
58 if is_port_attr then has_ptpvid = line:match(": (%w+)") end
59
60 elseif line:match(": enable_vlan4k") then
61 enable_vlan4k = true
62
63 end
64 end
65
66 swc:close()
67 end
68
69
70 -- The PVID options (if any) are added to this table so that
71 -- section create below can add the just created vlan to the
72 -- choice list of the PVID options...
73 local pvid_opts = { }
74
75 -- This function re-reads all existing vlan ids and populates
76 -- PVID options choice lists
77 local function populate_pvids()
78 local vlan_ids = { }
79 m.uci:foreach("network", "switch_vlan",
80 function(s)
81 local vid = s[has_vlan4k or "vlan"] or s["vlan"]
82 if vid ~= nil then
83 vlan_ids[#vlan_ids+1] = vid
84 end
85 end)
86
87 local opt, vid
88 for _, opt in ipairs(pvid_opts) do
89 opt:reset_values()
90 opt:value("", translate("none"))
91 for _, vid in luci.util.vspairs(vlan_ids) do
92 opt:value(vid, translatef("VLAN %d", tonumber(vid)))
93 end
94 end
95 end
96
97 -- Switch properties
98 s = m:section(NamedSection, x['.name'], "switch", translatef("Switch %q", switch_name))
99 s.addremove = false
100
101 s:option(Flag, "enable", translate("Enable this switch")).default = "1"
102 s:option(Flag, "enable_vlan", translate("Enable VLAN functionality")).default = "1"
103
104 if enable_vlan4k then
105 s:option(Flag, "enable_vlan4k", translate("Enable 4K VLANs"))
106 end
107
108 s:option(Flag, "reset", translate("Reset switch during setup")).default = "1"
109
110 -- VLAN table
111 s = m:section(TypedSection, "switch_vlan", translatef("VLANs on %q", switch_name))
112 s.template = "cbi/tblsection"
113 s.addremove = true
114 s.anonymous = true
115
116 -- Override cfgsections callback to enforce row ordering by vlan id.
117 s.cfgsections = function(self)
118 local osections = TypedSection.cfgsections(self)
119 local sections = { }
120 local section
121
122 for _, section in luci.util.spairs(
123 osections,
124 function(a, b)
125 return (tonumber(m.uci:get("network", osections[a], has_vlan4k or "vlan")) or 9999)
126 < (tonumber(m.uci:get("network", osections[b], has_vlan4k or "vlan")) or 9999)
127 end
128 ) do
129 sections[#sections+1] = section
130 end
131
132 return sections
133 end
134
135 -- When creating a new vlan, preset it with the highest found vid + 1.
136 -- Repopulate the PVID choice lists afterwards.
137 s.create = function(self, section)
138 local sid = TypedSection.create(self, section)
139
140 local max_nr = 0
141 local max_id = 0
142
143 m.uci:foreach("network", "switch_vlan",
144 function(s)
145 local nr = tonumber(s.vlan)
146 local id = has_vlan4k and tonumber(s[has_vlan4k])
147 if nr ~= nil and nr > max_nr then max_nr = nr end
148 if id ~= nil and id > max_id then max_id = id end
149 end)
150
151 m.uci:set("network", sid, "vlan", max_nr + 1)
152
153 if has_vlan4k then
154 m.uci:set("network", sid, has_vlan4k, max_id + 1)
155 end
156
157 -- add newly created vlan to the pvid choice list
158 populate_pvids()
159
160 return sid
161 end
162
163 -- Repopulate PVId choice lists if a vlan gets removed.
164 s.remove = function(self, section)
165 local rv = TypedSection.remove(self, section)
166
167 -- repopulate pvid choices
168 populate_pvids()
169
170 return rv
171 end
172
173
174 local port_opts = { }
175 local untagged = { }
176
177 -- Parse current tagging state from the "ports" option.
178 local portvalue = function(self, section)
179 local pt
180 for pt in (m.uci:get("network", section, "ports") or ""):gmatch("%w+") do
181 local pc, tu = pt:match("^(%d+)([tu]*)")
182 if pc == self.option then return (#tu > 0) and tu or "u" end
183 end
184 return ""
185 end
186
187 -- Validate port tagging. Ensure that a port is only untagged once,
188 -- bail out if not.
189 local portvalidate = function(self, value, section)
190 -- ensure that the ports appears untagged only once
191 if value == "u" then
192 if not untagged[self.option] then
193 untagged[self.option] = true
194 else
195 return nil,
196 translatef("Port %d is untagged in multiple VLANs!", tonumber(self.option) + 1)
197 end
198 end
199 return value
200 end
201
202
203 local vid = s:option(Value, has_vlan4k or "vlan", "VLAN ID")
204
205 vid.rmempty = false
206 vid.forcewrite = true
207
208 -- Validate user provided VLAN ID, make sure its within the bounds
209 -- allowed by the switch.
210 vid.validate = function(self, value, section)
211 local v = tonumber(value)
212 local m = has_vlan4k and 4094 or (num_vlans - 1)
213 if v ~= nil and v > 0 and v <= m then
214 return value
215 else
216 return nil,
217 translatef("Invalid VLAN ID given! Only IDs between %d and %d are allowed.", 1, m)
218 end
219 end
220
221 -- When writing the "vid" or "vlan" option, serialize the port states
222 -- as well and write them as "ports" option to uci.
223 vid.write = function(self, section, value)
224 local o
225 local p = { }
226
227 for _, o in ipairs(port_opts) do
228 local v = o:formvalue(section)
229 if v == "t" then
230 p[#p+1] = o.option .. v
231 elseif v == "u" then
232 p[#p+1] = o.option
233 end
234 end
235
236 m.uci:set("network", section, "ports", table.concat(p, " "))
237 return Value.write(self, section, value)
238 end
239
240 -- Fallback to "vlan" option if "vid" option is supported but unset.
241 vid.cfgvalue = function(self, section)
242 return m.uci:get("network", section, has_vlan4k or "vlan")
243 or m.uci:get("network", section, "vlan")
244 end
245
246 -- Build per-port off/untagged/tagged choice lists.
247 local pt
248 for pt = 0, num_ports - 1 do
249 local po = s:option(ListValue, tostring(pt),
250 (pt == cpu_port) and translate("CPU") or translatef("Port %d", (pt + 1)))
251
252 po:value("", translate("off"))
253 po:value("u" % pt, translate("untagged"))
254 po:value("t" % pt, translate("tagged"))
255
256 po.cfgvalue = portvalue
257 po.validate = portvalidate
258 po.write = function() end
259
260 port_opts[#port_opts+1] = po
261 end
262
263
264 -- Does this switch support PVIDs?
265 if has_ptpvid then
266
267 -- Spawn a "virtual" section. We just attach it to the global
268 -- switch section here, the overrides below take care of writing
269 -- the actual values to the correct uci sections.
270 s = m:section(TypedSection, "switch",
271 translatef("Port PVIDs on %q", switch_name),
272 translate("Port <abbr title=\"Primary VLAN IDs\">PVIDs</abbr> specify " ..
273 "the default VLAN ID added to received untagged frames."))
274
275 s.template = "cbi/tblsection"
276 s.addremove = false
277 s.anonymous = true
278
279 -- Build port list, store pointers to the option objects in the
280 -- pvid_opts array so that other callbacks can repopulate their
281 -- choice lists.
282 local pt
283 for pt = 0, num_ports - 1 do
284 local po = s:option(ListValue, tostring(pt),
285 (pt == cpu_port) and translate("CPU") or translatef("Port %d", (pt + 1)))
286
287 -- When cbi queries the current config value for this post,
288 -- lookup the associated switch_port section (if any) and
289 -- return its "pvid" or "vlan" option value.
290 po.cfgvalue = function(self, section)
291 local val
292 m.uci:foreach("network", "switch_port",
293 function(s)
294 if s.port == self.option then
295 val = s[has_ptpvid]
296 return false
297 end
298 end)
299 return val
300 end
301
302 -- On write, find the actual switch_port section associated
303 -- to this port and set the value there. Create a new
304 -- switch_port section for this port if there is none yet.
305 po.write = function(self, section, value)
306 local found = false
307
308 m.uci:foreach("network", "switch_port",
309 function(s)
310 if s.port == self.option then
311 m.uci:set("network", s['.name'], has_ptpvid, value)
312 found = true
313 return false
314 end
315 end)
316
317 if not found then
318 m.uci:section("network", "switch_port", nil, {
319 ["port"] = self.option,
320 [has_ptpvid] = value
321 })
322 end
323 end
324
325 -- If the user cleared the PVID value on this port, find
326 -- the associated switch_port section and clear it.
327 -- If the section does not contain any other unrelated
328 -- options (like led or blinkrate) then remove it completely,
329 -- else just clear out the "pvid" option.
330 po.remove = function(self, section)
331 m.uci:foreach("network", "switch_port",
332 function(s)
333 if s.port == self.option then
334 local k, found
335 local empty = true
336
337 for k, _ in pairs(s) do
338 if k:sub(1,1) ~= "." and k ~= "port" and k ~= has_ptpvid then
339 empty = false
340 break
341 end
342 end
343
344 if empty then
345 m.uci:delete("network", s['.name'])
346 else
347 m.uci:delete("network", s['.name'], has_ptpvid)
348 end
349
350 return false
351 end
352 end)
353 end
354
355 -- The referenced VLAN might just have been removed, simply
356 -- return "" (none) in this case to avoid triggering a
357 -- validation error.
358 po.validate = function(...)
359 return ListValue.validate(...) or ""
360 end
361
362 pvid_opts[#pvid_opts+1] = po
363 end
364
365 populate_pvids()
366 end
367 end
368 )
369
370 return m