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
,
526 struct vfs_statvfs_struct
*statbuf
)
529 char *clientPath
= NULL
;
531 DEBUG(10, ("Entering with path '%s'\n", path
));
533 if (!is_in_media_files(path
)) {
534 return SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
537 status
= alloc_get_client_path(handle
, talloc_tos(),
543 status
= SMB_VFS_NEXT_STATVFS(handle
, clientPath
, statbuf
);
545 TALLOC_FREE(clientPath
);
546 DEBUG(10, ("Leaving with path '%s'\n", path
));
550 /* Success: return a um_dirinfo_struct cast as a DIR
551 * Failure: set errno, return NULL
553 static DIR *um_opendir(vfs_handle_struct
*handle
,
558 struct um_dirinfo_struct
*dirInfo
;
560 DEBUG(10, ("Entering with fname '%s'\n", fname
));
562 if (alloc_set_client_dirinfo(handle
, fname
, &dirInfo
)) {
566 if (!dirInfo
->isInMediaFiles
) {
567 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(
568 handle
, fname
, mask
, attr
);
570 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(
571 handle
, dirInfo
->clientPath
, mask
, attr
);
574 if (dirInfo
->dirstream
== NULL
) {
578 DEBUG(10, ("Leaving with dirInfo->dirpath '%s', "
579 "dirInfo->clientPath '%s'\n",
581 dirInfo
->clientPath
));
582 return (DIR*)dirInfo
;
585 DEBUG(1, ("Failing with fname '%s'\n", fname
));
586 TALLOC_FREE(dirInfo
);
590 static DIR *um_fdopendir(vfs_handle_struct
*handle
,
595 struct um_dirinfo_struct
*dirInfo
= NULL
;
598 DEBUG(10, ("Entering with fsp->fsp_name->base_name '%s'\n",
599 fsp
->fsp_name
->base_name
));
601 dirstream
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
606 if (alloc_set_client_dirinfo(handle
,
607 fsp
->fsp_name
->base_name
,
612 dirInfo
->dirstream
= dirstream
;
614 if (!dirInfo
->isInMediaFiles
) {
616 * FIXME: this is the original code, something must be
617 * missing here, but what? -slow
623 DEBUG(10, ("Leaving with dirInfo->dirpath '%s', "
624 "dirInfo->clientPath '%s', "
625 "fsp->fsp_name->st.st_ex_mtime %s",
628 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
629 return (DIR *) dirInfo
;
632 DEBUG(1, ("Failing with fsp->fsp_name->base_name '%s'\n",
633 fsp
->fsp_name
->base_name
));
634 TALLOC_FREE(dirInfo
);
639 * skip own suffixed directory
640 * replace own suffixed directory with non suffixed.
642 * Success: return dirent
643 * End of data: return NULL
644 * Failure: set errno, return NULL
646 static struct dirent
*um_readdir(vfs_handle_struct
*handle
,
648 SMB_STRUCT_STAT
*sbuf
)
650 um_dirinfo_struct
* dirInfo
= (um_dirinfo_struct
*)dirp
;
651 struct dirent
*d
= NULL
;
654 DEBUG(10, ("dirInfo->dirpath '%s', "
655 "dirInfo->clientPath '%s', "
656 "dirInfo->isInMediaFiles '%s', "
657 "dirInfo->clientSubDirname '%s'\n",
660 dirInfo
->isInMediaFiles
? "true" : "false",
661 dirInfo
->clientSubDirname
));
663 if (!dirInfo
->isInMediaFiles
) {
664 return SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
675 d
= SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
681 /* ignore apple double prefix for logic below */
682 if (is_apple_double(d
->d_name
)) {
683 dname
= &d
->d_name
[APPLE_DOUBLE_PREFIX_LEN
];
684 isAppleDouble
= true;
687 isAppleDouble
= false;
690 DEBUG(10, ("dname = '%s'\n", dname
));
692 (void)get_digit_group(dname
, &number
);
693 digits
= talloc_asprintf(talloc_tos(), "%ju", number
);
694 if (digits
== NULL
) {
695 DEBUG(1, ("out of memory"));
698 digits_len
= strlen(digits
);
700 if (alloc_set_client_dirinfo_path(handle
,
702 &((dirInfo
)->clientSubDirname
),
708 * If set to "true", vfs shows digits-only
709 * non-suffixed subdirectories. Normally, such
710 * subdirectories can exists only in non-media
711 * directories, so we set it to "false". Otherwise,
712 * if we have such subdirectories (probably created
713 * over not "unityed" connection), it can be little
716 if (strequal(dname
, digits
)) {
718 } else if (strequal(dname
, dirInfo
->clientSubDirname
)) {
720 * Remove suffix of this client's suffixed
724 d
->d_name
[digits_len
+ APPLE_DOUBLE_PREFIX_LEN
] = '\0';
726 d
->d_name
[digits_len
] = '\0';
728 } else if (strnequal(digits
, dname
, digits_len
)) {
730 * Set to false to see another clients subdirectories
736 DEBUG(10, ("Leaving um_readdir\n"));
739 TALLOC_FREE(dirInfo
);
743 static void um_seekdir(vfs_handle_struct
*handle
,
747 DEBUG(10, ("Entering and leaving um_seekdir\n"));
748 SMB_VFS_NEXT_SEEKDIR(handle
,
749 ((um_dirinfo_struct
*)dirp
)->dirstream
, offset
);
752 static long um_telldir(vfs_handle_struct
*handle
,
755 DEBUG(10, ("Entering and leaving um_telldir\n"));
756 return SMB_VFS_NEXT_TELLDIR(handle
,
757 ((um_dirinfo_struct
*)dirp
)->dirstream
);
760 static void um_rewinddir(vfs_handle_struct
*handle
,
763 DEBUG(10, ("Entering and leaving um_rewinddir\n"));
764 SMB_VFS_NEXT_REWINDDIR(handle
,
765 ((um_dirinfo_struct
*)dirp
)->dirstream
);
768 static int um_mkdir(vfs_handle_struct
*handle
,
777 DEBUG(10, ("Entering with path '%s'\n", path
));
779 if (!is_in_media_files(path
) || !is_in_media_dir(path
)) {
780 return SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
786 if ((status
= alloc_get_client_path(handle
, ctx
,
792 status
= SMB_VFS_NEXT_MKDIR(handle
, clientPath
, mode
);
794 TALLOC_FREE(clientPath
);
795 DEBUG(10, ("Leaving with path '%s'\n", path
));
799 static int um_rmdir(vfs_handle_struct
*handle
,
807 DEBUG(10, ("Entering with path '%s'\n", path
));
809 if (!is_in_media_files(path
)) {
810 return SMB_VFS_NEXT_RMDIR(handle
, path
);
816 if ((status
= alloc_get_client_path(handle
, ctx
,
822 status
= SMB_VFS_NEXT_RMDIR(handle
, clientPath
);
824 TALLOC_FREE(clientPath
);
825 DEBUG(10, ("Leaving with path '%s'\n", path
));
829 static int um_closedir(vfs_handle_struct
*handle
,
832 DIR *realdirp
= ((um_dirinfo_struct
*)dirp
)->dirstream
;
836 return SMB_VFS_NEXT_CLOSEDIR(handle
, realdirp
);
839 static void um_init_search_op(vfs_handle_struct
*handle
,
842 DEBUG(10, ("Entering and leaving um_init_search_op\n"));
844 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
,
845 ((um_dirinfo_struct
*)dirp
)->dirstream
);
848 static int um_open(vfs_handle_struct
*handle
,
849 struct smb_filename
*smb_fname
,
855 struct smb_filename
*client_fname
= NULL
;
857 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
858 smb_fname
->base_name
));
860 if (!is_in_media_files(smb_fname
->base_name
)) {
861 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
864 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
873 * What about fsp->fsp_name? We also have to get correct stat
874 * info into fsp and smb_fname for DB files, don't we?
877 DEBUG(10, ("Leaving with smb_fname->base_name '%s' "
878 "smb_fname->st.st_ex_mtime %s"
879 "fsp->fsp_name->st.st_ex_mtime %s",
880 smb_fname
->base_name
,
881 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
882 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
884 ret
= SMB_VFS_NEXT_OPEN(handle
, client_fname
, fsp
, flags
, mode
);
886 TALLOC_FREE(client_fname
);
887 DEBUG(10, ("Leaving with smb_fname->base_name '%s'\n",
888 smb_fname
->base_name
));
892 static NTSTATUS
um_create_file(vfs_handle_struct
*handle
,
893 struct smb_request
*req
,
894 uint16_t root_dir_fid
,
895 struct smb_filename
*smb_fname
,
896 uint32_t access_mask
,
897 uint32_t share_access
,
898 uint32_t create_disposition
,
899 uint32_t create_options
,
900 uint32_t file_attributes
,
901 uint32_t oplock_request
,
902 struct smb2_lease
*lease
,
903 uint64_t allocation_size
,
904 uint32_t private_flags
,
905 struct security_descriptor
*sd
,
906 struct ea_list
*ea_list
,
907 files_struct
**result_fsp
,
909 const struct smb2_create_blobs
*in_context_blobs
,
910 struct smb2_create_blobs
*out_context_blobs
)
913 struct smb_filename
*client_fname
= NULL
;
915 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
916 smb_fname
->base_name
));
918 if (!is_in_media_files(smb_fname
->base_name
)) {
919 return SMB_VFS_NEXT_CREATE_FILE(
941 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
944 status
= map_nt_error_from_unix(errno
);
950 * This only creates files, so we don't have to worry about
951 * our fake directory stat'ing here. But we still need to
952 * route stat calls for DB files properly, right?
954 status
= SMB_VFS_NEXT_CREATE_FILE(
975 TALLOC_FREE(client_fname
);
976 DEBUG(10, ("Leaving with smb_fname->base_name '%s'"
977 "smb_fname->st.st_ex_mtime %s"
978 " fsp->fsp_name->st.st_ex_mtime %s",
979 smb_fname
->base_name
,
980 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
981 (*result_fsp
) && VALID_STAT((*result_fsp
)->fsp_name
->st
) ?
982 ctime(&((*result_fsp
)->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
987 static int um_rename(vfs_handle_struct
*handle
,
988 const struct smb_filename
*smb_fname_src
,
989 const struct smb_filename
*smb_fname_dst
)
992 struct smb_filename
*src_client_fname
= NULL
;
993 struct smb_filename
*dst_client_fname
= NULL
;
995 DEBUG(10, ("Entering with "
996 "smb_fname_src->base_name '%s', "
997 "smb_fname_dst->base_name '%s'\n",
998 smb_fname_src
->base_name
,
999 smb_fname_dst
->base_name
));
1001 if (!is_in_media_files(smb_fname_src
->base_name
)
1003 !is_in_media_files(smb_fname_dst
->base_name
)) {
1004 return SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
,
1008 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1015 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1023 status
= SMB_VFS_NEXT_RENAME(handle
, src_client_fname
,
1026 TALLOC_FREE(dst_client_fname
);
1027 TALLOC_FREE(src_client_fname
);
1028 DEBUG(10, ("Leaving with smb_fname_src->base_name '%s',"
1029 " smb_fname_dst->base_name '%s'\n",
1030 smb_fname_src
->base_name
,
1031 smb_fname_dst
->base_name
));
1037 * Failure: set errno, return -1
1039 static int um_stat(vfs_handle_struct
*handle
,
1040 struct smb_filename
*smb_fname
)
1043 struct smb_filename
*client_fname
= NULL
;
1045 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1046 smb_fname
->base_name
));
1048 if (!is_in_media_files(smb_fname
->base_name
)) {
1049 return SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1052 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1058 DEBUG(10, ("Stat'ing client_fname->base_name '%s'\n",
1059 client_fname
->base_name
));
1061 status
= SMB_VFS_NEXT_STAT(handle
, client_fname
);
1067 * Unlike functions with const smb_filename, we have to modify
1068 * smb_fname itself to pass our info back up.
1070 DEBUG(10, ("Setting smb_fname '%s' stat from client_fname '%s'\n",
1071 smb_fname
->base_name
, client_fname
->base_name
));
1072 smb_fname
->st
= client_fname
->st
;
1075 TALLOC_FREE(client_fname
);
1076 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1077 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1081 static int um_lstat(vfs_handle_struct
*handle
,
1082 struct smb_filename
*smb_fname
)
1085 struct smb_filename
*client_fname
= NULL
;
1087 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1088 smb_fname
->base_name
));
1090 if (!is_in_media_files(smb_fname
->base_name
)) {
1091 return SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1094 client_fname
= NULL
;
1096 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1102 status
= SMB_VFS_NEXT_LSTAT(handle
, client_fname
);
1107 smb_fname
->st
= client_fname
->st
;
1110 TALLOC_FREE(client_fname
);
1111 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1112 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1116 static int um_fstat(vfs_handle_struct
*handle
,
1117 files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1121 DEBUG(10, ("Entering with fsp->fsp_name->base_name "
1122 "'%s'\n", fsp_str_dbg(fsp
)));
1124 status
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1129 if ((fsp
->fsp_name
== NULL
) ||
1130 !is_in_media_files(fsp
->fsp_name
->base_name
)) {
1134 status
= um_stat(handle
, fsp
->fsp_name
);
1139 *sbuf
= fsp
->fsp_name
->st
;
1142 DEBUG(10, ("Leaving with fsp->fsp_name->st.st_ex_mtime %s\n",
1143 fsp
->fsp_name
!= NULL
?
1144 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
)) : "0"));
1148 static int um_unlink(vfs_handle_struct
*handle
,
1149 const struct smb_filename
*smb_fname
)
1152 struct smb_filename
*client_fname
= NULL
;
1154 DEBUG(10, ("Entering um_unlink\n"));
1156 if (!is_in_media_files(smb_fname
->base_name
)) {
1157 return SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1160 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1167 status
= SMB_VFS_NEXT_UNLINK(handle
, client_fname
);
1170 TALLOC_FREE(client_fname
);
1174 static int um_chmod(vfs_handle_struct
*handle
,
1179 char *client_path
= NULL
;
1181 DEBUG(10, ("Entering um_chmod\n"));
1183 if (!is_in_media_files(path
)) {
1184 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1187 status
= alloc_get_client_path(handle
, talloc_tos(),
1188 path
, &client_path
);
1193 status
= SMB_VFS_NEXT_CHMOD(handle
, client_path
, mode
);
1196 TALLOC_FREE(client_path
);
1200 static int um_chown(vfs_handle_struct
*handle
,
1206 char *client_path
= NULL
;
1208 DEBUG(10, ("Entering um_chown\n"));
1210 if (!is_in_media_files(path
)) {
1211 return SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1214 status
= alloc_get_client_path(handle
, talloc_tos(),
1215 path
, &client_path
);
1220 status
= SMB_VFS_NEXT_CHOWN(handle
, client_path
, uid
, gid
);
1223 TALLOC_FREE(client_path
);
1227 static int um_lchown(vfs_handle_struct
*handle
,
1233 char *client_path
= NULL
;
1235 DEBUG(10, ("Entering um_lchown\n"));
1236 if (!is_in_media_files(path
)) {
1237 return SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1240 status
= alloc_get_client_path(handle
, talloc_tos(),
1241 path
, &client_path
);
1246 status
= SMB_VFS_NEXT_LCHOWN(handle
, client_path
, uid
, gid
);
1249 TALLOC_FREE(client_path
);
1253 static int um_chdir(vfs_handle_struct
*handle
,
1257 char *client_path
= NULL
;
1259 DEBUG(10, ("Entering um_chdir\n"));
1261 if (!is_in_media_files(path
)) {
1262 return SMB_VFS_NEXT_CHDIR(handle
, path
);
1265 status
= alloc_get_client_path(handle
, talloc_tos(),
1266 path
, &client_path
);
1271 status
= SMB_VFS_NEXT_CHDIR(handle
, client_path
);
1274 TALLOC_FREE(client_path
);
1278 static int um_ntimes(vfs_handle_struct
*handle
,
1279 const struct smb_filename
*smb_fname
,
1280 struct smb_file_time
*ft
)
1283 struct smb_filename
*client_fname
= NULL
;
1285 DEBUG(10, ("Entering um_ntimes\n"));
1287 if (!is_in_media_files(smb_fname
->base_name
)) {
1288 return SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1291 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1292 smb_fname
, &client_fname
);
1297 status
= SMB_VFS_NEXT_NTIMES(handle
, client_fname
, ft
);
1300 TALLOC_FREE(client_fname
);
1304 static int um_symlink(vfs_handle_struct
*handle
,
1305 const char *oldpath
,
1306 const char *newpath
)
1309 char *old_client_path
= NULL
;
1310 char *new_client_path
= NULL
;
1312 DEBUG(10, ("Entering um_symlink\n"));
1314 if (!is_in_media_files(oldpath
) && !is_in_media_files(newpath
)) {
1315 return SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1318 status
= alloc_get_client_path(handle
, talloc_tos(),
1319 oldpath
, &old_client_path
);
1324 status
= alloc_get_client_path(handle
, talloc_tos(),
1325 newpath
, &new_client_path
);
1330 status
= SMB_VFS_NEXT_SYMLINK(handle
,
1335 TALLOC_FREE(new_client_path
);
1336 TALLOC_FREE(old_client_path
);
1340 static int um_readlink(vfs_handle_struct
*handle
,
1346 char *client_path
= NULL
;
1348 DEBUG(10, ("Entering um_readlink\n"));
1350 if (!is_in_media_files(path
)) {
1351 return SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1354 status
= alloc_get_client_path(handle
, talloc_tos(),
1355 path
, &client_path
);
1360 status
= SMB_VFS_NEXT_READLINK(handle
, client_path
, buf
, bufsiz
);
1363 TALLOC_FREE(client_path
);
1367 static int um_link(vfs_handle_struct
*handle
,
1368 const char *oldpath
,
1369 const char *newpath
)
1372 char *old_client_path
= NULL
;
1373 char *new_client_path
= NULL
;
1375 DEBUG(10, ("Entering um_link\n"));
1376 if (!is_in_media_files(oldpath
) && !is_in_media_files(newpath
)) {
1377 return SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1380 status
= alloc_get_client_path(handle
, talloc_tos(),
1381 oldpath
, &old_client_path
);
1386 status
= alloc_get_client_path(handle
, talloc_tos(),
1387 newpath
, &new_client_path
);
1392 status
= SMB_VFS_NEXT_LINK(handle
, old_client_path
, new_client_path
);
1395 TALLOC_FREE(new_client_path
);
1396 TALLOC_FREE(old_client_path
);
1400 static int um_mknod(vfs_handle_struct
*handle
,
1401 const char *pathname
,
1406 char *client_path
= NULL
;
1408 DEBUG(10, ("Entering um_mknod\n"));
1409 if (!is_in_media_files(pathname
)) {
1410 return SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1413 status
= alloc_get_client_path(handle
, talloc_tos(),
1414 pathname
, &client_path
);
1419 status
= SMB_VFS_NEXT_MKNOD(handle
, client_path
, mode
, dev
);
1422 TALLOC_FREE(client_path
);
1426 static char *um_realpath(vfs_handle_struct
*handle
,
1430 char *client_path
= NULL
;
1433 DEBUG(10, ("Entering um_realpath\n"));
1435 if (!is_in_media_files(path
)) {
1436 return SMB_VFS_NEXT_REALPATH(handle
, path
);
1439 status
= alloc_get_client_path(handle
, talloc_tos(),
1440 path
, &client_path
);
1445 buf
= SMB_VFS_NEXT_REALPATH(handle
, client_path
);
1448 TALLOC_FREE(client_path
);
1452 static int um_chflags(vfs_handle_struct
*handle
,
1457 char *client_path
= NULL
;
1459 DEBUG(10, ("Entering um_chflags\n"));
1461 if (!is_in_media_files(path
)) {
1462 return SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1465 status
= alloc_get_client_path(handle
, talloc_tos(),
1466 path
, &client_path
);
1471 status
= SMB_VFS_NEXT_CHFLAGS(handle
, client_path
, flags
);
1473 TALLOC_FREE(client_path
);
1477 static NTSTATUS
um_streaminfo(struct vfs_handle_struct
*handle
,
1478 struct files_struct
*fsp
,
1481 unsigned int *num_streams
,
1482 struct stream_struct
**streams
)
1485 char *client_path
= NULL
;
1488 DEBUG(10, ("Entering um_streaminfo\n"));
1490 if (!is_in_media_files(fname
)) {
1491 return SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
,
1492 ctx
, num_streams
, streams
);
1495 ret
= alloc_get_client_path(handle
, talloc_tos(),
1496 fname
, &client_path
);
1498 status
= map_nt_error_from_unix(errno
);
1503 * This only works on files, so we don't have to worry about
1504 * our fake directory stat'ing here. But what does this
1505 * function do, exactly? Does it need extra modifications for
1508 status
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, client_path
,
1509 ctx
, num_streams
, streams
);
1511 TALLOC_FREE(client_path
);
1516 * Ignoring get_real_filename function because the default doesn't do
1520 static NTSTATUS
um_get_nt_acl(vfs_handle_struct
*handle
,
1522 uint32_t security_info
,
1523 TALLOC_CTX
*mem_ctx
,
1524 struct security_descriptor
**ppdesc
)
1527 char *client_path
= NULL
;
1530 DEBUG(10, ("Entering um_get_nt_acl\n"));
1532 if (!is_in_media_files(name
)) {
1533 return SMB_VFS_NEXT_GET_NT_ACL(handle
, name
,
1538 ret
= alloc_get_client_path(handle
, talloc_tos(),
1539 name
, &client_path
);
1541 status
= map_nt_error_from_unix(errno
);
1545 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
, client_path
,
1549 TALLOC_FREE(client_path
);
1553 static int um_chmod_acl(vfs_handle_struct
*handle
,
1558 char *client_path
= NULL
;
1560 DEBUG(10, ("Entering um_chmod_acl\n"));
1562 if (!is_in_media_files(path
)) {
1563 return SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
1566 status
= alloc_get_client_path(handle
, talloc_tos(),
1567 path
, &client_path
);
1572 status
= SMB_VFS_NEXT_CHMOD_ACL(handle
, client_path
, mode
);
1575 TALLOC_FREE(client_path
);
1579 static SMB_ACL_T
um_sys_acl_get_file(vfs_handle_struct
*handle
,
1581 SMB_ACL_TYPE_T type
,
1582 TALLOC_CTX
*mem_ctx
)
1585 char *client_path
= NULL
;
1588 DEBUG(10, ("Entering um_sys_acl_get_file\n"));
1590 if (!is_in_media_files(path_p
)) {
1591 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
,
1595 status
= alloc_get_client_path(handle
, talloc_tos(),
1596 path_p
, &client_path
);
1602 ret
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, client_path
, type
, mem_ctx
);
1605 TALLOC_FREE(client_path
);
1609 static int um_sys_acl_set_file(vfs_handle_struct
*handle
,
1611 SMB_ACL_TYPE_T acltype
,
1615 char *client_path
= NULL
;
1617 DEBUG(10, ("Entering um_sys_acl_set_file\n"));
1619 if (!is_in_media_files(name
)) {
1620 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
,
1624 status
= alloc_get_client_path(handle
, talloc_tos(),
1625 name
, &client_path
);
1630 status
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, client_path
,
1634 TALLOC_FREE(client_path
);
1638 static int um_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1642 char *client_path
= NULL
;
1644 DEBUG(10, ("Entering um_sys_acl_delete_def_file\n"));
1646 if (!is_in_media_files(path
)) {
1647 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
1650 status
= alloc_get_client_path(handle
, talloc_tos(),
1651 path
, &client_path
);
1656 status
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, client_path
);
1659 TALLOC_FREE(client_path
);
1663 static ssize_t
um_getxattr(struct vfs_handle_struct
*handle
,
1670 char *client_path
= NULL
;
1673 DEBUG(10, ("Entering um_getxattr\n"));
1674 if (!is_in_media_files(path
)) {
1675 return SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
, size
);
1678 status
= alloc_get_client_path(handle
, talloc_tos(),
1679 path
, &client_path
);
1685 ret
= SMB_VFS_NEXT_GETXATTR(handle
, client_path
, name
, value
, size
);
1687 TALLOC_FREE(client_path
);
1691 static ssize_t
um_listxattr(struct vfs_handle_struct
*handle
,
1697 char *client_path
= NULL
;
1700 DEBUG(10, ("Entering um_listxattr\n"));
1702 if (!is_in_media_files(path
)) {
1703 return SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
1706 status
= alloc_get_client_path(handle
, talloc_tos(),
1707 path
, &client_path
);
1713 ret
= SMB_VFS_NEXT_LISTXATTR(handle
, client_path
, list
, size
);
1716 TALLOC_FREE(client_path
);
1720 static int um_removexattr(struct vfs_handle_struct
*handle
,
1725 char *client_path
= NULL
;
1727 DEBUG(10, ("Entering um_removexattr\n"));
1729 if (!is_in_media_files(path
)) {
1730 return SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
1733 status
= alloc_get_client_path(handle
, talloc_tos(),
1734 path
, &client_path
);
1739 status
= SMB_VFS_NEXT_REMOVEXATTR(handle
, client_path
, name
);
1742 TALLOC_FREE(client_path
);
1746 static int um_setxattr(struct vfs_handle_struct
*handle
,
1754 char *client_path
= NULL
;
1756 DEBUG(10, ("Entering um_setxattr\n"));
1758 if (!is_in_media_files(path
)) {
1759 return SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
,
1763 status
= alloc_get_client_path(handle
, talloc_tos(),
1764 path
, &client_path
);
1769 status
= SMB_VFS_NEXT_SETXATTR(handle
, client_path
, name
, value
,
1773 TALLOC_FREE(client_path
);
1777 static bool um_is_offline(struct vfs_handle_struct
*handle
,
1778 const struct smb_filename
*fname
,
1779 SMB_STRUCT_STAT
*sbuf
)
1782 struct smb_filename
*client_fname
= NULL
;
1785 DEBUG(10, ("Entering um_is_offline\n"));
1787 if (!is_in_media_files(fname
->base_name
)) {
1788 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1791 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1792 fname
, &client_fname
);
1798 ret
= SMB_VFS_NEXT_IS_OFFLINE(handle
, client_fname
, sbuf
);
1801 TALLOC_FREE(client_fname
);
1805 static int um_set_offline(struct vfs_handle_struct
*handle
,
1806 const struct smb_filename
*fname
)
1809 struct smb_filename
*client_fname
= NULL
;
1811 DEBUG(10, ("Entering um_set_offline\n"));
1813 if (!is_in_media_files(fname
->base_name
)) {
1814 return SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
1817 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1818 fname
, &client_fname
);
1823 status
= SMB_VFS_NEXT_SET_OFFLINE(handle
, client_fname
);
1826 TALLOC_FREE(client_fname
);
1830 static int um_connect(vfs_handle_struct
*handle
,
1831 const char *service
,
1835 struct um_config_data
*config
;
1838 rc
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1843 config
= talloc_zero(handle
->conn
, struct um_config_data
);
1845 DEBUG(1, ("talloc_zero() failed\n"));
1850 enumval
= lp_parm_enum(SNUM(handle
->conn
), UM_PARAM_TYPE_NAME
,
1851 "clientid", um_clientid
, UM_CLIENTID_NAME
);
1852 if (enumval
== -1) {
1853 DEBUG(1, ("value for %s: type unknown\n",
1854 UM_PARAM_TYPE_NAME
));
1857 config
->clientid
= (enum um_clientid
)enumval
;
1859 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1860 NULL
, struct um_config_data
,
1866 /* VFS operations structure */
1868 static struct vfs_fn_pointers vfs_um_fns
= {
1869 .connect_fn
= um_connect
,
1871 /* Disk operations */
1873 .statvfs_fn
= um_statvfs
,
1875 /* Directory operations */
1877 .opendir_fn
= um_opendir
,
1878 .fdopendir_fn
= um_fdopendir
,
1879 .readdir_fn
= um_readdir
,
1880 .seekdir_fn
= um_seekdir
,
1881 .telldir_fn
= um_telldir
,
1882 .rewind_dir_fn
= um_rewinddir
,
1883 .mkdir_fn
= um_mkdir
,
1884 .rmdir_fn
= um_rmdir
,
1885 .closedir_fn
= um_closedir
,
1886 .init_search_op_fn
= um_init_search_op
,
1888 /* File operations */
1891 .create_file_fn
= um_create_file
,
1892 .rename_fn
= um_rename
,
1894 .lstat_fn
= um_lstat
,
1895 .fstat_fn
= um_fstat
,
1896 .unlink_fn
= um_unlink
,
1897 .chmod_fn
= um_chmod
,
1898 .chown_fn
= um_chown
,
1899 .lchown_fn
= um_lchown
,
1900 .chdir_fn
= um_chdir
,
1901 .ntimes_fn
= um_ntimes
,
1902 .symlink_fn
= um_symlink
,
1903 .readlink_fn
= um_readlink
,
1905 .mknod_fn
= um_mknod
,
1906 .realpath_fn
= um_realpath
,
1907 .chflags_fn
= um_chflags
,
1908 .streaminfo_fn
= um_streaminfo
,
1910 /* NT ACL operations. */
1912 .get_nt_acl_fn
= um_get_nt_acl
,
1914 /* POSIX ACL operations. */
1916 .chmod_acl_fn
= um_chmod_acl
,
1918 .sys_acl_get_file_fn
= um_sys_acl_get_file
,
1919 .sys_acl_set_file_fn
= um_sys_acl_set_file
,
1920 .sys_acl_delete_def_file_fn
= um_sys_acl_delete_def_file
,
1922 /* EA operations. */
1923 .getxattr_fn
= um_getxattr
,
1924 .listxattr_fn
= um_listxattr
,
1925 .removexattr_fn
= um_removexattr
,
1926 .setxattr_fn
= um_setxattr
,
1928 /* aio operations */
1930 /* offline operations */
1931 .is_offline_fn
= um_is_offline
,
1932 .set_offline_fn
= um_set_offline
1935 NTSTATUS
vfs_unityed_media_init(void);
1936 NTSTATUS
vfs_unityed_media_init(void)
1938 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
1939 "unityed_media", &vfs_um_fns
);
1940 if (!NT_STATUS_IS_OK(ret
)) {
1944 vfs_um_debug_level
= debug_add_class("unityed_media");
1946 if (vfs_um_debug_level
== -1) {
1947 vfs_um_debug_level
= DBGC_VFS
;
1948 DEBUG(1, ("unityed_media_init: Couldn't register custom "
1949 "debugging class.\n"));