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