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"
63 #include "lib/util/smb_strtox.h"
65 #include "source3/lib/substitute.h"
67 #define UM_PARAM_TYPE_NAME "unityed_media"
69 static const char *AVID_MXF_DIRNAME
= "Avid MediaFiles/MXF";
70 static const size_t AVID_MXF_DIRNAME_LEN
= 19;
71 static const char *OMFI_MEDIAFILES_DIRNAME
= "OMFI MediaFiles";
72 static const size_t OMFI_MEDIAFILES_DIRNAME_LEN
= 15;
73 static const char *APPLE_DOUBLE_PREFIX
= "._";
74 static const size_t APPLE_DOUBLE_PREFIX_LEN
= 2;
75 static int vfs_um_debug_level
= DBGC_VFS
;
77 enum um_clientid
{UM_CLIENTID_NAME
, UM_CLIENTID_IP
, UM_CLIENTID_HOSTNAME
};
79 struct um_config_data
{
80 enum um_clientid clientid
;
83 static const struct enum_list um_clientid
[] = {
84 {UM_CLIENTID_NAME
, "user"},
85 {UM_CLIENTID_IP
, "ip"},
86 {UM_CLIENTID_HOSTNAME
, "hostname"},
90 /* supplements the directory list stream */
91 typedef struct um_dirinfo_struct
{
96 char *clientSubDirname
;
100 * Returns true and first group of digits in path, false and 0 otherwise
102 static bool get_digit_group(const char *path
, uintmax_t *digit
)
104 const char *p
= path
;
109 DEBUG(10, ("get_digit_group entering with path '%s'\n",
113 * Delibiretly initialize to 0 because callers use this result
114 * even though the string doesn't contain any number and we
120 cp
= next_codepoint(p
, &size
);
124 if ((size
== 1) && (isdigit(cp
))) {
125 *digit
= (uintmax_t)smb_strtoul(p
,
133 DEBUG(10, ("num_suffix = '%ju'\n",
143 /* Add "_<remote_name>.<number>" suffix to path or filename.
146 * Failure: set errno, path NULL, return -1
149 static int alloc_append_client_suffix(vfs_handle_struct
*handle
,
154 const char *clientid
;
155 struct um_config_data
*config
;
157 DEBUG(10, ("Entering with path '%s'\n", *path
));
159 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
160 struct um_config_data
,
163 (void)get_digit_group(*path
, &number
);
165 switch (config
->clientid
) {
168 clientid
= tsocket_address_inet_addr_string(
169 handle
->conn
->sconn
->remote_address
, talloc_tos());
170 if (clientid
== NULL
) {
177 case UM_CLIENTID_HOSTNAME
:
178 clientid
= get_remote_machine_name();
181 case UM_CLIENTID_NAME
:
183 clientid
= get_current_username();
187 *path
= talloc_asprintf_append(*path
, "_%s.%ju",
190 DEBUG(1, ("alloc_append_client_suffix "
196 DEBUG(10, ("Leaving with *path '%s'\n", *path
));
201 /* Returns true if the file or directory begins with the appledouble
204 static bool is_apple_double(const char* fname
)
208 DEBUG(10, ("Entering with fname '%s'\n", fname
));
210 if (strnequal(APPLE_DOUBLE_PREFIX
, fname
, APPLE_DOUBLE_PREFIX_LEN
)) {
213 DEBUG(10, ("Leaving with ret '%s'\n",
214 ret
== true ? "true" : "false"));
218 static bool starts_with_media_dir(const char* media_dirname
,
219 size_t media_dirname_len
,
223 const char *path_start
= path
;
225 DEBUG(10, ("Entering with media_dirname '%s' "
226 "path '%s'\n", media_dirname
, path
));
228 /* Sometimes Samba gives us "./OMFI MediaFiles". */
229 if (strnequal(path
, "./", 2)) {
233 if (strnequal(media_dirname
, path_start
, media_dirname_len
)
235 ((path_start
[media_dirname_len
] == '\0') ||
236 (path_start
[media_dirname_len
] == '/'))) {
240 DEBUG(10, ("Leaving with ret '%s'\n",
241 ret
== true ? "true" : "false"));
246 * Returns true if the file or directory referenced by the path is ONE
247 * LEVEL below the AVID_MXF_DIRNAME or OMFI_MEDIAFILES_DIRNAME
250 static bool is_in_media_dir(const char *path
)
252 int transition_count
= 0;
253 const char *path_start
= path
;
255 const char *media_dirname
;
256 size_t media_dirname_len
;
258 DEBUG(10, ("Entering with path '%s'\n", path
));
260 /* Sometimes Samba gives us "./OMFI MediaFiles". */
261 if (strnequal(path
, "./", 2)) {
265 if (strnequal(path_start
, AVID_MXF_DIRNAME
, AVID_MXF_DIRNAME_LEN
)) {
266 media_dirname
= AVID_MXF_DIRNAME
;
267 media_dirname_len
= AVID_MXF_DIRNAME_LEN
;
268 } else if (strnequal(path_start
,
269 OMFI_MEDIAFILES_DIRNAME
,
270 OMFI_MEDIAFILES_DIRNAME_LEN
)) {
271 media_dirname
= OMFI_MEDIAFILES_DIRNAME
;
272 media_dirname_len
= OMFI_MEDIAFILES_DIRNAME_LEN
;
277 if (path_start
[media_dirname_len
] == '\0') {
281 p
= path_start
+ media_dirname_len
+ 1;
284 if (*p
== '\0' || *p
== '/') {
285 if (strnequal(p
- 3, "/..", 3)) {
287 } else if ((p
[-1] != '/') || !strnequal(p
- 2, "/.", 2)) {
298 DEBUG(10, ("Going out with transition_count '%i'\n",
300 if (((transition_count
== 1) && (media_dirname
== AVID_MXF_DIRNAME
))
302 ((transition_count
== 0) && (media_dirname
== OMFI_MEDIAFILES_DIRNAME
))) {
309 * Returns true if the file or directory referenced by the path is
310 * below the AVID_MEDIAFILES_DIRNAME or OMFI_MEDIAFILES_DIRNAME
311 * directory The AVID_MEDIAFILES_DIRNAME and OMFI_MEDIAFILES_DIRNAME
312 * are assumed to be in the root directory, which is generally a safe
313 * assumption in the fixed-path world of Avid.
315 static bool is_in_media_files(const char *path
)
319 DEBUG(10, ("Entering with path '%s'\n", path
));
321 if (starts_with_media_dir(AVID_MXF_DIRNAME
,
322 AVID_MXF_DIRNAME_LEN
, path
) ||
323 starts_with_media_dir(OMFI_MEDIAFILES_DIRNAME
,
324 OMFI_MEDIAFILES_DIRNAME_LEN
, path
)) {
327 DEBUG(10, ("Leaving with ret '%s'\n",
328 ret
== true ? "true" : "false"));
333 /* Add client suffix to "pure-number" path.
335 * Caller must free newPath.
338 * Failure: set errno, newPath NULL, return -1
340 static int alloc_get_client_path(vfs_handle_struct
*handle
,
351 *path_out
= talloc_strdup(ctx
, path_in
);
352 if (*path_out
== NULL
) {
353 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
357 (void)get_digit_group(*path_out
, &number
);
359 digits
= talloc_asprintf(NULL
, "%ju", number
);
360 if (digits
== NULL
) {
361 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
364 digits_len
= strlen(digits
);
366 p
= strstr_m(path_in
, digits
);
369 ((p
[digits_len
] == '\0') || (p
[digits_len
] == '/'))
371 (((p
- path_in
> 0) && (p
[-1] == '/'))
373 (((p
- path_in
) > APPLE_DOUBLE_PREFIX_LEN
)
375 is_apple_double(p
- APPLE_DOUBLE_PREFIX_LEN
)
377 (p
[-(APPLE_DOUBLE_PREFIX_LEN
+ 1)] == '/'))))
379 (*path_out
)[p
- path_in
+ digits_len
] = '\0';
381 status
= alloc_append_client_suffix(handle
, path_out
);
386 *path_out
= talloc_strdup_append(*path_out
, p
+ digits_len
);
387 if (*path_out
== NULL
) {
388 DEBUG(1, ("alloc_get_client_path ENOMEM\n"));
394 /* path_out must be freed in caller. */
395 DEBUG(10, ("Result:'%s'\n", *path_out
));
401 * Failure: set errno, return -1
403 static int alloc_get_client_smb_fname(struct vfs_handle_struct
*handle
,
405 const struct smb_filename
*smb_fname
,
406 struct smb_filename
**client_fname
)
410 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
411 smb_fname
->base_name
));
413 *client_fname
= cp_smb_filename(ctx
, smb_fname
);
414 if (*client_fname
== NULL
) {
415 DEBUG(1, ("cp_smb_filename returned NULL\n"));
418 status
= alloc_get_client_path(handle
, ctx
,
419 smb_fname
->base_name
,
420 &(*client_fname
)->base_name
);
425 DEBUG(10, ("Leaving with (*client_fname)->base_name "
426 "'%s'\n", (*client_fname
)->base_name
));
434 * Failure: set errno, return -1
436 static int alloc_set_client_dirinfo_path(struct vfs_handle_struct
*handle
,
439 const char *suffix_number
)
443 DEBUG(10, ("Entering with suffix_number '%s'\n",
446 *path
= talloc_strdup(ctx
, suffix_number
);
448 DEBUG(1, ("alloc_set_client_dirinfo_path ENOMEM\n"));
451 status
= alloc_append_client_suffix(handle
, path
);
456 DEBUG(10, ("Leaving with *path '%s'\n", *path
));
461 static int alloc_set_client_dirinfo(vfs_handle_struct
*handle
,
463 struct um_dirinfo_struct
**di_result
)
468 struct um_dirinfo_struct
*dip
;
470 DEBUG(10, ("Entering with fname '%s'\n", fname
));
472 *di_result
= talloc(NULL
, struct um_dirinfo_struct
);
473 if (*di_result
== NULL
) {
478 dip
->dirpath
= talloc_strdup(dip
, fname
);
479 if (dip
->dirpath
== NULL
) {
483 if (!is_in_media_files(fname
)) {
484 dip
->isInMediaFiles
= false;
485 dip
->clientPath
= NULL
;
486 dip
->clientSubDirname
= NULL
;
490 dip
->isInMediaFiles
= true;
492 (void)get_digit_group(fname
, &number
);
493 digits
= talloc_asprintf(talloc_tos(), "%ju", number
);
494 if (digits
== NULL
) {
498 status
= alloc_set_client_dirinfo_path(handle
, dip
,
499 &dip
->clientSubDirname
,
505 status
= alloc_get_client_path(handle
, dip
, fname
,
507 if (status
!= 0 || dip
->clientPath
== NULL
) {
512 DEBUG(10, ("Leaving with (*dirInfo)->dirpath '%s', "
513 "(*dirInfo)->clientPath '%s'\n",
514 dip
->dirpath
, dip
->clientPath
));
518 DEBUG(1, ("Failing with fname '%s'\n", fname
));
519 TALLOC_FREE(*di_result
);
525 /**********************************************************************
527 **********************************************************************/
531 * Failure: set errno, return -1
533 static int um_statvfs(struct vfs_handle_struct
*handle
,
534 const struct smb_filename
*smb_fname
,
535 struct vfs_statvfs_struct
*statbuf
)
538 struct smb_filename
*client_fname
= NULL
;
540 DEBUG(10, ("Entering with path '%s'\n", smb_fname
->base_name
));
542 if (!is_in_media_files(smb_fname
->base_name
)) {
543 return SMB_VFS_NEXT_STATVFS(handle
, smb_fname
, statbuf
);
546 status
= alloc_get_client_smb_fname(handle
,
554 status
= SMB_VFS_NEXT_STATVFS(handle
, client_fname
, statbuf
);
556 TALLOC_FREE(client_fname
);
557 DEBUG(10, ("Leaving with path '%s'\n", smb_fname
->base_name
));
561 static DIR *um_fdopendir(vfs_handle_struct
*handle
,
566 struct um_dirinfo_struct
*dirInfo
= NULL
;
569 DEBUG(10, ("Entering with fsp->fsp_name->base_name '%s'\n",
570 fsp
->fsp_name
->base_name
));
572 dirstream
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
577 if (alloc_set_client_dirinfo(handle
,
578 fsp
->fsp_name
->base_name
,
583 dirInfo
->dirstream
= dirstream
;
585 if (!dirInfo
->isInMediaFiles
) {
587 * FIXME: this is the original code, something must be
588 * missing here, but what? -slow
594 DEBUG(10, ("Leaving with dirInfo->dirpath '%s', "
595 "dirInfo->clientPath '%s', "
596 "fsp->fsp_name->st.st_ex_mtime %s",
599 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
600 return (DIR *) dirInfo
;
603 DEBUG(1, ("Failing with fsp->fsp_name->base_name '%s'\n",
604 fsp
->fsp_name
->base_name
));
605 TALLOC_FREE(dirInfo
);
610 * skip own suffixed directory
611 * replace own suffixed directory with non suffixed.
613 * Success: return dirent
614 * End of data: return NULL
615 * Failure: set errno, return NULL
617 static struct dirent
*
618 um_readdir(vfs_handle_struct
*handle
, struct files_struct
*dirfsp
, DIR *dirp
)
620 um_dirinfo_struct
* dirInfo
= (um_dirinfo_struct
*)dirp
;
621 struct dirent
*d
= NULL
;
624 DEBUG(10, ("dirInfo->dirpath '%s', "
625 "dirInfo->clientPath '%s', "
626 "dirInfo->isInMediaFiles '%s', "
627 "dirInfo->clientSubDirname '%s'\n",
630 dirInfo
->isInMediaFiles
? "true" : "false",
631 dirInfo
->clientSubDirname
));
633 if (!dirInfo
->isInMediaFiles
) {
634 return SMB_VFS_NEXT_READDIR(handle
, dirfsp
, dirInfo
->dirstream
);
645 d
= SMB_VFS_NEXT_READDIR(handle
, dirfsp
, dirInfo
->dirstream
);
651 /* ignore apple double prefix for logic below */
652 if (is_apple_double(d
->d_name
)) {
653 dname
= &d
->d_name
[APPLE_DOUBLE_PREFIX_LEN
];
654 isAppleDouble
= true;
657 isAppleDouble
= false;
660 DEBUG(10, ("dname = '%s'\n", dname
));
662 (void)get_digit_group(dname
, &number
);
663 digits
= talloc_asprintf(talloc_tos(), "%ju", number
);
664 if (digits
== NULL
) {
665 DEBUG(1, ("out of memory\n"));
668 digits_len
= strlen(digits
);
670 if (alloc_set_client_dirinfo_path(handle
,
672 &((dirInfo
)->clientSubDirname
),
678 * If set to "true", vfs shows digits-only
679 * non-suffixed subdirectories. Normally, such
680 * subdirectories can exists only in non-media
681 * directories, so we set it to "false". Otherwise,
682 * if we have such subdirectories (probably created
683 * over not "unityed" connection), it can be little
686 if (strequal(dname
, digits
)) {
688 } else if (strequal(dname
, dirInfo
->clientSubDirname
)) {
690 * Remove suffix of this client's suffixed
694 d
->d_name
[digits_len
+ APPLE_DOUBLE_PREFIX_LEN
] = '\0';
696 d
->d_name
[digits_len
] = '\0';
698 } else if (strnequal(digits
, dname
, digits_len
)) {
700 * Set to false to see another clients subdirectories
706 DEBUG(10, ("Leaving um_readdir\n"));
709 TALLOC_FREE(dirInfo
);
713 static void um_rewinddir(vfs_handle_struct
*handle
,
716 DEBUG(10, ("Entering and leaving um_rewinddir\n"));
717 SMB_VFS_NEXT_REWINDDIR(handle
,
718 ((um_dirinfo_struct
*)dirp
)->dirstream
);
721 static int um_mkdirat(vfs_handle_struct
*handle
,
722 struct files_struct
*dirfsp
,
723 const struct smb_filename
*smb_fname
,
727 const char *path
= NULL
;
728 struct smb_filename
*client_fname
= NULL
;
729 struct smb_filename
*full_fname
= NULL
;
731 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
734 if (full_fname
== NULL
) {
738 path
= full_fname
->base_name
;
739 DEBUG(10, ("Entering with path '%s'\n", path
));
741 if (!is_in_media_files(path
) || !is_in_media_dir(path
)) {
742 TALLOC_FREE(full_fname
);
743 return SMB_VFS_NEXT_MKDIRAT(handle
,
749 status
= alloc_get_client_smb_fname(handle
,
757 status
= SMB_VFS_NEXT_MKDIRAT(handle
,
758 handle
->conn
->cwd_fsp
,
762 DEBUG(10, ("Leaving with path '%s'\n", path
));
763 TALLOC_FREE(client_fname
);
764 TALLOC_FREE(full_fname
);
768 static int um_closedir(vfs_handle_struct
*handle
,
771 DIR *realdirp
= ((um_dirinfo_struct
*)dirp
)->dirstream
;
775 return SMB_VFS_NEXT_CLOSEDIR(handle
, realdirp
);
778 static int um_openat(struct vfs_handle_struct
*handle
,
779 const struct files_struct
*dirfsp
,
780 const struct smb_filename
*smb_fname
,
781 struct files_struct
*fsp
,
782 const struct vfs_open_how
*how
)
784 struct smb_filename
*client_fname
= NULL
;
787 DBG_DEBUG("Entering with smb_fname->base_name '%s'\n",
788 smb_fname
->base_name
);
790 if (!is_in_media_files(smb_fname
->base_name
)) {
791 return SMB_VFS_NEXT_OPENAT(handle
,
798 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
807 * What about fsp->fsp_name? We also have to get correct stat
808 * info into fsp and smb_fname for DB files, don't we?
811 DEBUG(10, ("Leaving with smb_fname->base_name '%s' "
812 "smb_fname->st.st_ex_mtime %s"
813 "fsp->fsp_name->st.st_ex_mtime %s",
814 smb_fname
->base_name
,
815 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
816 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
818 ret
= SMB_VFS_NEXT_OPENAT(handle
,
824 TALLOC_FREE(client_fname
);
825 DEBUG(10, ("Leaving with smb_fname->base_name '%s'\n",
826 smb_fname
->base_name
));
830 static NTSTATUS
um_create_file(vfs_handle_struct
*handle
,
831 struct smb_request
*req
,
832 struct files_struct
*dirfsp
,
833 struct smb_filename
*smb_fname
,
834 uint32_t access_mask
,
835 uint32_t share_access
,
836 uint32_t create_disposition
,
837 uint32_t create_options
,
838 uint32_t file_attributes
,
839 uint32_t oplock_request
,
840 const struct smb2_lease
*lease
,
841 uint64_t allocation_size
,
842 uint32_t private_flags
,
843 struct security_descriptor
*sd
,
844 struct ea_list
*ea_list
,
845 files_struct
**result_fsp
,
847 const struct smb2_create_blobs
*in_context_blobs
,
848 struct smb2_create_blobs
*out_context_blobs
)
851 struct smb_filename
*client_fname
= NULL
;
853 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
854 smb_fname
->base_name
));
856 if (!is_in_media_files(smb_fname
->base_name
)) {
857 return SMB_VFS_NEXT_CREATE_FILE(
879 if (alloc_get_client_smb_fname(handle
, talloc_tos(),
882 status
= map_nt_error_from_unix(errno
);
888 * This only creates files, so we don't have to worry about
889 * our fake directory stat'ing here. But we still need to
890 * route stat calls for DB files properly, right?
892 status
= SMB_VFS_NEXT_CREATE_FILE(
913 TALLOC_FREE(client_fname
);
914 DEBUG(10, ("Leaving with smb_fname->base_name '%s'"
915 "smb_fname->st.st_ex_mtime %s"
916 " fsp->fsp_name->st.st_ex_mtime %s",
917 smb_fname
->base_name
,
918 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
919 (*result_fsp
) && VALID_STAT((*result_fsp
)->fsp_name
->st
) ?
920 ctime(&((*result_fsp
)->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
925 static int um_renameat(vfs_handle_struct
*handle
,
926 files_struct
*srcfsp
,
927 const struct smb_filename
*smb_fname_src
,
928 files_struct
*dstfsp
,
929 const struct smb_filename
*smb_fname_dst
)
932 struct smb_filename
*src_full_fname
= NULL
;
933 struct smb_filename
*dst_full_fname
= NULL
;
934 struct smb_filename
*src_client_fname
= NULL
;
935 struct smb_filename
*dst_client_fname
= NULL
;
937 src_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
940 if (src_full_fname
== NULL
) {
944 dst_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
947 if (dst_full_fname
== NULL
) {
948 TALLOC_FREE(src_full_fname
);
953 DBG_DEBUG( "Entering with "
954 "smb_fname_src->base_name '%s', "
955 "smb_fname_dst->base_name '%s'\n",
956 smb_fname_src
->base_name
,
957 smb_fname_dst
->base_name
);
959 if (!is_in_media_files(src_full_fname
->base_name
)
961 !is_in_media_files(dst_full_fname
->base_name
)) {
962 TALLOC_FREE(src_full_fname
);
963 TALLOC_FREE(dst_full_fname
);
964 return SMB_VFS_NEXT_RENAMEAT(handle
,
971 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
978 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
986 status
= SMB_VFS_NEXT_RENAMEAT(handle
,
987 handle
->conn
->cwd_fsp
,
989 handle
->conn
->cwd_fsp
,
993 TALLOC_FREE(dst_client_fname
);
994 TALLOC_FREE(src_client_fname
);
995 TALLOC_FREE(src_full_fname
);
996 TALLOC_FREE(dst_full_fname
);
997 DBG_DEBUG( "Leaving with 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
);
1007 * Failure: set errno, return -1
1009 static int um_stat(vfs_handle_struct
*handle
,
1010 struct smb_filename
*smb_fname
)
1013 struct smb_filename
*client_fname
= NULL
;
1015 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1016 smb_fname
->base_name
));
1018 if (!is_in_media_files(smb_fname
->base_name
)) {
1019 return SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1022 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1028 DEBUG(10, ("Stat'ing client_fname->base_name '%s'\n",
1029 client_fname
->base_name
));
1031 status
= SMB_VFS_NEXT_STAT(handle
, client_fname
);
1037 * Unlike functions with const smb_filename, we have to modify
1038 * smb_fname itself to pass our info back up.
1040 DEBUG(10, ("Setting smb_fname '%s' stat from client_fname '%s'\n",
1041 smb_fname
->base_name
, client_fname
->base_name
));
1042 smb_fname
->st
= client_fname
->st
;
1045 TALLOC_FREE(client_fname
);
1046 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1047 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1051 static int um_lstat(vfs_handle_struct
*handle
,
1052 struct smb_filename
*smb_fname
)
1055 struct smb_filename
*client_fname
= NULL
;
1057 DEBUG(10, ("Entering with smb_fname->base_name '%s'\n",
1058 smb_fname
->base_name
));
1060 if (!is_in_media_files(smb_fname
->base_name
)) {
1061 return SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1064 client_fname
= NULL
;
1066 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1072 status
= SMB_VFS_NEXT_LSTAT(handle
, client_fname
);
1077 smb_fname
->st
= client_fname
->st
;
1080 TALLOC_FREE(client_fname
);
1081 DEBUG(10, ("Leaving with smb_fname->st.st_ex_mtime %s",
1082 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1086 static int um_fstat(vfs_handle_struct
*handle
,
1087 files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1091 DEBUG(10, ("Entering with fsp->fsp_name->base_name "
1092 "'%s'\n", fsp_str_dbg(fsp
)));
1094 status
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1099 if ((fsp
->fsp_name
== NULL
) ||
1100 !is_in_media_files(fsp
->fsp_name
->base_name
)) {
1104 status
= um_stat(handle
, fsp
->fsp_name
);
1109 *sbuf
= fsp
->fsp_name
->st
;
1112 DEBUG(10, ("Leaving with fsp->fsp_name->st.st_ex_mtime %s",
1113 fsp
->fsp_name
!= NULL
?
1114 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
)) : "0\n"));
1118 static int um_unlinkat(vfs_handle_struct
*handle
,
1119 struct files_struct
*dirfsp
,
1120 const struct smb_filename
*smb_fname
,
1124 struct smb_filename
*full_fname
= NULL
;
1125 struct smb_filename
*client_fname
= NULL
;
1127 DEBUG(10, ("Entering um_unlinkat\n"));
1129 if (!is_in_media_files(smb_fname
->base_name
)) {
1130 return SMB_VFS_NEXT_UNLINKAT(handle
,
1136 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1139 if (full_fname
== NULL
) {
1143 ret
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1150 ret
= SMB_VFS_NEXT_UNLINKAT(handle
,
1151 dirfsp
->conn
->cwd_fsp
,
1156 TALLOC_FREE(full_fname
);
1157 TALLOC_FREE(client_fname
);
1161 static int um_lchown(vfs_handle_struct
*handle
,
1162 const struct smb_filename
*smb_fname
,
1167 struct smb_filename
*client_fname
= NULL
;
1169 DEBUG(10, ("Entering um_lchown\n"));
1170 if (!is_in_media_files(smb_fname
->base_name
)) {
1171 return SMB_VFS_NEXT_LCHOWN(handle
, smb_fname
, uid
, gid
);
1174 status
= alloc_get_client_smb_fname(handle
,
1182 status
= SMB_VFS_NEXT_LCHOWN(handle
, client_fname
, uid
, gid
);
1185 TALLOC_FREE(client_fname
);
1189 static int um_chdir(vfs_handle_struct
*handle
,
1190 const struct smb_filename
*smb_fname
)
1193 struct smb_filename
*client_fname
= NULL
;
1195 DEBUG(10, ("Entering um_chdir\n"));
1197 if (!is_in_media_files(smb_fname
->base_name
)) {
1198 return SMB_VFS_NEXT_CHDIR(handle
, smb_fname
);
1201 status
= alloc_get_client_smb_fname(handle
,
1209 status
= SMB_VFS_NEXT_CHDIR(handle
, client_fname
);
1212 TALLOC_FREE(client_fname
);
1216 static int um_symlinkat(vfs_handle_struct
*handle
,
1217 const struct smb_filename
*link_contents
,
1218 struct files_struct
*dirfsp
,
1219 const struct smb_filename
*new_smb_fname
)
1222 struct smb_filename
*new_link_target
= NULL
;
1223 struct smb_filename
*new_client_fname
= NULL
;
1224 struct smb_filename
*full_fname
= NULL
;
1226 DEBUG(10, ("Entering um_symlinkat\n"));
1228 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1231 if (full_fname
== NULL
) {
1235 if (!is_in_media_files(link_contents
->base_name
) &&
1236 !is_in_media_files(full_fname
->base_name
)) {
1237 TALLOC_FREE(full_fname
);
1238 return SMB_VFS_NEXT_SYMLINKAT(handle
,
1244 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1245 link_contents
, &new_link_target
);
1249 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1250 full_fname
, &new_client_fname
);
1255 status
= SMB_VFS_NEXT_SYMLINKAT(handle
,
1257 handle
->conn
->cwd_fsp
,
1261 TALLOC_FREE(new_link_target
);
1262 TALLOC_FREE(new_client_fname
);
1263 TALLOC_FREE(full_fname
);
1267 static int um_readlinkat(vfs_handle_struct
*handle
,
1268 const struct files_struct
*dirfsp
,
1269 const struct smb_filename
*smb_fname
,
1274 struct smb_filename
*client_fname
= NULL
;
1275 struct smb_filename
*full_fname
= NULL
;
1277 DEBUG(10, ("Entering um_readlinkat\n"));
1279 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1282 if (full_fname
== NULL
) {
1286 if (!is_in_media_files(full_fname
->base_name
)) {
1287 TALLOC_FREE(full_fname
);
1288 return SMB_VFS_NEXT_READLINKAT(handle
,
1295 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1296 full_fname
, &client_fname
);
1301 status
= SMB_VFS_NEXT_READLINKAT(handle
,
1302 handle
->conn
->cwd_fsp
,
1308 TALLOC_FREE(full_fname
);
1309 TALLOC_FREE(client_fname
);
1313 static int um_linkat(vfs_handle_struct
*handle
,
1314 files_struct
*srcfsp
,
1315 const struct smb_filename
*old_smb_fname
,
1316 files_struct
*dstfsp
,
1317 const struct smb_filename
*new_smb_fname
,
1321 struct smb_filename
*old_full_fname
= NULL
;
1322 struct smb_filename
*new_full_fname
= NULL
;
1323 struct smb_filename
*old_client_fname
= NULL
;
1324 struct smb_filename
*new_client_fname
= NULL
;
1326 old_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1329 if (old_full_fname
== NULL
) {
1332 new_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1335 if (new_full_fname
== NULL
) {
1336 TALLOC_FREE(old_full_fname
);
1340 DEBUG(10, ("Entering um_linkat\n"));
1341 if (!is_in_media_files(old_full_fname
->base_name
) &&
1342 !is_in_media_files(new_full_fname
->base_name
)) {
1343 TALLOC_FREE(old_full_fname
);
1344 TALLOC_FREE(new_full_fname
);
1345 return SMB_VFS_NEXT_LINKAT(handle
,
1353 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1354 old_full_fname
, &old_client_fname
);
1358 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1359 new_full_fname
, &new_client_fname
);
1364 status
= SMB_VFS_NEXT_LINKAT(handle
,
1365 handle
->conn
->cwd_fsp
,
1367 handle
->conn
->cwd_fsp
,
1372 TALLOC_FREE(old_full_fname
);
1373 TALLOC_FREE(new_full_fname
);
1374 TALLOC_FREE(old_client_fname
);
1375 TALLOC_FREE(new_client_fname
);
1379 static int um_mknodat(vfs_handle_struct
*handle
,
1380 files_struct
*dirfsp
,
1381 const struct smb_filename
*smb_fname
,
1386 struct smb_filename
*client_fname
= NULL
;
1387 struct smb_filename
*full_fname
= NULL
;
1389 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1392 if (full_fname
== NULL
) {
1396 DEBUG(10, ("Entering um_mknodat\n"));
1397 if (!is_in_media_files(full_fname
->base_name
)) {
1398 TALLOC_FREE(full_fname
);
1399 return SMB_VFS_NEXT_MKNODAT(handle
,
1406 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1407 full_fname
, &client_fname
);
1412 status
= SMB_VFS_NEXT_MKNODAT(handle
,
1413 handle
->conn
->cwd_fsp
,
1419 TALLOC_FREE(client_fname
);
1420 TALLOC_FREE(full_fname
);
1424 static struct smb_filename
*um_realpath(vfs_handle_struct
*handle
,
1426 const struct smb_filename
*smb_fname
)
1428 struct smb_filename
*client_fname
= NULL
;
1429 struct smb_filename
*result_fname
= NULL
;
1432 DEBUG(10, ("Entering um_realpath\n"));
1434 if (!is_in_media_files(smb_fname
->base_name
)) {
1435 return SMB_VFS_NEXT_REALPATH(handle
, ctx
, smb_fname
);
1438 status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1439 smb_fname
, &client_fname
);
1444 result_fname
= SMB_VFS_NEXT_REALPATH(handle
, ctx
, client_fname
);
1447 TALLOC_FREE(client_fname
);
1448 return result_fname
;
1451 static int um_connect(vfs_handle_struct
*handle
,
1452 const char *service
,
1456 struct um_config_data
*config
;
1459 rc
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1464 config
= talloc_zero(handle
->conn
, struct um_config_data
);
1466 DEBUG(1, ("talloc_zero() failed\n"));
1471 enumval
= lp_parm_enum(SNUM(handle
->conn
), UM_PARAM_TYPE_NAME
,
1472 "clientid", um_clientid
, UM_CLIENTID_NAME
);
1473 if (enumval
== -1) {
1474 DEBUG(1, ("value for %s: type unknown\n",
1475 UM_PARAM_TYPE_NAME
));
1478 config
->clientid
= (enum um_clientid
)enumval
;
1480 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1481 NULL
, struct um_config_data
,
1487 /* VFS operations structure */
1489 static struct vfs_fn_pointers vfs_um_fns
= {
1490 .connect_fn
= um_connect
,
1492 /* Disk operations */
1494 .statvfs_fn
= um_statvfs
,
1496 /* Directory operations */
1498 .fdopendir_fn
= um_fdopendir
,
1499 .readdir_fn
= um_readdir
,
1500 .rewind_dir_fn
= um_rewinddir
,
1501 .mkdirat_fn
= um_mkdirat
,
1502 .closedir_fn
= um_closedir
,
1504 /* File operations */
1506 .openat_fn
= um_openat
,
1507 .create_file_fn
= um_create_file
,
1508 .renameat_fn
= um_renameat
,
1510 .lstat_fn
= um_lstat
,
1511 .fstat_fn
= um_fstat
,
1512 .unlinkat_fn
= um_unlinkat
,
1513 .lchown_fn
= um_lchown
,
1514 .chdir_fn
= um_chdir
,
1515 .symlinkat_fn
= um_symlinkat
,
1516 .readlinkat_fn
= um_readlinkat
,
1517 .linkat_fn
= um_linkat
,
1518 .mknodat_fn
= um_mknodat
,
1519 .realpath_fn
= um_realpath
,
1521 /* EA operations. */
1522 .getxattrat_send_fn
= vfs_not_implemented_getxattrat_send
,
1523 .getxattrat_recv_fn
= vfs_not_implemented_getxattrat_recv
,
1527 NTSTATUS
vfs_unityed_media_init(TALLOC_CTX
*ctx
)
1529 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
1530 "unityed_media", &vfs_um_fns
);
1531 if (!NT_STATUS_IS_OK(ret
)) {
1535 vfs_um_debug_level
= debug_add_class("unityed_media");
1537 if (vfs_um_debug_level
== -1) {
1538 vfs_um_debug_level
= DBGC_VFS
;
1539 DEBUG(1, ("unityed_media_init: Couldn't register custom "
1540 "debugging class.\n"));