2 * $Id: media_harmony.c,v 1.1 2007/11/06 10:07:22 stuart_hc Exp $
4 * Samba VFS module supporting multiple AVID clients sharing media.
6 * Copyright (C) 2005 Philip de Nier <philipn@users.sourceforge.net>
7 * Copyright (C) 2012 Andrew Klaassen <clawsoon@yahoo.com>
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
27 * Media Harmony is a Samba VFS module that allows multiple AVID
28 * clients to share media. Each client sees their own copy of the
29 * AVID msmMMOB.mdb and msmFMID.pmr files and Creating directories.
31 * Add this module to the vfs objects option in your Samba share
37 * vfs objects = media_harmony
40 * It is recommended that you separate out Samba shares for Mac
41 * and Windows clients, and add the following options to the shares
42 * for Windows clients (NOTE: replace @ with *):
44 * veto files = /.DS_Store/._@/.Trash@/.Spotlight@/.hidden/.hotfiles@/.vol/
45 * delete veto files = yes
47 * This prevents hidden files from Mac clients interfering with Windows
48 * clients. If you find any more problem hidden files then add them to
52 * Andrew Klaassen, 2012-03-14
53 * To prevent Avid clients from interrupting each other (via Avid's habit
54 * of launching a database refresh whenever it notices an mtime update
55 * on media directories, i.e. whenever one editor adds new material to a
56 * shared share), I've added code that causes stat information for anything
57 * directly under "Avid MediaFile/MXF" to be taken from
58 * dirname_clientaddr_clientuser if it exists. These files ~aren't~
59 * hidden, unlike the client-suffixed database files.
61 * For example, stat information for
62 * Avid MediaFiles/MXF/1
64 * Avid MediaFiles/MXF/1_192.168.1.10_dave
65 * for dave working on 192.168.1.10, but will come from
66 * Avid MediaFile/MXF/1_192.168.1.11_susan
67 * for susan working on 192.168.1.11. If those alternate
68 * directories don't exist, the user will get the actual directory's stat
69 * info. When an editor wants to force a database refresh, they update
70 * the mtime on "their" file. This will cause Avid
71 * on that client to see an updated mtime for "Avid MediaFiles/MXF/1",
72 * which will trigger an Avid database refresh just for that editor.
76 * - This module is designed to work with AVID editing applications that
77 * look in the Avid MediaFiles or OMFI MediaFiles directory for media.
78 * It is not designed to work as expected in all circumstances for
79 * general use. For example: it is possibly to open client specific
80 * files such as msmMMOB.mdb_192.168.1.10_userx even though is doesn't
81 * show up in a directory listing.
87 #include "system/filesys.h"
88 #include "smbd/smbd.h"
89 #include "../smbd/globals.h"
91 #include "../lib/tsocket/tsocket.h"
93 #define MH_INFO_DEBUG 10
94 #define MH_ERR_DEBUG 0
96 static const char* MDB_FILENAME
= "msmMMOB.mdb";
97 static const size_t MDB_FILENAME_LEN
= 11;
98 static const char* PMR_FILENAME
= "msmFMID.pmr";
99 static const size_t PMR_FILENAME_LEN
= 11;
100 static const char* CREATING_DIRNAME
= "Creating";
101 static const size_t CREATING_DIRNAME_LEN
= 8;
102 static const char* AVID_MEDIAFILES_DIRNAME
= "Avid MediaFiles";
103 static const size_t AVID_MEDIAFILES_DIRNAME_LEN
= 15;
104 static const char* OMFI_MEDIAFILES_DIRNAME
= "OMFI MediaFiles";
105 static const size_t OMFI_MEDIAFILES_DIRNAME_LEN
= 15;
106 static const char* APPLE_DOUBLE_PREFIX
= "._";
107 static const size_t APPLE_DOUBLE_PREFIX_LEN
= 2;
108 static const char* AVID_MXF_DIRNAME
= "Avid MediaFiles/MXF";
109 static const size_t AVID_MXF_DIRNAME_LEN
= 19;
111 static int vfs_mh_debug_level
= DBGC_VFS
;
113 /* supplements the directory list stream */
114 typedef struct mh_dirinfo_struct
120 char *clientMDBFilename
;
121 char *clientPMRFilename
;
122 char *clientCreatingDirname
;
126 /* Add "_<ip address>_<user name>" suffix to path or filename.
129 * Failure: set errno, path NULL, return -1
131 static int alloc_append_client_suffix(vfs_handle_struct
*handle
,
137 DEBUG(MH_INFO_DEBUG
, ("Entering with *path '%s'\n", *path
));
139 raddr
= tsocket_address_inet_addr_string(
140 handle
->conn
->sconn
->remote_address
, talloc_tos());
148 /* talloc_asprintf_append uses talloc_realloc, which
149 * frees original 'path' memory so we don't have to.
151 *path
= talloc_asprintf_append(*path
, "_%s_%s",
153 handle
->conn
->session_info
->unix_info
->sanitized_username
);
156 DEBUG(MH_ERR_DEBUG
, ("alloc_append_client_suffix "
162 DEBUG(MH_INFO_DEBUG
, ("Leaving with *path '%s'\n", *path
));
169 /* Returns True if the file or directory begins with the appledouble
172 static bool is_apple_double(const char* fname
)
176 DEBUG(MH_INFO_DEBUG
, ("Entering with fname '%s'\n", fname
));
178 if (strncmp(APPLE_DOUBLE_PREFIX
, fname
, APPLE_DOUBLE_PREFIX_LEN
)
183 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
184 ret
== True
? "True" : "False"));
188 static bool starts_with_media_dir(const char* media_dirname
,
189 size_t media_dirname_len
, const char* path
)
192 const char *path_start
;
194 DEBUG(MH_INFO_DEBUG
, ("Entering with media_dirname '%s' "
195 "path '%s'\n", media_dirname
, path
));
197 /* Sometimes Samba gives us "./OMFI MediaFiles". */
198 if (strncmp(path
, "./", 2) == 0)
200 path_start
= &path
[2];
206 if (strncmp(media_dirname
, path_start
, media_dirname_len
) == 0
209 path_start
[media_dirname_len
] == '\0'
211 path_start
[media_dirname_len
] == '/'
218 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
219 ret
== True
? "True" : "False"));
224 * Returns True if the file or directory referenced by the path is below
225 * the AVID_MEDIAFILES_DIRNAME or OMFI_MEDIAFILES_DIRNAME directory
226 * The AVID_MEDIAFILES_DIRNAME and OMFI_MEDIAFILES_DIRNAME are assumed to
227 * be in the root directory, which is generally a safe assumption
228 * in the fixed-path world of Avid.
230 static bool is_in_media_files(const char* path
)
234 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
237 starts_with_media_dir(AVID_MEDIAFILES_DIRNAME
,
238 AVID_MEDIAFILES_DIRNAME_LEN
, path
)
240 starts_with_media_dir(OMFI_MEDIAFILES_DIRNAME
,
241 OMFI_MEDIAFILES_DIRNAME_LEN
, path
)
246 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
247 ret
== True
? "True" : "False"));
252 * Returns depth of path under media directory. Deals with the
253 * occasional ..../. and ..../.. paths that get passed to stat.
255 * Assumes is_in_media_files has already been called and has returned
256 * true for the path; if it hasn't, this function will likely crash
259 * Not foolproof; something like "Avid MediaFiles/MXF/../foo/1"
260 * would fool it. Haven't seen paths like that getting to the
261 * stat function yet, so ignoring that possibility for now.
263 static int depth_from_media_dir(const char* media_dirname
,
264 size_t media_dirname_len
, const char* path
)
266 int transition_count
= 0;
267 const char *path_start
;
270 DEBUG(MH_INFO_DEBUG
, ("Entering with media_dirname '%s' "
271 "path '%s'\n", media_dirname
, path
));
273 /* Sometimes Samba gives us "./OMFI MediaFiles". */
274 if (strncmp(path
, "./", 2) == 0)
276 path_start
= &path
[2];
282 if (path_start
[media_dirname_len
] == '\0')
287 pathPtr
= &path_start
[media_dirname_len
+ 1];
291 if (*pathPtr
== '\0' || *pathPtr
== '/')
294 *(pathPtr
- 1) == '.'
296 *(pathPtr
- 2) == '.'
298 *(pathPtr
- 3) == '/'
306 *(pathPtr
- 1) == '/'
309 *(pathPtr
- 1) == '.'
311 *(pathPtr
- 2) == '/'
319 if (*pathPtr
== '\0')
326 DEBUG(MH_INFO_DEBUG
, ("Leaving with transition_count '%i'\n",
329 return transition_count
;
332 /* Identifies MDB and PMR files at end of path. */
333 static bool is_avid_database(
336 const char *avid_db_filename
,
337 const size_t avid_db_filename_len
)
341 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s', "
342 "avid_db_filename '%s', "
344 "avid_db_filename_len '%i'\n",
345 path
, avid_db_filename
,
346 (int)path_len
, (int)avid_db_filename_len
));
349 path_len
> avid_db_filename_len
351 strcmp(&path
[path_len
- avid_db_filename_len
],
352 avid_db_filename
) == 0
355 path
[path_len
- avid_db_filename_len
- 1] == '/'
357 (path_len
> avid_db_filename_len
358 + APPLE_DOUBLE_PREFIX_LEN
360 path
[path_len
- avid_db_filename_len
361 - APPLE_DOUBLE_PREFIX_LEN
- 1] == '/'
363 is_apple_double(&path
[path_len
364 - avid_db_filename_len
365 - APPLE_DOUBLE_PREFIX_LEN
]))
371 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
372 ret
== True
? "True" : "False"));
377 /* Add client suffix to paths to MDB_FILENAME, PMR_FILENAME and
378 * CREATING_SUBDIRNAME.
380 * Caller must free newPath.
383 * Failure: set errno, newPath NULL, return -1
385 static int alloc_get_client_path(vfs_handle_struct
*handle
,
390 /* replace /CREATING_DIRNAME/ or /._CREATING_DIRNAME/
391 * directory in path - potentially in middle of path
392 * - with suffixed name.
396 size_t intermPathLen
;
398 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
400 *newPath
= talloc_strdup(ctx
, path
);
401 if (*newPath
== NULL
)
403 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_path ENOMEM #1\n"));
408 DEBUG(MH_INFO_DEBUG
, ("newPath #1 %s\n", *newPath
));
410 (pathPtr
= strstr(path
, CREATING_DIRNAME
)) != NULL
413 *(pathPtr
+ CREATING_DIRNAME_LEN
) == '\0'
415 *(pathPtr
+ CREATING_DIRNAME_LEN
) == '/'
421 *(pathPtr
- 1) == '/')
423 (pathPtr
- path
> APPLE_DOUBLE_PREFIX_LEN
425 *(pathPtr
- APPLE_DOUBLE_PREFIX_LEN
- 1) == '/'
427 is_apple_double(pathPtr
- APPLE_DOUBLE_PREFIX_LEN
))
431 /* Insert client suffix into path. */
432 (*newPath
)[pathPtr
- path
+ CREATING_DIRNAME_LEN
] = '\0';
433 DEBUG(MH_INFO_DEBUG
, ("newPath #2 %s\n", *newPath
));
435 if ((status
= alloc_append_client_suffix(handle
, newPath
)))
440 DEBUG(MH_INFO_DEBUG
, ("newPath #3 %s\n", *newPath
));
441 *newPath
= talloc_strdup_append(*newPath
,
442 pathPtr
+ CREATING_DIRNAME_LEN
);
443 if (*newPath
== NULL
)
445 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_path "
451 DEBUG(MH_INFO_DEBUG
, ("newPath #4 %s\n", *newPath
));
454 /* replace /MDB_FILENAME or /PMR_FILENAME or /._MDB_FILENAME
455 * or /._PMR_FILENAME at newPath end with suffixed name.
457 intermPathLen
= strlen(*newPath
);
459 is_avid_database(*newPath
, intermPathLen
,
460 MDB_FILENAME
, MDB_FILENAME_LEN
)
462 is_avid_database(*newPath
, intermPathLen
,
463 PMR_FILENAME
, PMR_FILENAME_LEN
)
466 DEBUG(MH_INFO_DEBUG
, ("newPath #5 %s\n", *newPath
));
467 if ((status
= alloc_append_client_suffix(handle
, newPath
)))
471 DEBUG(MH_INFO_DEBUG
, ("newPath #6 %s\n", *newPath
));
474 /* newPath must be freed in caller. */
475 DEBUG(MH_INFO_DEBUG
, ("Leaving with *newPath '%s'\n", *newPath
));
481 * Failure: set errno, return -1
483 static int alloc_get_client_smb_fname(struct vfs_handle_struct
*handle
,
485 const struct smb_filename
*smb_fname
,
486 struct smb_filename
**clientFname
)
490 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
491 smb_fname
->base_name
));
493 *clientFname
= cp_smb_filename(ctx
, smb_fname
);
494 if ((*clientFname
) == NULL
) {
495 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_smb_fname "
501 if ((status
= alloc_get_client_path(handle
, ctx
,
502 smb_fname
->base_name
,
503 &(*clientFname
)->base_name
)))
507 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*clientFname)->base_name "
508 "'%s'\n", (*clientFname
)->base_name
));
516 * Failure: set errno, return -1
518 static int alloc_set_client_dirinfo_path(struct vfs_handle_struct
*handle
,
521 const char *avid_db_filename
)
525 DEBUG(MH_INFO_DEBUG
, ("Entering with avid_db_filename '%s'\n",
528 if ((*path
= talloc_strdup(ctx
, avid_db_filename
)) == NULL
)
530 DEBUG(MH_ERR_DEBUG
, ("alloc_set_client_dirinfo_path "
536 if ((status
= alloc_append_client_suffix(handle
, path
)))
540 DEBUG(MH_INFO_DEBUG
, ("Leaving with *path '%s'\n", *path
));
546 * Replace mtime on clientFname with mtime from client-suffixed
547 * equivalent, if it exists.
550 * Failure: set errno, return -1
552 static int set_fake_mtime(vfs_handle_struct
*handle
,
554 struct smb_filename
**clientFname
,
555 int (*statFn
)(const char *, SMB_STRUCT_STAT
*, bool))
559 SMB_STRUCT_STAT fakeStat
;
562 DEBUG(MH_INFO_DEBUG
, ("Entering with (*clientFname)->base_name "
563 "'%s', (*clientFname)->st.st_ex_mtime %s",
564 (*clientFname
)->base_name
,
565 ctime(&((*clientFname
)->st
.st_ex_mtime
.tv_sec
))));
568 depth_from_media_dir(AVID_MXF_DIRNAME
,
569 AVID_MXF_DIRNAME_LEN
,
570 (*clientFname
)->base_name
)
573 depth_from_media_dir(OMFI_MEDIAFILES_DIRNAME
,
574 OMFI_MEDIAFILES_DIRNAME_LEN
,
575 (*clientFname
)->base_name
)
582 copy_len
= strlen((*clientFname
)->base_name
);
584 /* Hack to deal with occasional "Avid MediaFiles/MXF/1/." paths.
585 * We know we're under a media dir, so paths are at least 2 chars
588 if ((*clientFname
)->base_name
[copy_len
- 1] == '.' &&
589 (*clientFname
)->base_name
[copy_len
- 2] == '/')
594 if (((statPath
= talloc_strndup(ctx
,
595 (*clientFname
)->base_name
, copy_len
)) == NULL
))
601 if ((status
= alloc_append_client_suffix(handle
, &statPath
)))
606 DEBUG(MH_INFO_DEBUG
, ("Fake stat'ing '%s'\n", statPath
));
607 if (statFn(statPath
, &fakeStat
,
608 lp_fake_directory_create_times(SNUM(handle
->conn
))))
610 /* This can fail for legitimate reasons - i.e. the
611 * fakeStat directory doesn't exist, which is okay
612 * - so we don't set status. But if it does fail,
613 * we need to skip over the mtime assignment.
618 DEBUG(MH_INFO_DEBUG
, ("Setting fake mtime from '%s'\n", statPath
));
619 (*clientFname
)->st
.st_ex_mtime
= fakeStat
.st_ex_mtime
;
621 TALLOC_FREE(statPath
);
623 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*clientFname)->base_name "
624 "'%s', (*clientFname)->st.st_ex_mtime %s",
625 (*clientFname
)->base_name
,
626 ctime(&((*clientFname
)->st
.st_ex_mtime
.tv_sec
))));
632 * Failure: set errno, return -1
634 static int mh_statvfs(struct vfs_handle_struct
*handle
,
635 const struct smb_filename
*smb_fname
,
636 struct vfs_statvfs_struct
*statbuf
)
639 struct smb_filename
*clientFname
= NULL
;
641 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n",
642 smb_fname
->base_name
));
644 if (!is_in_media_files(smb_fname
->base_name
))
646 status
= SMB_VFS_NEXT_STATVFS(handle
, smb_fname
, statbuf
);
650 status
= alloc_get_client_smb_fname(handle
,
658 status
= SMB_VFS_NEXT_STATVFS(handle
, clientFname
, statbuf
);
660 TALLOC_FREE(clientFname
);
662 DEBUG(MH_INFO_DEBUG
, ("Leaving with path '%s'\n",
663 smb_fname
->base_name
));
667 static int alloc_set_client_dirinfo(vfs_handle_struct
*handle
,
669 struct mh_dirinfo_struct
**dirInfo
)
675 DEBUG(MH_INFO_DEBUG
, ("Entering with fname '%s'\n", fname
));
677 *dirInfo
= talloc(NULL
, struct mh_dirinfo_struct
);
678 if (*dirInfo
== NULL
)
683 (*dirInfo
)->dirpath
= talloc_strdup(*dirInfo
, fname
);
684 if ((*dirInfo
)->dirpath
== NULL
)
689 if (!is_in_media_files(fname
))
691 (*dirInfo
)->clientPath
= NULL
;
692 (*dirInfo
)->clientMDBFilename
= NULL
;
693 (*dirInfo
)->clientPMRFilename
= NULL
;
694 (*dirInfo
)->clientCreatingDirname
= NULL
;
695 (*dirInfo
)->isInMediaFiles
= False
;
699 (*dirInfo
)->isInMediaFiles
= True
;
701 if (alloc_set_client_dirinfo_path(handle
,
703 &((*dirInfo
)->clientMDBFilename
),
709 if (alloc_set_client_dirinfo_path(handle
,
711 &((*dirInfo
)->clientPMRFilename
),
717 if (alloc_set_client_dirinfo_path(handle
,
719 &((*dirInfo
)->clientCreatingDirname
),
728 if (alloc_get_client_path(handle
, ctx
,
735 (*dirInfo
)->clientPath
= talloc_strdup(*dirInfo
, clientPath
);
736 if ((*dirInfo
)->clientPath
== NULL
)
741 TALLOC_FREE(clientPath
);
744 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*dirInfo)->dirpath '%s', "
745 "(*dirInfo)->clientPath '%s'\n",
747 (*dirInfo
)->clientPath
));
751 DEBUG(MH_ERR_DEBUG
, ("Failing with fname '%s'\n", fname
));
752 TALLOC_FREE(*dirInfo
);
758 static DIR *mh_fdopendir(vfs_handle_struct
*handle
,
763 struct mh_dirinfo_struct
*dirInfo
= NULL
;
766 DEBUG(MH_INFO_DEBUG
, ("Entering with fsp->fsp_name->base_name '%s'\n",
767 fsp
->fsp_name
->base_name
));
769 dirstream
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
775 if (alloc_set_client_dirinfo(handle
, fsp
->fsp_name
->base_name
,
781 dirInfo
->dirstream
= dirstream
;
783 if (! dirInfo
->isInMediaFiles
) {
787 if (set_fake_mtime(handle
, fsp
, &(fsp
->fsp_name
), sys_stat
))
793 DEBUG(MH_INFO_DEBUG
, ("Leaving with dirInfo->dirpath '%s', "
794 "dirInfo->clientPath '%s', "
795 "fsp->fsp_name->st.st_ex_mtime %s",
798 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
799 /* Success is freed in closedir. */
800 return (DIR *) dirInfo
;
802 /* Failure is freed here. */
803 DEBUG(MH_ERR_DEBUG
, ("Failing with fsp->fsp_name->base_name '%s'\n",
804 fsp
->fsp_name
->base_name
));
805 TALLOC_FREE(dirInfo
);
810 * skip MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
811 * directory, skip other client's suffixed MDB_FILENAME and PMR_FILENAME
812 * filenames and CREATING_DIRNAME directory, replace this client's
813 * suffixed MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
814 * directory with non suffixed.
816 * Success: return dirent
817 * End of data: return NULL
818 * Failure: set errno, return NULL
820 static struct dirent
*
821 mh_readdir(vfs_handle_struct
*handle
, struct files_struct
*dirfsp
, DIR *dirp
)
823 mh_dirinfo_struct
* dirInfo
= (mh_dirinfo_struct
*)dirp
;
824 struct dirent
*d
= NULL
;
827 DEBUG(MH_INFO_DEBUG
, ("Entering mh_readdir\n"));
829 DEBUG(MH_INFO_DEBUG
, ("dirInfo->dirpath '%s', "
830 "dirInfo->clientPath '%s', "
831 "dirInfo->isInMediaFiles '%s', "
832 "dirInfo->clientMDBFilename '%s', "
833 "dirInfo->clientPMRFilename '%s', "
834 "dirInfo->clientCreatingDirname '%s'\n",
837 dirInfo
->isInMediaFiles
? "True" : "False",
838 dirInfo
->clientMDBFilename
,
839 dirInfo
->clientPMRFilename
,
840 dirInfo
->clientCreatingDirname
));
842 if (! dirInfo
->isInMediaFiles
)
844 d
= SMB_VFS_NEXT_READDIR(handle
, dirfsp
, dirInfo
->dirstream
);
854 d
= SMB_VFS_NEXT_READDIR(handle
, dirfsp
, dirInfo
->dirstream
);
861 /* ignore apple double prefix for logic below */
862 if (is_apple_double(d
->d_name
))
864 dname
= &d
->d_name
[APPLE_DOUBLE_PREFIX_LEN
];
865 isAppleDouble
= True
;
870 isAppleDouble
= False
;
873 /* skip Avid-special files with no client suffix */
875 strcmp(dname
, MDB_FILENAME
) == 0
877 strcmp(dname
, PMR_FILENAME
) == 0
879 strcmp(dname
, CREATING_DIRNAME
) == 0
884 /* chop client suffix off this client's suffixed files */
885 else if (strcmp(dname
, dirInfo
->clientMDBFilename
) == 0)
889 d
->d_name
[MDB_FILENAME_LEN
890 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
894 d
->d_name
[MDB_FILENAME_LEN
] = '\0';
897 else if (strcmp(dname
, dirInfo
->clientPMRFilename
) == 0)
901 d
->d_name
[PMR_FILENAME_LEN
902 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
906 d
->d_name
[PMR_FILENAME_LEN
] = '\0';
909 else if (strcmp(dname
, dirInfo
->clientCreatingDirname
)
914 d
->d_name
[CREATING_DIRNAME_LEN
915 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
919 d
->d_name
[CREATING_DIRNAME_LEN
] = '\0';
923 * Anything that starts as an Avid-special file
924 * that's made it this far should be skipped. This
925 * is different from the original behaviour, which
926 * only skipped other client's suffixed files.
929 strncmp(MDB_FILENAME
, dname
,
930 MDB_FILENAME_LEN
) == 0
932 strncmp(PMR_FILENAME
, dname
,
933 PMR_FILENAME_LEN
) == 0
935 strncmp(CREATING_DIRNAME
, dname
,
936 CREATING_DIRNAME_LEN
) == 0
945 DEBUG(MH_INFO_DEBUG
, ("Leaving mh_readdir\n"));
950 * Success: no success result defined.
951 * Failure: no failure result defined.
953 static void mh_rewinddir(vfs_handle_struct
*handle
,
956 DEBUG(MH_INFO_DEBUG
, ("Entering and leaving mh_rewinddir\n"));
957 SMB_VFS_NEXT_REWINDDIR(handle
,
958 ((mh_dirinfo_struct
*)dirp
)->dirstream
);
963 * Failure: set errno, return -1
965 static int mh_mkdirat(vfs_handle_struct
*handle
,
966 struct files_struct
*dirfsp
,
967 const struct smb_filename
*smb_fname
,
971 struct smb_filename
*clientFname
= NULL
;
972 const char *path
= smb_fname
->base_name
;
973 struct smb_filename
*full_fname
= NULL
;
975 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
977 if (!is_in_media_files(path
)) {
978 status
= SMB_VFS_NEXT_MKDIRAT(handle
,
985 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
988 if (full_fname
== NULL
) {
992 status
= alloc_get_client_smb_fname(handle
,
1000 status
= SMB_VFS_NEXT_MKDIRAT(handle
,
1001 handle
->conn
->cwd_fsp
,
1005 TALLOC_FREE(full_fname
);
1006 TALLOC_FREE(clientFname
);
1008 DEBUG(MH_INFO_DEBUG
, ("Leaving with path '%s'\n", path
));
1014 * Failure: set errno, return -1
1016 static int mh_closedir(vfs_handle_struct
*handle
,
1019 DIR *realdirp
= ((mh_dirinfo_struct
*)dirp
)->dirstream
;
1021 DEBUG(MH_INFO_DEBUG
, ("Entering mh_closedir\n"));
1022 // Will this talloc_free destroy realdirp?
1025 DEBUG(MH_INFO_DEBUG
, ("Leaving mh_closedir\n"));
1026 return SMB_VFS_NEXT_CLOSEDIR(handle
, realdirp
);
1030 * Success: return non-negative file descriptor
1031 * Failure: set errno, return -1
1033 static int mh_openat(struct vfs_handle_struct
*handle
,
1034 const struct files_struct
*dirfsp
,
1035 const struct smb_filename
*smb_fname
,
1037 const struct vfs_open_how
*how
)
1040 struct smb_filename
*clientFname
;
1043 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1044 smb_fname
->base_name
));
1046 if (!is_in_media_files(smb_fname
->base_name
)) {
1047 ret
= SMB_VFS_NEXT_OPENAT(handle
,
1058 if (alloc_get_client_smb_fname(handle
, ctx
, smb_fname
, &clientFname
)) {
1064 * What about fsp->fsp_name? We also have to get correct stat info into
1065 * fsp and smb_fname for DB files, don't we?
1068 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s' "
1069 "smb_fname->st.st_ex_mtime %s"
1070 " fsp->fsp_name->st.st_ex_mtime %s",
1071 smb_fname
->base_name
,
1072 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
1073 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
1075 ret
= SMB_VFS_NEXT_OPENAT(handle
, dirfsp
, clientFname
, fsp
, how
);
1077 TALLOC_FREE(clientFname
);
1079 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s'\n",
1080 smb_fname
->base_name
));
1085 * Success: return non-negative file descriptor
1086 * Failure: set errno, return -1
1088 static NTSTATUS
mh_create_file(vfs_handle_struct
*handle
,
1089 struct smb_request
*req
,
1090 struct files_struct
*dirfsp
,
1091 struct smb_filename
*smb_fname
,
1092 uint32_t access_mask
,
1093 uint32_t share_access
,
1094 uint32_t create_disposition
,
1095 uint32_t create_options
,
1096 uint32_t file_attributes
,
1097 uint32_t oplock_request
,
1098 const struct smb2_lease
*lease
,
1099 uint64_t allocation_size
,
1100 uint32_t private_flags
,
1101 struct security_descriptor
*sd
,
1102 struct ea_list
*ea_list
,
1103 files_struct
**result_fsp
,
1105 const struct smb2_create_blobs
*in_context_blobs
,
1106 struct smb2_create_blobs
*out_context_blobs
)
1109 struct smb_filename
*clientFname
;
1113 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1114 smb_fname
->base_name
));
1115 if (!is_in_media_files(smb_fname
->base_name
))
1117 status
= SMB_VFS_NEXT_CREATE_FILE(
1143 if (alloc_get_client_smb_fname(handle
, ctx
,
1147 status
= map_nt_error_from_unix(errno
);
1151 /* This only creates files, so we don't have to worry about
1152 * our fake directory stat'ing here.
1154 // But we still need to route stat calls for DB files
1156 status
= SMB_VFS_NEXT_CREATE_FILE(
1177 TALLOC_FREE(clientFname
);
1179 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s'"
1180 "smb_fname->st.st_ex_mtime %s"
1181 " fsp->fsp_name->st.st_ex_mtime %s",
1182 smb_fname
->base_name
,
1183 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
1184 (*result_fsp
) && VALID_STAT((*result_fsp
)->fsp_name
->st
) ?
1185 ctime(&((*result_fsp
)->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
1192 * Failure: set errno, return -1
1194 static int mh_renameat(vfs_handle_struct
*handle
,
1195 files_struct
*srcfsp
,
1196 const struct smb_filename
*smb_fname_src
,
1197 files_struct
*dstfsp
,
1198 const struct smb_filename
*smb_fname_dst
,
1199 const struct vfs_rename_how
*how
)
1202 struct smb_filename
*full_fname_src
= NULL
;
1203 struct smb_filename
*full_fname_dst
= NULL
;
1204 struct smb_filename
*srcClientFname
= NULL
;
1205 struct smb_filename
*dstClientFname
= NULL
;
1207 DEBUG(MH_INFO_DEBUG
, ("Entering with "
1208 "smb_fname_src->base_name '%s', "
1209 "smb_fname_dst->base_name '%s'\n",
1210 smb_fname_src
->base_name
,
1211 smb_fname_dst
->base_name
));
1213 if (!is_in_media_files(smb_fname_src
->base_name
)
1215 !is_in_media_files(smb_fname_dst
->base_name
))
1217 status
= SMB_VFS_NEXT_RENAMEAT(handle
,
1226 full_fname_src
= full_path_from_dirfsp_atname(talloc_tos(),
1229 if (full_fname_src
== NULL
) {
1233 full_fname_dst
= full_path_from_dirfsp_atname(talloc_tos(),
1236 if (full_fname_dst
== NULL
) {
1241 if ((status
= alloc_get_client_smb_fname(handle
,
1249 if ((status
= alloc_get_client_smb_fname(handle
,
1257 status
= SMB_VFS_NEXT_RENAMEAT(handle
,
1258 srcfsp
->conn
->cwd_fsp
,
1260 dstfsp
->conn
->cwd_fsp
,
1264 TALLOC_FREE(full_fname_src
);
1265 TALLOC_FREE(full_fname_dst
);
1266 TALLOC_FREE(dstClientFname
);
1267 TALLOC_FREE(srcClientFname
);
1269 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname_src->base_name '%s',"
1270 " smb_fname_dst->base_name '%s'\n",
1271 smb_fname_src
->base_name
,
1272 smb_fname_dst
->base_name
));
1278 * Failure: set errno, return -1
1280 static int mh_stat(vfs_handle_struct
*handle
,
1281 struct smb_filename
*smb_fname
)
1284 struct smb_filename
*clientFname
;
1288 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1289 smb_fname
->base_name
));
1291 if (!is_in_media_files(smb_fname
->base_name
))
1293 status
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1300 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1306 DEBUG(MH_INFO_DEBUG
, ("Stat'ing clientFname->base_name '%s'\n",
1307 clientFname
->base_name
));
1308 if ((status
= SMB_VFS_NEXT_STAT(handle
, clientFname
)))
1312 if ((status
= set_fake_mtime(handle
, ctx
, &clientFname
, sys_stat
)))
1317 /* Unlike functions with const smb_filename, we have to
1318 * modify smb_fname itself to pass our info back up.
1320 DEBUG(MH_INFO_DEBUG
, ("Setting smb_fname '%s' stat "
1321 "from clientFname '%s'\n",
1322 smb_fname
->base_name
,
1323 clientFname
->base_name
));
1324 smb_fname
->st
= clientFname
->st
;
1326 TALLOC_FREE(clientFname
);
1328 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->st.st_ex_mtime %s",
1329 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1335 * Failure: set errno, return -1
1337 static int mh_lstat(vfs_handle_struct
*handle
,
1338 struct smb_filename
*smb_fname
)
1341 struct smb_filename
*clientFname
;
1344 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1345 smb_fname
->base_name
));
1347 if (!is_in_media_files(smb_fname
->base_name
))
1349 status
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1356 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1362 if ((status
= SMB_VFS_NEXT_LSTAT(handle
, clientFname
)))
1367 if ((status
= set_fake_mtime(handle
, ctx
, &clientFname
, sys_lstat
)))
1371 /* Unlike functions with const smb_filename, we have to
1372 * modify smb_fname itself to pass our info back up.
1374 smb_fname
->st
= clientFname
->st
;
1376 TALLOC_FREE(clientFname
);
1378 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->st.st_ex_mtime %s",
1379 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1385 * Failure: set errno, return -1
1387 static int mh_fstat(vfs_handle_struct
*handle
,
1388 files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1392 DEBUG(MH_INFO_DEBUG
, ("Entering with fsp->fsp_name->base_name "
1393 "'%s'\n", fsp_str_dbg(fsp
)));
1395 if ((status
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
)))
1400 if (fsp
->fsp_name
== NULL
1401 || !is_in_media_files(fsp
->fsp_name
->base_name
))
1406 if ((status
= mh_stat(handle
, fsp
->fsp_name
)))
1411 *sbuf
= fsp
->fsp_name
->st
;
1413 DEBUG(MH_INFO_DEBUG
, ("Leaving with fsp->fsp_name->st.st_ex_mtime "
1415 fsp
->fsp_name
!= NULL
?
1416 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
1423 * Failure: set errno, return -1
1425 static int mh_unlinkat(vfs_handle_struct
*handle
,
1426 struct files_struct
*dirfsp
,
1427 const struct smb_filename
*smb_fname
,
1431 struct smb_filename
*full_fname
= NULL
;
1432 struct smb_filename
*clientFname
;
1435 DEBUG(MH_INFO_DEBUG
, ("Entering mh_unlinkat\n"));
1436 if (!is_in_media_files(smb_fname
->base_name
)) {
1437 status
= SMB_VFS_NEXT_UNLINKAT(handle
,
1447 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1450 if (full_fname
== NULL
) {
1454 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1460 status
= SMB_VFS_NEXT_UNLINKAT(handle
,
1461 dirfsp
->conn
->cwd_fsp
,
1465 TALLOC_FREE(full_fname
);
1466 TALLOC_FREE(clientFname
);
1473 * Failure: set errno, return -1
1475 static int mh_lchown(vfs_handle_struct
*handle
,
1476 const struct smb_filename
*smb_fname
,
1481 struct smb_filename
*clientFname
= NULL
;
1483 DEBUG(MH_INFO_DEBUG
, ("Entering mh_lchown\n"));
1484 if (!is_in_media_files(smb_fname
->base_name
))
1486 status
= SMB_VFS_NEXT_LCHOWN(handle
, smb_fname
, uid
, gid
);
1490 status
= alloc_get_client_smb_fname(handle
,
1498 status
= SMB_VFS_NEXT_LCHOWN(handle
, clientFname
, uid
, gid
);
1500 TALLOC_FREE(clientFname
);
1507 * Failure: set errno, return -1
1509 static int mh_chdir(vfs_handle_struct
*handle
,
1510 const struct smb_filename
*smb_fname
)
1513 struct smb_filename
*clientFname
= NULL
;
1515 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chdir\n"));
1516 if (!is_in_media_files(smb_fname
->base_name
)) {
1517 status
= SMB_VFS_NEXT_CHDIR(handle
, smb_fname
);
1521 status
= alloc_get_client_smb_fname(handle
,
1529 status
= SMB_VFS_NEXT_CHDIR(handle
, clientFname
);
1531 TALLOC_FREE(clientFname
);
1538 * Failure: set errno, return -1
1541 static int mh_symlinkat(vfs_handle_struct
*handle
,
1542 const struct smb_filename
*link_contents
,
1543 struct files_struct
*dirfsp
,
1544 const struct smb_filename
*new_smb_fname
)
1547 struct smb_filename
*full_fname
= NULL
;
1548 struct smb_filename
*new_link_target
= NULL
;
1549 struct smb_filename
*newclientFname
= NULL
;
1551 DEBUG(MH_INFO_DEBUG
, ("Entering mh_symlinkat\n"));
1553 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1556 if (full_fname
== NULL
) {
1561 if (!is_in_media_files(link_contents
->base_name
) &&
1562 !is_in_media_files(full_fname
->base_name
)) {
1563 status
= SMB_VFS_NEXT_SYMLINKAT(handle
,
1570 if ((status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1572 &new_link_target
))) {
1575 if ((status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1577 &newclientFname
))) {
1581 status
= SMB_VFS_NEXT_SYMLINKAT(handle
,
1583 handle
->conn
->cwd_fsp
,
1586 TALLOC_FREE(new_link_target
);
1587 TALLOC_FREE(newclientFname
);
1589 TALLOC_FREE(full_fname
);
1594 * Success: return byte count
1595 * Failure: set errno, return -1
1597 static int mh_readlinkat(vfs_handle_struct
*handle
,
1598 const struct files_struct
*dirfsp
,
1599 const struct smb_filename
*smb_fname
,
1604 struct smb_filename
*full_fname
= NULL
;
1605 struct smb_filename
*clientFname
= NULL
;
1607 DEBUG(MH_INFO_DEBUG
, ("Entering mh_readlinkat\n"));
1608 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1611 if (full_fname
== NULL
) {
1616 if (!is_in_media_files(full_fname
->base_name
)) {
1617 status
= SMB_VFS_NEXT_READLINKAT(handle
,
1625 if ((status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1631 status
= SMB_VFS_NEXT_READLINKAT(handle
,
1632 handle
->conn
->cwd_fsp
,
1638 TALLOC_FREE(clientFname
);
1640 TALLOC_FREE(full_fname
);
1646 * Failure: set errno, return -1
1648 static int mh_linkat(vfs_handle_struct
*handle
,
1649 files_struct
*srcfsp
,
1650 const struct smb_filename
*old_smb_fname
,
1651 files_struct
*dstfsp
,
1652 const struct smb_filename
*new_smb_fname
,
1656 struct smb_filename
*old_full_fname
= NULL
;
1657 struct smb_filename
*oldclientFname
= NULL
;
1658 struct smb_filename
*new_full_fname
= NULL
;
1659 struct smb_filename
*newclientFname
= NULL
;
1661 DEBUG(MH_INFO_DEBUG
, ("Entering mh_linkat\n"));
1663 old_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1666 if (old_full_fname
== NULL
) {
1671 new_full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1674 if (new_full_fname
== NULL
) {
1679 if (!is_in_media_files(old_full_fname
->base_name
) &&
1680 !is_in_media_files(new_full_fname
->base_name
)) {
1681 TALLOC_FREE(old_full_fname
);
1682 TALLOC_FREE(new_full_fname
);
1684 status
= SMB_VFS_NEXT_LINKAT(handle
,
1693 if ((status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1695 &oldclientFname
))) {
1698 if ((status
= alloc_get_client_smb_fname(handle
, talloc_tos(),
1700 &newclientFname
))) {
1704 status
= SMB_VFS_NEXT_LINKAT(handle
,
1705 handle
->conn
->cwd_fsp
,
1707 handle
->conn
->cwd_fsp
,
1712 TALLOC_FREE(old_full_fname
);
1713 TALLOC_FREE(new_full_fname
);
1714 TALLOC_FREE(newclientFname
);
1715 TALLOC_FREE(oldclientFname
);
1722 * Failure: set errno, return -1
1724 static int mh_mknodat(vfs_handle_struct
*handle
,
1725 files_struct
*dirfsp
,
1726 const struct smb_filename
*smb_fname
,
1731 struct smb_filename
*full_fname
= NULL
;
1732 struct smb_filename
*clientFname
= NULL
;
1735 DEBUG(MH_INFO_DEBUG
, ("Entering mh_mknodat\n"));
1737 full_fname
= full_path_from_dirfsp_atname(talloc_tos(),
1740 if (full_fname
== NULL
) {
1745 if (!is_in_media_files(full_fname
->base_name
)) {
1746 status
= SMB_VFS_NEXT_MKNODAT(handle
,
1756 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1762 status
= SMB_VFS_NEXT_MKNODAT(handle
,
1763 handle
->conn
->cwd_fsp
,
1769 TALLOC_FREE(clientFname
);
1771 TALLOC_FREE(full_fname
);
1776 * Success: return path pointer
1777 * Failure: set errno, return NULL pointer
1779 static struct smb_filename
*mh_realpath(vfs_handle_struct
*handle
,
1781 const struct smb_filename
*smb_fname
)
1783 struct smb_filename
*result_fname
= NULL
;
1784 struct smb_filename
*clientFname
= NULL
;
1786 DEBUG(MH_INFO_DEBUG
, ("Entering mh_realpath\n"));
1787 if (!is_in_media_files(smb_fname
->base_name
)) {
1788 return SMB_VFS_NEXT_REALPATH(handle
, ctx
, smb_fname
);
1791 if (alloc_get_client_smb_fname(handle
, ctx
,
1793 &clientFname
) != 0) {
1797 result_fname
= SMB_VFS_NEXT_REALPATH(handle
, ctx
, clientFname
);
1799 TALLOC_FREE(clientFname
);
1800 return result_fname
;
1803 /* Ignoring get_real_filename function because the default
1804 * doesn't do anything.
1809 * Failure: set errno, return -1
1810 * In this case, "name" is an attr name.
1813 /* VFS operations structure */
1815 static struct vfs_fn_pointers vfs_mh_fns
= {
1816 /* Disk operations */
1818 .statvfs_fn
= mh_statvfs
,
1820 /* Directory operations */
1822 .fdopendir_fn
= mh_fdopendir
,
1823 .readdir_fn
= mh_readdir
,
1824 .rewind_dir_fn
= mh_rewinddir
,
1825 .mkdirat_fn
= mh_mkdirat
,
1826 .closedir_fn
= mh_closedir
,
1828 /* File operations */
1830 .openat_fn
= mh_openat
,
1831 .create_file_fn
= mh_create_file
,
1832 .renameat_fn
= mh_renameat
,
1834 .lstat_fn
= mh_lstat
,
1835 .fstat_fn
= mh_fstat
,
1836 .unlinkat_fn
= mh_unlinkat
,
1837 .lchown_fn
= mh_lchown
,
1838 .chdir_fn
= mh_chdir
,
1839 .symlinkat_fn
= mh_symlinkat
,
1840 .readlinkat_fn
= mh_readlinkat
,
1841 .linkat_fn
= mh_linkat
,
1842 .mknodat_fn
= mh_mknodat
,
1843 .realpath_fn
= mh_realpath
,
1845 /* EA operations. */
1846 .getxattrat_send_fn
= vfs_not_implemented_getxattrat_send
,
1847 .getxattrat_recv_fn
= vfs_not_implemented_getxattrat_recv
,
1849 /* aio operations */
1853 NTSTATUS
vfs_media_harmony_init(TALLOC_CTX
*ctx
)
1855 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
1856 "media_harmony", &vfs_mh_fns
);
1857 if (!NT_STATUS_IS_OK(ret
))
1862 vfs_mh_debug_level
= debug_add_class("media_harmony");
1864 if (vfs_mh_debug_level
== -1) {
1865 vfs_mh_debug_level
= DBGC_VFS
;
1866 DEBUG(1, ("media_harmony_init: Couldn't register custom "
1867 "debugging class.\n"));
1869 DEBUG(3, ("media_harmony_init: Debug class number of "
1870 "'media_harmony': %d\n",
1871 vfs_mh_debug_level
));