1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
--[[
FFLuCI - System library
Description:
Utilities for interaction with the Linux system
FileId:
$Id$
License:
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
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]--
module("ffluci.sys", package.seeall)
require("posix")
require("ffluci.bits")
require("ffluci.util")
-- Returns whether a system is bigendian
function bigendian()
local fp = io.open("/bin/sh")
fp:seek("set", 5)
return (fp:read(1):byte() ~= 1)
end
-- Runs "command" and returns its output
function exec(command)
local pp = io.popen(command)
local data = pp:read("*a")
pp:close()
return data
end
-- Runs "command" and returns its output as a array of lines
function execl(command)
local pp = io.popen(command)
local line = ""
local data = {}
while true do
line = pp:read()
if (line == nil) then break end
table.insert(data, line)
end
pp:close()
return data
end
-- Uses "ffluci-flash" to flash a new image file to the system
function flash(image, kpattern)
local cmd = "ffluci-flash "
if kpattern then
cmd = cmd .. "-k '" .. kpattern:gsub("'", "") .. "' "
end
cmd = cmd .. "'" .. image:gsub("'", "") .. "' >/dev/null 2>&1"
return os.execute(cmd)
end
-- Returns the hostname
function hostname()
return io.lines("/proc/sys/kernel/hostname")()
end
-- Returns the contents of a documented referred by an URL
function httpget(url)
return exec("wget -qO- '"..url:gsub("'", "").."'")
end
-- Returns the FFLuci-Basedir
function libpath()
return ffluci.fs.dirname(require("ffluci.debug").__file__)
end
-- Returns the load average
function loadavg()
local loadavg = io.lines("/proc/loadavg")()
return loadavg:match("^(.-) (.-) (.-) (.-) (.-)$")
end
-- Reboots the system
function reboot()
return os.execute("reboot >/dev/null 2>&1")
end
-- Returns the system type, cpu name, and installed physical memory
function sysinfo()
local c1 = "cat /proc/cpuinfo|grep system\\ typ|cut -d: -f2 2>/dev/null"
local c2 = "uname -m 2>/dev/null"
local c3 = "cat /proc/cpuinfo|grep model\\ name|cut -d: -f2 2>/dev/null"
local c4 = "cat /proc/cpuinfo|grep cpu\\ model|cut -d: -f2 2>/dev/null"
local c5 = "cat /proc/meminfo|grep MemTotal|cut -d: -f2 2>/dev/null"
local s = ffluci.util.trim(exec(c1))
local m = ""
local r = ""
if s == "" then
s = ffluci.util.trim(exec(c2))
m = ffluci.util.trim(exec(c3))
else
m = ffluci.util.trim(exec(c4))
end
r = ffluci.util.trim(exec(c5))
return s, m, r
end
group = {}
group.getgroup = posix.getgroup
net = {}
-- Returns the ARP-Table
function net.arptable()
return _parse_delimited_table(io.lines("/proc/net/arp"), "%s%s+")
end
-- Returns whether an IP-Adress belongs to a certain net
function net.belongs(ip, ipnet, prefix)
return (net.ip4bin(ip):sub(1, prefix) == net.ip4bin(ipnet):sub(1, prefix))
end
-- Detect the default route
function net.defaultroute()
local routes = net.routes()
local route = nil
for i, r in pairs(ffluci.sys.net.routes()) do
if r.Destination == "00000000" and (not route or route.Metric > r.Metric) then
route = r
end
end
return route
end
-- Returns all available network interfaces
function net.devices()
local devices = {}
for line in io.lines("/proc/net/dev") do
table.insert(devices, line:match(" *(.-):"))
end
return devices
end
-- Returns the MAC-Address belonging to the given IP-Address
function net.ip4mac(ip)
local mac = nil
for i, l in ipairs(net.arptable()) do
if l["IP address"] == ip then
mac = l["HW address"]
end
end
return mac
end
-- Returns the prefix to a given netmask
function net.mask4prefix(mask)
local bin = net.ip4bin(mask)
if not bin then
return nil
end
return #ffluci.util.split(bin, "1")-1
end
-- Returns the kernel routing table
function net.routes()
return _parse_delimited_table(io.lines("/proc/net/route"))
end
-- Returns the numeric IP to a given hexstring
function net.hexip4(hex, be)
if #hex ~= 8 then
return nil
end
be = be or bigendian()
local hexdec = ffluci.bits.Hex2Dec
local ip = ""
if be then
ip = ip .. tostring(hexdec(hex:sub(1,2))) .. "."
ip = ip .. tostring(hexdec(hex:sub(3,4))) .. "."
ip = ip .. tostring(hexdec(hex:sub(5,6))) .. "."
ip = ip .. tostring(hexdec(hex:sub(7,8)))
else
ip = ip .. tostring(hexdec(hex:sub(7,8))) .. "."
ip = ip .. tostring(hexdec(hex:sub(5,6))) .. "."
ip = ip .. tostring(hexdec(hex:sub(3,4))) .. "."
ip = ip .. tostring(hexdec(hex:sub(1,2)))
end
return ip
end
-- Returns the binary IP to a given IP
function net.ip4bin(ip)
local parts = ffluci.util.split(ip, '.')
if #parts ~= 4 then
return nil
end
local decbin = ffluci.bits.Dec2Bin
local bin = ""
bin = bin .. decbin(parts[1], 8)
bin = bin .. decbin(parts[2], 8)
bin = bin .. decbin(parts[3], 8)
bin = bin .. decbin(parts[4], 8)
return bin
end
-- Tests whether a host is pingable
function net.pingtest(host)
return os.execute("ping -c1 '"..host:gsub("'", '').."' >/dev/null 2>&1")
end
process = {}
process.info = posix.getpid
-- Sets the gid of a process
function process.setgroup(pid, gid)
return posix.setpid("g", pid, gid)
end
-- Sets the uid of a process
function process.setuser(pid, uid)
return posix.setpid("u", pid, uid)
end
user = {}
-- returns user information to a given uid
user.getuser = posix.getpasswd
-- Changes the user password of given user
function user.setpasswd(user, pwd)
if pwd then
pwd = pwd:gsub("'", "")
end
if user then
user = user:gsub("'", "")
end
local cmd = "(echo '"..pwd.."';sleep 1;echo '"..pwd.."')|"
cmd = cmd .. "passwd '"..user.."' >/dev/null 2>&1"
return os.execute(cmd)
end
wifi = {}
function wifi.getiwconfig()
local cnt = exec("/usr/sbin/iwconfig 2>/dev/null")
local iwc = {}
for i, l in pairs(ffluci.util.split(ffluci.util.trim(cnt), "\n\n")) do
local k = l:match("^(.-) ")
l = l:gsub("^(.-) +", "", 1)
if k then
iwc[k] = _parse_mixed_record(l)
end
end
return iwc
end
function wifi.iwscan()
local cnt = exec("iwlist scan 2>/dev/null")
local iws = {}
for i, l in pairs(ffluci.util.split(ffluci.util.trim(cnt), "\n\n")) do
local k = l:match("^(.-) ")
l = l:gsub("^[^\n]+", "", 1)
l = ffluci.util.trim(l)
if k then
iws[k] = {}
for j, c in pairs(ffluci.util.split(l, "\n Cell")) do
c = c:gsub("^(.-)- ", "", 1)
c = ffluci.util.split(c, "\n", 7)
c = table.concat(c, "\n", 1)
table.insert(iws[k], _parse_mixed_record(c))
end
end
end
return iws
end
-- Internal functions
function _parse_delimited_table(iter, delimiter)
delimiter = delimiter or "%s+"
local data = {}
local trim = ffluci.util.trim
local split = ffluci.util.split
local keys = split(trim(iter()), delimiter, nil, true)
for i, j in pairs(keys) do
keys[i] = trim(keys[i])
end
for line in iter do
local row = {}
line = trim(line)
if #line > 0 then
for i, j in pairs(split(line, delimiter, nil, true)) do
if keys[i] then
row[keys[i]] = j
end
end
end
table.insert(data, row)
end
return data
end
function _parse_mixed_record(cnt)
local data = {}
for i, l in pairs(ffluci.util.split(ffluci.util.trim(cnt), "\n")) do
for j, f in pairs(ffluci.util.split(ffluci.util.trim(l), " ")) do
local k, x, v = f:match('([^%s][^:=]+) *([:=]*) *"*([^\n"]*)"*')
if k then
if x == "" then
table.insert(data, k)
else
data[k] = v
end
end
end
end
return data
end
|