s3: Plumb smb_filename through SMB_VFS_UNLINK
[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 3 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, see <http://www.gnu.org/licenses/>.
23  */
24
25 #include "includes.h"
26
27 #define ALLOC_CHECK(ptr, label) do { if ((ptr) == NULL) { DEBUG(0, ("recycle.bin: out of memory!\n")); errno = ENOMEM; goto label; } } while(0)
28
29 static int vfs_recycle_debug_level = DBGC_VFS;
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS vfs_recycle_debug_level
33  
34 static int recycle_connect(vfs_handle_struct *handle, const char *service, const char *user);
35 static void recycle_disconnect(vfs_handle_struct *handle);
36 static int recycle_unlink(vfs_handle_struct *handle,
37                           const struct smb_filename *smb_fname);
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, 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, service, user);
57 }
58
59 static void recycle_disconnect(vfs_handle_struct *handle)
60 {
61         DEBUG(10,("recycle_disconnect() connect to service[%s].\n",
62                 lp_servicename(SNUM(handle->conn))));
63
64         SMB_VFS_NEXT_DISCONNECT(handle);
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 bool recycle_touch_mtime(vfs_handle_struct *handle)
113 {
114         bool ret;
115
116         ret = lp_parm_bool(SNUM(handle->conn), "recycle", "touch_mtime", False);
117
118         DEBUG(10, ("recycle: touch_mtime = %s\n", ret?"True":"False"));
119         
120         return ret;
121 }
122
123 static const char **recycle_exclude(vfs_handle_struct *handle)
124 {
125         const char **tmp_lp;
126         
127         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "exclude", NULL);
128
129         DEBUG(10, ("recycle: exclude = %s ...\n", tmp_lp?*tmp_lp:""));
130         
131         return tmp_lp;
132 }
133
134 static const char **recycle_exclude_dir(vfs_handle_struct *handle)
135 {
136         const char **tmp_lp;
137         
138         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "exclude_dir", NULL);
139
140         DEBUG(10, ("recycle: exclude_dir = %s ...\n", tmp_lp?*tmp_lp:""));
141         
142         return tmp_lp;
143 }
144
145 static const char **recycle_noversions(vfs_handle_struct *handle)
146 {
147         const char **tmp_lp;
148         
149         tmp_lp = lp_parm_string_list(SNUM(handle->conn), "recycle", "noversions", NULL);
150
151         DEBUG(10, ("recycle: noversions = %s\n", tmp_lp?*tmp_lp:""));
152         
153         return tmp_lp;
154 }
155
156 static SMB_OFF_T recycle_maxsize(vfs_handle_struct *handle)
157 {
158         SMB_OFF_T maxsize;
159         
160         maxsize = conv_str_size(lp_parm_const_string(SNUM(handle->conn),
161                                             "recycle", "maxsize", NULL));
162
163         DEBUG(10, ("recycle: maxsize = %lu\n", (long unsigned int)maxsize));
164         
165         return maxsize;
166 }
167
168 static SMB_OFF_T recycle_minsize(vfs_handle_struct *handle)
169 {
170         SMB_OFF_T minsize;
171         
172         minsize = conv_str_size(lp_parm_const_string(SNUM(handle->conn),
173                                             "recycle", "minsize", NULL));
174
175         DEBUG(10, ("recycle: minsize = %lu\n", (long unsigned int)minsize));
176         
177         return minsize;
178 }
179
180 static mode_t recycle_directory_mode(vfs_handle_struct *handle)
181 {
182         int dirmode;
183         const char *buff;
184
185         buff = lp_parm_const_string(SNUM(handle->conn), "recycle", "directory_mode", NULL);
186
187         if (buff != NULL ) {
188                 sscanf(buff, "%o", &dirmode);
189         } else {
190                 dirmode=S_IRUSR | S_IWUSR | S_IXUSR;
191         }
192
193         DEBUG(10, ("recycle: directory_mode = %o\n", dirmode));
194         return (mode_t)dirmode;
195 }
196
197 static mode_t recycle_subdir_mode(vfs_handle_struct *handle)
198 {
199         int dirmode;
200         const char *buff;
201
202         buff = lp_parm_const_string(SNUM(handle->conn), "recycle", "subdir_mode", NULL);
203
204         if (buff != NULL ) {
205                 sscanf(buff, "%o", &dirmode);
206         } else {
207                 dirmode=recycle_directory_mode(handle);
208         }
209
210         DEBUG(10, ("recycle: subdir_mode = %o\n", dirmode));
211         return (mode_t)dirmode;
212 }
213
214 static bool recycle_directory_exist(vfs_handle_struct *handle, const char *dname)
215 {
216         SMB_STRUCT_STAT st;
217
218         if (vfs_stat_smb_fname(handle->conn, dname, &st) == 0) {
219                 if (S_ISDIR(st.st_ex_mode)) {
220                         return True;
221                 }
222         }
223
224         return False;
225 }
226
227 static bool recycle_file_exist(vfs_handle_struct *handle,
228                                const struct smb_filename *smb_fname)
229 {
230         struct smb_filename *smb_fname_tmp = NULL;
231         NTSTATUS status;
232         bool ret = false;
233
234         status = copy_smb_filename(talloc_tos(), smb_fname, &smb_fname_tmp);
235         if (!NT_STATUS_IS_OK(status)) {
236                 return false;
237         }
238
239         if (SMB_VFS_STAT(handle->conn, smb_fname_tmp) == 0) {
240                 if (S_ISREG(smb_fname_tmp->st.st_ex_mode)) {
241                         ret = true;
242                 }
243         }
244
245         TALLOC_FREE(smb_fname_tmp);
246         return ret;
247 }
248
249 /**
250  * Return file size
251  * @param conn connection
252  * @param fname file name
253  * @return size in bytes
254  **/
255 static SMB_OFF_T recycle_get_file_size(vfs_handle_struct *handle,
256                                        const struct smb_filename *smb_fname)
257 {
258         struct smb_filename *smb_fname_tmp = NULL;
259         NTSTATUS status;
260         SMB_OFF_T size;
261
262         status = copy_smb_filename(talloc_tos(), smb_fname, &smb_fname_tmp);
263         if (!NT_STATUS_IS_OK(status)) {
264                 size = (SMB_OFF_T)0;
265                 goto out;
266         }
267
268         if (SMB_VFS_STAT(handle->conn, smb_fname_tmp) != 0) {
269                 DEBUG(0,("recycle: stat for %s returned %s\n",
270                          smb_fname_str_dbg(smb_fname_tmp), strerror(errno)));
271                 size = (SMB_OFF_T)0;
272                 goto out;
273         }
274
275         size = smb_fname_tmp->st.st_ex_size;
276  out:
277         TALLOC_FREE(smb_fname_tmp);
278         return size;
279 }
280
281 /**
282  * Create directory tree
283  * @param conn connection
284  * @param dname Directory tree to be created
285  * @return Returns True for success
286  **/
287 static bool recycle_create_dir(vfs_handle_struct *handle, const char *dname)
288 {
289         size_t len;
290         mode_t mode;
291         char *new_dir = NULL;
292         char *tmp_str = NULL;
293         char *token;
294         char *tok_str;
295         bool ret = False;
296         char *saveptr;
297
298         mode = recycle_directory_mode(handle);
299
300         tmp_str = SMB_STRDUP(dname);
301         ALLOC_CHECK(tmp_str, done);
302         tok_str = tmp_str;
303
304         len = strlen(dname)+1;
305         new_dir = (char *)SMB_MALLOC(len + 1);
306         ALLOC_CHECK(new_dir, done);
307         *new_dir = '\0';
308         if (dname[0] == '/') {
309                 /* Absolute path. */
310                 safe_strcat(new_dir,"/",len);
311         }
312
313         /* Create directory tree if neccessary */
314         for(token = strtok_r(tok_str, "/", &saveptr); token;
315             token = strtok_r(NULL, "/", &saveptr)) {
316                 safe_strcat(new_dir, token, len);
317                 if (recycle_directory_exist(handle, new_dir))
318                         DEBUG(10, ("recycle: dir %s already exists\n", new_dir));
319                 else {
320                         DEBUG(5, ("recycle: creating new dir %s\n", new_dir));
321                         if (SMB_VFS_NEXT_MKDIR(handle, new_dir, mode) != 0) {
322                                 DEBUG(1,("recycle: mkdir failed for %s with error: %s\n", new_dir, strerror(errno)));
323                                 ret = False;
324                                 goto done;
325                         }
326                 }
327                 safe_strcat(new_dir, "/", len);
328                 mode = recycle_subdir_mode(handle);
329         }
330
331         ret = True;
332 done:
333         SAFE_FREE(tmp_str);
334         SAFE_FREE(new_dir);
335         return ret;
336 }
337
338 /**
339  * Check if any of the components of "exclude_list" are contained in path.
340  * Return True if found
341  **/
342
343 static bool matchdirparam(const char **dir_exclude_list, char *path)
344 {
345         char *startp = NULL, *endp = NULL;
346
347         if (dir_exclude_list == NULL || dir_exclude_list[0] == NULL ||
348                 *dir_exclude_list[0] == '\0' || path == NULL || *path == '\0') {
349                 return False;
350         }
351
352         /* 
353          * Walk the components of path, looking for matches with the
354          * exclude list on each component. 
355          */
356
357         for (startp = path; startp; startp = endp) {
358                 int i;
359
360                 while (*startp == '/') {
361                         startp++;
362                 }
363                 endp = strchr(startp, '/');
364                 if (endp) {
365                         *endp = '\0';
366                 }
367
368                 for(i=0; dir_exclude_list[i] ; i++) {
369                         if(unix_wild_match(dir_exclude_list[i], startp)) {
370                                 /* Repair path. */
371                                 if (endp) {
372                                         *endp = '/';
373                                 }
374                                 return True;
375                         }
376                 }
377
378                 /* Repair path. */
379                 if (endp) {
380                         *endp = '/';
381                 }
382         }
383
384         return False;
385 }
386
387 /**
388  * Check if needle is contained in haystack, * and ? patterns are resolved
389  * @param haystack list of parameters separated by delimimiter character
390  * @param needle string to be matched exectly to haystack including pattern matching
391  * @return True if found
392  **/
393 static bool matchparam(const char **haystack_list, const char *needle)
394 {
395         int i;
396
397         if (haystack_list == NULL || haystack_list[0] == NULL ||
398                 *haystack_list[0] == '\0' || needle == NULL || *needle == '\0') {
399                 return False;
400         }
401
402         for(i=0; haystack_list[i] ; i++) {
403                 if(unix_wild_match(haystack_list[i], needle)) {
404                         return True;
405                 }
406         }
407
408         return False;
409 }
410
411 /**
412  * Touch access or modify date
413  **/
414 static void recycle_do_touch(vfs_handle_struct *handle,
415                              const struct smb_filename *smb_fname,
416                              bool touch_mtime)
417 {
418         struct smb_filename *smb_fname_tmp = NULL;
419         struct smb_file_time ft;
420         char *fname = NULL;
421         NTSTATUS status;
422         int ret, err;
423
424         ZERO_STRUCT(ft);
425
426         status = copy_smb_filename(talloc_tos(), smb_fname, &smb_fname_tmp);
427         if (!NT_STATUS_IS_OK(status)) {
428                 return;
429         }
430
431         if (SMB_VFS_STAT(handle->conn, smb_fname_tmp) != 0) {
432                 DEBUG(0,("recycle: stat for %s returned %s\n",
433                          smb_fname_str_dbg(smb_fname_tmp), strerror(errno)));
434                 goto out;
435         }
436         /* atime */
437         ft.atime = timespec_current();
438         /* mtime */
439         ft.mtime = touch_mtime ? ft.atime : smb_fname_tmp->st.st_ex_mtime;
440
441         status = get_full_smb_filename(talloc_tos(), smb_fname_tmp, &fname);
442         if (!NT_STATUS_IS_OK(status)) {
443                 goto out;
444         }
445
446         become_root();
447         ret = SMB_VFS_NEXT_NTIMES(handle, fname, &ft);
448         err = errno;
449         unbecome_root();
450         if (ret == -1 ) {
451                 DEBUG(0, ("recycle: touching %s failed, reason = %s\n",
452                           smb_fname_str_dbg(smb_fname_tmp), strerror(err)));
453         }
454
455  out:
456         TALLOC_FREE(fname);
457 }
458
459 /**
460  * Check if file should be recycled
461  **/
462 static int recycle_unlink(vfs_handle_struct *handle,
463     const struct smb_filename *smb_fname)
464 {
465         connection_struct *conn = handle->conn;
466         char *path_name = NULL;
467         char *temp_name = NULL;
468         char *final_name = NULL;
469         struct smb_filename *smb_fname_final = NULL;
470         const char *base;
471         char *repository = NULL;
472         int i = 1;
473         SMB_OFF_T maxsize, minsize;
474         SMB_OFF_T file_size; /* space_avail;    */
475         bool exist;
476         NTSTATUS status;
477         int rc = -1;
478
479         repository = talloc_sub_advanced(NULL, lp_servicename(SNUM(conn)),
480                                         conn->server_info->unix_name,
481                                         conn->connectpath,
482                                         conn->server_info->utok.gid,
483                                         conn->server_info->sanitized_username,
484                                         pdb_get_domain(conn->server_info->sam_account),
485                                         recycle_repository(handle));
486         ALLOC_CHECK(repository, done);
487         /* shouldn't we allow absolute path names here? --metze */
488         /* Yes :-). JRA. */
489         trim_char(repository, '\0', '/');
490         
491         if(!repository || *(repository) == '\0') {
492                 DEBUG(3, ("recycle: repository path not set, purging %s...\n",
493                           smb_fname_str_dbg(smb_fname)));
494                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
495                 goto done;
496         }
497
498         /* we don't recycle the recycle bin... */
499         if (strncmp(smb_fname->base_name, repository,
500                     strlen(repository)) == 0) {
501                 DEBUG(3, ("recycle: File is within recycling bin, unlinking ...\n"));
502                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
503                 goto done;
504         }
505
506         file_size = recycle_get_file_size(handle, smb_fname);
507         /* it is wrong to purge filenames only because they are empty imho
508          *   --- simo
509          *
510         if(fsize == 0) {
511                 DEBUG(3, ("recycle: File %s is empty, purging...\n", file_name));
512                 rc = SMB_VFS_NEXT_UNLINK(handle,file_name);
513                 goto done;
514         }
515          */
516
517         /* FIXME: this is wrong, we should check the whole size of the recycle bin is
518          * not greater then maxsize, not the size of the single file, also it is better
519          * to remove older files
520          */
521         maxsize = recycle_maxsize(handle);
522         if(maxsize > 0 && file_size > maxsize) {
523                 DEBUG(3, ("recycle: File %s exceeds maximum recycle size, "
524                           "purging... \n", smb_fname_str_dbg(smb_fname)));
525                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
526                 goto done;
527         }
528         minsize = recycle_minsize(handle);
529         if(minsize > 0 && file_size < minsize) {
530                 DEBUG(3, ("recycle: File %s lowers minimum recycle size, "
531                           "purging... \n", smb_fname_str_dbg(smb_fname)));
532                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
533                 goto done;
534         }
535
536         /* FIXME: this is wrong: moving files with rename does not change the disk space
537          * allocation
538          *
539         space_avail = SMB_VFS_NEXT_DISK_FREE(handle, ".", True, &bsize, &dfree, &dsize) * 1024L;
540         DEBUG(5, ("space_avail = %Lu, file_size = %Lu\n", space_avail, file_size));
541         if(space_avail < file_size) {
542                 DEBUG(3, ("recycle: Not enough diskspace, purging file %s\n", file_name));
543                 rc = SMB_VFS_NEXT_UNLINK(handle, file_name);
544                 goto done;
545         }
546          */
547
548         /* extract filename and path */
549         base = strrchr(smb_fname->base_name, '/');
550         if (base == NULL) {
551                 base = smb_fname->base_name;
552                 path_name = SMB_STRDUP("/");
553                 ALLOC_CHECK(path_name, done);
554         }
555         else {
556                 path_name = SMB_STRDUP(smb_fname->base_name);
557                 ALLOC_CHECK(path_name, done);
558                 path_name[base - smb_fname->base_name] = '\0';
559                 base++;
560         }
561
562         /* original filename with path */
563         DEBUG(10, ("recycle: fname = %s\n", smb_fname_str_dbg(smb_fname)));
564         /* original path */
565         DEBUG(10, ("recycle: fpath = %s\n", path_name));
566         /* filename without path */
567         DEBUG(10, ("recycle: base = %s\n", base));
568
569         if (matchparam(recycle_exclude(handle), base)) {
570                 DEBUG(3, ("recycle: file %s is excluded \n", base));
571                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
572                 goto done;
573         }
574
575         if (matchdirparam(recycle_exclude_dir(handle), path_name)) {
576                 DEBUG(3, ("recycle: directory %s is excluded \n", path_name));
577                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
578                 goto done;
579         }
580
581         if (recycle_keep_dir_tree(handle) == True) {
582                 if (asprintf(&temp_name, "%s/%s", repository, path_name) == -1) {
583                         ALLOC_CHECK(temp_name, done);
584                 }
585         } else {
586                 temp_name = SMB_STRDUP(repository);
587         }
588         ALLOC_CHECK(temp_name, done);
589
590         exist = recycle_directory_exist(handle, temp_name);
591         if (exist) {
592                 DEBUG(10, ("recycle: Directory already exists\n"));
593         } else {
594                 DEBUG(10, ("recycle: Creating directory %s\n", temp_name));
595                 if (recycle_create_dir(handle, temp_name) == False) {
596                         DEBUG(3, ("recycle: Could not create directory, "
597                                   "purging %s...\n",
598                                   smb_fname_str_dbg(smb_fname)));
599                         rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
600                         goto done;
601                 }
602         }
603
604         if (asprintf(&final_name, "%s/%s", temp_name, base) == -1) {
605                 ALLOC_CHECK(final_name, done);
606         }
607
608         /* Create smb_fname with final base name and orig stream name. */
609         status = create_synthetic_smb_fname(talloc_tos(), final_name,
610                                             smb_fname->stream_name, NULL,
611                                             &smb_fname_final);
612         if (!NT_STATUS_IS_OK(status)) {
613                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
614                 goto done;
615         }
616
617         /* new filename with path */
618         DEBUG(10, ("recycle: recycled file name: %s\n",
619                    smb_fname_str_dbg(smb_fname_final)));
620
621         /* check if we should delete file from recycle bin */
622         if (recycle_file_exist(handle, smb_fname_final)) {
623                 if (recycle_versions(handle) == False || matchparam(recycle_noversions(handle), base) == True) {
624                         DEBUG(3, ("recycle: Removing old file %s from recycle "
625                                   "bin\n", smb_fname_str_dbg(smb_fname_final)));
626                         if (SMB_VFS_NEXT_UNLINK(handle,
627                                                 smb_fname_final) != 0) {
628                                 DEBUG(1, ("recycle: Error deleting old file: %s\n", strerror(errno)));
629                         }
630                 }
631         }
632
633         /* rename file we move to recycle bin */
634         i = 1;
635         while (recycle_file_exist(handle, smb_fname_final)) {
636                 SAFE_FREE(final_name);
637                 if (asprintf(&final_name, "%s/Copy #%d of %s", temp_name, i++, base) == -1) {
638                         ALLOC_CHECK(final_name, done);
639                 }
640                 TALLOC_FREE(smb_fname_final->base_name);
641                 smb_fname_final->base_name = talloc_strdup(smb_fname_final,
642                                                            final_name);
643                 if (smb_fname_final->base_name == NULL) {
644                         rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
645                         goto done;
646                 }
647         }
648
649         DEBUG(10, ("recycle: Moving %s to %s\n", smb_fname_str_dbg(smb_fname),
650                 smb_fname_str_dbg(smb_fname_final)));
651         rc = SMB_VFS_NEXT_RENAME(handle, smb_fname, smb_fname_final);
652         if (rc != 0) {
653                 DEBUG(3, ("recycle: Move error %d (%s), purging file %s "
654                           "(%s)\n", errno, strerror(errno),
655                           smb_fname_str_dbg(smb_fname),
656                           smb_fname_str_dbg(smb_fname_final)));
657                 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
658                 goto done;
659         }
660
661         /* touch access date of moved file */
662         if (recycle_touch(handle) == True || recycle_touch_mtime(handle))
663                 recycle_do_touch(handle, smb_fname_final,
664                                  recycle_touch_mtime(handle));
665
666 done:
667         SAFE_FREE(path_name);
668         SAFE_FREE(temp_name);
669         SAFE_FREE(final_name);
670         TALLOC_FREE(smb_fname_final);
671         TALLOC_FREE(repository);
672         return rc;
673 }
674
675 NTSTATUS vfs_recycle_init(void);
676 NTSTATUS vfs_recycle_init(void)
677 {
678         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "recycle", recycle_ops);
679
680         if (!NT_STATUS_IS_OK(ret))
681                 return ret;
682         
683         vfs_recycle_debug_level = debug_add_class("recycle");
684         if (vfs_recycle_debug_level == -1) {
685                 vfs_recycle_debug_level = DBGC_VFS;
686                 DEBUG(0, ("vfs_recycle: Couldn't register custom debugging class!\n"));
687         } else {
688                 DEBUG(10, ("vfs_recycle: Debug class number of 'recycle': %d\n", vfs_recycle_debug_level));
689         }
690         
691         return ret;
692 }