util.datamanager: Ignore errors if the file is gone after removing it
[prosody.git] / util / datamanager.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 local format = string.format;
11 local setmetatable = setmetatable;
12 local ipairs = ipairs;
13 local char = string.char;
14 local pcall = pcall;
15 local log = require "util.logger".init("datamanager");
16 local io_open = io.open;
17 local os_remove = os.remove;
18 local os_rename = os.rename;
19 local tonumber = tonumber;
20 local next = next;
21 local t_insert = table.insert;
22 local t_concat = table.concat;
23 local envloadfile = require"util.envload".envloadfile;
24 local serialize = require "util.serialization".serialize;
25 local path_separator = assert ( package.config:match ( "^([^\n]+)" ) , "package.config not in standard form" ) -- Extract directory seperator from package.config (an undocumented string that comes with lua)
26 local lfs = require "lfs";
27 local prosody = prosody;
28 local raw_mkdir;
29 local fallocate;
30
31 if prosody.platform == "posix" then
32         raw_mkdir = require "util.pposix".mkdir; -- Doesn't trample on umask
33         fallocate = require "util.pposix".fallocate;
34 else
35         raw_mkdir = lfs.mkdir;
36 end
37
38 if not fallocate then -- Fallback
39         function fallocate(f, offset, len)
40                 -- This assumes that current position == offset
41                 local fake_data = (" "):rep(len);
42                 local ok, msg = f:write(fake_data);
43                 if not ok then
44                         return ok, msg;
45                 end
46                 f:seek("set", offset);
47                 return true;
48         end
49 end
50
51 module "datamanager"
52
53 ---- utils -----
54 local encode, decode;
55 do
56         local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end });
57
58         decode = function (s)
59                 return s and (s:gsub("+", " "):gsub("%%([a-fA-F0-9][a-fA-F0-9])", urlcodes));
60         end
61
62         encode = function (s)
63                 return s and (s:gsub("%W", function (c) return format("%%%02x", c:byte()); end));
64         end
65 end
66
67 local _mkdir = {};
68 local function mkdir(path)
69         path = path:gsub("/", path_separator); -- TODO as an optimization, do this during path creation rather than here
70         if not _mkdir[path] then
71                 raw_mkdir(path);
72                 _mkdir[path] = true;
73         end
74         return path;
75 end
76
77 local data_path = (prosody and prosody.paths and prosody.paths.data) or ".";
78 local callbacks = {};
79
80 ------- API -------------
81
82 function set_data_path(path)
83         log("debug", "Setting data path to: %s", path);
84         data_path = path;
85 end
86
87 local function callback(username, host, datastore, data)
88         for _, f in ipairs(callbacks) do
89                 username, host, datastore, data = f(username, host, datastore, data);
90                 if username == false then break; end
91         end
92
93         return username, host, datastore, data;
94 end
95 function add_callback(func)
96         if not callbacks[func] then -- Would you really want to set the same callback more than once?
97                 callbacks[func] = true;
98                 callbacks[#callbacks+1] = func;
99                 return true;
100         end
101 end
102 function remove_callback(func)
103         if callbacks[func] then
104                 for i, f in ipairs(callbacks) do
105                         if f == func then
106                                 callbacks[i] = nil;
107                                 callbacks[f] = nil;
108                                 return true;
109                         end
110                 end
111         end
112 end
113
114 function getpath(username, host, datastore, ext, create)
115         ext = ext or "dat";
116         host = (host and encode(host)) or "_global";
117         username = username and encode(username);
118         if username then
119                 if create then mkdir(mkdir(mkdir(data_path).."/"..host).."/"..datastore); end
120                 return format("%s/%s/%s/%s.%s", data_path, host, datastore, username, ext);
121         elseif host then
122                 if create then mkdir(mkdir(data_path).."/"..host); end
123                 return format("%s/%s/%s.%s", data_path, host, datastore, ext);
124         else
125                 if create then mkdir(data_path); end
126                 return format("%s/%s.%s", data_path, datastore, ext);
127         end
128 end
129
130 function load(username, host, datastore)
131         local data, ret = envloadfile(getpath(username, host, datastore), {});
132         if not data then
133                 local mode = lfs.attributes(getpath(username, host, datastore), "mode");
134                 if not mode then
135                         log("debug", "Assuming empty %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
136                         return nil;
137                 else -- file exists, but can't be read
138                         -- TODO more detailed error checking and logging?
139                         log("error", "Failed to load %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
140                         return nil, "Error reading storage";
141                 end
142         end
143
144         local success, ret = pcall(data);
145         if not success then
146                 log("error", "Unable to load %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
147                 return nil, "Error reading storage";
148         end
149         return ret;
150 end
151
152 local function atomic_store(filename, data)
153         local scratch = filename.."~";
154         local f, ok, msg;
155         repeat
156                 f, msg = io_open(scratch, "w");
157                 if not f then break end
158
159                 ok, msg = f:write(data);
160                 if not ok then break end
161
162                 ok, msg = f:close();
163                 if not ok then break end
164
165                 return os_rename(scratch, filename);
166         until false;
167
168         -- Cleanup
169         if f then f:close(); end
170         os_remove(scratch);
171         return nil, msg;
172 end
173
174 if prosody.platform ~= "posix" then
175         -- os.rename does not overwrite existing files on Windows
176         -- TODO We could use Transactional NTFS on Vista and above
177         function atomic_store(filename, data)
178                 local f, err = io_open(filename, "w");
179                 if not f then return f, err; end
180                 local ok, msg = f:write(data);
181                 if not ok then f:close(); return ok, msg; end
182                 return f:close();
183         end
184 end
185
186 function store(username, host, datastore, data)
187         if not data then
188                 data = {};
189         end
190
191         username, host, datastore, data = callback(username, host, datastore, data);
192         if username == false then
193                 return true; -- Don't save this data at all
194         end
195
196         -- save the datastore
197         local d = "return " .. serialize(data) .. ";\n";
198         local ok, msg = atomic_store(getpath(username, host, datastore, nil, true), d);
199         if not ok then
200                 log("error", "Unable to write to %s storage ('%s') for user: %s@%s", datastore, msg, username or "nil", host or "nil");
201                 return nil, "Error saving to storage";
202         end
203         if next(data) == nil then -- try to delete empty datastore
204                 log("debug", "Removing empty %s datastore for user %s@%s", datastore, username or "nil", host or "nil");
205                 os_remove(getpath(username, host, datastore));
206         end
207         -- we write data even when we are deleting because lua doesn't have a
208         -- platform independent way of checking for non-exisitng files
209         return true;
210 end
211
212 function list_append(username, host, datastore, data)
213         if not data then return; end
214         if callback(username, host, datastore) == false then return true; end
215         -- save the datastore
216         local f, msg = io_open(getpath(username, host, datastore, "list", true), "r+");
217         if not f then
218                 f, msg = io_open(getpath(username, host, datastore, "list", true), "w");
219         end
220         if not f then
221                 log("error", "Unable to write to %s storage ('%s') for user: %s@%s", datastore, msg, username or "nil", host or "nil");
222                 return;
223         end
224         local data = "item(" ..  serialize(data) .. ");\n";
225         local pos = f:seek("end");
226         local ok, msg = fallocate(f, pos, #data);
227         f:seek("set", pos);
228         if ok then
229                 f:write(data);
230         else
231                 log("error", "Unable to write to %s storage ('%s') for user: %s@%s", datastore, msg, username or "nil", host or "nil");
232                 return ok, msg;
233         end
234         f:close();
235         return true;
236 end
237
238 function list_store(username, host, datastore, data)
239         if not data then
240                 data = {};
241         end
242         if callback(username, host, datastore) == false then return true; end
243         -- save the datastore
244         local d = {};
245         for _, item in ipairs(data) do
246                 d[#d+1] = "item(" .. serialize(item) .. ");\n";
247         end
248         local ok, msg = atomic_store(getpath(username, host, datastore, "list", true), t_concat(d));
249         if not ok then
250                 log("error", "Unable to write to %s storage ('%s') for user: %s@%s", datastore, msg, username or "nil", host or "nil");
251                 return;
252         end
253         if next(data) == nil then -- try to delete empty datastore
254                 log("debug", "Removing empty %s datastore for user %s@%s", datastore, username or "nil", host or "nil");
255                 os_remove(getpath(username, host, datastore, "list"));
256         end
257         -- we write data even when we are deleting because lua doesn't have a
258         -- platform independent way of checking for non-exisitng files
259         return true;
260 end
261
262 function list_load(username, host, datastore)
263         local items = {};
264         local data, ret = envloadfile(getpath(username, host, datastore, "list"), {item = function(i) t_insert(items, i); end});
265         if not data then
266                 local mode = lfs.attributes(getpath(username, host, datastore, "list"), "mode");
267                 if not mode then
268                         log("debug", "Assuming empty %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
269                         return nil;
270                 else -- file exists, but can't be read
271                         -- TODO more detailed error checking and logging?
272                         log("error", "Failed to load %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
273                         return nil, "Error reading storage";
274                 end
275         end
276
277         local success, ret = pcall(data);
278         if not success then
279                 log("error", "Unable to load %s storage ('%s') for user: %s@%s", datastore, ret, username or "nil", host or "nil");
280                 return nil, "Error reading storage";
281         end
282         return items;
283 end
284
285 function list_stores(username, host)
286         if not host then
287                 return nil, "bad argument #2 to 'list_stores' (string expected, got nothing)";
288         end
289         local list = {};
290         local host_dir = format("%s/%s/", data_path, encode(host));
291         for node in lfs.dir(host_dir) do
292                 if not node:match"^%." then -- dots should be encoded, this is probably . or ..
293                         local store = decode(node);
294                         local path = host_dir..node;
295                         if username == true then
296                                 if lfs.attributes(path, "mode") == "directory" then
297                                         list[#list+1] = store;
298                                 end
299                         elseif username then
300                                 if lfs.attributes(getpath(username, host, store), "mode")
301                                         or lfs.attributes(getpath(username, host, store, "list"), "mode") then
302                                         list[#list+1] = store;
303                                 end
304                         elseif lfs.attributes(path, "mode") == "file" then
305                                 list[#list+1] = store:gsub("%.[dalist]+$","");
306                         end
307                 end
308         end
309         return list;
310 end
311
312 local function do_remove(path)
313         local ok, err = os_remove(path);
314         if not ok and lfs.attributes(path, "mode") then
315                 return ok, err;
316         end
317         return true
318 end
319
320 function purge(username, host)
321         local host_dir = format("%s/%s/", data_path, encode(host));
322         local deleted = 0;
323         local errs = {};
324         for file in lfs.dir(host_dir) do
325                 if lfs.attributes(host_dir..file, "mode") == "directory" then
326                         local store = decode(file);
327                         local ok, err = do_remove(getpath(username, host, store));
328                         if not ok then errs[#errs+1] = err; end
329
330                         local ok, err = do_remove(getpath(username, host, store, "list"));
331                         if not ok then errs[#errs+1] = err; end
332                 end
333         end
334         return #errs == 0, t_concat(errs, ", ");
335 end
336
337 return _M;