r7542: Patch from Renaud Duhaut <rd@duhaut.com> for a parameter
[samba.git] / source3 / modules / vfs_recycle.c
1 /*
2  * Recycle bin VFS module for Samba.
3  *
4  * Copyright (C) 2001, Brandon Stone, Amherst College, <bbstone@amherst.edu>.
5  * Copyright (C) 2002, Jeremy Allison - modified to make a VFS module.
6  * Copyright (C) 2002, Alexander Bokovoy - cascaded VFS adoption,
7  * Copyright (C) 2002, Juergen Hasch - added some options.
8  * Copyright (C) 2002, Simo Sorce
9  * Copyright (C) 2002, Stefan (metze) Metzmacher
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #include "includes.h"
27
28 #define ALLOC_CHECK(ptr, label) do { if ((ptr) == NULL) { DEBUG(0, ("recycle.bin: out of memory!\n")); errno = ENOMEM; goto label; } } while(0)
29
30 static int vfs_recycle_debug_level = DBGC_VFS;
31
32 #undef DBGC_CLASS
33 #define DBGC_CLASS vfs_recycle_debug_level
34  
35 static int recycle_connect(vfs_handle_struct *handle, connection_struct *conn, const char *service, const char *user);
36 static void recycle_disconnect(vfs_handle_struct *handle, connection_struct *conn);
37 static int recycle_unlink(vfs_handle_struct *handle, connection_struct *conn, const char *name);
38
39 static vfs_op_tuple recycle_ops[] = {
40
41         /* Disk operations */
42         {SMB_VFS_OP(recycle_connect),   SMB_VFS_OP_CONNECT,     SMB_VFS_LAYER_TRANSPARENT},
43         {SMB_VFS_OP(recycle_disconnect),        SMB_VFS_OP_DISCONNECT,  SMB_VFS_LAYER_TRANSPARENT},
44
45         /* File operations */
46         {SMB_VFS_OP(recycle_unlink),    SMB_VFS_OP_UNLINK,      SMB_VFS_LAYER_TRANSPARENT},
47
48         {SMB_VFS_OP(NULL),              SMB_VFS_OP_NOOP,        SMB_VFS_LAYER_NOOP}
49 };
50
51 static int recycle_connect(vfs_handle_struct *handle, connection_struct *conn, const char *service, const char *user)
52 {
53         DEBUG(10,("recycle_connect() connect to service[%s] as user[%s].\n",
54                 service,user));
55
56         return SMB_VFS_NEXT_CONNECT(handle, conn, service, user);               
57 }
58
59 static void recycle_disconnect(vfs_handle_struct *handle, connection_struct *conn)
60 {
61         DEBUG(10,("recycle_disconnect() connect to service[%s].\n",
62                 lp_servicename(SNUM(conn))));
63
64         SMB_VFS_NEXT_DISCONNECT(handle, conn);  
65 }
66
67 static const char *recycle_repository(vfs_handle_struct *handle)
68 {
69         const char *tmp_str = NULL;
70         
71
72         tmp_str = lp_parm_const_string(SNUM(handle->conn), "recycle", "repository",".recycle");
73
74         DEBUG(10, ("recycle: repository = %s\n", tmp_str));
75         
76         return tmp_str;
77 }
78
79 static BOOL recycle_keep_dir_tree(vfs_handle_struct *handle)
80 {
81         BOOL ret;
82         
83         ret = lp_parm_bool(SNUM(handle->conn), "recycle", "keeptree", False);
84
85         DEBUG(10, ("recycle_bin: keeptree = %s\n", ret?"True":"False"));
86         
87         return ret;
88 }
89
90 static BOOL recycle_versions(vfs_handle_struct *handle)
91 {
92         BOOL ret;
93
94         ret = lp_parm_bool(SNUM(handle->conn), "recycle", "versions", False);
95
96         DEBUG(10, ("recycle: versions = %s\n", ret?"True":"False"));
97         
98         return ret;
99 }
100
101 static BOOL recycle_touch(vfs_handle_struct *handle)
102 {
103         BOOL ret;
104
105         ret = lp_parm_bool(SNUM(handle->conn), "recycle", "touch", False);
106
107         DEBUG(10, ("recycle: touch = %s\n", ret?"True":"False"));
108         
109         return ret;
110 }
111
112 static const char **recycle_exclude(vfs_handle_struct *handle)
113 {
114         const char **tmp_lp;
115         
116         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "exclude", NULL);
117
118         DEBUG(10, ("recycle: exclude = %s ...\n", tmp_lp?*tmp_lp:""));
119         
120         return tmp_lp;
121 }
122
123 static const char **recycle_exclude_dir(vfs_handle_struct *handle)
124 {
125         const char **tmp_lp;
126         
127         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "exclude_dir", NULL);
128
129         DEBUG(10, ("recycle: exclude_dir = %s ...\n", tmp_lp?*tmp_lp:""));
130         
131         return tmp_lp;
132 }
133
134 static const char **recycle_noversions(vfs_handle_struct *handle)
135 {
136         const char **tmp_lp;
137         
138         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "noversions", NULL);
139
140         DEBUG(10, ("recycle: noversions = %s\n", tmp_lp?*tmp_lp:""));
141         
142         return tmp_lp;
143 }
144
145 static int recycle_maxsize(vfs_handle_struct *handle)
146 {
147         int maxsize;
148         
149         maxsize = lp_parm_int(SNUM(handle->conn), "recycle", "maxsize", -1);
150
151         DEBUG(10, ("recycle: maxsize = %d\n", maxsize));
152         
153         return maxsize;
154 }
155
156 static mode_t recycle_directory_mode(vfs_handle_struct *handle)
157 {
158         mode_t dirmode;
159         const char *buff;
160
161         buff = lp_parm_const_string(SNUM(handle->conn), "recycle", "directory_mode", NULL);
162
163         if (buff != NULL ) {
164                 sscanf(buff, "%o", (int *)&dirmode);
165         } else {
166                 dirmode=S_IRUSR | S_IWUSR | S_IXUSR;
167         }
168
169         DEBUG(10, ("recycle: directory_mode = %o\n", dirmode));
170         return dirmode;
171 }
172
173 static BOOL recycle_directory_exist(vfs_handle_struct *handle, const char *dname)
174 {
175         SMB_STRUCT_STAT st;
176
177         if (SMB_VFS_NEXT_STAT(handle, handle->conn, dname, &st) == 0) {
178                 if (S_ISDIR(st.st_mode)) {
179                         return True;
180                 }
181         }
182
183         return False;
184 }
185
186 static BOOL recycle_file_exist(vfs_handle_struct *handle, const char *fname)
187 {
188         SMB_STRUCT_STAT st;
189
190         if (SMB_VFS_NEXT_STAT(handle, handle->conn, fname, &st) == 0) {
191                 if (S_ISREG(st.st_mode)) {
192                         return True;
193                 }
194         }
195
196         return False;
197 }
198
199 /**
200  * Return file size
201  * @param conn connection
202  * @param fname file name
203  * @return size in bytes
204  **/
205 static SMB_OFF_T recycle_get_file_size(vfs_handle_struct *handle, const char *fname)
206 {
207         SMB_STRUCT_STAT st;
208
209         if (SMB_VFS_NEXT_STAT(handle, handle->conn, fname, &st) != 0) {
210                 DEBUG(0,("recycle: stat for %s returned %s\n", fname, strerror(errno)));
211                 return (SMB_OFF_T)0;
212         }
213
214         return(st.st_size);
215 }
216
217 /**
218  * Create directory tree
219  * @param conn connection
220  * @param dname Directory tree to be created
221  * @return Returns True for success
222  **/
223 static BOOL recycle_create_dir(vfs_handle_struct *handle, const char *dname)
224 {
225         int len;
226         mode_t mode;
227         char *new_dir = NULL;
228         char *tmp_str = NULL;
229         char *token;
230         char *tok_str;
231         BOOL ret = False;
232
233         mode = recycle_directory_mode(handle);
234
235         tmp_str = SMB_STRDUP(dname);
236         ALLOC_CHECK(tmp_str, done);
237         tok_str = tmp_str;
238
239         len = strlen(dname)+1;
240         new_dir = (char *)SMB_MALLOC(len + 1);
241         ALLOC_CHECK(new_dir, done);
242         *new_dir = '\0';
243
244         /* Create directory tree if neccessary */
245         for(token = strtok(tok_str, "/"); token; token = strtok(NULL, "/")) {
246                 safe_strcat(new_dir, token, len);
247                 if (recycle_directory_exist(handle, new_dir))
248                         DEBUG(10, ("recycle: dir %s already exists\n", new_dir));
249                 else {
250                         DEBUG(5, ("recycle: creating new dir %s\n", new_dir));
251                         if (SMB_VFS_NEXT_MKDIR(handle, handle->conn, new_dir, mode) != 0) {
252                                 DEBUG(1,("recycle: mkdir failed for %s with error: %s\n", new_dir, strerror(errno)));
253                                 ret = False;
254                                 goto done;
255                         }
256                 }
257                 safe_strcat(new_dir, "/", len);
258         }
259
260         ret = True;
261 done:
262         SAFE_FREE(tmp_str);
263         SAFE_FREE(new_dir);
264         return ret;
265 }
266
267 /**
268  * Check if needle is contained exactly in haystack
269  * @param haystack list of parameters separated by delimimiter character
270  * @param needle string to be matched exactly to haystack
271  * @return True if found
272  **/
273 static BOOL checkparam(const char **haystack_list, const char *needle)
274 {
275         int i;
276
277         if (haystack_list == NULL || haystack_list[0] == NULL ||
278                 *haystack_list[0] == '\0' || needle == NULL || *needle == '\0') {
279                 return False;
280         }
281
282         for(i=0; haystack_list[i] ; i++) {
283                 if(strequal(haystack_list[i], needle)) {
284                         return True;
285                 }
286         }
287
288         return False;
289 }
290
291 /**
292  * Check if needle is contained in haystack, * and ? patterns are resolved
293  * @param haystack list of parameters separated by delimimiter character
294  * @param needle string to be matched exectly to haystack including pattern matching
295  * @return True if found
296  **/
297 static BOOL matchparam(const char **haystack_list, const char *needle)
298 {
299         int i;
300
301         if (haystack_list == NULL || haystack_list[0] == NULL ||
302                 *haystack_list[0] == '\0' || needle == NULL || *needle == '\0') {
303                 return False;
304         }
305
306         for(i=0; haystack_list[i] ; i++) {
307                 if(!unix_wild_match(haystack_list[i], needle)) {
308                         return True;
309                 }
310         }
311
312         return False;
313 }
314
315 /**
316  * Touch access date
317  **/
318 static void recycle_do_touch(vfs_handle_struct *handle, const char *fname)
319 {
320         SMB_STRUCT_STAT st;
321         struct utimbuf tb;
322         time_t currtime;
323         
324         if (SMB_VFS_NEXT_STAT(handle, handle->conn, fname, &st) != 0) {
325                 DEBUG(0,("recycle: stat for %s returned %s\n", fname, strerror(errno)));
326                 return;
327         }
328         currtime = time(&currtime);
329         tb.actime = currtime;
330         tb.modtime = st.st_mtime;
331
332         if (SMB_VFS_NEXT_UTIME(handle, handle->conn, fname, &tb) == -1 ) {
333                 DEBUG(0, ("recycle: touching %s failed, reason = %s\n", fname, strerror(errno)));
334         }
335 }
336
337 /**
338  * Check if file should be recycled
339  **/
340 static int recycle_unlink(vfs_handle_struct *handle, connection_struct *conn, const char *file_name)
341 {
342         char *path_name = NULL;
343         char *temp_name = NULL;
344         char *final_name = NULL;
345         const char *base;
346         char *repository = NULL;
347         int i = 1;
348         int maxsize;
349         SMB_OFF_T file_size; /* space_avail;    */
350         BOOL exist;
351         int rc = -1;
352
353         repository = alloc_sub_conn(conn, recycle_repository(handle));
354         ALLOC_CHECK(repository, done);
355         /* shouldn't we allow absolute path names here? --metze */
356         trim_char(repository, '/', '/');
357         
358         if(!repository || *(repository) == '\0') {
359                 DEBUG(3, ("recycle: repository path not set, purging %s...\n", file_name));
360                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
361                 goto done;
362         }
363
364         /* we don't recycle the recycle bin... */
365         if (strncmp(file_name, repository, strlen(repository)) == 0) {
366                 DEBUG(3, ("recycle: File is within recycling bin, unlinking ...\n"));
367                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
368                 goto done;
369         }
370
371         file_size = recycle_get_file_size(handle, file_name);
372         /* it is wrong to purge filenames only because they are empty imho
373          *   --- simo
374          *
375         if(fsize == 0) {
376                 DEBUG(3, ("recycle: File %s is empty, purging...\n", file_name));
377                 rc = SMB_VFS_NEXT_UNLINK(handle,conn,file_name);
378                 goto done;
379         }
380          */
381
382         /* FIXME: this is wrong, we should check the hole size of the recycle bin is
383          * not greater then maxsize, not the size of the single file, also it is better
384          * to remove older files
385          */
386         maxsize = recycle_maxsize(handle);
387         if(maxsize > 0 && file_size > maxsize) {
388                 DEBUG(3, ("recycle: File %s exceeds maximum recycle size, purging... \n", file_name));
389                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
390                 goto done;
391         }
392
393         /* FIXME: this is wrong: moving files with rename does not change the disk space
394          * allocation
395          *
396         space_avail = SMB_VFS_NEXT_DISK_FREE(handle, conn, ".", True, &bsize, &dfree, &dsize) * 1024L;
397         DEBUG(5, ("space_avail = %Lu, file_size = %Lu\n", space_avail, file_size));
398         if(space_avail < file_size) {
399                 DEBUG(3, ("recycle: Not enough diskspace, purging file %s\n", file_name));
400                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
401                 goto done;
402         }
403          */
404
405         /* extract filename and path */
406         base = strrchr(file_name, '/');
407         if (base == NULL) {
408                 base = file_name;
409                 path_name = SMB_STRDUP("/");
410                 ALLOC_CHECK(path_name, done);
411         }
412         else {
413                 path_name = SMB_STRDUP(file_name);
414                 ALLOC_CHECK(path_name, done);
415                 path_name[base - file_name] = '\0';
416                 base++;
417         }
418
419         DEBUG(10, ("recycle: fname = %s\n", file_name));        /* original filename with path */
420         DEBUG(10, ("recycle: fpath = %s\n", path_name));        /* original path */
421         DEBUG(10, ("recycle: base = %s\n", base));              /* filename without path */
422
423         if (matchparam(recycle_exclude(handle), base)) {
424                 DEBUG(3, ("recycle: file %s is excluded \n", base));
425                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
426                 goto done;
427         }
428
429         /* FIXME: this check will fail if we have more than one level of directories,
430          * we shoud check for every level 1, 1/2, 1/2/3, 1/2/3/4 .... 
431          *      ---simo
432          */
433         if (checkparam(recycle_exclude_dir(handle), path_name)) {
434                 DEBUG(3, ("recycle: directory %s is excluded \n", path_name));
435                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
436                 goto done;
437         }
438
439         if (recycle_keep_dir_tree(handle) == True) {
440                 asprintf(&temp_name, "%s/%s", repository, path_name);
441         } else {
442                 temp_name = SMB_STRDUP(repository);
443         }
444         ALLOC_CHECK(temp_name, done);
445
446         exist = recycle_directory_exist(handle, temp_name);
447         if (exist) {
448                 DEBUG(10, ("recycle: Directory already exists\n"));
449         } else {
450                 DEBUG(10, ("recycle: Creating directory %s\n", temp_name));
451                 if (recycle_create_dir(handle, temp_name) == False) {
452                         DEBUG(3, ("recycle: Could not create directory, purging %s...\n", file_name));
453                         rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
454                         goto done;
455                 }
456         }
457
458         asprintf(&final_name, "%s/%s", temp_name, base);
459         ALLOC_CHECK(final_name, done);
460         DEBUG(10, ("recycle: recycled file name: %s\n", final_name));           /* new filename with path */
461
462         /* check if we should delete file from recycle bin */
463         if (recycle_file_exist(handle, final_name)) {
464                 if (recycle_versions(handle) == False || matchparam(recycle_noversions(handle), base) == True) {
465                         DEBUG(3, ("recycle: Removing old file %s from recycle bin\n", final_name));
466                         if (SMB_VFS_NEXT_UNLINK(handle, conn, final_name) != 0) {
467                                 DEBUG(1, ("recycle: Error deleting old file: %s\n", strerror(errno)));
468                         }
469                 }
470         }
471
472         /* rename file we move to recycle bin */
473         i = 1;
474         while (recycle_file_exist(handle, final_name)) {
475                 SAFE_FREE(final_name);
476                 asprintf(&final_name, "%s/Copy #%d of %s", temp_name, i++, base);
477         }
478
479         DEBUG(10, ("recycle: Moving %s to %s\n", file_name, final_name));
480         rc = SMB_VFS_NEXT_RENAME(handle, conn, file_name, final_name);
481         if (rc != 0) {
482                 DEBUG(3, ("recycle: Move error %d (%s), purging file %s (%s)\n", errno, strerror(errno), file_name, final_name));
483                 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
484                 goto done;
485         }
486
487         /* touch access date of moved file */
488         if (recycle_touch(handle) == True )
489                 recycle_do_touch(handle, final_name);
490
491 done:
492         SAFE_FREE(path_name);
493         SAFE_FREE(temp_name);
494         SAFE_FREE(final_name);
495         SAFE_FREE(repository);
496         return rc;
497 }
498
499 NTSTATUS vfs_recycle_init(void)
500 {
501         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "recycle", recycle_ops);
502
503         if (!NT_STATUS_IS_OK(ret))
504                 return ret;
505         
506         vfs_recycle_debug_level = debug_add_class("recycle");
507         if (vfs_recycle_debug_level == -1) {
508                 vfs_recycle_debug_level = DBGC_VFS;
509                 DEBUG(0, ("vfs_recycle: Couldn't register custom debugging class!\n"));
510         } else {
511                 DEBUG(10, ("vfs_recycle: Debug class number of 'recycle': %d\n", vfs_recycle_debug_level));
512         }
513         
514         return ret;
515 }