s3:modules:recycle - fix crash in recycle_unlink_internal
[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                 DBG_DEBUG("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                                                 0);
305                         if (smb_fname == NULL) {
306                                 goto done;
307                         }
308
309                         retval = SMB_VFS_NEXT_MKDIRAT(handle,
310                                         handle->conn->cwd_fsp,
311                                         smb_fname,
312                                         mode);
313                         if (retval != 0) {
314                                 DBG_WARNING("recycle: mkdirat failed "
315                                         "for %s with error: %s\n",
316                                         new_dir,
317                                         strerror(errno));
318                                 TALLOC_FREE(smb_fname);
319                                 ret = False;
320                                 goto done;
321                         }
322                         TALLOC_FREE(smb_fname);
323                 }
324                 if (strlcat(new_dir, "/", len+1) >= len+1) {
325                         goto done;
326                 }
327                 mode = recycle_subdir_mode(handle);
328         }
329
330         ret = True;
331 done:
332         SAFE_FREE(tmp_str);
333         SAFE_FREE(new_dir);
334         return ret;
335 }
336
337 /**
338  * Check if any of the components of "exclude_list" are contained in path.
339  * Return True if found
340  **/
341
342 static bool matchdirparam(const char **dir_exclude_list, char *path)
343 {
344         char *startp = NULL, *endp = NULL;
345
346         if (dir_exclude_list == NULL || dir_exclude_list[0] == NULL ||
347                 *dir_exclude_list[0] == '\0' || path == NULL || *path == '\0') {
348                 return False;
349         }
350
351         /* 
352          * Walk the components of path, looking for matches with the
353          * exclude list on each component. 
354          */
355
356         for (startp = path; startp; startp = endp) {
357                 int i;
358
359                 while (*startp == '/') {
360                         startp++;
361                 }
362                 endp = strchr(startp, '/');
363                 if (endp) {
364                         *endp = '\0';
365                 }
366
367                 for(i=0; dir_exclude_list[i] ; i++) {
368                         if(unix_wild_match(dir_exclude_list[i], startp)) {
369                                 /* Repair path. */
370                                 if (endp) {
371                                         *endp = '/';
372                                 }
373                                 return True;
374                         }
375                 }
376
377                 /* Repair path. */
378                 if (endp) {
379                         *endp = '/';
380                 }
381         }
382
383         return False;
384 }
385
386 /**
387  * Check if needle is contained in haystack, * and ? patterns are resolved
388  * @param haystack list of parameters separated by delimimiter character
389  * @param needle string to be matched exectly to haystack including pattern matching
390  * @return True if found
391  **/
392 static bool matchparam(const char **haystack_list, const char *needle)
393 {
394         int i;
395
396         if (haystack_list == NULL || haystack_list[0] == NULL ||
397                 *haystack_list[0] == '\0' || needle == NULL || *needle == '\0') {
398                 return False;
399         }
400
401         for(i=0; haystack_list[i] ; i++) {
402                 if(unix_wild_match(haystack_list[i], needle)) {
403                         return True;
404                 }
405         }
406
407         return False;
408 }
409
410 /**
411  * Touch access or modify date
412  **/
413 static void recycle_do_touch(vfs_handle_struct *handle,
414                              const struct smb_filename *smb_fname,
415                              bool touch_mtime)
416 {
417         struct smb_filename *smb_fname_tmp = NULL;
418         struct smb_file_time ft;
419         int ret, err;
420         NTSTATUS status;
421
422         init_smb_file_time(&ft);
423
424         status = synthetic_pathref(talloc_tos(),
425                                    handle->conn->cwd_fsp,
426                                    smb_fname->base_name,
427                                    smb_fname->stream_name,
428                                    NULL,
429                                    smb_fname->twrp,
430                                    smb_fname->flags,
431                                    &smb_fname_tmp);
432         if (!NT_STATUS_IS_OK(status)) {
433                 DBG_DEBUG("synthetic_pathref for '%s' failed: %s\n",
434                           smb_fname_str_dbg(smb_fname), nt_errstr(status));
435                 return;
436         }
437
438         /* atime */
439         ft.atime = timespec_current();
440         /* mtime */
441         ft.mtime = touch_mtime ? ft.atime : smb_fname_tmp->st.st_ex_mtime;
442
443         become_root();
444         ret = SMB_VFS_NEXT_FNTIMES(handle, smb_fname_tmp->fsp, &ft);
445         err = errno;
446         unbecome_root();
447         if (ret == -1 ) {
448                 DEBUG(0, ("recycle: touching %s failed, reason = %s\n",
449                           smb_fname_str_dbg(smb_fname_tmp), strerror(err)));
450         }
451
452         TALLOC_FREE(smb_fname_tmp);
453 }
454
455 /**
456  * Check if file should be recycled
457  **/
458 static int recycle_unlink_internal(vfs_handle_struct *handle,
459                                 struct files_struct *dirfsp,
460                                 const struct smb_filename *smb_fname,
461                                 int flags)
462 {
463         const struct loadparm_substitution *lp_sub =
464                 loadparm_s3_global_substitution();
465         connection_struct *conn = handle->conn;
466         struct smb_filename *full_fname = NULL;
467         char *path_name = NULL;
468         char *temp_name = NULL;
469         char *final_name = NULL;
470         struct smb_filename *smb_fname_final = NULL;
471         const char *base;
472         char *repository = NULL;
473         int i = 1;
474         off_t maxsize, minsize;
475         off_t file_size; /* space_avail;        */
476         bool exist;
477         int rc = -1;
478
479         repository = talloc_sub_full(NULL, lp_servicename(talloc_tos(), lp_sub, SNUM(conn)),
480                                         conn->session_info->unix_info->unix_name,
481                                         conn->connectpath,
482                                         conn->session_info->unix_token->gid,
483                                         conn->session_info->unix_info->sanitized_username,
484                                         conn->session_info->info->domain_name,
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_UNLINKAT(handle,
495                                         dirfsp,
496                                         smb_fname,
497                                         flags);
498                 goto done;
499         }
500
501         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
502                                                   dirfsp,
503                                                   smb_fname);
504         if (full_fname == NULL) {
505                 return -1;
506         }
507
508         /* we don't recycle the recycle bin... */
509         if (strncmp(full_fname->base_name, repository,
510                     strlen(repository)) == 0) {
511                 DEBUG(3, ("recycle: File is within recycling bin, unlinking ...\n"));
512                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
513                                         dirfsp,
514                                         smb_fname,
515                                         flags);
516                 goto done;
517         }
518
519         file_size = recycle_get_file_size(handle, full_fname);
520         /* it is wrong to purge filenames only because they are empty imho
521          *   --- simo
522          *
523         if(fsize == 0) {
524                 DEBUG(3, ("recycle: File %s is empty, purging...\n", file_name));
525                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
526                                         dirfsp,
527                                         file_name,
528                                         flags);
529                 goto done;
530         }
531          */
532
533         /* FIXME: this is wrong, we should check the whole size of the recycle bin is
534          * not greater then maxsize, not the size of the single file, also it is better
535          * to remove older files
536          */
537         maxsize = recycle_maxsize(handle);
538         if(maxsize > 0 && file_size > maxsize) {
539                 DEBUG(3, ("recycle: File %s exceeds maximum recycle size, "
540                           "purging... \n", smb_fname_str_dbg(full_fname)));
541                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
542                                         dirfsp,
543                                         smb_fname,
544                                         flags);
545                 goto done;
546         }
547         minsize = recycle_minsize(handle);
548         if(minsize > 0 && file_size < minsize) {
549                 DEBUG(3, ("recycle: File %s lowers minimum recycle size, "
550                           "purging... \n", smb_fname_str_dbg(full_fname)));
551                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
552                                         dirfsp,
553                                         smb_fname,
554                                         flags);
555                 goto done;
556         }
557
558         /* FIXME: this is wrong: moving files with rename does not change the disk space
559          * allocation
560          *
561         space_avail = SMB_VFS_NEXT_DISK_FREE(handle, ".", True, &bsize, &dfree, &dsize) * 1024L;
562         DEBUG(5, ("space_avail = %Lu, file_size = %Lu\n", space_avail, file_size));
563         if(space_avail < file_size) {
564                 DEBUG(3, ("recycle: Not enough diskspace, purging file %s\n", file_name));
565                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
566                                         dirfsp,
567                                         file_name,
568                                         flags);
569                 goto done;
570         }
571          */
572
573         /* extract filename and path */
574         if (!parent_dirname(talloc_tos(), full_fname->base_name, &path_name, &base)) {
575                 rc = -1;
576                 errno = ENOMEM;
577                 goto done;
578         }
579
580         /* original filename with path */
581         DEBUG(10, ("recycle: fname = %s\n", smb_fname_str_dbg(full_fname)));
582         /* original path */
583         DEBUG(10, ("recycle: fpath = %s\n", path_name));
584         /* filename without path */
585         DEBUG(10, ("recycle: base = %s\n", base));
586
587         if (matchparam(recycle_exclude(handle), base)) {
588                 DEBUG(3, ("recycle: file %s is excluded \n", base));
589                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
590                                         dirfsp,
591                                         smb_fname,
592                                         flags);
593                 goto done;
594         }
595
596         if (matchdirparam(recycle_exclude_dir(handle), path_name)) {
597                 DEBUG(3, ("recycle: directory %s is excluded \n", path_name));
598                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
599                                         dirfsp,
600                                         smb_fname,
601                                         flags);
602                 goto done;
603         }
604
605         if (recycle_keep_dir_tree(handle) == True) {
606                 if (asprintf(&temp_name, "%s/%s", repository, path_name) == -1) {
607                         ALLOC_CHECK(temp_name, done);
608                 }
609         } else {
610                 temp_name = SMB_STRDUP(repository);
611         }
612         ALLOC_CHECK(temp_name, done);
613
614         exist = recycle_directory_exist(handle, temp_name);
615         if (exist) {
616                 DEBUG(10, ("recycle: Directory already exists\n"));
617         } else {
618                 DEBUG(10, ("recycle: Creating directory %s\n", temp_name));
619                 if (recycle_create_dir(handle, temp_name) == False) {
620                         DEBUG(3, ("recycle: Could not create directory, "
621                                   "purging %s...\n",
622                                   smb_fname_str_dbg(full_fname)));
623                         rc = SMB_VFS_NEXT_UNLINKAT(handle,
624                                         dirfsp,
625                                         smb_fname,
626                                         flags);
627                         goto done;
628                 }
629         }
630
631         if (asprintf(&final_name, "%s/%s", temp_name, base) == -1) {
632                 ALLOC_CHECK(final_name, done);
633         }
634
635         /* Create smb_fname with final base name and orig stream name. */
636         smb_fname_final = synthetic_smb_fname(talloc_tos(),
637                                         final_name,
638                                         full_fname->stream_name,
639                                         NULL,
640                                         full_fname->twrp,
641                                         full_fname->flags);
642         if (smb_fname_final == NULL) {
643                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
644                                         dirfsp,
645                                         smb_fname,
646                                         flags);
647                 goto done;
648         }
649
650         /* new filename with path */
651         DEBUG(10, ("recycle: recycled file name: %s\n",
652                    smb_fname_str_dbg(smb_fname_final)));
653
654         /* check if we should delete file from recycle bin */
655         if (recycle_file_exist(handle, smb_fname_final)) {
656                 if (recycle_versions(handle) == False || matchparam(recycle_noversions(handle), base) == True) {
657                         DEBUG(3, ("recycle: Removing old file %s from recycle "
658                                   "bin\n", smb_fname_str_dbg(smb_fname_final)));
659                         if (SMB_VFS_NEXT_UNLINKAT(handle,
660                                                 dirfsp->conn->cwd_fsp,
661                                                 smb_fname_final,
662                                                 flags) != 0) {
663                                 DEBUG(1, ("recycle: Error deleting old file: %s\n", strerror(errno)));
664                         }
665                 }
666         }
667
668         /* rename file we move to recycle bin */
669         i = 1;
670         while (recycle_file_exist(handle, smb_fname_final)) {
671                 SAFE_FREE(final_name);
672                 if (asprintf(&final_name, "%s/Copy #%d of %s", temp_name, i++, base) == -1) {
673                         ALLOC_CHECK(final_name, done);
674                 }
675                 TALLOC_FREE(smb_fname_final->base_name);
676                 smb_fname_final->base_name = talloc_strdup(smb_fname_final,
677                                                            final_name);
678                 if (smb_fname_final->base_name == NULL) {
679                         rc = SMB_VFS_NEXT_UNLINKAT(handle,
680                                                 dirfsp,
681                                                 smb_fname,
682                                                 flags);
683                         goto done;
684                 }
685         }
686
687         DEBUG(10, ("recycle: Moving %s to %s\n", smb_fname_str_dbg(full_fname),
688                 smb_fname_str_dbg(smb_fname_final)));
689         rc = SMB_VFS_NEXT_RENAMEAT(handle,
690                         dirfsp,
691                         smb_fname,
692                         handle->conn->cwd_fsp,
693                         smb_fname_final);
694         if (rc != 0) {
695                 DEBUG(3, ("recycle: Move error %d (%s), purging file %s "
696                           "(%s)\n", errno, strerror(errno),
697                           smb_fname_str_dbg(full_fname),
698                           smb_fname_str_dbg(smb_fname_final)));
699                 rc = SMB_VFS_NEXT_UNLINKAT(handle,
700                                 dirfsp,
701                                 smb_fname,
702                                 flags);
703                 goto done;
704         }
705
706         /* touch access date of moved file */
707         if (recycle_touch(handle) == True || recycle_touch_mtime(handle))
708                 recycle_do_touch(handle, smb_fname_final,
709                                  recycle_touch_mtime(handle));
710
711 done:
712         TALLOC_FREE(path_name);
713         SAFE_FREE(temp_name);
714         SAFE_FREE(final_name);
715         TALLOC_FREE(full_fname);
716         TALLOC_FREE(smb_fname_final);
717         TALLOC_FREE(repository);
718         return rc;
719 }
720
721 static int recycle_unlinkat(vfs_handle_struct *handle,
722                 struct files_struct *dirfsp,
723                 const struct smb_filename *smb_fname,
724                 int flags)
725 {
726         int ret;
727
728         if (flags & AT_REMOVEDIR) {
729                 ret = SMB_VFS_NEXT_UNLINKAT(handle,
730                                         dirfsp,
731                                         smb_fname,
732                                         flags);
733         } else {
734                 ret = recycle_unlink_internal(handle,
735                                         dirfsp,
736                                         smb_fname,
737                                         flags);
738         }
739         return ret;
740 }
741
742 static struct vfs_fn_pointers vfs_recycle_fns = {
743         .unlinkat_fn = recycle_unlinkat
744 };
745
746 static_decl_vfs;
747 NTSTATUS vfs_recycle_init(TALLOC_CTX *ctx)
748 {
749         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "recycle",
750                                         &vfs_recycle_fns);
751
752         if (!NT_STATUS_IS_OK(ret))
753                 return ret;
754
755         vfs_recycle_debug_level = debug_add_class("recycle");
756         if (vfs_recycle_debug_level == -1) {
757                 vfs_recycle_debug_level = DBGC_VFS;
758                 DEBUG(0, ("vfs_recycle: Couldn't register custom debugging class!\n"));
759         } else {
760                 DEBUG(10, ("vfs_recycle: Debug class number of 'recycle': %d\n", vfs_recycle_debug_level));
761         }
762
763         return ret;
764 }