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* MH_MODULE_NAME
= "media_harmony";
97 static const char* MDB_FILENAME
= "msmMMOB.mdb";
98 static const size_t MDB_FILENAME_LEN
= 11;
99 static const char* PMR_FILENAME
= "msmFMID.pmr";
100 static const size_t PMR_FILENAME_LEN
= 11;
101 static const char* CREATING_DIRNAME
= "Creating";
102 static const size_t CREATING_DIRNAME_LEN
= 8;
103 static const char* AVID_MEDIAFILES_DIRNAME
= "Avid MediaFiles";
104 static const size_t AVID_MEDIAFILES_DIRNAME_LEN
= 15;
105 static const char* OMFI_MEDIAFILES_DIRNAME
= "OMFI MediaFiles";
106 static const size_t OMFI_MEDIAFILES_DIRNAME_LEN
= 15;
107 static const char* APPLE_DOUBLE_PREFIX
= "._";
108 static const size_t APPLE_DOUBLE_PREFIX_LEN
= 2;
109 static const char* AVID_MXF_DIRNAME
= "Avid MediaFiles/MXF";
110 static const size_t AVID_MXF_DIRNAME_LEN
= 19;
112 static int vfs_mh_debug_level
= DBGC_VFS
;
114 /* supplements the directory list stream */
115 typedef struct mh_dirinfo_struct
121 char *clientMDBFilename
;
122 char *clientPMRFilename
;
123 char *clientCreatingDirname
;
127 /* Add "_<ip address>_<user name>" suffix to path or filename.
130 * Failure: set errno, path NULL, return -1
132 static int alloc_append_client_suffix(vfs_handle_struct
*handle
,
138 DEBUG(MH_INFO_DEBUG
, ("Entering with *path '%s'\n", *path
));
140 raddr
= tsocket_address_inet_addr_string(
141 handle
->conn
->sconn
->remote_address
, talloc_tos());
149 /* talloc_asprintf_append uses talloc_realloc, which
150 * frees original 'path' memory so we don't have to.
152 *path
= talloc_asprintf_append(*path
, "_%s_%s",
154 handle
->conn
->session_info
->unix_info
->sanitized_username
);
157 DEBUG(MH_ERR_DEBUG
, ("alloc_append_client_suffix "
163 DEBUG(MH_INFO_DEBUG
, ("Leaving with *path '%s'\n", *path
));
170 /* Returns True if the file or directory begins with the appledouble
173 static bool is_apple_double(const char* fname
)
177 DEBUG(MH_INFO_DEBUG
, ("Entering with fname '%s'\n", fname
));
179 if (strncmp(APPLE_DOUBLE_PREFIX
, fname
, APPLE_DOUBLE_PREFIX_LEN
)
184 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
185 ret
== True
? "True" : "False"));
189 static bool starts_with_media_dir(const char* media_dirname
,
190 size_t media_dirname_len
, const char* path
)
195 DEBUG(MH_INFO_DEBUG
, ("Entering with media_dirname '%s' "
196 "path '%s'\n", media_dirname
, path
));
198 /* Sometimes Samba gives us "./OMFI MediaFiles". */
199 if (strncmp(path
, "./", 2) == 0)
201 path_start
= &path
[2];
207 if (strncmp(media_dirname
, path_start
, media_dirname_len
) == 0
210 path_start
[media_dirname_len
] == '\0'
212 path_start
[media_dirname_len
] == '/'
219 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
220 ret
== True
? "True" : "False"));
225 * Returns True if the file or directory referenced by the path is below
226 * the AVID_MEDIAFILES_DIRNAME or OMFI_MEDIAFILES_DIRNAME directory
227 * The AVID_MEDIAFILES_DIRNAME and OMFI_MEDIAFILES_DIRNAME are assumed to
228 * be in the root directory, which is generally a safe assumption
229 * in the fixed-path world of Avid.
231 static bool is_in_media_files(const char* path
)
235 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
238 starts_with_media_dir(AVID_MEDIAFILES_DIRNAME
,
239 AVID_MEDIAFILES_DIRNAME_LEN
, path
)
241 starts_with_media_dir(OMFI_MEDIAFILES_DIRNAME
,
242 OMFI_MEDIAFILES_DIRNAME_LEN
, path
)
247 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
248 ret
== True
? "True" : "False"));
253 * Returns depth of path under media directory. Deals with the
254 * occasional ..../. and ..../.. paths that get passed to stat.
256 * Assumes is_in_media_files has already been called and has returned
257 * true for the path; if it hasn't, this function will likely crash
260 * Not foolproof; something like "Avid MediaFiles/MXF/../foo/1"
261 * would fool it. Haven't seen paths like that getting to the
262 * stat function yet, so ignoring that possibility for now.
264 static int depth_from_media_dir(const char* media_dirname
,
265 size_t media_dirname_len
, const char* path
)
267 int transition_count
= 0;
271 DEBUG(MH_INFO_DEBUG
, ("Entering with media_dirname '%s' "
272 "path '%s'\n", media_dirname
, path
));
274 /* Sometimes Samba gives us "./OMFI MediaFiles". */
275 if (strncmp(path
, "./", 2) == 0)
277 path_start
= &path
[2];
283 if (path_start
[media_dirname_len
] == '\0')
288 pathPtr
= &path_start
[media_dirname_len
+ 1];
292 if (*pathPtr
== '\0' || *pathPtr
== '/')
295 *(pathPtr
- 1) == '.'
297 *(pathPtr
- 2) == '.'
299 *(pathPtr
- 3) == '/'
307 *(pathPtr
- 1) == '/'
310 *(pathPtr
- 1) == '.'
312 *(pathPtr
- 2) == '/'
320 if (*pathPtr
== '\0')
327 DEBUG(MH_INFO_DEBUG
, ("Leaving with transition_count '%i'\n",
330 return transition_count
;
333 /* Identifies MDB and PMR files at end of path. */
334 static bool is_avid_database(
337 const char *avid_db_filename
,
338 const size_t avid_db_filename_len
)
342 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s', "
343 "avid_db_filename '%s', "
345 "avid_db_filename_len '%i'\n",
346 path
, avid_db_filename
,
347 (int)path_len
, (int)avid_db_filename_len
));
350 path_len
> avid_db_filename_len
352 strcmp(&path
[path_len
- avid_db_filename_len
],
353 avid_db_filename
) == 0
356 path
[path_len
- avid_db_filename_len
- 1] == '/'
358 path_len
> avid_db_filename_len
359 + APPLE_DOUBLE_PREFIX_LEN
361 path
[path_len
- avid_db_filename_len
362 - APPLE_DOUBLE_PREFIX_LEN
- 1] == '/'
364 is_apple_double(&path
[path_len
365 - avid_db_filename_len
366 - APPLE_DOUBLE_PREFIX_LEN
])
372 DEBUG(MH_INFO_DEBUG
, ("Leaving with ret '%s'\n",
373 ret
== True
? "True" : "False"));
378 /* Add client suffix to paths to MDB_FILENAME, PMR_FILENAME and
379 * CREATING_SUBDIRNAME.
381 * Caller must free newPath.
384 * Failure: set errno, newPath NULL, return -1
386 static int alloc_get_client_path(vfs_handle_struct
*handle
,
391 /* replace /CREATING_DIRNAME/ or /._CREATING_DIRNAME/
392 * directory in path - potentially in middle of path
393 * - with suffixed name.
397 size_t intermPathLen
;
399 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
401 *newPath
= talloc_strdup(ctx
, path
);
402 if (*newPath
== NULL
)
404 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_path ENOMEM #1\n"));
409 DEBUG(MH_INFO_DEBUG
, ("newPath #1 %s\n", *newPath
));
411 (pathPtr
= strstr(path
, CREATING_DIRNAME
)) != NULL
414 *(pathPtr
+ CREATING_DIRNAME_LEN
) == '\0'
416 *(pathPtr
+ CREATING_DIRNAME_LEN
) == '/'
422 *(pathPtr
- 1) == '/'
424 pathPtr
- path
> APPLE_DOUBLE_PREFIX_LEN
426 *(pathPtr
- APPLE_DOUBLE_PREFIX_LEN
- 1) == '/'
428 is_apple_double(pathPtr
- APPLE_DOUBLE_PREFIX_LEN
)
432 /* Insert client suffix into path. */
433 (*newPath
)[pathPtr
- path
+ CREATING_DIRNAME_LEN
] = '\0';
434 DEBUG(MH_INFO_DEBUG
, ("newPath #2 %s\n", *newPath
));
436 if ((status
= alloc_append_client_suffix(handle
, newPath
)))
441 DEBUG(MH_INFO_DEBUG
, ("newPath #3 %s\n", *newPath
));
442 *newPath
= talloc_strdup_append(*newPath
,
443 pathPtr
+ CREATING_DIRNAME_LEN
);
444 if (*newPath
== NULL
)
446 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_path "
452 DEBUG(MH_INFO_DEBUG
, ("newPath #4 %s\n", *newPath
));
455 /* replace /MDB_FILENAME or /PMR_FILENAME or /._MDB_FILENAME
456 * or /._PMR_FILENAME at newPath end with suffixed name.
458 intermPathLen
= strlen(*newPath
);
460 is_avid_database(*newPath
, intermPathLen
,
461 MDB_FILENAME
, MDB_FILENAME_LEN
)
463 is_avid_database(*newPath
, intermPathLen
,
464 PMR_FILENAME
, PMR_FILENAME_LEN
)
467 DEBUG(MH_INFO_DEBUG
, ("newPath #5 %s\n", *newPath
));
468 if ((status
= alloc_append_client_suffix(handle
, newPath
)))
472 DEBUG(MH_INFO_DEBUG
, ("newPath #6 %s\n", *newPath
));
475 /* newPath must be freed in caller. */
476 DEBUG(MH_INFO_DEBUG
, ("Leaving with *newPath '%s'\n", *newPath
));
482 * Failure: set errno, return -1
484 static int alloc_get_client_smb_fname(struct vfs_handle_struct
*handle
,
486 const struct smb_filename
*smb_fname
,
487 struct smb_filename
**clientFname
)
492 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
493 smb_fname
->base_name
));
495 copystatus
= copy_smb_filename(ctx
, smb_fname
, clientFname
);
496 if (!NT_STATUS_IS_OK(copystatus
))
498 DEBUG(MH_ERR_DEBUG
, ("alloc_get_client_smb_fname "
500 errno
= map_errno_from_nt_status(copystatus
);
504 if ((status
= alloc_get_client_path(handle
, ctx
,
505 smb_fname
->base_name
,
506 &(*clientFname
)->base_name
)))
510 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*clientFname)->base_name "
511 "'%s'\n", (*clientFname
)->base_name
));
519 * Failure: set errno, return -1
521 static int alloc_set_client_dirinfo_path(struct vfs_handle_struct
*handle
,
524 const char *avid_db_filename
)
528 DEBUG(MH_INFO_DEBUG
, ("Entering with avid_db_filename '%s'\n",
531 if ((*path
= talloc_strdup(ctx
, avid_db_filename
)) == NULL
)
533 DEBUG(MH_ERR_DEBUG
, ("alloc_set_client_dirinfo_path "
539 if ((status
= alloc_append_client_suffix(handle
, path
)))
543 DEBUG(MH_INFO_DEBUG
, ("Leaving with *path '%s'\n", *path
));
549 * Replace mtime on clientFname with mtime from client-suffixed
550 * equivalent, if it exists.
553 * Failure: set errno, return -1
555 static int set_fake_mtime(vfs_handle_struct
*handle
,
557 struct smb_filename
**clientFname
,
558 int (*statFn
)(const char *, SMB_STRUCT_STAT
*, bool))
562 SMB_STRUCT_STAT fakeStat
;
565 DEBUG(MH_INFO_DEBUG
, ("Entering with (*clientFname)->base_name "
566 "'%s', (*clientFname)->st.st_ex_mtime %s",
567 (*clientFname
)->base_name
,
568 ctime(&((*clientFname
)->st
.st_ex_mtime
.tv_sec
))));
571 depth_from_media_dir(AVID_MXF_DIRNAME
,
572 AVID_MXF_DIRNAME_LEN
,
573 (*clientFname
)->base_name
)
576 depth_from_media_dir(OMFI_MEDIAFILES_DIRNAME
,
577 OMFI_MEDIAFILES_DIRNAME_LEN
,
578 (*clientFname
)->base_name
)
585 copy_len
= strlen((*clientFname
)->base_name
);
587 /* Hack to deal with occasional "Avid MediaFiles/MXF/1/." paths.
588 * We know we're under a media dir, so paths are at least 2 chars
591 if ((*clientFname
)->base_name
[copy_len
- 1] == '.' &&
592 (*clientFname
)->base_name
[copy_len
- 2] == '/')
597 if (((statPath
= talloc_strndup(ctx
,
598 (*clientFname
)->base_name
, copy_len
)) == NULL
))
604 if ((status
= alloc_append_client_suffix(handle
, &statPath
)))
609 DEBUG(MH_INFO_DEBUG
, ("Fake stat'ing '%s'\n", statPath
));
610 if (statFn(statPath
, &fakeStat
,
611 lp_fake_dir_create_times(SNUM(handle
->conn
))))
613 /* This can fail for legitimate reasons - i.e. the
614 * fakeStat directory doesn't exist, which is okay
615 * - so we don't set status. But if it does fail,
616 * we need to skip over the mtime assignment.
621 DEBUG(MH_INFO_DEBUG
, ("Setting fake mtime from '%s'\n", statPath
));
622 (*clientFname
)->st
.st_ex_mtime
= fakeStat
.st_ex_mtime
;
624 TALLOC_FREE(statPath
);
626 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*clientFname)->base_name "
627 "'%s', (*clientFname)->st.st_ex_mtime %s",
628 (*clientFname
)->base_name
,
629 ctime(&((*clientFname
)->st
.st_ex_mtime
.tv_sec
))));
635 * Failure: set errno, return -1
637 static int mh_statvfs(struct vfs_handle_struct
*handle
,
639 struct vfs_statvfs_struct
*statbuf
)
645 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
647 if (!is_in_media_files(path
))
649 status
= SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
656 if ((status
= alloc_get_client_path(handle
, ctx
,
663 status
= SMB_VFS_NEXT_STATVFS(handle
, clientPath
, statbuf
);
665 TALLOC_FREE(clientPath
);
667 DEBUG(MH_INFO_DEBUG
, ("Leaving with path '%s'\n", path
));
671 static int alloc_set_client_dirinfo(vfs_handle_struct
*handle
,
673 struct mh_dirinfo_struct
**dirInfo
)
679 DEBUG(MH_INFO_DEBUG
, ("Entering with fname '%s'\n", fname
));
681 *dirInfo
= talloc(NULL
, struct mh_dirinfo_struct
);
682 if (*dirInfo
== NULL
)
687 (*dirInfo
)->dirpath
= talloc_strdup(*dirInfo
, fname
);
688 if ((*dirInfo
)->dirpath
== NULL
)
693 if (!is_in_media_files(fname
))
695 (*dirInfo
)->clientPath
= NULL
;
696 (*dirInfo
)->clientMDBFilename
= NULL
;
697 (*dirInfo
)->clientPMRFilename
= NULL
;
698 (*dirInfo
)->clientCreatingDirname
= NULL
;
699 (*dirInfo
)->isInMediaFiles
= False
;
703 (*dirInfo
)->isInMediaFiles
= True
;
705 if (alloc_set_client_dirinfo_path(handle
,
707 &((*dirInfo
)->clientMDBFilename
),
713 if (alloc_set_client_dirinfo_path(handle
,
715 &((*dirInfo
)->clientPMRFilename
),
721 if (alloc_set_client_dirinfo_path(handle
,
723 &((*dirInfo
)->clientCreatingDirname
),
732 if (alloc_get_client_path(handle
, ctx
,
739 (*dirInfo
)->clientPath
= talloc_strdup(*dirInfo
, clientPath
);
740 if ((*dirInfo
)->clientPath
== NULL
)
745 TALLOC_FREE(clientPath
);
748 DEBUG(MH_INFO_DEBUG
, ("Leaving with (*dirInfo)->dirpath '%s', "
749 "(*dirInfo)->clientPath '%s'\n",
751 (*dirInfo
)->clientPath
));
755 DEBUG(MH_ERR_DEBUG
, ("Failing with fname '%s'\n", fname
));
756 TALLOC_FREE(*dirInfo
);
762 /* Success: return a mh_dirinfo_struct cast as a DIR
763 * Failure: set errno, return NULL
765 static DIR *mh_opendir(vfs_handle_struct
*handle
,
770 struct mh_dirinfo_struct
*dirInfo
;
772 DEBUG(MH_INFO_DEBUG
, ("Entering with fname '%s'\n", fname
));
774 if (alloc_set_client_dirinfo(handle
, fname
, &dirInfo
))
779 if (!dirInfo
->isInMediaFiles
)
781 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(handle
,
784 dirInfo
->dirstream
= SMB_VFS_NEXT_OPENDIR(handle
,
785 dirInfo
->clientPath
, mask
, attr
);
788 if (dirInfo
->dirstream
== NULL
) {
793 /* Success is freed in closedir. */
794 DEBUG(MH_INFO_DEBUG
, ("Leaving with dirInfo->dirpath '%s', "
795 "dirInfo->clientPath '%s'\n",
797 dirInfo
->clientPath
));
798 return (DIR*)dirInfo
;
800 /* Failure is freed here. */
801 DEBUG(MH_ERR_DEBUG
, ("Failing with fname '%s'\n", fname
));
802 TALLOC_FREE(dirInfo
);
806 static DIR *mh_fdopendir(vfs_handle_struct
*handle
,
811 struct mh_dirinfo_struct
*dirInfo
;
814 DEBUG(MH_INFO_DEBUG
, ("Entering with fsp->fsp_name->base_name '%s'\n",
815 fsp
->fsp_name
->base_name
));
817 dirstream
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
823 if (alloc_set_client_dirinfo(handle
, fsp
->fsp_name
->base_name
,
829 dirInfo
->dirstream
= dirstream
;
831 if (! dirInfo
->isInMediaFiles
) {
835 if (set_fake_mtime(handle
, fsp
, &(fsp
->fsp_name
), sys_stat
))
841 DEBUG(MH_INFO_DEBUG
, ("Leaving with dirInfo->dirpath '%s', "
842 "dirInfo->clientPath '%s', "
843 "fsp->fsp_name->st.st_ex_mtime %s",
846 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
847 /* Success is freed in closedir. */
848 return (DIR *) dirInfo
;
850 /* Failure is freed here. */
851 DEBUG(MH_ERR_DEBUG
, ("Failing with fsp->fsp_name->base_name '%s'\n",
852 fsp
->fsp_name
->base_name
));
853 TALLOC_FREE(dirInfo
);
858 * skip MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
859 * directory, skip other client's suffixed MDB_FILENAME and PMR_FILENAME
860 * filenames and CREATING_DIRNAME directory, replace this client's
861 * suffixed MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
862 * directory with non suffixed.
864 * Success: return dirent
865 * End of data: return NULL
866 * Failure: set errno, return NULL
868 static struct dirent
*mh_readdir(vfs_handle_struct
*handle
,
870 SMB_STRUCT_STAT
*sbuf
)
872 mh_dirinfo_struct
* dirInfo
= (mh_dirinfo_struct
*)dirp
;
873 struct dirent
*d
= NULL
;
876 DEBUG(MH_INFO_DEBUG
, ("Entering mh_readdir\n"));
878 DEBUG(MH_INFO_DEBUG
, ("dirInfo->dirpath '%s', "
879 "dirInfo->clientPath '%s', "
880 "dirInfo->isInMediaFiles '%s', "
881 "dirInfo->clientMDBFilename '%s', "
882 "dirInfo->clientPMRFilename '%s', "
883 "dirInfo->clientCreatingDirname '%s'\n",
886 dirInfo
->isInMediaFiles
? "True" : "False",
887 dirInfo
->clientMDBFilename
,
888 dirInfo
->clientPMRFilename
,
889 dirInfo
->clientCreatingDirname
));
891 if (! dirInfo
->isInMediaFiles
)
893 d
= SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
903 d
= SMB_VFS_NEXT_READDIR(handle
, dirInfo
->dirstream
, sbuf
);
910 /* ignore apple double prefix for logic below */
911 if (is_apple_double(d
->d_name
))
913 dname
= &d
->d_name
[APPLE_DOUBLE_PREFIX_LEN
];
914 isAppleDouble
= True
;
919 isAppleDouble
= False
;
922 /* skip Avid-special files with no client suffix */
924 strcmp(dname
, MDB_FILENAME
) == 0
926 strcmp(dname
, PMR_FILENAME
) == 0
928 strcmp(dname
, CREATING_DIRNAME
) == 0
933 /* chop client suffix off this client's suffixed files */
934 else if (strcmp(dname
, dirInfo
->clientMDBFilename
) == 0)
938 d
->d_name
[MDB_FILENAME_LEN
939 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
943 d
->d_name
[MDB_FILENAME_LEN
] = '\0';
946 else if (strcmp(dname
, dirInfo
->clientPMRFilename
) == 0)
950 d
->d_name
[PMR_FILENAME_LEN
951 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
955 d
->d_name
[PMR_FILENAME_LEN
] = '\0';
958 else if (strcmp(dname
, dirInfo
->clientCreatingDirname
)
963 d
->d_name
[CREATING_DIRNAME_LEN
964 + APPLE_DOUBLE_PREFIX_LEN
] = '\0';
968 d
->d_name
[CREATING_DIRNAME_LEN
] = '\0';
972 * Anything that starts as an Avid-special file
973 * that's made it this far should be skipped. This
974 * is different from the original behaviour, which
975 * only skipped other client's suffixed files.
978 strncmp(MDB_FILENAME
, dname
,
979 MDB_FILENAME_LEN
) == 0
981 strncmp(PMR_FILENAME
, dname
,
982 PMR_FILENAME_LEN
) == 0
984 strncmp(CREATING_DIRNAME
, dname
,
985 CREATING_DIRNAME_LEN
) == 0
994 DEBUG(MH_INFO_DEBUG
, ("Leaving mh_readdir\n"));
999 * Success: no success result defined.
1000 * Failure: no failure result defined.
1002 static void mh_seekdir(vfs_handle_struct
*handle
,
1006 DEBUG(MH_INFO_DEBUG
, ("Entering and leaving mh_seekdir\n"));
1007 SMB_VFS_NEXT_SEEKDIR(handle
,
1008 ((mh_dirinfo_struct
*)dirp
)->dirstream
, offset
);
1012 * Success: return long
1013 * Failure: no failure result defined.
1015 static long mh_telldir(vfs_handle_struct
*handle
,
1018 DEBUG(MH_INFO_DEBUG
, ("Entering and leaving mh_telldir\n"));
1019 return SMB_VFS_NEXT_TELLDIR(handle
,
1020 ((mh_dirinfo_struct
*)dirp
)->dirstream
);
1024 * Success: no success result defined.
1025 * Failure: no failure result defined.
1027 static void mh_rewinddir(vfs_handle_struct
*handle
,
1030 DEBUG(MH_INFO_DEBUG
, ("Entering and leaving mh_rewinddir\n"));
1031 SMB_VFS_NEXT_REWINDDIR(handle
,
1032 ((mh_dirinfo_struct
*)dirp
)->dirstream
);
1037 * Failure: set errno, return -1
1039 static int mh_mkdir(vfs_handle_struct
*handle
,
1048 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
1050 if (!is_in_media_files(path
))
1052 status
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
1059 if ((status
= alloc_get_client_path(handle
, ctx
,
1066 status
= SMB_VFS_NEXT_MKDIR(handle
, clientPath
, mode
);
1068 TALLOC_FREE(clientPath
);
1070 DEBUG(MH_INFO_DEBUG
, ("Leaving with path '%s'\n", path
));
1076 * Failure: set errno, return -1
1078 static int mh_rmdir(vfs_handle_struct
*handle
,
1086 DEBUG(MH_INFO_DEBUG
, ("Entering with path '%s'\n", path
));
1088 if (!is_in_media_files(path
))
1090 status
= SMB_VFS_NEXT_RMDIR(handle
, path
);
1097 if ((status
= alloc_get_client_path(handle
, ctx
,
1104 status
= SMB_VFS_NEXT_RMDIR(handle
, clientPath
);
1106 TALLOC_FREE(clientPath
);
1108 DEBUG(MH_INFO_DEBUG
, ("Leaving with path '%s'\n", path
));
1114 * Failure: set errno, return -1
1116 static int mh_closedir(vfs_handle_struct
*handle
,
1119 DIR *realdirp
= ((mh_dirinfo_struct
*)dirp
)->dirstream
;
1121 DEBUG(MH_INFO_DEBUG
, ("Entering mh_closedir\n"));
1122 // Will this talloc_free destroy realdirp?
1125 DEBUG(MH_INFO_DEBUG
, ("Leaving mh_closedir\n"));
1126 return SMB_VFS_NEXT_CLOSEDIR(handle
, realdirp
);
1130 * Success: no success result defined.
1131 * Failure: no failure result defined.
1133 static void mh_init_search_op(vfs_handle_struct
*handle
,
1136 DEBUG(MH_INFO_DEBUG
, ("Entering and leaving mh_init_search_op\n"));
1137 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
,
1138 ((mh_dirinfo_struct
*)dirp
)->dirstream
);
1142 * Success: return non-negative file descriptor
1143 * Failure: set errno, return -1
1145 static int mh_open(vfs_handle_struct
*handle
,
1146 struct smb_filename
*smb_fname
,
1152 struct smb_filename
*clientFname
;
1156 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1157 smb_fname
->base_name
));
1159 if (!is_in_media_files(smb_fname
->base_name
))
1161 ret
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
,
1169 if(alloc_get_client_smb_fname(handle
, ctx
,
1177 // What about fsp->fsp_name?
1178 // We also have to get correct stat info into fsp and smb_fname
1179 // for DB files, don't we?
1181 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s' "
1182 "smb_fname->st.st_ex_mtime %s"
1183 " fsp->fsp_name->st.st_ex_mtime %s",
1184 smb_fname
->base_name
,
1185 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
1186 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
1188 ret
= SMB_VFS_NEXT_OPEN(handle
, clientFname
, fsp
, flags
, mode
);
1190 TALLOC_FREE(clientFname
);
1192 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s'\n",
1193 smb_fname
->base_name
));
1198 * Success: return non-negative file descriptor
1199 * Failure: set errno, return -1
1201 static NTSTATUS
mh_create_file(vfs_handle_struct
*handle
,
1202 struct smb_request
*req
,
1203 uint16_t root_dir_fid
,
1204 struct smb_filename
*smb_fname
,
1205 uint32_t access_mask
,
1206 uint32_t share_access
,
1207 uint32_t create_disposition
,
1208 uint32_t create_options
,
1209 uint32_t file_attributes
,
1210 uint32_t oplock_request
,
1211 uint64_t allocation_size
,
1212 uint32_t private_flags
,
1213 struct security_descriptor
*sd
,
1214 struct ea_list
*ea_list
,
1215 files_struct
**result_fsp
,
1219 struct smb_filename
*clientFname
;
1223 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1224 smb_fname
->base_name
));
1225 if (!is_in_media_files(smb_fname
->base_name
))
1227 status
= SMB_VFS_NEXT_CREATE_FILE(
1250 if (alloc_get_client_smb_fname(handle
, ctx
,
1254 status
= map_nt_error_from_unix(errno
);
1258 /* This only creates files, so we don't have to worry about
1259 * our fake directory stat'ing here.
1261 // But we still need to route stat calls for DB files
1263 status
= SMB_VFS_NEXT_CREATE_FILE(
1281 TALLOC_FREE(clientFname
);
1283 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->base_name '%s'"
1284 "smb_fname->st.st_ex_mtime %s"
1285 " fsp->fsp_name->st.st_ex_mtime %s",
1286 smb_fname
->base_name
,
1287 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
)),
1288 (*result_fsp
) && VALID_STAT((*result_fsp
)->fsp_name
->st
) ?
1289 ctime(&((*result_fsp
)->fsp_name
->st
.st_ex_mtime
.tv_sec
)) :
1296 * Failure: set errno, return -1
1298 static int mh_rename(vfs_handle_struct
*handle
,
1299 const struct smb_filename
*smb_fname_src
,
1300 const struct smb_filename
*smb_fname_dst
)
1303 struct smb_filename
*srcClientFname
;
1304 struct smb_filename
*dstClientFname
;
1308 DEBUG(MH_INFO_DEBUG
, ("Entering with "
1309 "smb_fname_src->base_name '%s', "
1310 "smb_fname_dst->base_name '%s'\n",
1311 smb_fname_src
->base_name
,
1312 smb_fname_dst
->base_name
));
1314 if (!is_in_media_files(smb_fname_src
->base_name
)
1316 !is_in_media_files(smb_fname_dst
->base_name
))
1318 status
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
,
1323 srcClientFname
= NULL
;
1324 dstClientFname
= NULL
;
1327 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1334 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1341 status
= SMB_VFS_NEXT_RENAME(handle
, srcClientFname
,
1344 TALLOC_FREE(dstClientFname
);
1345 TALLOC_FREE(srcClientFname
);
1347 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname_src->base_name '%s',"
1348 " smb_fname_dst->base_name '%s'\n",
1349 smb_fname_src
->base_name
,
1350 smb_fname_dst
->base_name
));
1356 * Failure: set errno, return -1
1358 static int mh_stat(vfs_handle_struct
*handle
,
1359 struct smb_filename
*smb_fname
)
1362 struct smb_filename
*clientFname
;
1366 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1367 smb_fname
->base_name
));
1369 if (!is_in_media_files(smb_fname
->base_name
))
1371 status
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1378 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1384 DEBUG(MH_INFO_DEBUG
, ("Stat'ing clientFname->base_name '%s'\n",
1385 clientFname
->base_name
));
1386 if ((status
= SMB_VFS_NEXT_STAT(handle
, clientFname
)))
1390 if ((status
= set_fake_mtime(handle
, ctx
, &clientFname
, sys_stat
)))
1395 /* Unlike functions with const smb_filename, we have to
1396 * modify smb_fname itself to pass our info back up.
1398 DEBUG(MH_INFO_DEBUG
, ("Setting smb_fname '%s' stat "
1399 "from clientFname '%s'\n",
1400 smb_fname
->base_name
,
1401 clientFname
->base_name
));
1402 smb_fname
->st
= clientFname
->st
;
1404 TALLOC_FREE(clientFname
);
1406 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->st.st_ex_mtime %s",
1407 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1413 * Failure: set errno, return -1
1415 static int mh_lstat(vfs_handle_struct
*handle
,
1416 struct smb_filename
*smb_fname
)
1419 struct smb_filename
*clientFname
;
1422 DEBUG(MH_INFO_DEBUG
, ("Entering with smb_fname->base_name '%s'\n",
1423 smb_fname
->base_name
));
1425 if (!is_in_media_files(smb_fname
->base_name
))
1427 status
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1434 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1440 if ((status
= SMB_VFS_NEXT_LSTAT(handle
, clientFname
)))
1445 if ((status
= set_fake_mtime(handle
, ctx
, &clientFname
, sys_lstat
)))
1449 /* Unlike functions with const smb_filename, we have to
1450 * modify smb_fname itself to pass our info back up.
1452 smb_fname
->st
= clientFname
->st
;
1454 TALLOC_FREE(clientFname
);
1456 DEBUG(MH_INFO_DEBUG
, ("Leaving with smb_fname->st.st_ex_mtime %s",
1457 ctime(&(smb_fname
->st
.st_ex_mtime
.tv_sec
))));
1463 * Failure: set errno, return -1
1465 static int mh_fstat(vfs_handle_struct
*handle
,
1466 files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1470 DEBUG(MH_INFO_DEBUG
, ("Entering with fsp->fsp_name->base_name "
1471 "'%s'\n", fsp_str_dbg(fsp
)));
1473 if ((status
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
)))
1478 if (fsp
->fsp_name
== NULL
1479 || !is_in_media_files(fsp
->fsp_name
->base_name
))
1484 if ((status
= mh_stat(handle
, fsp
->fsp_name
)))
1489 *sbuf
= fsp
->fsp_name
->st
;
1491 DEBUG(MH_INFO_DEBUG
, ("Leaving with fsp->fsp_name->st.st_ex_mtime "
1493 ctime(&(fsp
->fsp_name
->st
.st_ex_mtime
.tv_sec
))));
1499 * Failure: set errno, return -1
1501 static int mh_unlink(vfs_handle_struct
*handle
,
1502 const struct smb_filename
*smb_fname
)
1505 struct smb_filename
*clientFname
;
1508 DEBUG(MH_INFO_DEBUG
, ("Entering mh_unlink\n"));
1509 if (!is_in_media_files(smb_fname
->base_name
))
1511 status
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1518 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1525 status
= SMB_VFS_NEXT_UNLINK(handle
, clientFname
);
1527 TALLOC_FREE(clientFname
);
1534 * Failure: set errno, return -1
1536 static int mh_chmod(vfs_handle_struct
*handle
,
1544 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chmod\n"));
1545 if (!is_in_media_files(path
))
1547 status
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1554 if ((status
= alloc_get_client_path(handle
, ctx
,
1561 status
= SMB_VFS_NEXT_CHMOD(handle
, clientPath
, mode
);
1563 TALLOC_FREE(clientPath
);
1570 * Failure: set errno, return -1
1572 static int mh_chown(vfs_handle_struct
*handle
,
1581 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chown\n"));
1582 if (!is_in_media_files(path
))
1584 status
= SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1591 if ((status
= alloc_get_client_path(handle
, ctx
,
1598 status
= SMB_VFS_NEXT_CHOWN(handle
, clientPath
, uid
, gid
);
1600 TALLOC_FREE(clientPath
);
1607 * Failure: set errno, return -1
1609 static int mh_lchown(vfs_handle_struct
*handle
,
1618 DEBUG(MH_INFO_DEBUG
, ("Entering mh_lchown\n"));
1619 if (!is_in_media_files(path
))
1621 status
= SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1628 if ((status
= alloc_get_client_path(handle
, ctx
,
1635 status
= SMB_VFS_NEXT_LCHOWN(handle
, clientPath
, uid
, gid
);
1637 TALLOC_FREE(clientPath
);
1644 * Failure: set errno, return -1
1646 static int mh_chdir(vfs_handle_struct
*handle
,
1653 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chdir\n"));
1654 if (!is_in_media_files(path
))
1656 status
= SMB_VFS_NEXT_CHDIR(handle
, path
);
1663 if ((status
= alloc_get_client_path(handle
, ctx
,
1670 status
= SMB_VFS_NEXT_CHDIR(handle
, clientPath
);
1672 TALLOC_FREE(clientPath
);
1679 * Failure: set errno, return -1
1681 static int mh_ntimes(vfs_handle_struct
*handle
,
1682 const struct smb_filename
*smb_fname
,
1683 struct smb_file_time
*ft
)
1686 struct smb_filename
*clientFname
;
1690 DEBUG(MH_INFO_DEBUG
, ("Entering mh_ntimes\n"));
1691 if (!is_in_media_files(smb_fname
->base_name
))
1693 status
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1700 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
1707 status
= SMB_VFS_NEXT_NTIMES(handle
, clientFname
, ft
);
1709 TALLOC_FREE(clientFname
);
1716 * Failure: set errno, return -1
1718 static int mh_symlink(vfs_handle_struct
*handle
,
1719 const char *oldpath
,
1720 const char *newpath
)
1723 char *oldClientPath
;
1724 char *newClientPath
;
1727 DEBUG(MH_INFO_DEBUG
, ("Entering mh_symlink\n"));
1728 if (!is_in_media_files(oldpath
) && !is_in_media_files(newpath
))
1730 status
= SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1734 oldClientPath
= NULL
;
1735 newClientPath
= NULL
;
1738 if ((status
= alloc_get_client_path(handle
, ctx
,
1745 if ((status
= alloc_get_client_path(handle
, ctx
,
1752 status
= SMB_VFS_NEXT_SYMLINK(handle
,
1757 TALLOC_FREE(newClientPath
);
1758 TALLOC_FREE(oldClientPath
);
1764 * Success: return byte count
1765 * Failure: set errno, return -1
1767 static int mh_readlink(vfs_handle_struct
*handle
,
1776 DEBUG(MH_INFO_DEBUG
, ("Entering mh_readlink\n"));
1777 if (!is_in_media_files(path
))
1779 status
= SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1786 if ((status
= alloc_get_client_path(handle
, ctx
,
1793 status
= SMB_VFS_NEXT_READLINK(handle
, clientPath
, buf
, bufsiz
);
1795 TALLOC_FREE(clientPath
);
1802 * Failure: set errno, return -1
1804 static int mh_link(vfs_handle_struct
*handle
,
1805 const char *oldpath
,
1806 const char *newpath
)
1809 char *oldClientPath
;
1810 char *newClientPath
;
1813 DEBUG(MH_INFO_DEBUG
, ("Entering mh_link\n"));
1814 if (!is_in_media_files(oldpath
) && !is_in_media_files(newpath
))
1816 status
= SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1820 oldClientPath
= NULL
;
1821 newClientPath
= NULL
;
1824 if ((status
= alloc_get_client_path(handle
, ctx
,
1831 if ((status
= alloc_get_client_path(handle
, ctx
,
1838 status
= SMB_VFS_NEXT_LINK(handle
, oldClientPath
, newClientPath
);
1840 TALLOC_FREE(newClientPath
);
1841 TALLOC_FREE(oldClientPath
);
1848 * Failure: set errno, return -1
1850 static int mh_mknod(vfs_handle_struct
*handle
,
1851 const char *pathname
,
1859 DEBUG(MH_INFO_DEBUG
, ("Entering mh_mknod\n"));
1860 if (!is_in_media_files(pathname
))
1862 status
= SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1869 if ((status
= alloc_get_client_path(handle
, ctx
,
1876 status
= SMB_VFS_NEXT_MKNOD(handle
, clientPath
, mode
, dev
);
1878 TALLOC_FREE(clientPath
);
1884 * Success: return path pointer
1885 * Failure: set errno, return NULL pointer
1887 static char *mh_realpath(vfs_handle_struct
*handle
,
1894 DEBUG(MH_INFO_DEBUG
, ("Entering mh_realpath\n"));
1895 if (!is_in_media_files(path
))
1897 buf
= SMB_VFS_NEXT_REALPATH(handle
, path
);
1904 if (alloc_get_client_path(handle
, ctx
,
1912 buf
= SMB_VFS_NEXT_REALPATH(handle
, clientPath
);
1914 TALLOC_FREE(clientPath
);
1921 * Failure: set errno, return -1
1923 static int mh_chflags(vfs_handle_struct
*handle
,
1931 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chflags\n"));
1932 if (!is_in_media_files(path
))
1934 status
= SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1941 if ((status
= alloc_get_client_path(handle
, ctx
,
1948 status
= SMB_VFS_NEXT_CHFLAGS(handle
, clientPath
, flags
);
1950 TALLOC_FREE(clientPath
);
1956 * Success: return NT_STATUS_OK
1957 * Failure: return NT status error
1959 static NTSTATUS
mh_streaminfo(struct vfs_handle_struct
*handle
,
1960 struct files_struct
*fsp
,
1963 unsigned int *num_streams
,
1964 struct stream_struct
**streams
)
1968 TALLOC_CTX
*mem_ctx
;
1970 DEBUG(MH_INFO_DEBUG
, ("Entering mh_streaminfo\n"));
1971 if (!is_in_media_files(fname
))
1973 status
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
,
1974 ctx
, num_streams
, streams
);
1979 mem_ctx
= talloc_tos();
1981 if (alloc_get_client_path(handle
, mem_ctx
,
1985 status
= map_nt_error_from_unix(errno
);
1989 /* This only works on files, so we don't have to worry about
1990 * our fake directory stat'ing here.
1992 // But what does this function do, exactly? Does it need
1993 // extra modifications for the Avid stuff?
1994 status
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, clientPath
,
1995 ctx
, num_streams
, streams
);
1997 TALLOC_FREE(clientPath
);
2002 /* Ignoring get_real_filename function because the default
2003 * doesn't do anything.
2007 * Success: return NT_STATUS_OK
2008 * Failure: return NT status error
2009 * In this case, "name" is a path.
2011 static NTSTATUS
mh_get_nt_acl(vfs_handle_struct
*handle
,
2013 uint32 security_info
,
2014 TALLOC_CTX
*mem_ctx
,
2015 struct security_descriptor
**ppdesc
)
2021 DEBUG(MH_INFO_DEBUG
, ("Entering mh_get_nt_acl\n"));
2022 if (!is_in_media_files(name
))
2024 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
, name
,
2033 if (alloc_get_client_path(handle
, ctx
,
2037 status
= map_nt_error_from_unix(errno
);
2041 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
, clientPath
,
2045 TALLOC_FREE(clientPath
);
2052 * Failure: set errno, return -1
2054 static int mh_chmod_acl(vfs_handle_struct
*handle
,
2062 DEBUG(MH_INFO_DEBUG
, ("Entering mh_chmod_acl\n"));
2063 if (!is_in_media_files(path
))
2065 status
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
2072 if ((status
= alloc_get_client_path(handle
, ctx
,
2079 status
= SMB_VFS_NEXT_CHMOD_ACL(handle
, clientPath
, mode
);
2081 TALLOC_FREE(clientPath
);
2087 * Success: return acl pointer
2088 * Failure: set errno, return NULL
2090 static SMB_ACL_T
mh_sys_acl_get_file(vfs_handle_struct
*handle
,
2092 SMB_ACL_TYPE_T type
,
2093 TALLOC_CTX
*mem_ctx
)
2099 DEBUG(MH_INFO_DEBUG
, ("Entering mh_sys_acl_get_file\n"));
2100 if (!is_in_media_files(path_p
))
2102 ret
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
, mem_ctx
);
2109 if (alloc_get_client_path(handle
, ctx
,
2117 ret
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, clientPath
, type
, mem_ctx
);
2119 TALLOC_FREE(clientPath
);
2126 * Failure: set errno, return -1
2127 * In this case, "name" is a path.
2129 static int mh_sys_acl_set_file(vfs_handle_struct
*handle
,
2131 SMB_ACL_TYPE_T acltype
,
2138 DEBUG(MH_INFO_DEBUG
, ("Entering mh_sys_acl_set_file\n"));
2139 if (!is_in_media_files(name
))
2141 status
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
,
2149 if ((status
= alloc_get_client_path(handle
, ctx
,
2156 status
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, clientPath
,
2159 TALLOC_FREE(clientPath
);
2166 * Failure: set errno, return -1
2168 static int mh_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
2175 DEBUG(MH_INFO_DEBUG
, ("Entering mh_sys_acl_delete_def_file\n"));
2176 if (!is_in_media_files(path
))
2178 status
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
,
2186 if ((status
= alloc_get_client_path(handle
, ctx
,
2193 status
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, clientPath
);
2195 TALLOC_FREE(clientPath
);
2201 * Success: return positive number
2202 * Failure: set errno, return -1
2203 * In this case, "name" is an attr name.
2205 static ssize_t
mh_getxattr(struct vfs_handle_struct
*handle
,
2215 DEBUG(MH_INFO_DEBUG
, ("Entering mh_getxattr\n"));
2216 if (!is_in_media_files(path
))
2218 ret
= SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
,
2226 if (alloc_get_client_path(handle
, ctx
,
2234 ret
= SMB_VFS_NEXT_GETXATTR(handle
, clientPath
, name
, value
, size
);
2236 TALLOC_FREE(clientPath
);
2242 * Success: return positive number
2243 * Failure: set errno, return -1
2245 static ssize_t
mh_listxattr(struct vfs_handle_struct
*handle
,
2254 DEBUG(MH_INFO_DEBUG
, ("Entering mh_listxattr\n"));
2255 if (!is_in_media_files(path
))
2257 ret
= SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
2264 if (alloc_get_client_path(handle
, ctx
,
2272 ret
= SMB_VFS_NEXT_LISTXATTR(handle
, clientPath
, list
, size
);
2274 TALLOC_FREE(clientPath
);
2281 * Failure: set errno, return -1
2282 * In this case, "name" is an attr name.
2284 static int mh_removexattr(struct vfs_handle_struct
*handle
,
2292 DEBUG(MH_INFO_DEBUG
, ("Entering mh_removexattr\n"));
2293 if (!is_in_media_files(path
))
2295 status
= SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
2302 if ((status
= alloc_get_client_path(handle
, ctx
,
2309 status
= SMB_VFS_NEXT_REMOVEXATTR(handle
, clientPath
, name
);
2311 TALLOC_FREE(clientPath
);
2318 * Failure: set errno, return -1
2319 * In this case, "name" is an attr name.
2321 static int mh_setxattr(struct vfs_handle_struct
*handle
,
2332 DEBUG(MH_INFO_DEBUG
, ("Entering mh_setxattr\n"));
2333 if (!is_in_media_files(path
))
2335 status
= SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
,
2343 if ((status
= alloc_get_client_path(handle
, ctx
,
2350 status
= SMB_VFS_NEXT_SETXATTR(handle
, clientPath
, name
, value
,
2353 TALLOC_FREE(clientPath
);
2359 * Success: return true
2360 * Failure: set errno, return false
2362 static bool mh_is_offline(struct vfs_handle_struct
*handle
,
2363 const struct smb_filename
*fname
,
2364 SMB_STRUCT_STAT
*sbuf
)
2366 // check if sbuf is modified further down the chain.
2368 struct smb_filename
*clientFname
;
2371 DEBUG(MH_INFO_DEBUG
, ("Entering mh_is_offline\n"));
2372 if (!is_in_media_files(fname
->base_name
))
2374 ret
= SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
2381 if(alloc_get_client_smb_fname(handle
, ctx
,
2389 ret
= SMB_VFS_NEXT_IS_OFFLINE(handle
, clientFname
, sbuf
);
2391 TALLOC_FREE(clientFname
);
2397 * Success: return 0 (?)
2398 * Failure: set errno, return -1
2400 static int mh_set_offline(struct vfs_handle_struct
*handle
,
2401 const struct smb_filename
*fname
)
2404 struct smb_filename
*clientFname
;
2407 DEBUG(MH_INFO_DEBUG
, ("Entering mh_set_offline\n"));
2408 if (!is_in_media_files(fname
->base_name
))
2410 status
= SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
2417 if ((status
= alloc_get_client_smb_fname(handle
, ctx
,
2424 status
= SMB_VFS_NEXT_SET_OFFLINE(handle
, clientFname
);
2426 TALLOC_FREE(clientFname
);
2431 /* VFS operations structure */
2433 static struct vfs_fn_pointers vfs_mh_fns
= {
2434 /* Disk operations */
2436 .statvfs_fn
= mh_statvfs
,
2438 /* Directory operations */
2440 .opendir_fn
= mh_opendir
,
2441 .fdopendir_fn
= mh_fdopendir
,
2442 .readdir_fn
= mh_readdir
,
2443 .seekdir_fn
= mh_seekdir
,
2444 .telldir_fn
= mh_telldir
,
2445 .rewind_dir_fn
= mh_rewinddir
,
2446 .mkdir_fn
= mh_mkdir
,
2447 .rmdir_fn
= mh_rmdir
,
2448 .closedir_fn
= mh_closedir
,
2449 .init_search_op_fn
= mh_init_search_op
,
2451 /* File operations */
2454 .create_file_fn
= mh_create_file
,
2455 .rename_fn
= mh_rename
,
2457 .lstat_fn
= mh_lstat
,
2458 .fstat_fn
= mh_fstat
,
2459 .unlink_fn
= mh_unlink
,
2460 .chmod_fn
= mh_chmod
,
2461 .chown_fn
= mh_chown
,
2462 .lchown_fn
= mh_lchown
,
2463 .chdir_fn
= mh_chdir
,
2464 .ntimes_fn
= mh_ntimes
,
2465 .symlink_fn
= mh_symlink
,
2466 .readlink_fn
= mh_readlink
,
2468 .mknod_fn
= mh_mknod
,
2469 .realpath_fn
= mh_realpath
,
2470 .chflags_fn
= mh_chflags
,
2471 .streaminfo_fn
= mh_streaminfo
,
2473 /* NT ACL operations. */
2475 .get_nt_acl_fn
= mh_get_nt_acl
,
2477 /* POSIX ACL operations. */
2479 .chmod_acl_fn
= mh_chmod_acl
,
2481 .sys_acl_get_file_fn
= mh_sys_acl_get_file
,
2482 .sys_acl_set_file_fn
= mh_sys_acl_set_file
,
2483 .sys_acl_delete_def_file_fn
= mh_sys_acl_delete_def_file
,
2485 /* EA operations. */
2486 .getxattr_fn
= mh_getxattr
,
2487 .listxattr_fn
= mh_listxattr
,
2488 .removexattr_fn
= mh_removexattr
,
2489 .setxattr_fn
= mh_setxattr
,
2491 /* aio operations */
2493 /* offline operations */
2494 .is_offline_fn
= mh_is_offline
,
2495 .set_offline_fn
= mh_set_offline
2498 NTSTATUS
vfs_media_harmony_init(void);
2499 NTSTATUS
vfs_media_harmony_init(void)
2501 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
2502 "media_harmony", &vfs_mh_fns
);
2503 if (!NT_STATUS_IS_OK(ret
))
2508 vfs_mh_debug_level
= debug_add_class("media_harmony");
2510 if (vfs_mh_debug_level
== -1) {
2511 vfs_mh_debug_level
= DBGC_VFS
;
2512 DEBUG(1, ("media_harmony_init: Couldn't register custom "
2513 "debugging class.\n"));
2515 DEBUG(3, ("media_harmony_init: Debug class number of "
2516 "'media_harmony': %d\n",
2517 vfs_mh_debug_level
));