Fix Wifi-Client mode for devices without standard default network configuration
[project/luci.git] / modules / admin-mini / luasrc / model / cbi / mini / wifi.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
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 -- Data init --
17
18 local uci = luci.model.uci.cursor()
19 if not uci:get("network", "wan") then
20         uci:section("network", "interface", "wan", {proto="none", ifname=" "})
21         uci:save("network")
22         uci:commit("network")
23 end
24
25 local wlcursor = luci.model.uci.cursor_state()
26 local wireless = wlcursor:get_all("wireless")
27 local wifidata = luci.sys.wifi.getiwconfig()
28 local wifidevs = {}
29 local ifaces = {}
30
31 for k, v in pairs(wireless) do
32         if v[".type"] == "wifi-iface" then
33                 table.insert(ifaces, v)
34         end
35 end
36
37 wlcursor:foreach("wireless", "wifi-device",
38         function(section)
39                 table.insert(wifidevs, section[".name"])
40         end)
41
42
43 -- Main Map --
44
45 m = Map("wireless", translate("wifi"), translate("a_w_devices1"))
46 m:chain("network")
47
48
49 -- Status Table --
50 s = m:section(Table, ifaces, translate("networks"))
51
52 link = s:option(DummyValue, "_link", translate("link"))
53 function link.cfgvalue(self, section)
54         local ifname = self.map:get(section, "ifname")
55         return wifidata[ifname] and wifidata[ifname]["Link Quality"] or "-"
56 end
57
58 essid = s:option(DummyValue, "ssid", "ESSID")
59
60 bssid = s:option(DummyValue, "_bsiid", "BSSID")
61 function bssid.cfgvalue(self, section)
62         local ifname = self.map:get(section, "ifname")
63         return (wifidata[ifname] and (wifidata[ifname].Cell 
64          or wifidata[ifname]["Access Point"])) or "-"
65 end
66
67 channel = s:option(DummyValue, "channel", translate("channel"))
68 function channel.cfgvalue(self, section)
69         return wireless[self.map:get(section, "device")].channel
70 end
71
72 protocol = s:option(DummyValue, "_mode", translate("protocol"))
73 function protocol.cfgvalue(self, section)
74         local mode = wireless[self.map:get(section, "device")].mode
75         return mode and "802." .. mode
76 end
77
78 mode = s:option(DummyValue, "mode", translate("mode"))
79 encryption = s:option(DummyValue, "encryption", translate("iwscan_encr"))
80
81 power = s:option(DummyValue, "_power", translate("power"))
82 function power.cfgvalue(self, section)
83         local ifname = self.map:get(section, "ifname")
84         return wifidata[ifname] and wifidata[ifname]["Tx-Power"] or "-"
85 end
86
87 scan = s:option(Button, "_scan", translate("scan"))
88 scan.inputstyle = "find"
89
90 function scan.cfgvalue(self, section)
91         return self.map:get(section, "ifname") or false
92 end
93
94 -- WLAN-Scan-Table --
95
96 t2 = m:section(Table, {}, translate("iwscan"), translate("iwscan1"))
97
98 function scan.write(self, section)
99         m.autoapply = false
100         t2.render = t2._render
101         local ifname = self.map:get(section, "ifname")
102         luci.util.update(t2.data, luci.sys.wifi.iwscan(ifname))
103 end
104
105 t2._render = t2.render
106 t2.render = function() end
107
108 t2:option(DummyValue, "Quality", translate("iwscan_link"))
109 essid = t2:option(DummyValue, "ESSID", "ESSID")
110 function essid.cfgvalue(self, section)
111         return self.map:get(section, "ESSID")
112 end
113
114 t2:option(DummyValue, "Address", "BSSID")
115 t2:option(DummyValue, "Mode", translate("mode"))
116 chan = t2:option(DummyValue, "channel", translate("channel"))
117 function chan.cfgvalue(self, section)
118         return self.map:get(section, "Channel")
119             or self.map:get(section, "Frequency")
120             or "-"
121 end 
122
123 t2:option(DummyValue, "Encryption key", translate("iwscan_encr"))
124
125 t2:option(DummyValue, "Signal level", translate("iwscan_signal"))
126
127 t2:option(DummyValue, "Noise level", translate("iwscan_noise"))
128
129
130
131 if #wifidevs < 1 then
132         return m
133 end
134
135 -- Config Section --
136
137 s = m:section(NamedSection, wifidevs[1], "wifi-device", translate("devices"))
138 s.addremove = false
139
140 en = s:option(Flag, "disabled", translate("enable"))
141 en.rmempty = false
142 en.enabled = "0"
143 en.disabled = "1"
144
145 function en.cfgvalue(self, section)
146         return Flag.cfgvalue(self, section) or "0"
147 end
148
149
150 local hwtype = m:get(wifidevs[1], "type")
151
152 if hwtype == "atheros" then
153         mode = s:option(ListValue, "hwmode", translate("mode"))
154         mode.override_values = true
155         mode:value("", "auto")
156         mode:value("11b", "802.11b")
157         mode:value("11g", "802.11g")
158         mode:value("11a", "802.11a")
159         mode:value("11bg", "802.11b+g")
160         mode.rmempty = true
161 end
162
163
164 ch = s:option(Value, "channel", translate("a_w_channel"))
165 for i=1, 14 do
166         ch:value(i, i .. " (2.4 GHz)")
167 end
168
169
170 s = m:section(TypedSection, "wifi-iface", translate("m_n_local"))
171 s.anonymous = true
172 s.addremove = false
173
174 s:option(Value, "ssid", translate("a_w_netid"))
175
176 bssid = s:option(Value, "bssid", translate("wifi_bssid"))
177
178 local devs = {}
179 luci.model.uci.cursor():foreach("wireless", "wifi-device",
180         function (section)
181                 table.insert(devs, section[".name"])
182         end)
183         
184 if #devs > 1 then
185         device = s:option(DummyValue, "device", translate("device"))
186 else
187         s.defaults.device = devs[1]
188 end
189
190 mode = s:option(ListValue, "mode", translate("mode"))
191 mode.override_values = true
192 mode:value("ap", translate("m_w_ap"))
193 mode:value("adhoc", translate("m_w_adhoc"))
194 mode:value("sta", translate("m_w_client"))
195
196 function mode.write(self, section, value)
197         if value == "sta" then
198                 local oldif = m.uci:get("network", "wan", "ifname")
199                 if oldif and oldif ~= " " then
200                         m.uci:set("network", "wan", "_ifname", oldif)
201                 end
202                 m.uci:set("network", "wan", "ifname", " ")
203
204                 self.map:set(section, "network", "wan")
205         else
206                 if m.uci:get("network", "wan", "_ifname") then
207                         m.uci:set("network", "wan", "ifname", m.uci:get("network", "wan", "_ifname"))
208                 end
209                 self.map:set(section, "network", "lan")
210         end
211
212         return ListValue.write(self, section, value)
213 end
214
215 encr = s:option(ListValue, "encryption", translate("encryption"))
216 encr.override_values = true
217 encr:value("none", "No Encryption")
218 encr:value("wep", "WEP")
219
220 if hwtype == "atheros" or hwtype == "mac80211" then
221         local supplicant = luci.fs.mtime("/usr/sbin/wpa_supplicant")
222         local hostapd = luci.fs.mtime("/usr/sbin/hostapd")
223
224         if hostapd and supplicant then
225                 encr:value("psk", "WPA-PSK")
226                 encr:value("psk2", "WPA2-PSK")
227                 encr:value("wpa", "WPA-Radius", {mode="ap"})
228                 encr:value("wpa2i", "WPA2-Radius", {mode="ap"})
229         elseif hostapd and not supplicant then
230                 encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="adhoc"})
231                 encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="adhoc"})
232                 encr:value("wpa", "WPA-Radius", {mode="ap"})
233                 encr:value("wpa2i", "WPA2-Radius", {mode="ap"})
234                 encr.description = translate("wifi_wpareq")
235         elseif not hostapd and supplicant then
236                 encr:value("psk", "WPA-PSK", {mode="sta"})
237                 encr:value("psk2", "WPA2-PSK", {mode="sta"})
238                 encr.description = translate("wifi_wpareq")
239         else
240                 encr.description = translate("wifi_wpareq")
241         end
242 elseif hwtype == "broadcom" then
243         encr:value("psk", "WPA-PSK")
244         encr:value("psk2", "WPA2-PSK")
245 end
246
247 key = s:option(Value, "key", translate("key"))
248 key:depends("encryption", "wep")
249 key:depends("encryption", "psk")
250 key:depends("encryption", "wpa")
251 key:depends("encryption", "psk2")
252 key:depends("encryption", "wpa2i")
253 key.rmempty = true
254
255 server = s:option(Value, "server", translate("a_w_radiussrv"))
256 server:depends("encryption", "wpa")
257 server:depends("encryption", "wpa2i")
258 server.rmempty = true
259
260 port = s:option(Value, "port", translate("a_w_radiusport"))
261 port:depends("encryption", "wpa")
262 port:depends("encryption", "wpa2i")
263 port.rmempty = true
264
265
266 if hwtype == "atheros" or hwtype == "broadcom" then
267         iso = s:option(Flag, "isolate", translate("a_w_apisolation"), translate("a_w_apisolation1"))
268         iso.rmempty = true
269         iso:depends("mode", "ap")
270         
271         hide = s:option(Flag, "hidden", translate("a_w_hideessid"))
272         hide.rmempty = true
273         hide:depends("mode", "ap")
274 end
275
276 if hwtype == "mac80211" or hwtype == "atheros" then
277         bssid:depends({mode="adhoc"})
278 end
279
280 if hwtype == "broadcom" then
281         bssid:depends({mode="wds"})
282 end
283
284
285 return m