lsyncd/lsyncd.lua

536 lines
14 KiB
Lua
Raw Normal View History

2010-10-16 18:21:01 +00:00
------------------------------------------------------------------------------
2010-10-19 10:20:27 +00:00
-- lsyncd.lua Live (Mirror) Syncing Demon
--
-- License: GPLv2 (see COPYING) or any later version
--
-- Authors: Axel Kittenberger <axkibe@gmail.com>
--
-- This is the "runner" part of lsyncd. It containts all its high-level logic.
-- It works closely together with the lsyncd core in lsyncd.c. This means it
-- cannot be runned directly from the standard lua interpreter.
2010-10-16 18:21:01 +00:00
------------------------------------------------------------------------------
2010-10-18 17:09:59 +00:00
----
2010-10-19 10:20:27 +00:00
-- A security measurement.
2010-10-18 17:09:59 +00:00
-- Core will exit if version ids mismatch.
2010-10-25 14:55:40 +00:00
--
2010-10-19 21:56:00 +00:00
if lsyncd_version ~= nil then
2010-10-22 08:37:15 +00:00
-- checks if the runner is being loaded twice
2010-10-20 18:33:17 +00:00
print("You cannot use the lsyncd runner as configuration file!")
2010-10-19 21:56:00 +00:00
os.exit(-1)
end
2010-10-18 17:09:59 +00:00
lsyncd_version = "2.0b1"
2010-10-21 12:37:27 +00:00
----
-- Shortcuts (which user is supposed to be able to use them as well)
2010-10-22 12:58:57 +00:00
--
2010-10-22 10:35:26 +00:00
log = lsyncd.log
exec = lsyncd.exec
2010-10-20 18:33:17 +00:00
2010-10-25 14:55:40 +00:00
------------------------------------------------------------------------------
-- Lsyncd globals
------------------------------------------------------------------------------
----
-- TODO
--
local function set_valid_keys(t, numeric, keylist)
local mt = getmetatable(t) or {}
mt.keylist = keylist
for k, v in pairs(t) do
if not keylist[k] then
error("There is a non-valid key '"..k.."' in this table")
end
end
mt.__index = function(t, k)
if type(k) == "number" then
if not numeric then
error("This table does not have numerics", 2)
end
else
if not keylist[k] then
error("Key '"..k.."' not valid for this table", 2)
end
end
return rawget(t, k)
end
mt.__newindex = function(t, k, v)
if type(k) == "number" then
if not numeric then
error("This table does not have numerics", 2)
end
else
if not keylist[k] then
error("Key '"..k.."' not valid for this table", 2)
end
end
rawset(t, k, v)
end
setmetatable(t, mt)
end
2010-10-17 15:24:55 +00:00
----
2010-10-22 12:58:57 +00:00
-- Table of all root directories to sync,
-- filled during initialization.
--
-- [#] {
-- actions = actions,
-- source = source_dir,
2010-10-24 13:52:28 +00:00
-- targetident = the identifier of target (like string "host:dir")
-- for lsyncd this passed competly opaquely to the
-- action handlers
2010-10-21 12:37:27 +00:00
--
2010-10-24 13:52:28 +00:00
-- .processes = [pid] .. a sublist of processes[] for this target
-- .delays = [#) { .. the delays stack
-- .atype .. enum, kind of action
2010-10-24 16:41:58 +00:00
-- .alarm .. when it should fire
2010-10-24 13:52:28 +00:00
-- .wd .. watch descriptor id this origins from TODO needed?
-- .sync .. link to sync that raised this delay.
-- .filename .. filename or nil (=dir itself)
-- (.movepeer) .. for MOVEFROM/MOVETO link to other delay
2010-10-22 08:37:15 +00:00
-- }
2010-10-21 12:37:27 +00:00
-- }
2010-10-22 12:58:57 +00:00
--
2010-10-24 13:52:28 +00:00
local origins = {}
2010-10-25 14:55:40 +00:00
set_valid_keys(origins, true, {})
2010-10-17 15:24:55 +00:00
-----
-- all watches
2010-10-21 12:37:27 +00:00
--
-- structure:
-- [wd] = {
2010-10-22 12:58:57 +00:00
-- .wd .. the watch descriptor (TODO needed?)
-- .syncs = [#] { list of stuff to sync to
-- .origin .. link to origin
-- .path .. relative path of dir
-- .parent .. link to parent directory in watches
-- or nil for origin
-- }
2010-10-21 12:37:27 +00:00
-- }
--
2010-10-22 23:14:11 +00:00
local watches = {}
2010-10-25 14:55:40 +00:00
set_valid_keys(watches, true, {})
2010-10-17 15:24:55 +00:00
2010-10-23 17:01:56 +00:00
-----
-- a dictionary of all processes lsyncd spawned.
--
-- structure
-- [pid] = {
-- target ..
2010-10-25 14:55:40 +00:00
-- atype ..
2010-10-23 17:01:56 +00:00
-- wd ..
-- sync ..
-- filename ..
--
2010-10-24 13:52:28 +00:00
local processes = {}
2010-10-23 17:01:56 +00:00
2010-10-22 13:12:13 +00:00
------
2010-10-22 08:34:41 +00:00
-- TODO
2010-10-25 14:55:40 +00:00
--
2010-10-22 23:14:11 +00:00
local collapse_table = {
2010-10-22 08:34:41 +00:00
[ATTRIB] = { [ATTRIB] = ATTRIB, [MODIFY] = MODIFY, [CREATE] = CREATE, [DELETE] = DELETE },
[MODIFY] = { [ATTRIB] = MODIFY, [MODIFY] = MODIFY, [CREATE] = CREATE, [DELETE] = DELETE },
[CREATE] = { [ATTRIB] = CREATE, [MODIFY] = CREATE, [CREATE] = CREATE, [DELETE] = DELETE },
[DELETE] = { [ATTRIB] = DELETE, [MODIFY] = DELETE, [CREATE] = MODIFY, [DELETE] = DELETE },
}
2010-10-22 13:12:13 +00:00
-----
-- A list of names of the event types the core sends.
--
local event_names = {
[ATTRIB ] = "Attrib",
[MODIFY ] = "Modify",
[CREATE ] = "Create",
[DELETE ] = "Delete",
[MOVE ] = "Move",
[MOVEFROM ] = "MoveFrom",
[MOVETO ] = "MoveTo",
}
2010-10-22 08:34:41 +00:00
2010-10-25 14:55:40 +00:00
------------------------------------------------------------------------------
-- Coding checks. Hinders creation of global variables after init.
-- (inspired by /Niklas Frykholm)
------------------------------------------------------------------------------
----
-- Locks a table
local function GLOBAL_lock(t)
local mt = getmetatable(t) or {}
mt.__newindex = lock_new_index
setmetatable(t, mt)
end
----
-- Unlocks a table
---
local function GLOBAL_unlock(t)
local mt = getmetatable(t) or {}
mt.__newindex = unlock_new_index
setmetatable(t, mt)
end
2010-10-22 08:34:41 +00:00
-----
2010-10-25 14:55:40 +00:00
-- ?
local function lock_new_index(t, k, v)
if (k~="_" and string.sub(k,1,2) ~= "__") then
GLOBAL_unlock(_G)
error("Lsyncd does not allow GLOBALS to be created on the fly." ..
"Declare '" ..k.."' local or declare global on load.", 2)
else
rawset(t, k, v)
end
end
-----
-- ?
local function unlock_new_index(t, k, v)
rawset(t, k, v)
end
-----
-- Tests if a value is nil,
function is_nil(t, k)
return rawget(t, k)
end
-----
-- Tests if a value is nil,
function set_new(t, k, v)
return rawset(t, k, v)
end
------------------------------------------------------------------------------
-- The lsyncd runner
------------------------------------------------------------------------------
-----
-- Puts an action on the delay stack.
2010-10-23 10:58:43 +00:00
--
2010-10-22 13:12:13 +00:00
local function delay_action(atype, wd, sync, filename, time)
2010-10-24 14:18:14 +00:00
log(DEBUG, "delay_action "..event_names[atype].."("..wd..") ")
2010-10-22 23:14:11 +00:00
local origin = sync.origin
2010-10-24 13:52:28 +00:00
local delays = origin.delays
2010-10-22 23:14:11 +00:00
local nd = {atype = atype,
wd = wd,
2010-10-23 12:36:55 +00:00
sync = sync,
filename = filename }
2010-10-22 23:14:11 +00:00
if time ~= nil and origin.actions.delay ~= nil then
2010-10-25 08:50:10 +00:00
nd.alarm = lsyncd.addto_clock(time, origin.actions.delay)
2010-10-24 16:41:58 +00:00
else
nd.alarm = lsyncd.now()
2010-10-22 23:14:11 +00:00
end
table.insert(delays, nd)
2010-10-22 08:34:41 +00:00
end
2010-10-16 18:21:01 +00:00
----
-- Adds watches for a directory including all subdirectories.
--
2010-10-22 12:58:57 +00:00
-- @param origin link to origins[] entry
-- @param path relative path of this dir to origin
2010-10-21 12:37:27 +00:00
-- @param parent link to parent directory in watches[]
2010-10-18 09:02:51 +00:00
--
2010-10-22 12:58:57 +00:00
local function attend_dir(origin, path, parent)
local op = origin.source .. path
2010-10-17 15:24:55 +00:00
-- register watch and receive watch descriptor
local wd = lsyncd.add_watch(op);
if wd < 0 then
-- failed adding the watch
2010-10-22 12:58:57 +00:00
log(ERROR, "Failure adding watch "..op.." -> ignored ")
2010-10-17 15:24:55 +00:00
return
end
2010-10-21 12:37:27 +00:00
local thiswatch = watches[wd]
if thiswatch == nil then
2010-10-17 15:24:55 +00:00
-- new watch
2010-10-22 12:58:57 +00:00
thiswatch = {wd = wd, syncs = {} }
2010-10-21 12:37:27 +00:00
watches[wd] = thiswatch
2010-10-17 15:24:55 +00:00
end
2010-10-22 12:58:57 +00:00
local sync = { origin = origin, path = path, parent = parent }
table.insert(thiswatch.syncs, sync)
-- warmstart?
if origin.actions.startup == nil then
2010-10-22 13:12:13 +00:00
delay_action(CREATE, wd, sync, nil, nil)
2010-10-22 12:58:57 +00:00
end
2010-10-16 18:21:01 +00:00
2010-10-23 17:01:56 +00:00
-- registers and adds watches for all subdirectories
2010-10-21 12:37:27 +00:00
local subdirs = lsyncd.sub_dirs(op);
2010-10-25 14:55:40 +00:00
for _, dirname in ipairs(subdirs) do
2010-10-22 12:58:57 +00:00
attend_dir(origin, path..dirname.."/", thiswatch)
2010-10-16 18:21:01 +00:00
end
end
2010-10-16 10:26:48 +00:00
2010-10-23 17:01:56 +00:00
-----
-- Called from code whenever a child process finished and
-- zombie process was collected by core.
--
2010-10-24 13:52:28 +00:00
function lsyncd_collect_process(pid, exitcode)
2010-10-24 14:18:14 +00:00
log(DEBUG, "collected "..pid)
2010-10-24 13:52:28 +00:00
local process = processes[pid]
if process == nil then
2010-10-23 17:01:56 +00:00
return
end
2010-10-24 13:52:28 +00:00
local sync = process.sync
2010-10-23 17:01:56 +00:00
local origin = sync.origin
2010-10-25 14:55:40 +00:00
print("collected ", pid, ": ", event_names[process.atype], origin.source, "/", sync.path , process.filename, " = ", exitcode)
2010-10-24 13:52:28 +00:00
processes[pid] = nil
origin.processes[pid] = nil
2010-10-23 17:01:56 +00:00
end
2010-10-23 12:36:55 +00:00
-----
-- TODO
--
--
2010-10-24 13:52:28 +00:00
local function invoke_action(delay)
2010-10-23 12:36:55 +00:00
local sync = delay.sync
local origin = sync.origin
local actions = origin.actions
local func = nil
if delay.atype == CREATE then
if actions.create ~= nil then
func = actions.create
elseif actions.default ~= nil then
func = actions.default
end
elseif delay.atype == ATTRIB then
if actions.attrib ~= nil then
func = actions.attrib
elseif actions.default ~= nil then
func = actions.default
end
elseif delay.atype == MODIFY then
if actions.modify ~= nil then
func = actions.modify
elseif actions.default ~= nil then
func = actions.default
end
elseif delay.atype == DELETE then
if actions.delete ~= nil then
func = actions.delete
elseif actions.default ~= nil then
func = actions.default
end
elseif delay.atype == MOVE then
log(ERROR, "MOVE NOT YET IMPLEMENTED!")
end
if func ~= nil then
2010-10-25 14:55:40 +00:00
local pid = func(origin.source, sync.path, delay.filename, origin.targetident)
2010-10-23 17:01:56 +00:00
if pid ~= nil and pid > 0 then
2010-10-25 14:55:40 +00:00
local process = {pid = pid,
atype = delay.atype,
2010-10-24 13:52:28 +00:00
wd = delay.wd,
sync = delay.sync,
2010-10-24 14:18:14 +00:00
filename = delay.filename
2010-10-23 17:01:56 +00:00
}
2010-10-24 13:52:28 +00:00
processes[pid] = process
origin.processes[pid] = process
2010-10-23 17:01:56 +00:00
end
2010-10-23 12:36:55 +00:00
end
end
2010-10-22 23:14:11 +00:00
----
2010-10-23 12:36:55 +00:00
-- Called from core everytime at the latest of an
-- expired alarm (or more often)
--
2010-10-24 16:41:58 +00:00
-- @param now the time now
2010-10-23 12:36:55 +00:00
--
function lsyncd_alarm(now)
2010-10-24 13:52:28 +00:00
-- goes through all targets and spawns more actions
-- if possible
2010-10-25 14:55:40 +00:00
for _, o in ipairs(origins) do
2010-10-24 13:52:28 +00:00
if #o.processes < o.actions.max_processes then
local delays = o.delays
2010-10-24 16:41:58 +00:00
if delays[1] ~= nil and lsyncd.before_eq(delays[1].alarm, now) then
2010-10-24 13:52:28 +00:00
invoke_action(o.delays[1])
table.remove(delays, 1)
end
2010-10-23 12:36:55 +00:00
end
end
2010-10-22 23:14:11 +00:00
end
2010-10-17 15:24:55 +00:00
----
-- Called from core on init or restart after user configuration.
--
function lsyncd_initialize()
2010-10-25 14:55:40 +00:00
-- From this point on, no globals may be created anymore
GLOBAL_lock(_G)
2010-10-21 12:37:27 +00:00
-- makes sure the user gave lsyncd anything to do
if #origins == 0 then
log(ERROR, "nothing to watch. Use directory(SOURCEDIR, TARGET) in your config file.");
lsyncd.terminate(-1) -- ERRNO
end
2010-10-22 12:58:57 +00:00
-- set to true if at least one origin has a startup function
local have_startup = false
2010-10-21 12:37:27 +00:00
-- runs through the origins table filled by user calling directory()
2010-10-25 14:55:40 +00:00
for _, origin in ipairs(origins) do
2010-10-18 09:02:51 +00:00
-- resolves source to be an absolute path
2010-10-22 12:58:57 +00:00
local asrc = lsyncd.real_dir(origin.source)
2010-10-24 13:52:28 +00:00
local actions = origin.actions
2010-10-21 12:37:27 +00:00
if asrc == nil then
2010-10-22 12:58:57 +00:00
print("Cannot resolve source path: ", origin.source)
2010-10-21 12:37:27 +00:00
lsyncd.terminate(-1) -- ERRNO
2010-10-18 09:02:51 +00:00
end
2010-10-22 12:58:57 +00:00
origin.source = asrc
2010-10-24 13:52:28 +00:00
origin.delays = {}
origin.processes = {}
if actions.max_processes == nil then
actions.max_processes = 1 -- TODO DEFAULT MAXPROCESS
end
if actions.startup ~= nil then
2010-10-22 12:58:57 +00:00
have_startup = true
end
2010-10-24 13:52:28 +00:00
2010-10-18 09:02:51 +00:00
-- and add the dir watch inclusively all subdirs
2010-10-22 12:58:57 +00:00
attend_dir(origin, "", nil)
2010-10-17 15:24:55 +00:00
end
2010-10-22 10:35:26 +00:00
2010-10-22 12:58:57 +00:00
if have_startup then
log(NORMAL, "--- startup ---")
local pids = { }
2010-10-25 14:55:40 +00:00
for _, origin in ipairs(origins) do
2010-10-22 12:58:57 +00:00
local pid
if origin.actions.startup ~= nil then
local pid = origin.actions.startup(origin.source, origin.targetident)
table.insert(pids, pid)
end
2010-10-22 10:35:26 +00:00
end
2010-10-22 12:58:57 +00:00
lsyncd.wait_pids(pids, "startup_collector")
log(NORMAL, "--- Entering normal operation with "..#watches.." monitored directories ---")
else
log(NORMAL, "--- Warmstart into normal operation with "..#watches.." monitored directories ---")
2010-10-22 10:35:26 +00:00
end
2010-10-17 15:24:55 +00:00
end
2010-10-19 10:12:11 +00:00
----
2010-10-21 12:37:27 +00:00
-- Called by core to query soonest alarm.
2010-10-19 10:12:11 +00:00
--
-- @return two variables.
2010-10-24 16:41:58 +00:00
-- boolean false ... no alarm, core can in untimed sleep
-- true ... alarm time specified.
2010-10-19 10:12:11 +00:00
-- times ... the alarm time (only read if number is 1)
function lsyncd_get_alarm()
2010-10-24 16:41:58 +00:00
local have_alarm = false
local alarm = 0
2010-10-25 14:55:40 +00:00
for _, o in ipairs(origins) do
2010-10-24 16:41:58 +00:00
if o.delays[1] ~= nil then
if have_alarm then
alarm = lsyncd.earlier(alarm, o.delays[1].alarm)
else
alarm = o.delays[1].alarm
have_alarm = true
end
end
end
local hs
if have_alarm then
hs = "true"
else
hs = "false"
end
return have_alarm, alarm
2010-10-19 10:12:11 +00:00
end
2010-10-17 15:24:55 +00:00
2010-10-20 10:25:34 +00:00
-----
-- Called by core on inotify event
--
2010-10-20 13:01:26 +00:00
-- @param etype enum (ATTRIB, MODIFY, CREATE, DELETE, MOVE)
-- @param wd watch descriptor (matches lsyncd.add_watch())
2010-10-24 16:41:58 +00:00
-- @param time time of event
2010-10-20 13:01:26 +00:00
-- @param filename string filename without path
-- @param filename2
2010-10-20 10:25:34 +00:00
--
2010-10-24 16:41:58 +00:00
function lsyncd_event(etype, wd, isdir, time, filename, filename2)
2010-10-22 08:34:41 +00:00
local ftype;
if isdir then
ftype = "directory"
else
ftype = "file"
end
-- TODO comment out to safe performance
2010-10-20 13:01:26 +00:00
if filename2 == nil then
2010-10-22 12:58:57 +00:00
log(DEBUG, "got event "..event_names[etype].." of "..ftype.." "..filename)
2010-10-20 13:01:26 +00:00
else
2010-10-22 12:58:57 +00:00
log(DEBUG, "got event "..event_names[etype].." of "..ftype.." "..filename.." to "..filename2)
2010-10-21 12:37:27 +00:00
end
-- looks up the watch descriptor id
local w = watches[wd]
if w == nil then
log(NORMAL, "event belongs to unknown or deleted watch descriptor.")
return
end
-- works through all possible source->target pairs
2010-10-25 14:55:40 +00:00
for _, sync in ipairs(w.syncs) do
2010-10-22 13:12:13 +00:00
delay_action(etype, wd, sync, filename, time)
-- add subdirs for new directories
2010-10-23 10:58:43 +00:00
if isdir then
if etype == CREATE then
attend_dir(sync.origin, sync.path..filename.."/", w)
end
2010-10-22 08:34:41 +00:00
end
2010-10-21 12:37:27 +00:00
end
end
-----
2010-10-24 13:52:28 +00:00
-- Collector for every child process that finished in startup phase
2010-10-21 12:37:27 +00:00
--
-- Parameters are pid and exitcode of child process
--
-- Can return either a new pid if one other child process
-- has been spawned as replacement (e.g. retry) or 0 if
-- finished/ok.
--
2010-10-22 10:40:59 +00:00
function startup_collector(pid, exitcode)
2010-10-21 12:37:27 +00:00
if exitcode ~= 0 then
log(ERROR, "Startup process", pid, " failed")
lsyncd.terminate(-1) -- ERRNO
2010-10-20 13:01:26 +00:00
end
2010-10-21 12:37:27 +00:00
return 0
2010-10-20 10:25:34 +00:00
end
2010-10-21 12:37:27 +00:00
2010-10-17 15:24:55 +00:00
------------------------------------------------------------------------------
-- lsyncd user interface
------------------------------------------------------------------------------
----
2010-10-22 10:35:26 +00:00
-- Adds one directory (incl. subdir) to be synchronized.
2010-10-21 12:37:27 +00:00
-- Users primary configuration device.
2010-10-18 09:02:51 +00:00
--
2010-10-22 08:34:41 +00:00
-- @param TODO
--
2010-10-22 10:40:59 +00:00
function sync(source_dir, target_identifier, actions)
2010-10-22 12:58:57 +00:00
local o = { actions = actions,
source = source_dir,
targetident = target_identifier,
}
2010-10-24 13:52:28 +00:00
if actions.max_actions == nil then
actions.max_actions = 1
end
2010-10-18 09:02:51 +00:00
table.insert(origins, o)
2010-10-22 10:35:26 +00:00
return
2010-10-17 15:24:55 +00:00
end
2010-10-19 16:40:49 +00:00
----
-- Called by core when an overflow happened.
function default_overflow()
2010-10-20 18:33:17 +00:00
log(ERROR, "--- OVERFLOW on inotify event queue ---")
2010-10-19 16:40:49 +00:00
lsyncd.terminate(-1) -- TODO reset instead.
end
overflow = default_overflow
2010-10-25 14:55:40 +00:00