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