2 * Recycle bin VFS module for Samba.
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
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.
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.
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.
28 #define ALLOC_CHECK(ptr, label) do { if ((ptr) == NULL) { DEBUG(0, ("recycle.bin: out of memory!\n")); errno = ENOMEM; goto label; } } while(0)
30 static int vfs_recycle_debug_level
= DBGC_VFS
;
33 #define DBGC_CLASS vfs_recycle_debug_level
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
);
39 static vfs_op_tuple recycle_ops
[] = {
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
},
46 {SMB_VFS_OP(recycle_unlink
), SMB_VFS_OP_UNLINK
, SMB_VFS_LAYER_TRANSPARENT
},
48 {SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
51 static int recycle_connect(vfs_handle_struct
*handle
, connection_struct
*conn
, const char *service
, const char *user
)
53 DEBUG(10,("recycle_connect() connect to service[%s] as user[%s].\n",
56 return SMB_VFS_NEXT_CONNECT(handle
, conn
, service
, user
);
59 static void recycle_disconnect(vfs_handle_struct
*handle
, connection_struct
*conn
)
61 DEBUG(10,("recycle_disconnect() connect to service[%s].\n",
62 lp_servicename(SNUM(conn
))));
64 SMB_VFS_NEXT_DISCONNECT(handle
, conn
);
67 static const char *recycle_repository(vfs_handle_struct
*handle
)
69 const char *tmp_str
= NULL
;
72 tmp_str
= lp_parm_const_string(SNUM(handle
->conn
), "recycle", "repository",".recycle");
74 DEBUG(10, ("recycle: repository = %s\n", tmp_str
));
79 static BOOL
recycle_keep_dir_tree(vfs_handle_struct
*handle
)
83 ret
= lp_parm_bool(SNUM(handle
->conn
), "recycle", "keeptree", False
);
85 DEBUG(10, ("recycle_bin: keeptree = %s\n", ret
?"True":"False"));
90 static BOOL
recycle_versions(vfs_handle_struct
*handle
)
94 ret
= lp_parm_bool(SNUM(handle
->conn
), "recycle", "versions", False
);
96 DEBUG(10, ("recycle: versions = %s\n", ret
?"True":"False"));
101 static BOOL
recycle_touch(vfs_handle_struct
*handle
)
105 ret
= lp_parm_bool(SNUM(handle
->conn
), "recycle", "touch", False
);
107 DEBUG(10, ("recycle: touch = %s\n", ret
?"True":"False"));
112 static const char **recycle_exclude(vfs_handle_struct
*handle
)
116 tmp_lp
= lp_parm_string_list(SNUM(handle
->conn
), "recycle", "exclude", NULL
);
118 DEBUG(10, ("recycle: exclude = %s ...\n", tmp_lp
?*tmp_lp
:""));
123 static const char **recycle_exclude_dir(vfs_handle_struct
*handle
)
127 tmp_lp
= lp_parm_string_list(SNUM(handle
->conn
), "recycle", "exclude_dir", NULL
);
129 DEBUG(10, ("recycle: exclude_dir = %s ...\n", tmp_lp
?*tmp_lp
:""));
134 static const char **recycle_noversions(vfs_handle_struct
*handle
)
138 tmp_lp
= lp_parm_string_list(SNUM(handle
->conn
), "recycle", "noversions", NULL
);
140 DEBUG(10, ("recycle: noversions = %s\n", tmp_lp
?*tmp_lp
:""));
145 static int recycle_maxsize(vfs_handle_struct
*handle
)
149 maxsize
= lp_parm_int(SNUM(handle
->conn
), "recycle", "maxsize", -1);
151 DEBUG(10, ("recycle: maxsize = %d\n", maxsize
));
156 static BOOL
recycle_directory_exist(vfs_handle_struct
*handle
, const char *dname
)
160 if (SMB_VFS_NEXT_STAT(handle
, handle
->conn
, dname
, &st
) == 0) {
161 if (S_ISDIR(st
.st_mode
)) {
169 static BOOL
recycle_file_exist(vfs_handle_struct
*handle
, const char *fname
)
173 if (SMB_VFS_NEXT_STAT(handle
, handle
->conn
, fname
, &st
) == 0) {
174 if (S_ISREG(st
.st_mode
)) {
184 * @param conn connection
185 * @param fname file name
186 * @return size in bytes
188 static SMB_OFF_T
recycle_get_file_size(vfs_handle_struct
*handle
, const char *fname
)
192 if (SMB_VFS_NEXT_STAT(handle
, handle
->conn
, fname
, &st
) != 0) {
193 DEBUG(0,("recycle: stat for %s returned %s\n", fname
, strerror(errno
)));
201 * Create directory tree
202 * @param conn connection
203 * @param dname Directory tree to be created
204 * @return Returns True for success
206 static BOOL
recycle_create_dir(vfs_handle_struct
*handle
, const char *dname
)
210 char *new_dir
= NULL
;
211 char *tmp_str
= NULL
;
216 mode
= S_IRUSR
| S_IWUSR
| S_IXUSR
;
218 tmp_str
= strdup(dname
);
219 ALLOC_CHECK(tmp_str
, done
);
223 new_dir
= (char *)malloc(len
+ 1);
224 ALLOC_CHECK(new_dir
, done
);
227 /* Create directory tree if neccessary */
228 for(token
= strtok(tok_str
, "/"); token
; token
= strtok(NULL
, "/")) {
229 safe_strcat(new_dir
, token
, len
);
230 if (recycle_directory_exist(handle
, new_dir
))
231 DEBUG(10, ("recycle: dir %s already exists\n", new_dir
));
233 DEBUG(5, ("recycle: creating new dir %s\n", new_dir
));
234 if (SMB_VFS_NEXT_MKDIR(handle
, handle
->conn
, new_dir
, mode
) != 0) {
235 DEBUG(1,("recycle: mkdir failed for %s with error: %s\n", new_dir
, strerror(errno
)));
240 safe_strcat(new_dir
, "/", len
);
251 * Check if needle is contained exactly in haystack
252 * @param haystack list of parameters separated by delimimiter character
253 * @param needle string to be matched exactly to haystack
254 * @return True if found
256 static BOOL
checkparam(const char **haystack_list
, const char *needle
)
260 if (haystack_list
== NULL
|| haystack_list
[0] == NULL
||
261 *haystack_list
[0] == '\0' || needle
== NULL
|| *needle
== '\0') {
265 for(i
=0; haystack_list
[i
] ; i
++) {
266 if(strequal(haystack_list
[i
], needle
)) {
275 * Check if needle is contained in haystack, * and ? patterns are resolved
276 * @param haystack list of parameters separated by delimimiter character
277 * @param needle string to be matched exectly to haystack including pattern matching
278 * @return True if found
280 static BOOL
matchparam(const char **haystack_list
, const char *needle
)
284 if (haystack_list
== NULL
|| haystack_list
[0] == NULL
||
285 *haystack_list
[0] == '\0' || needle
== NULL
|| *needle
== '\0') {
289 for(i
=0; haystack_list
[i
] ; i
++) {
290 if(!unix_wild_match(haystack_list
[i
], needle
)) {
301 static void recycle_do_touch(vfs_handle_struct
*handle
, const char *fname
)
307 if (SMB_VFS_NEXT_STAT(handle
, handle
->conn
, fname
, &st
) != 0) {
308 DEBUG(0,("recycle: stat for %s returned %s\n", fname
, strerror(errno
)));
311 currtime
= time(&currtime
);
312 tb
.actime
= currtime
;
313 tb
.modtime
= st
.st_mtime
;
315 if (SMB_VFS_NEXT_UTIME(handle
, handle
->conn
, fname
, &tb
) == -1 ) {
316 DEBUG(0, ("recycle: touching %s failed, reason = %s\n", fname
, strerror(errno
)));
321 * Check if file should be recycled
323 static int recycle_unlink(vfs_handle_struct
*handle
, connection_struct
*conn
, const char *file_name
)
325 char *path_name
= NULL
;
326 char *temp_name
= NULL
;
327 char *final_name
= NULL
;
329 char *repository
= NULL
;
332 SMB_OFF_T file_size
; /* space_avail; */
336 repository
= alloc_sub_conn(conn
, recycle_repository(handle
));
337 ALLOC_CHECK(repository
, done
);
338 /* shouldn't we allow absolute path names here? --metze */
339 trim_char(repository
, '/', '/');
341 if(!repository
|| *(repository
) == '\0') {
342 DEBUG(3, ("recycle: repository path not set, purging %s...\n", file_name
));
343 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
347 /* we don't recycle the recycle bin... */
348 if (strncmp(file_name
, repository
, strlen(repository
)) == 0) {
349 DEBUG(3, ("recycle: File is within recycling bin, unlinking ...\n"));
350 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
354 file_size
= recycle_get_file_size(handle
, file_name
);
355 /* it is wrong to purge filenames only because they are empty imho
359 DEBUG(3, ("recycle: File %s is empty, purging...\n", file_name));
360 rc = SMB_VFS_NEXT_UNLINK(handle,conn,file_name);
365 /* FIXME: this is wrong, we should check the hole size of the recycle bin is
366 * not greater then maxsize, not the size of the single file, also it is better
367 * to remove older files
369 maxsize
= recycle_maxsize(handle
);
370 if(maxsize
> 0 && file_size
> maxsize
) {
371 DEBUG(3, ("recycle: File %s exceeds maximum recycle size, purging... \n", file_name
));
372 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
376 /* FIXME: this is wrong: moving files with rename does not change the disk space
379 space_avail = SMB_VFS_NEXT_DISK_FREE(handle, conn, ".", True, &bsize, &dfree, &dsize) * 1024L;
380 DEBUG(5, ("space_avail = %Lu, file_size = %Lu\n", space_avail, file_size));
381 if(space_avail < file_size) {
382 DEBUG(3, ("recycle: Not enough diskspace, purging file %s\n", file_name));
383 rc = SMB_VFS_NEXT_UNLINK(handle, conn, file_name);
388 /* extract filename and path */
389 base
= strrchr(file_name
, '/');
392 path_name
= strdup("/");
393 ALLOC_CHECK(path_name
, done
);
396 path_name
= strdup(file_name
);
397 ALLOC_CHECK(path_name
, done
);
398 path_name
[base
- file_name
] = '\0';
402 DEBUG(10, ("recycle: fname = %s\n", file_name
)); /* original filename with path */
403 DEBUG(10, ("recycle: fpath = %s\n", path_name
)); /* original path */
404 DEBUG(10, ("recycle: base = %s\n", base
)); /* filename without path */
406 if (matchparam(recycle_exclude(handle
), base
)) {
407 DEBUG(3, ("recycle: file %s is excluded \n", base
));
408 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
412 /* FIXME: this check will fail if we have more than one level of directories,
413 * we shoud check for every level 1, 1/2, 1/2/3, 1/2/3/4 ....
416 if (checkparam(recycle_exclude_dir(handle
), path_name
)) {
417 DEBUG(3, ("recycle: directory %s is excluded \n", path_name
));
418 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
422 if (recycle_keep_dir_tree(handle
) == True
) {
423 asprintf(&temp_name
, "%s/%s", repository
, path_name
);
425 temp_name
= strdup(repository
);
427 ALLOC_CHECK(temp_name
, done
);
429 exist
= recycle_directory_exist(handle
, temp_name
);
431 DEBUG(10, ("recycle: Directory already exists\n"));
433 DEBUG(10, ("recycle: Creating directory %s\n", temp_name
));
434 if (recycle_create_dir(handle
, temp_name
) == False
) {
435 DEBUG(3, ("recycle: Could not create directory, purging %s...\n", file_name
));
436 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
441 asprintf(&final_name
, "%s/%s", temp_name
, base
);
442 ALLOC_CHECK(final_name
, done
);
443 DEBUG(10, ("recycle: recycled file name: %s\n", final_name
)); /* new filename with path */
445 /* check if we should delete file from recycle bin */
446 if (recycle_file_exist(handle
, final_name
)) {
447 if (recycle_versions(handle
) == False
|| matchparam(recycle_noversions(handle
), base
) == True
) {
448 DEBUG(3, ("recycle: Removing old file %s from recycle bin\n", final_name
));
449 if (SMB_VFS_NEXT_UNLINK(handle
, conn
, final_name
) != 0) {
450 DEBUG(1, ("recycle: Error deleting old file: %s\n", strerror(errno
)));
455 /* rename file we move to recycle bin */
457 while (recycle_file_exist(handle
, final_name
)) {
458 SAFE_FREE(final_name
);
459 asprintf(&final_name
, "%s/Copy #%d of %s", temp_name
, i
++, base
);
462 DEBUG(10, ("recycle: Moving %s to %s\n", file_name
, final_name
));
463 rc
= SMB_VFS_NEXT_RENAME(handle
, conn
, file_name
, final_name
);
465 DEBUG(3, ("recycle: Move error %d (%s), purging file %s (%s)\n", errno
, strerror(errno
), file_name
, final_name
));
466 rc
= SMB_VFS_NEXT_UNLINK(handle
, conn
, file_name
);
470 /* touch access date of moved file */
471 if (recycle_touch(handle
) == True
)
472 recycle_do_touch(handle
, final_name
);
475 SAFE_FREE(path_name
);
476 SAFE_FREE(temp_name
);
477 SAFE_FREE(final_name
);
478 SAFE_FREE(repository
);
482 NTSTATUS
vfs_recycle_init(void)
484 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "recycle", recycle_ops
);
486 if (!NT_STATUS_IS_OK(ret
))
489 vfs_recycle_debug_level
= debug_add_class("recycle");
490 if (vfs_recycle_debug_level
== -1) {
491 vfs_recycle_debug_level
= DBGC_VFS
;
492 DEBUG(0, ("vfs_recycle: Couldn't register custom debugging class!\n"));
494 DEBUG(10, ("vfs_recycle: Debug class number of 'recycle': %d\n", vfs_recycle_debug_level
));