gluon-core: extend user management library and convert it to Lua

This commit is contained in:
Matthias Schiffer 2014-07-07 19:12:42 +02:00
parent 48b26ad13e
commit 67db71c96a
5 changed files with 91 additions and 16 deletions

View File

@ -1,12 +0,0 @@
add_user() {
local username="$1"
local id="$2"
[ "$username" -a "$id" ] || return 1
sed -i "/^$username:/d" /etc/passwd
sed -i "/^$username:/d" /etc/shadow
echo "$username:*:$id:100:$username:/var:/bin/false" >> /etc/passwd
echo "$username:*:0:0:99999:7:::" >> /etc/shadow
}

View File

@ -0,0 +1,33 @@
local util = require 'gluon.util'
local os = os
local string = string
module 'gluon.users'
function add_user(username, uid, gid)
util.lock('/var/lock/passwd')
util.replace_prefix('/etc/passwd', username .. ':', string.format('%s:*:%u:%u::/var:/bin/false\n', username, uid, gid))
util.replace_prefix('/etc/shadow', username .. ':', string.format('%s:*:0:0:99999:7:::\n', username))
util.unlock('/var/lock/passwd')
end
function remove_user(username)
util.lock('/var/lock/passwd')
util.replace_prefix('/etc/passwd', username .. ':')
util.replace_prefix('/etc/shadow', username .. ':')
util.unlock('/var/lock/passwd')
end
function add_group(groupname, gid)
util.lock('/var/lock/group')
util.replace_prefix('/etc/group', groupname .. ':', string.format('%s:x:%u:\n', groupname, gid))
util.unlock('/var/lock/group')
end
function remove_group(groupname)
util.lock('/var/lock/group')
util.replace_prefix('/etc/group', groupname .. ':')
util.unlock('/var/lock/group')
end

View File

@ -0,0 +1,52 @@
-- Writes all lines from the file input to the file output except those starting with prefix
-- Doesn't close the output file, but returns the file object
local function do_filter_prefix(input, output, prefix)
local f = io.open(output, 'w+')
local l = prefix:len()
for line in io.lines(input) do
if line:sub(1, l) ~= prefix then
f:write(line, '\n')
end
end
return f
end
local function escape_args(ret, arg0, ...)
if not arg0 then
return ret
end
return escape_args(ret .. "'" .. string.gsub(arg0, "'", "'\\''") .. "' ", ...)
end
local os = os
local string = string
module 'gluon.util'
function exec(...)
return os.execute(escape_args('', ...))
end
-- Removes all lines starting with a prefix from a file, optionally adding a new one
function replace_prefix(file, prefix, add)
local tmp = file .. '.tmp'
local f = do_filter_prefix(file, tmp, prefix)
if add then
f:write(add)
end
f:close()
os.rename(tmp, file)
end
function lock(file)
exec('lock', file)
end
function unlock(file)
exec('lock', '-u', file)
end

View File

@ -2,13 +2,15 @@
local site = require 'gluon.site_config'
local sysconfig = require 'gluon.sysconfig'
local users = require 'gluon.users'
local nixio = require 'nixio'
local uci = require 'luci.model.uci'
local c = uci.cursor()
os.execute('. /lib/gluon/functions/users.sh && add_user gluon-fastd 800')
users.add_user('gluon-fastd', 800, 100)
c:section('fastd', 'fastd', 'mesh_vpn',

View File

@ -1,5 +1,5 @@
#!/bin/sh
#!/usr/bin/lua
. /lib/gluon/functions/users.sh
local users = require 'gluon.users'
add_user gluon-radvd 801
users.add_user('gluon-radvd', 801, 100)