2 * Samba VFS module supporting multiple AVID clients sharing media.
4 * Copyright (C) 2005 Philip de Nier <philipn@users.sourceforge.net>
5 * Copyright (C) 2012 Andrew Klaassen <clawsoon@yahoo.com>
6 * Copyright (C) 2013 Milos Lukacek
7 * Copyright (C) 2013 Ralph Boehme <slow@samba.org>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 * Unityed Media is a Samba VFS module that allows multiple AVID
27 * clients to share media.
29 * Add this module to the vfs objects option in your Samba share
35 * vfs objects = unityed_media
38 * It is recommended that you separate out Samba shares for Mac
39 * and Windows clients, and add the following options to the shares
40 * for Windows clients (NOTE: replace @ with *):
42 * veto files = /.DS_Store/._@/.Trash@/.Spotlight@/.hidden/.hotfiles@/.vol/
43 * delete veto files = yes
45 * This prevents hidden files from Mac clients interfering with Windows
46 * clients. If you find any more problem hidden files then add them to
50 * This module is designed to work with AVID editing applications that
51 * look in the Avid MediaFiles or OMFI MediaFiles directory for media.
52 * It is not designed to work as expected in all circumstances for
58 #include "system/filesys.h"
59 #include "smbd/smbd.h"
60 #include "../smbd/globals.h"
62 #include "../lib/tsocket/tsocket.h"
65 #define UM_PARAM_TYPE_NAME "unityed_media"
67 static const char *AVID_MXF_DIRNAME
= "Avid MediaFiles/MXF";
68 static const size_t AVID_MXF_DIRNAME_LEN
= 19;
69 static const char *OMFI_MEDIAFILES_DIRNAME
= "OMFI MediaFiles";
70 static const size_t OMFI_MEDIAFILES_DIRNAME_LEN
= 15;
71 static const char *APPLE_DOUBLE_PREFIX
= "._";
72 static const size_t APPLE_DOUBLE_PREFIX_LEN
= 2;
73 static int vfs_um_debug_level
= DBGC_VFS
;
75 enum um_clientid
{UM_CLIENTID_NAME
, UM_CLIENTID_IP
, UM_CLIENTID_HOSTNAME
};
77 struct um_config_data
{
78 enum um_clientid clientid
;
81 static const struct enum_list um_clientid
[] = {
82 {UM_CLIENTID_NAME
, "user"},
83 {UM_CLIENTID_IP
, "ip"},
84 {UM_CLIENTID_HOSTNAME
, "hostname"},
88 /* supplements the directory list stream */
89 typedef struct um_dirinfo_struct
{
94 char *clientSubDirname
;
98 * Returns true and first group of digits in path, false and 0 otherwise
100 static bool get_digit_group(const char *path
, uintmax_t *digit
)
102 const char *p
= path
;
107 DEBUG(10, ("get_digit_group entering with path '%s'\n",
111 * Delibiretly initialize to 0 because callers use this result
112 * even though the string doesn't contain any number and we
118 cp
= next_codepoint(p
, &size
);
122 if ((size
== 1) && (isdigit(cp
))) {
123 *digit
= (uintmax_t)strtoul(p
, &endp
, 10);
124 DEBUG(10, ("num_suffix = '%ju'\n",
134 /* Add "_<remote_name>.<number>" suffix to path or filename.
137 * Failure: set errno, path NULL, return -1
140 static int alloc_append_client_suffix(vfs_handle_struct
*handle
,
145 const char *clientid
;
146 struct um_config_data
*config
;
148 DEBUG(10, ("Entering with path '%s'\n", *path
));
150 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
151 struct um_config_data
,
154 (void)get_digit_group(*path
, &number
);
156 switch (config
->clientid
) {
159 clientid
= tsocket_address_inet_addr_string(
160 handle
->conn
->sconn
->remote_address
, talloc_tos());
161 if (clientid
== NULL
) {
168 case UM_CLIENTID_HOSTNAME
:
169 clientid
= get_remote_machine_name();
172 case UM_CLIENTID_NAME
:
174 clientid
= get_current_username();
178 *path
= talloc_asprintf_append(*path
, "_%s.%ju",
181 DEBUG(1, ("alloc_append_client_suffix "
187 DEBUG(10, ("Leaving with *path '%s'\n", *path
));
192 /* Returns true if the file or directory begins with the appledouble
195 static bool is_apple_double(const char* fname
)
199 DEBUG(10, ("Entering with fname '%s'\n", fname
));
201 if (strnequal(APPLE_DOUBLE_PREFIX
, fname
, APPLE_DOUBLE_PREFIX_LEN
)) {
204 DEBUG(10, ("Leaving with ret '%s'\n",
205 ret
== true ? "true" : "false"));
209 static bool starts_with_media_dir(const char* media_dirname
,
210 size_t media_dirname_len
,
214 const char *path_start
= path
;
216 DEBUG(10, ("Entering with media_dirname '%s' "
217 "path '%s'\n", media_dirname
, path
));
219 /* Sometimes Samba gives us "./OMFI MediaFiles". */
220 if (strnequal(path
, "./", 2)) {
224 if (strnequal(media_dirname
, path_start
, media_dirname_len
)
226 ((path_start
[media_dirname_len
] == '\0') ||
227 (path_start
[media_dirname_len
] == '/'))) {
231 DEBUG(10, ("Leaving with ret '%s'\n",
232 ret
== true ? "true" : "false"));
237 * Returns true if the file or directory referenced by the path is ONE
238 * LEVEL below the AVID_MXF_DIRNAME or OMFI_MEDIAFILES_DIRNAME
241 static bool is_in_media_dir(const char *path
)
243 int transition_count
= 0;
244 const char *path_start
= path
;
246 const char *media_dirname
;
247 size_t media_dirname_len
;
249 DEBUG(10, ("Entering with path'%s' ", path
));
251 /* Sometimes Samba gives us "./OMFI MediaFiles". */
252 if (strnequal(path
, "./", 2)) {
256 if (strnequal(path_start
, AVID_MXF_DIRNAME
, AVID_MXF_DIRNAME_LEN
)) {
257 media_dirname
= AVID_MXF_DIRNAME
;
258 media_dirname_len
= AVID_MXF_DIRNAME_LEN
;
259 } else if (strnequal(path_start
,
260 OMFI_MEDIAFILES_DIRNAME
,
261 OMFI_MEDIAFILES_DIRNAME_LEN
)) {
262 media_dirname
= OMFI_MEDIAFILES_DIRNAME
;
263 media_dirname_len
= OMFI_MEDIAFILES_DIRNAME_LEN
;
268 if (path_start
[media_dirname_len
] == '\0') {
272 p
= path_start
+ media_dirname_len
+ 1;
275 if (*p
== '\0' || *p
== '/') {
276 if (strnequal(p
- 3, "/..", 3)) {
278 } else if ((p
[-1] != '/') || !strnequal(p
- 2, "/.", 2)) {
289 DEBUG(10, ("Going out with transition_count '%i'\n",
291 if (((transition_count
== 1) && (media_dirname
== AVID_MXF_DIRNAME
))
293 ((transition_count
== 0) && (media_dirname
== OMFI_MEDIAFILES_DIRNAME
))) {
300 * Returns true if the file or directory referenced by the path is
301 * below the AVID_MEDIAFILES_DIRNAME or OMFI_MEDIAFILES_DIRNAME
302 * directory The AVID_MEDIAFILES_DIRNAME and OMFI_MEDIAFILES_DIRNAME
303 * are assumed to be in the root directory, which is generally a safe
304 * assumption in the fixed-path world of Avid.
306 static bool is_in_media_files(const char *path
)
310 DEBUG(10, ("Entering with path '%s'\n", path
));
312 if (starts_with_media_dir(AVID_MXF_DIRNAME
,
313 AVID_MXF_DIRNAME_LEN
, path
) ||
314 starts_with_media_dir(OMFI_MEDIAFILES_DIRNAME
,
315 OMFI_MEDIAFILES_DIRNAME_LEN
, path
)) {
318 DEBUG(10, ("Leaving with ret '%s'\n",
319 ret
== true ? "true" : "false"));
324 /* Add client suffix to "pure-number" path.
326 * Caller must free newPath.
329 * Failure: set errno, newPath NULL, return -1
331 static int alloc_get_client_path(vfs_handle_struct
*handle
,
342 *path_out
= talloc_strdup(ctx
, path_in
);
343 if (*path_out
== NULL
) {
344 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
348 (void)get_digit_group(*path_out
, &number
);
350 digits
= talloc_asprintf(NULL
, "%ju", number
);
351 if (digits
== NULL
) {
352 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
355 digits_len
= strlen(digits
);
357 p
= strstr_m(path_in
, digits
);
360 ((p
[digits_len
] == '\0') || (p
[digits_len
] == '/'))
362 (((p
- path_in
> 0) && (p
[-1] == '/'))
364 (((p
- path_in
) > APPLE_DOUBLE_PREFIX_LEN
)
366 is_apple_double(p
- APPLE_DOUBLE_PREFIX_LEN
)
368 (p
[-(APPLE_DOUBLE_PREFIX_LEN
+ 1)] == '/'))))
370 (*path_out
)[p
- path_in
+ digits_len
] = '\0';
372 status
= alloc_append_client_suffix(handle
, path_out
);
377 *path_out
= talloc_strdup_append(*path_out
, p
+ digits_len
);
378 if (*path_out
== NULL
) {
379 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
385 /* path_out must be freed in caller. */
386 DEBUG(10, ("Result:'%s'\n", *path_out
));
392 * Failure: set errno, return -1
394 static int alloc_get_client_smb_fname(struct vfs_handle_struct
*handle
,
396 const struct smb_filename
*smb_fname
,
397 struct smb_filename
**client_fname
)
401 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
402 smb_fname
->base_name
));
404 *client_fname
= cp_smb_filename(ctx
, smb_fname
);
405 if (*client_fname
== NULL
) {
406 DEBUG(1, ("cp_smb_filename returned NULL\n"));
409 status
= alloc_get_client_path(handle
, ctx
,
410 smb_fname
->base_name
,
411 &(*client_fname
)->base_name
);
416 DEBUG(10, ("Leaving with (*client_fname)->base_name "
417 "'%s'\n", (*client_fname
)->base_name
));
425 * Failure: set errno, return -1
427 static int alloc_set_client_dirinfo_path(struct vfs_handle_struct
*handle
,
430 const char *suffix_number
)
434 DEBUG(10, ("Entering with suffix_number '%s'\n",
437 *path
= talloc_strdup(ctx
, suffix_number
);
439 DEBUG(1, ("alloc_set_client_dirinfo_path ENOMEM\n"));
442 status
= alloc_append_client_suffix(handle
, path
);
447 DEBUG(10, ("Leaving with *path '%s'\n", *path
));
452 static int alloc_set_client_dirinfo(vfs_handle_struct
*handle
,
454 struct um_dirinfo_struct
**di_result
)
459 struct um_dirinfo_struct
*dip
;
461 DEBUG(10, ("Entering with fname '%s'\n", fname
));
463 *di_result
= talloc(NULL
, struct um_dirinfo_struct
);
464 if (*di_result
== NULL
) {
469 dip
->dirpath
= talloc_strdup(dip
, fname
);
470 if (dip
->dirpath
== NULL
) {
474 if (!is_in_media_files(fname
)) {
475 dip
->isInMediaFiles
= false;
476 dip
->clientPath
= NULL
;
477 dip
->clientSubDirname
= NULL
;
481 dip
->isInMediaFiles
= true;
483 (void)get_digit_group(fname
, &number
);
484 digits
= talloc_asprintf(talloc_tos(), "%ju", number
);
485 if (digits
== NULL
) {
489 status
= alloc_set_client_dirinfo_path(handle
, dip
,
490 &dip
->clientSubDirname
,
496 status
= alloc_get_client_path(handle
, dip
, fname
,
498 if (status
!= 0 || dip
->clientPath
== NULL
) {
503 DEBUG(10, ("Leaving with (*dirInfo)->dirpath '%s', "
504 "(*dirInfo)->clientPath '%s'\n",
505 dip
->dirpath
, dip
->clientPath
));
509 DEBUG(1, ("Failing with fname '%s'\n", fname
));
510 TALLOC_FREE(*di_result
);
516 /**********************************************************************
518 **********************************************************************/
522 * Failure: set errno, return -1
524 static int um_statvfs(struct vfs_handle_struct
*handle
,
525 const struct smb_filename
*smb_fname
,
526 struct vfs_statvfs_struct
*statbuf
)
529 struct smb_filename
*client_fname
= NULL
;
531 DEBUG(10, ("Entering with path '%s'\n", smb_fname
->base_name
));
533 if (!is_in_media_files(smb_fname
->base_name
)) {
534 return SMB_VFS_NEXT_STATVFS(handle
, smb_fname
, statbuf
);
537 status
= alloc_get_client_smb_fname(handle
,
545 status
= SMB_VFS_NEXT_STATVFS(handle
, client_fname
, statbuf
);
547 TALLOC_FREE(client_fname
);
548 DEBUG(10, ("Leaving with path '%s'\n", smb_fname
->base_name
));
552 /* Success: return a um_dirinfo_struct cast as a DIR
553 * Failure: set errno, return NULL
555 static DIR *um_opendir(vfs_handle_struct
*handle
,
556 const struct smb_filename
*smb_fname
,
560 struct um_dirinfo_struct
*dirInfo
;
562 DEBUG(10, ("Entering with fname '%s'\n", smb_fname
->base_name
));
564 if (alloc_set_client_dirinfo(handle
, smb_fname
->base_name
, &dirInfo
)) {
568 if (!dirInfo
->isInMediaFiles
) {
569 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(
570 handle
, smb_fname
, mask
, attr
);
572 struct smb_filename
*client_smb_fname
=
573 synthetic_smb_fname(talloc_tos(),
578 if (client_smb_fname
== NULL
) {
582 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(
583 handle
, client_smb_fname
, mask
, attr
);
585 TALLOC_FREE(client_smb_fname
);
588 if (dirInfo
->dirstream
== NULL
) {
592 DEBUG(10, ("Leaving with dirInfo->dirpath '%s', "
593 "dirInfo->clientPath '%s'\n",
595 dirInfo
->clientPath
));
596 return (DIR*)dirInfo
;
599 DEBUG(1, ("Failing with fname '%s'\n", smb_fname
->base_name
));
600 TALLOC_FREE(dirInfo
);
604 static DIR *um_fdopendir(vfs_handle_struct
*handle
,
609 struct um_dirinfo_struct
*dirInfo
= NULL
;
612 DEBUG(10, ("Entering with fsp->fsp_name->base_name '%s'\n",
613 fsp
->fsp_name
->base_name
));
615 dirstream
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
620 if (alloc_set_client_dirinfo(handle
,
621 fsp
->fsp_name
->base_name
,
626 dirInfo
->dirstream
= dirstream
;
628 if (!dirInfo
->isInMediaFiles
) {
630 * FIXME: this is the original code, something must be
631 * missing here, but what? -slow
637 DEBUG(10, ("Leaving with dirInfo->dirpath '%s', "
638 "dirInfo->clientPath '%s', "
639 "fsp->fsp_name->st.st_ex_mtime %s",
642 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
643 return (DIR *) dirInfo
;
646 DEBUG(1, ("Failing with fsp->fsp_name->base_name '%s'\n",
647 fsp
->fsp_name
->base_name
));
648 TALLOC_FREE(dirInfo
);
653 * skip own suffixed directory
654 * replace own suffixed directory with non suffixed.
656 * Success: return dirent
657 * End of data: return NULL
658 * Failure: set errno, return NULL
660 static struct dirent
*um_readdir(vfs_handle_struct
*handle
,
662 SMB_STRUCT_STAT
*sbuf
)
664 um_dirinfo_struct
* dirInfo
= (um_dirinfo_struct
*)dirp
;
665 struct dirent
*d
= NULL
;
668 DEBUG(10, ("dirInfo->dirpath '%s', "
669 "dirInfo->clientPath '%s', "
670 "dirInfo->isInMediaFiles '%s', "
671 "dirInfo->clientSubDirname '%s'\n",
674 dirInfo
->isInMediaFiles
? "true" : "false",
675 dirInfo
->clientSubDirname
));
677 if (!dirInfo
->isInMediaFiles
) {
678 return SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
689 d
= SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
695 /* ignore apple double prefix for logic below */
696 if (is_apple_double(d
->d_name
)) {
697 dname
= &d
->d_name
[APPLE_DOUBLE_PREFIX_LEN
];
698 isAppleDouble
= true;
701 isAppleDouble
= false;
704 DEBUG(10, ("dname = '%s'\n", dname
));
706 (void)get_digit_group(dname
, &number
);
707 digits
= talloc_asprintf(talloc_tos(), "%ju", number
);
708 if (digits
== NULL
) {
709 DEBUG(1, ("out of memory"));
712 digits_len
= strlen(digits
);
714 if (alloc_set_client_dirinfo_path(handle
,
716 &((dirInfo
)->clientSubDirname
),
722 * If set to "true", vfs shows digits-only
723 * non-suffixed subdirectories. Normally, such
724 * subdirectories can exists only in non-media
725 * directories, so we set it to "false". Otherwise,
726 * if we have such subdirectories (probably created
727 * over not "unityed" connection), it can be little
730 if (strequal(dname
, digits
)) {
732 } else if (strequal(dname
, dirInfo
->clientSubDirname
)) {
734 * Remove suffix of this client's suffixed
738 d
->d_name
[digits_len
+ APPLE_DOUBLE_PREFIX_LEN
] = '\0';
740 d
->d_name
[digits_len
] = '\0';
742 } else if (strnequal(digits
, dname
, digits_len
)) {
744 * Set to false to see another clients subdirectories
750 DEBUG(10, ("Leaving um_readdir\n"));
753 TALLOC_FREE(dirInfo
);
757 static void um_seekdir(vfs_handle_struct
*handle
,
761 DEBUG(10, ("Entering and leaving um_seekdir\n"));
762 SMB_VFS_NEXT_SEEKDIR(handle
,
763 ((um_dirinfo_struct
*)dirp
)->dirstream
, offset
);
766 static long um_telldir(vfs_handle_struct
*handle
,
769 DEBUG(10, ("Entering and leaving um_telldir\n"));
770 return SMB_VFS_NEXT_TELLDIR(handle
,
771 ((um_dirinfo_struct
*)dirp
)->dirstream
);
774 static void um_rewinddir(vfs_handle_struct
*handle
,
777 DEBUG(10, ("Entering and leaving um_rewinddir\n"));
778 SMB_VFS_NEXT_REWINDDIR(handle
,
779 ((um_dirinfo_struct
*)dirp
)->dirstream
);
782 static int um_mkdir(vfs_handle_struct
*handle
,
783 const struct smb_filename
*smb_fname
,
787 const char *path
= smb_fname
->base_name
;
788 struct smb_filename
*client_fname
= NULL
;
790 DEBUG(10, ("Entering with path '%s'\n", path
));
792 if (!is_in_media_files(path
) || !is_in_media_dir(path
)) {
793 return SMB_VFS_NEXT_MKDIR(handle
, smb_fname
, mode
);
796 status
= alloc_get_client_smb_fname(handle
,
804 status
= SMB_VFS_NEXT_MKDIR(handle
, client_fname
, mode
);
806 TALLOC_FREE(client_fname
);
807 DEBUG(10, ("Leaving with path '%s'\n", path
));
811 static int um_rmdir(vfs_handle_struct
*handle
,
812 const struct smb_filename
*smb_fname
)
815 const char *path
= smb_fname
->base_name
;
816 struct smb_filename
*client_fname
= NULL
;
818 DEBUG(10, ("Entering with path '%s'\n", path
));
820 if (!is_in_media_files(path
)) {
821 return SMB_VFS_NEXT_RMDIR(handle
, smb_fname
);
824 status
= alloc_get_client_smb_fname(handle
,
832 status
= SMB_VFS_NEXT_RMDIR(handle
, client_fname
);
834 TALLOC_FREE(client_fname
);
835 DEBUG(10, ("Leaving with path '%s'\n", path
));
839 static int um_closedir(vfs_handle_struct
*handle
,
842 DIR *realdirp
= ((um_dirinfo_struct
*)dirp
)->dirstream
;
846 return SMB_VFS_NEXT_CLOSEDIR(handle
, realdirp
);
849 static int um_open(vfs_handle_struct
*handle
,
850 struct smb_filename
*smb_fname
,
856 struct smb_filename
*client_fname
= NULL
;
858 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
859 smb_fname
->base_name
));
861 if (!is_in_media_files(smb_fname
->base_name
)) {
862 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
865 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
874 * What about fsp->fsp_name? We also have to get correct stat
875 * info into fsp and smb_fname for DB files, don't we?
878 DEBUG(10, ("Leaving with smb_fname->base_name '%s' "
879 "smb_fname->st.st_ex_mtime %s"
880 "fsp->fsp_name->st.st_ex_mtime %s",
881 smb_fname
->base_name
,
882 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
883 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
885 ret
= SMB_VFS_NEXT_OPEN(handle
, client_fname
, fsp
, flags
, mode
);
887 TALLOC_FREE(client_fname
);
888 DEBUG(10, ("Leaving with smb_fname->base_name '%s'\n",
889 smb_fname
->base_name
));
893 static NTSTATUS
um_create_file(vfs_handle_struct
*handle
,
894 struct smb_request
*req
,
895 uint16_t root_dir_fid
,
896 struct smb_filename
*smb_fname
,
897 uint32_t access_mask
,
898 uint32_t share_access
,
899 uint32_t create_disposition
,
900 uint32_t create_options
,
901 uint32_t file_attributes
,
902 uint32_t oplock_request
,
903 struct smb2_lease
*lease
,
904 uint64_t allocation_size
,
905 uint32_t private_flags
,
906 struct security_descriptor
*sd
,
907 struct ea_list
*ea_list
,
908 files_struct
**result_fsp
,
910 const struct smb2_create_blobs
*in_context_blobs
,
911 struct smb2_create_blobs
*out_context_blobs
)
914 struct smb_filename
*client_fname
= NULL
;
916 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
917 smb_fname
->base_name
));
919 if (!is_in_media_files(smb_fname
->base_name
)) {
920 return SMB_VFS_NEXT_CREATE_FILE(
942 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
945 status
= map_nt_error_from_unix(errno
);
951 * This only creates files, so we don't have to worry about
952 * our fake directory stat'ing here. But we still need to
953 * route stat calls for DB files properly, right?
955 status
= SMB_VFS_NEXT_CREATE_FILE(
976 TALLOC_FREE(client_fname
);
977 DEBUG(10, ("Leaving with smb_fname->base_name '%s'"
978 "smb_fname->st.st_ex_mtime %s"
979 " fsp->fsp_name->st.st_ex_mtime %s",
980 smb_fname
->base_name
,
981 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
982 (*result_fsp
) && VALID_STAT((*result_fsp
)->fsp_name
->st
) ?
983 ctime(&((*result_fsp
)->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
988 static int um_rename(vfs_handle_struct
*handle
,
989 const struct smb_filename
*smb_fname_src
,
990 const struct smb_filename
*smb_fname_dst
)
993 struct smb_filename
*src_client_fname
= NULL
;
994 struct smb_filename
*dst_client_fname
= NULL
;
996 DEBUG(10, ("Entering with "
997 "smb_fname_src->base_name '%s', "
998 "smb_fname_dst->base_name '%s'\n",
999 smb_fname_src
->base_name
,
1000 smb_fname_dst
->base_name
));
1002 if (!is_in_media_files(smb_fname_src
->base_name
)
1004 !is_in_media_files(smb_fname_dst
->base_name
)) {
1005 return SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
,
1009 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1016 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1024 status
= SMB_VFS_NEXT_RENAME(handle
, src_client_fname
,
1027 TALLOC_FREE(dst_client_fname
);
1028 TALLOC_FREE(src_client_fname
);
1029 DEBUG(10, ("Leaving with smb_fname_src->base_name '%s',"
1030 " smb_fname_dst->base_name '%s'\n",
1031 smb_fname_src
->base_name
,
1032 smb_fname_dst
->base_name
));
1038 * Failure: set errno, return -1
1040 static int um_stat(vfs_handle_struct
*handle
,
1041 struct smb_filename
*smb_fname
)
1044 struct smb_filename
*client_fname
= NULL
;
1046 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1047 smb_fname
->base_name
));
1049 if (!is_in_media_files(smb_fname
->base_name
)) {
1050 return SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1053 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1059 DEBUG(10, ("Stat'ing client_fname->base_name '%s'\n",
1060 client_fname
->base_name
));
1062 status
= SMB_VFS_NEXT_STAT(handle
, client_fname
);
1068 * Unlike functions with const smb_filename, we have to modify
1069 * smb_fname itself to pass our info back up.
1071 DEBUG(10, ("Setting smb_fname '%s' stat from client_fname '%s'\n",
1072 smb_fname
->base_name
, client_fname
->base_name
));
1073 smb_fname
->st
= client_fname
->st
;
1076 TALLOC_FREE(client_fname
);
1077 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1078 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1082 static int um_lstat(vfs_handle_struct
*handle
,
1083 struct smb_filename
*smb_fname
)
1086 struct smb_filename
*client_fname
= NULL
;
1088 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1089 smb_fname
->base_name
));
1091 if (!is_in_media_files(smb_fname
->base_name
)) {
1092 return SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1095 client_fname
= NULL
;
1097 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1103 status
= SMB_VFS_NEXT_LSTAT(handle
, client_fname
);
1108 smb_fname
->st
= client_fname
->st
;
1111 TALLOC_FREE(client_fname
);
1112 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1113 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1117 static int um_fstat(vfs_handle_struct
*handle
,
1118 files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1122 DEBUG(10, ("Entering with fsp->fsp_name->base_name "
1123 "'%s'\n", fsp_str_dbg(fsp
)));
1125 status
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1130 if ((fsp
->fsp_name
== NULL
) ||
1131 !is_in_media_files(fsp
->fsp_name
->base_name
)) {
1135 status
= um_stat(handle
, fsp
->fsp_name
);
1140 *sbuf
= fsp
->fsp_name
->st
;
1143 DEBUG(10, ("Leaving with fsp->fsp_name->st.st_ex_mtime %s\n",
1144 fsp
->fsp_name
!= NULL
?
1145 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
)) : "0"));
1149 static int um_unlink(vfs_handle_struct
*handle
,
1150 const struct smb_filename
*smb_fname
)
1153 struct smb_filename
*client_fname
= NULL
;
1155 DEBUG(10, ("Entering um_unlink\n"));
1157 if (!is_in_media_files(smb_fname
->base_name
)) {
1158 return SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1161 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1168 status
= SMB_VFS_NEXT_UNLINK(handle
, client_fname
);
1171 TALLOC_FREE(client_fname
);
1175 static int um_chmod(vfs_handle_struct
*handle
,
1176 const struct smb_filename
*smb_fname
,
1180 struct smb_filename
*client_fname
= NULL
;
1182 DEBUG(10, ("Entering um_chmod\n"));
1184 if (!is_in_media_files(smb_fname
->base_name
)) {
1185 return SMB_VFS_NEXT_CHMOD(handle
, smb_fname
, mode
);
1188 status
= alloc_get_client_smb_fname(handle
,
1196 status
= SMB_VFS_NEXT_CHMOD(handle
, client_fname
, mode
);
1199 TALLOC_FREE(client_fname
);
1203 static int um_chown(vfs_handle_struct
*handle
,
1204 const struct smb_filename
*smb_fname
,
1209 struct smb_filename
*client_fname
= NULL
;
1211 DEBUG(10, ("Entering um_chown\n"));
1213 if (!is_in_media_files(smb_fname
->base_name
)) {
1214 return SMB_VFS_NEXT_CHOWN(handle
, smb_fname
, uid
, gid
);
1217 status
= alloc_get_client_smb_fname(handle
,
1225 status
= SMB_VFS_NEXT_CHOWN(handle
, client_fname
, uid
, gid
);
1228 TALLOC_FREE(client_fname
);
1232 static int um_lchown(vfs_handle_struct
*handle
,
1233 const struct smb_filename
*smb_fname
,
1238 struct smb_filename
*client_fname
= NULL
;
1240 DEBUG(10, ("Entering um_lchown\n"));
1241 if (!is_in_media_files(smb_fname
->base_name
)) {
1242 return SMB_VFS_NEXT_LCHOWN(handle
, smb_fname
, uid
, gid
);
1245 status
= alloc_get_client_smb_fname(handle
,
1253 status
= SMB_VFS_NEXT_LCHOWN(handle
, client_fname
, uid
, gid
);
1256 TALLOC_FREE(client_fname
);
1260 static int um_chdir(vfs_handle_struct
*handle
,
1261 const struct smb_filename
*smb_fname
)
1264 struct smb_filename
*client_fname
= NULL
;
1266 DEBUG(10, ("Entering um_chdir\n"));
1268 if (!is_in_media_files(smb_fname
->base_name
)) {
1269 return SMB_VFS_NEXT_CHDIR(handle
, smb_fname
);
1272 status
= alloc_get_client_smb_fname(handle
,
1280 status
= SMB_VFS_NEXT_CHDIR(handle
, client_fname
);
1283 TALLOC_FREE(client_fname
);
1287 static int um_ntimes(vfs_handle_struct
*handle
,
1288 const struct smb_filename
*smb_fname
,
1289 struct smb_file_time
*ft
)
1292 struct smb_filename
*client_fname
= NULL
;
1294 DEBUG(10, ("Entering um_ntimes\n"));
1296 if (!is_in_media_files(smb_fname
->base_name
)) {
1297 return SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1300 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1301 smb_fname
, &client_fname
);
1306 status
= SMB_VFS_NEXT_NTIMES(handle
, client_fname
, ft
);
1309 TALLOC_FREE(client_fname
);
1313 static int um_symlink(vfs_handle_struct
*handle
,
1314 const char *link_contents
,
1315 const struct smb_filename
*new_smb_fname
)
1318 char *client_link_contents
= NULL
;
1319 struct smb_filename
*new_client_fname
= NULL
;
1321 DEBUG(10, ("Entering um_symlink\n"));
1323 if (!is_in_media_files(link_contents
) &&
1324 !is_in_media_files(new_smb_fname
->base_name
)) {
1325 return SMB_VFS_NEXT_SYMLINK(handle
,
1330 status
= alloc_get_client_path(handle
, talloc_tos(),
1331 link_contents
, &client_link_contents
);
1335 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1336 new_smb_fname
, &new_client_fname
);
1341 status
= SMB_VFS_NEXT_SYMLINK(handle
,
1342 client_link_contents
,
1346 TALLOC_FREE(client_link_contents
);
1347 TALLOC_FREE(new_client_fname
);
1351 static int um_readlink(vfs_handle_struct
*handle
,
1352 const struct smb_filename
*smb_fname
,
1357 struct smb_filename
*client_fname
= NULL
;
1359 DEBUG(10, ("Entering um_readlink\n"));
1361 if (!is_in_media_files(smb_fname
->base_name
)) {
1362 return SMB_VFS_NEXT_READLINK(handle
, smb_fname
,
1366 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1367 smb_fname
, &client_fname
);
1372 status
= SMB_VFS_NEXT_READLINK(handle
, client_fname
, buf
, bufsiz
);
1375 TALLOC_FREE(client_fname
);
1379 static int um_link(vfs_handle_struct
*handle
,
1380 const struct smb_filename
*old_smb_fname
,
1381 const struct smb_filename
*new_smb_fname
)
1384 struct smb_filename
*old_client_fname
= NULL
;
1385 struct smb_filename
*new_client_fname
= NULL
;
1387 DEBUG(10, ("Entering um_link\n"));
1388 if (!is_in_media_files(old_smb_fname
->base_name
) &&
1389 !is_in_media_files(new_smb_fname
->base_name
)) {
1390 return SMB_VFS_NEXT_LINK(handle
, old_smb_fname
, new_smb_fname
);
1393 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1394 old_smb_fname
, &old_client_fname
);
1398 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1399 new_smb_fname
, &new_client_fname
);
1404 status
= SMB_VFS_NEXT_LINK(handle
, old_client_fname
, new_client_fname
);
1407 TALLOC_FREE(old_client_fname
);
1408 TALLOC_FREE(new_client_fname
);
1412 static int um_mknod(vfs_handle_struct
*handle
,
1413 const struct smb_filename
*smb_fname
,
1418 struct smb_filename
*client_fname
= NULL
;
1420 DEBUG(10, ("Entering um_mknod\n"));
1421 if (!is_in_media_files(smb_fname
->base_name
)) {
1422 return SMB_VFS_NEXT_MKNOD(handle
, smb_fname
, mode
, dev
);
1425 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1426 smb_fname
, &client_fname
);
1431 status
= SMB_VFS_NEXT_MKNOD(handle
, client_fname
, mode
, dev
);
1434 TALLOC_FREE(client_fname
);
1438 static struct smb_filename
*um_realpath(vfs_handle_struct
*handle
,
1440 const struct smb_filename
*smb_fname
)
1442 struct smb_filename
*client_fname
= NULL
;
1443 struct smb_filename
*result_fname
= NULL
;
1446 DEBUG(10, ("Entering um_realpath\n"));
1448 if (!is_in_media_files(smb_fname
->base_name
)) {
1449 return SMB_VFS_NEXT_REALPATH(handle
, ctx
, smb_fname
);
1452 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1453 smb_fname
, &client_fname
);
1458 result_fname
= SMB_VFS_NEXT_REALPATH(handle
, ctx
, client_fname
);
1461 TALLOC_FREE(client_fname
);
1462 return result_fname
;
1465 static int um_chflags(vfs_handle_struct
*handle
,
1466 const struct smb_filename
*smb_fname
,
1470 struct smb_filename
*client_fname
= NULL
;
1472 DEBUG(10, ("Entering um_mknod\n"));
1473 if (!is_in_media_files(smb_fname
->base_name
)) {
1474 return SMB_VFS_NEXT_CHFLAGS(handle
, smb_fname
, flags
);
1477 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1478 smb_fname
, &client_fname
);
1483 status
= SMB_VFS_NEXT_CHFLAGS(handle
, client_fname
, flags
);
1486 TALLOC_FREE(client_fname
);
1490 static NTSTATUS
um_streaminfo(struct vfs_handle_struct
*handle
,
1491 struct files_struct
*fsp
,
1492 const struct smb_filename
*smb_fname
,
1494 unsigned int *num_streams
,
1495 struct stream_struct
**streams
)
1499 struct smb_filename
*client_fname
= NULL
;
1501 DEBUG(10, ("Entering um_streaminfo\n"));
1503 if (!is_in_media_files(smb_fname
->base_name
)) {
1504 return SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, smb_fname
,
1505 ctx
, num_streams
, streams
);
1508 ret
= alloc_get_client_smb_fname(handle
,
1513 status
= NT_STATUS_NO_MEMORY
;
1518 * This only works on files, so we don't have to worry about
1519 * our fake directory stat'ing here. But what does this
1520 * function do, exactly? Does it need extra modifications for
1523 status
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, client_fname
,
1524 ctx
, num_streams
, streams
);
1526 TALLOC_FREE(client_fname
);
1531 * Ignoring get_real_filename function because the default doesn't do
1535 static NTSTATUS
um_get_nt_acl(vfs_handle_struct
*handle
,
1536 const struct smb_filename
*smb_fname
,
1537 uint32_t security_info
,
1538 TALLOC_CTX
*mem_ctx
,
1539 struct security_descriptor
**ppdesc
)
1542 char *client_path
= NULL
;
1543 struct smb_filename
*client_smb_fname
= NULL
;
1546 DEBUG(10, ("Entering um_get_nt_acl\n"));
1548 if (!is_in_media_files(smb_fname
->base_name
)) {
1549 return SMB_VFS_NEXT_GET_NT_ACL(handle
, smb_fname
,
1554 ret
= alloc_get_client_path(handle
, talloc_tos(),
1555 smb_fname
->base_name
, &client_path
);
1557 status
= map_nt_error_from_unix(errno
);
1561 client_smb_fname
= synthetic_smb_fname(talloc_tos(),
1566 if (client_smb_fname
== NULL
) {
1567 TALLOC_FREE(client_path
);
1568 return NT_STATUS_NO_MEMORY
;
1571 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
, client_smb_fname
,
1575 TALLOC_FREE(client_smb_fname
);
1576 TALLOC_FREE(client_path
);
1580 static SMB_ACL_T
um_sys_acl_get_file(vfs_handle_struct
*handle
,
1581 const struct smb_filename
*smb_fname
,
1582 SMB_ACL_TYPE_T type
,
1583 TALLOC_CTX
*mem_ctx
)
1586 int saved_errno
= 0;
1587 struct smb_filename
*client_fname
= NULL
;
1590 DEBUG(10, ("Entering um_sys_acl_get_file\n"));
1592 if (!is_in_media_files(smb_fname
->base_name
)) {
1593 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, smb_fname
,
1597 status
= alloc_get_client_smb_fname(handle
,
1602 ret
= (SMB_ACL_T
)NULL
;
1606 ret
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, client_fname
,
1610 if (ret
== (SMB_ACL_T
)NULL
) {
1611 saved_errno
= errno
;
1613 TALLOC_FREE(client_fname
);
1614 if (saved_errno
!= 0) {
1615 errno
= saved_errno
;
1620 static int um_sys_acl_set_file(vfs_handle_struct
*handle
,
1621 const struct smb_filename
*smb_fname
,
1622 SMB_ACL_TYPE_T acltype
,
1626 int saved_errno
= 0;
1627 struct smb_filename
*client_fname
= NULL
;
1629 DEBUG(10, ("Entering um_sys_acl_set_file\n"));
1631 if (!is_in_media_files(smb_fname
->base_name
)) {
1632 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, smb_fname
,
1636 status
= alloc_get_client_smb_fname(handle
,
1644 status
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, client_fname
,
1649 saved_errno
= errno
;
1651 TALLOC_FREE(client_fname
);
1652 if (saved_errno
!= 0) {
1653 errno
= saved_errno
;
1658 static int um_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1659 const struct smb_filename
*smb_fname
)
1662 int saved_errno
= 0;
1663 struct smb_filename
*client_fname
= NULL
;
1665 DEBUG(10, ("Entering um_sys_acl_delete_def_file\n"));
1667 if (!is_in_media_files(smb_fname
->base_name
)) {
1668 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
,
1672 status
= alloc_get_client_smb_fname(handle
,
1680 status
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, client_fname
);
1684 saved_errno
= errno
;
1686 TALLOC_FREE(client_fname
);
1687 if (saved_errno
!= 0) {
1688 errno
= saved_errno
;
1693 static ssize_t
um_getxattr(struct vfs_handle_struct
*handle
,
1694 const struct smb_filename
*smb_fname
,
1700 struct smb_filename
*client_fname
= NULL
;
1703 DEBUG(10, ("Entering um_getxattr\n"));
1704 if (!is_in_media_files(smb_fname
->base_name
)) {
1705 return SMB_VFS_NEXT_GETXATTR(handle
, smb_fname
,
1709 status
= alloc_get_client_smb_fname(handle
,
1718 ret
= SMB_VFS_NEXT_GETXATTR(handle
, client_fname
, name
, value
, size
);
1720 TALLOC_FREE(client_fname
);
1724 static ssize_t
um_listxattr(struct vfs_handle_struct
*handle
,
1725 const struct smb_filename
*smb_fname
,
1730 struct smb_filename
*client_fname
= NULL
;
1733 DEBUG(10, ("Entering um_listxattr\n"));
1735 if (!is_in_media_files(smb_fname
->base_name
)) {
1736 return SMB_VFS_NEXT_LISTXATTR(handle
, smb_fname
, list
, size
);
1739 status
= alloc_get_client_smb_fname(handle
,
1748 ret
= SMB_VFS_NEXT_LISTXATTR(handle
, client_fname
, list
, size
);
1751 TALLOC_FREE(client_fname
);
1755 static int um_removexattr(struct vfs_handle_struct
*handle
,
1756 const struct smb_filename
*smb_fname
,
1760 struct smb_filename
*client_fname
= NULL
;
1762 DEBUG(10, ("Entering um_removexattr\n"));
1764 if (!is_in_media_files(smb_fname
->base_name
)) {
1765 return SMB_VFS_NEXT_REMOVEXATTR(handle
, smb_fname
, name
);
1768 status
= alloc_get_client_smb_fname(handle
,
1776 status
= SMB_VFS_NEXT_REMOVEXATTR(handle
, client_fname
, name
);
1779 TALLOC_FREE(client_fname
);
1783 static int um_setxattr(struct vfs_handle_struct
*handle
,
1784 const struct smb_filename
*smb_fname
,
1791 struct smb_filename
*client_fname
= NULL
;
1793 DEBUG(10, ("Entering um_setxattr\n"));
1795 if (!is_in_media_files(smb_fname
->base_name
)) {
1796 return SMB_VFS_NEXT_SETXATTR(handle
, smb_fname
, name
, value
,
1800 status
= alloc_get_client_smb_fname(handle
,
1808 status
= SMB_VFS_NEXT_SETXATTR(handle
, client_fname
, name
, value
,
1812 TALLOC_FREE(client_fname
);
1816 static int um_connect(vfs_handle_struct
*handle
,
1817 const char *service
,
1821 struct um_config_data
*config
;
1824 rc
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1829 config
= talloc_zero(handle
->conn
, struct um_config_data
);
1831 DEBUG(1, ("talloc_zero() failed\n"));
1836 enumval
= lp_parm_enum(SNUM(handle
->conn
), UM_PARAM_TYPE_NAME
,
1837 "clientid", um_clientid
, UM_CLIENTID_NAME
);
1838 if (enumval
== -1) {
1839 DEBUG(1, ("value for %s: type unknown\n",
1840 UM_PARAM_TYPE_NAME
));
1843 config
->clientid
= (enum um_clientid
)enumval
;
1845 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1846 NULL
, struct um_config_data
,
1852 /* VFS operations structure */
1854 static struct vfs_fn_pointers vfs_um_fns
= {
1855 .connect_fn
= um_connect
,
1857 /* Disk operations */
1859 .statvfs_fn
= um_statvfs
,
1861 /* Directory operations */
1863 .opendir_fn
= um_opendir
,
1864 .fdopendir_fn
= um_fdopendir
,
1865 .readdir_fn
= um_readdir
,
1866 .seekdir_fn
= um_seekdir
,
1867 .telldir_fn
= um_telldir
,
1868 .rewind_dir_fn
= um_rewinddir
,
1869 .mkdir_fn
= um_mkdir
,
1870 .rmdir_fn
= um_rmdir
,
1871 .closedir_fn
= um_closedir
,
1873 /* File operations */
1876 .create_file_fn
= um_create_file
,
1877 .rename_fn
= um_rename
,
1879 .lstat_fn
= um_lstat
,
1880 .fstat_fn
= um_fstat
,
1881 .unlink_fn
= um_unlink
,
1882 .chmod_fn
= um_chmod
,
1883 .chown_fn
= um_chown
,
1884 .lchown_fn
= um_lchown
,
1885 .chdir_fn
= um_chdir
,
1886 .ntimes_fn
= um_ntimes
,
1887 .symlink_fn
= um_symlink
,
1888 .readlink_fn
= um_readlink
,
1890 .mknod_fn
= um_mknod
,
1891 .realpath_fn
= um_realpath
,
1892 .chflags_fn
= um_chflags
,
1893 .streaminfo_fn
= um_streaminfo
,
1895 /* NT ACL operations. */
1897 .get_nt_acl_fn
= um_get_nt_acl
,
1899 /* POSIX ACL operations. */
1901 .sys_acl_get_file_fn
= um_sys_acl_get_file
,
1902 .sys_acl_set_file_fn
= um_sys_acl_set_file
,
1903 .sys_acl_delete_def_file_fn
= um_sys_acl_delete_def_file
,
1905 /* EA operations. */
1906 .getxattr_fn
= um_getxattr
,
1907 .getxattrat_send_fn
= vfs_not_implemented_getxattrat_send
,
1908 .getxattrat_recv_fn
= vfs_not_implemented_getxattrat_recv
,
1909 .listxattr_fn
= um_listxattr
,
1910 .removexattr_fn
= um_removexattr
,
1911 .setxattr_fn
= um_setxattr
,
1915 NTSTATUS
vfs_unityed_media_init(TALLOC_CTX
*ctx
)
1917 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
1918 "unityed_media", &vfs_um_fns
);
1919 if (!NT_STATUS_IS_OK(ret
)) {
1923 vfs_um_debug_level
= debug_add_class("unityed_media");
1925 if (vfs_um_debug_level
== -1) {
1926 vfs_um_debug_level
= DBGC_VFS
;
1927 DEBUG(1, ("unityed_media_init: Couldn't register custom "
1928 "debugging class.\n"));