s3:lib: Make sure that have_rsrc is initialized
[Samba.git] / source3 / modules / vfs_media_harmony.c
blob202c711ff92f4af3196653b05f4eca1cb65769e9
1 /*
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
22 * 02110-1301, USA.
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
32 * configuration.
33 * eg.
35 * [avid_win]
36 * path = /video
37 * vfs objects = media_harmony
38 * ...
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
49 * the list.
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
63 * will come from
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.
75 * Notes:
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.
86 #include "includes.h"
87 #include "system/filesys.h"
88 #include "smbd/smbd.h"
89 #include "../smbd/globals.h"
90 #include "auth.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
116 DIR* dirstream;
117 char *dirpath;
118 char *clientPath;
119 bool isInMediaFiles;
120 char *clientMDBFilename;
121 char *clientPMRFilename;
122 char *clientCreatingDirname;
123 } mh_dirinfo_struct;
126 /* Add "_<ip address>_<user name>" suffix to path or filename.
128 * Success: return 0
129 * Failure: set errno, path NULL, return -1
131 static int alloc_append_client_suffix(vfs_handle_struct *handle,
132 char **path)
134 int status = 0;
135 char *raddr = NULL;
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());
141 if (raddr == NULL)
143 errno = ENOMEM;
144 status = -1;
145 goto err;
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",
152 raddr,
153 handle->conn->session_info->unix_info->sanitized_username);
154 if (*path == NULL)
156 DEBUG(MH_ERR_DEBUG, ("alloc_append_client_suffix "
157 "out of memory\n"));
158 errno = ENOMEM;
159 status = -1;
160 goto err;
162 DEBUG(MH_INFO_DEBUG, ("Leaving with *path '%s'\n", *path));
163 err:
164 TALLOC_FREE(raddr);
165 return status;
169 /* Returns True if the file or directory begins with the appledouble
170 * prefix.
172 static bool is_apple_double(const char* fname)
174 bool ret = False;
176 DEBUG(MH_INFO_DEBUG, ("Entering with fname '%s'\n", fname));
178 if (strncmp(APPLE_DOUBLE_PREFIX, fname, APPLE_DOUBLE_PREFIX_LEN)
179 == 0)
181 ret = True;
183 DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
184 ret == True ? "True" : "False"));
185 return ret;
188 static bool starts_with_media_dir(const char* media_dirname,
189 size_t media_dirname_len, const char* path)
191 bool ret = False;
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];
202 else {
203 path_start = path;
206 if (strncmp(media_dirname, path_start, media_dirname_len) == 0
209 path_start[media_dirname_len] == '\0'
211 path_start[media_dirname_len] == '/'
215 ret = True;
218 DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
219 ret == True ? "True" : "False"));
220 return ret;
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)
232 bool ret = False;
234 DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
236 if (
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)
244 ret = True;
246 DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
247 ret == True ? "True" : "False"));
248 return ret;
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
257 * and burn.
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;
268 const char *pathPtr;
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];
278 else {
279 path_start = path;
282 if (path_start[media_dirname_len] == '\0')
284 goto out;
287 pathPtr = &path_start[media_dirname_len + 1];
289 while(1)
291 if (*pathPtr == '\0' || *pathPtr == '/')
293 if (
294 *(pathPtr - 1) == '.'
296 *(pathPtr - 2) == '.'
298 *(pathPtr - 3) == '/'
301 transition_count--;
303 else if (
306 *(pathPtr - 1) == '/'
309 *(pathPtr - 1) == '.'
311 *(pathPtr - 2) == '/'
316 transition_count++;
319 if (*pathPtr == '\0')
321 break;
323 pathPtr++;
326 DEBUG(MH_INFO_DEBUG, ("Leaving with transition_count '%i'\n",
327 transition_count));
328 out:
329 return transition_count;
332 /* Identifies MDB and PMR files at end of path. */
333 static bool is_avid_database(
334 char *path,
335 size_t path_len,
336 const char *avid_db_filename,
337 const size_t avid_db_filename_len)
339 bool ret = False;
341 DEBUG(MH_INFO_DEBUG, ("Entering with path '%s', "
342 "avid_db_filename '%s', "
343 "path_len '%i', "
344 "avid_db_filename_len '%i'\n",
345 path, avid_db_filename,
346 (int)path_len, (int)avid_db_filename_len));
348 if (
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]))
369 ret = True;
371 DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
372 ret == True ? "True" : "False"));
373 return ret;
377 /* Add client suffix to paths to MDB_FILENAME, PMR_FILENAME and
378 * CREATING_SUBDIRNAME.
380 * Caller must free newPath.
382 * Success: return 0
383 * Failure: set errno, newPath NULL, return -1
385 static int alloc_get_client_path(vfs_handle_struct *handle,
386 TALLOC_CTX *ctx,
387 const char *path,
388 char **newPath)
390 /* replace /CREATING_DIRNAME/ or /._CREATING_DIRNAME/
391 * directory in path - potentially in middle of path
392 * - with suffixed name.
394 int status = 0;
395 char* pathPtr;
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"));
404 errno = ENOMEM;
405 status = -1;
406 goto out;
408 DEBUG(MH_INFO_DEBUG, ("newPath #1 %s\n", *newPath));
409 if (
410 (pathPtr = strstr(path, CREATING_DIRNAME)) != NULL
413 *(pathPtr + CREATING_DIRNAME_LEN) == '\0'
415 *(pathPtr + CREATING_DIRNAME_LEN) == '/'
419 (pathPtr - path > 0
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)))
437 goto out;
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 "
446 "ENOMEM #2\n"));
447 errno = ENOMEM;
448 status = -1;
449 goto out;
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);
458 if (
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)))
469 goto out;
471 DEBUG(MH_INFO_DEBUG, ("newPath #6 %s\n", *newPath));
473 out:
474 /* newPath must be freed in caller. */
475 DEBUG(MH_INFO_DEBUG, ("Leaving with *newPath '%s'\n", *newPath));
476 return status;
480 * Success: return 0
481 * Failure: set errno, return -1
483 static int alloc_get_client_smb_fname(struct vfs_handle_struct *handle,
484 TALLOC_CTX *ctx,
485 const struct smb_filename *smb_fname,
486 struct smb_filename **clientFname)
488 int status = 0;
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 "
496 "NTERR\n"));
497 errno = ENOMEM;
498 status = -1;
499 goto err;
501 if ((status = alloc_get_client_path(handle, ctx,
502 smb_fname->base_name,
503 &(*clientFname)->base_name)))
505 goto err;
507 DEBUG(MH_INFO_DEBUG, ("Leaving with (*clientFname)->base_name "
508 "'%s'\n", (*clientFname)->base_name));
509 err:
510 return status;
515 * Success: return 0
516 * Failure: set errno, return -1
518 static int alloc_set_client_dirinfo_path(struct vfs_handle_struct *handle,
519 TALLOC_CTX *ctx,
520 char **path,
521 const char *avid_db_filename)
523 int status = 0;
525 DEBUG(MH_INFO_DEBUG, ("Entering with avid_db_filename '%s'\n",
526 avid_db_filename));
528 if ((*path = talloc_strdup(ctx, avid_db_filename)) == NULL)
530 DEBUG(MH_ERR_DEBUG, ("alloc_set_client_dirinfo_path "
531 "ENOMEM\n"));
532 errno = ENOMEM;
533 status = -1;
534 goto err;
536 if ((status = alloc_append_client_suffix(handle, path)))
538 goto err;
540 DEBUG(MH_INFO_DEBUG, ("Leaving with *path '%s'\n", *path));
541 err:
542 return status;
546 * Replace mtime on clientFname with mtime from client-suffixed
547 * equivalent, if it exists.
549 * Success: return 0
550 * Failure: set errno, return -1
552 static int set_fake_mtime(vfs_handle_struct *handle,
553 TALLOC_CTX *ctx,
554 struct smb_filename **clientFname,
555 int (*statFn)(const char *, SMB_STRUCT_STAT *, bool))
557 int status = 0;
558 char *statPath;
559 SMB_STRUCT_STAT fakeStat;
560 int copy_len;
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))));
567 if (
568 depth_from_media_dir(AVID_MXF_DIRNAME,
569 AVID_MXF_DIRNAME_LEN,
570 (*clientFname)->base_name)
571 != 1
573 depth_from_media_dir(OMFI_MEDIAFILES_DIRNAME,
574 OMFI_MEDIAFILES_DIRNAME_LEN,
575 (*clientFname)->base_name)
576 != 0
579 goto out;
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
586 * long.
588 if ((*clientFname)->base_name[copy_len - 1] == '.' &&
589 (*clientFname)->base_name[copy_len - 2] == '/')
591 copy_len -= 2;
594 if (((statPath = talloc_strndup(ctx,
595 (*clientFname)->base_name, copy_len)) == NULL))
597 errno = ENOMEM;
598 status = -1;
599 goto err;
601 if ((status = alloc_append_client_suffix(handle, &statPath)))
603 goto err;
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.
615 goto err;
618 DEBUG(MH_INFO_DEBUG, ("Setting fake mtime from '%s'\n", statPath));
619 (*clientFname)->st.st_ex_mtime = fakeStat.st_ex_mtime;
620 err:
621 TALLOC_FREE(statPath);
622 out:
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))));
627 return status;
631 * Success: return 0
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)
638 int status;
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);
647 goto out;
650 status = alloc_get_client_smb_fname(handle,
651 talloc_tos(),
652 smb_fname,
653 &clientFname);
654 if (status != 0) {
655 goto err;
658 status = SMB_VFS_NEXT_STATVFS(handle, clientFname, statbuf);
659 err:
660 TALLOC_FREE(clientFname);
661 out:
662 DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n",
663 smb_fname->base_name));
664 return status;
667 static int alloc_set_client_dirinfo(vfs_handle_struct *handle,
668 const char *fname,
669 struct mh_dirinfo_struct **dirInfo)
671 int status = 0;
672 char *clientPath;
673 TALLOC_CTX *ctx;
675 DEBUG(MH_INFO_DEBUG, ("Entering with fname '%s'\n", fname));
677 *dirInfo = talloc(NULL, struct mh_dirinfo_struct);
678 if (*dirInfo == NULL)
680 goto err;
683 (*dirInfo)->dirpath = talloc_strdup(*dirInfo, fname);
684 if ((*dirInfo)->dirpath == NULL)
686 goto err;
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;
696 goto out;
699 (*dirInfo)->isInMediaFiles = True;
701 if (alloc_set_client_dirinfo_path(handle,
702 *dirInfo,
703 &((*dirInfo)->clientMDBFilename),
704 MDB_FILENAME))
706 goto err;
709 if (alloc_set_client_dirinfo_path(handle,
710 *dirInfo,
711 &((*dirInfo)->clientPMRFilename),
712 PMR_FILENAME))
714 goto err;
717 if (alloc_set_client_dirinfo_path(handle,
718 *dirInfo,
719 &((*dirInfo)->clientCreatingDirname),
720 CREATING_DIRNAME))
722 goto err;
725 clientPath = NULL;
726 ctx = talloc_tos();
728 if (alloc_get_client_path(handle, ctx,
729 fname,
730 &clientPath))
732 goto err;
735 (*dirInfo)->clientPath = talloc_strdup(*dirInfo, clientPath);
736 if ((*dirInfo)->clientPath == NULL)
738 goto err;
741 TALLOC_FREE(clientPath);
743 out:
744 DEBUG(MH_INFO_DEBUG, ("Leaving with (*dirInfo)->dirpath '%s', "
745 "(*dirInfo)->clientPath '%s'\n",
746 (*dirInfo)->dirpath,
747 (*dirInfo)->clientPath));
748 return status;
750 err:
751 DEBUG(MH_ERR_DEBUG, ("Failing with fname '%s'\n", fname));
752 TALLOC_FREE(*dirInfo);
753 status = -1;
754 errno = ENOMEM;
755 return status;
758 static DIR *mh_fdopendir(vfs_handle_struct *handle,
759 files_struct *fsp,
760 const char *mask,
761 uint32_t attr)
763 struct mh_dirinfo_struct *dirInfo = NULL;
764 DIR *dirstream;
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);
770 if (!dirstream)
772 goto err;
775 if (alloc_set_client_dirinfo(handle, fsp->fsp_name->base_name,
776 &dirInfo))
778 goto err;
781 dirInfo->dirstream = dirstream;
783 if (! dirInfo->isInMediaFiles) {
784 goto out;
787 if (set_fake_mtime(handle, fsp, &(fsp->fsp_name), sys_stat))
789 goto err;
792 out:
793 DEBUG(MH_INFO_DEBUG, ("Leaving with dirInfo->dirpath '%s', "
794 "dirInfo->clientPath '%s', "
795 "fsp->fsp_name->st.st_ex_mtime %s",
796 dirInfo->dirpath,
797 dirInfo->clientPath,
798 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec))));
799 /* Success is freed in closedir. */
800 return (DIR *) dirInfo;
801 err:
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);
806 return NULL;
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 *mh_readdir(vfs_handle_struct *handle,
821 DIR *dirp,
822 SMB_STRUCT_STAT *sbuf)
824 mh_dirinfo_struct* dirInfo = (mh_dirinfo_struct*)dirp;
825 struct dirent *d = NULL;
826 int skip;
828 DEBUG(MH_INFO_DEBUG, ("Entering mh_readdir\n"));
830 DEBUG(MH_INFO_DEBUG, ("dirInfo->dirpath '%s', "
831 "dirInfo->clientPath '%s', "
832 "dirInfo->isInMediaFiles '%s', "
833 "dirInfo->clientMDBFilename '%s', "
834 "dirInfo->clientPMRFilename '%s', "
835 "dirInfo->clientCreatingDirname '%s'\n",
836 dirInfo->dirpath,
837 dirInfo->clientPath,
838 dirInfo->isInMediaFiles ? "True" : "False",
839 dirInfo->clientMDBFilename,
840 dirInfo->clientPMRFilename,
841 dirInfo->clientCreatingDirname));
843 if (! dirInfo->isInMediaFiles)
845 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
846 goto out;
851 const char* dname;
852 bool isAppleDouble;
854 skip = False;
855 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
857 if (d == NULL)
859 break;
862 /* ignore apple double prefix for logic below */
863 if (is_apple_double(d->d_name))
865 dname = &d->d_name[APPLE_DOUBLE_PREFIX_LEN];
866 isAppleDouble = True;
868 else
870 dname = d->d_name;
871 isAppleDouble = False;
874 /* skip Avid-special files with no client suffix */
875 if (
876 strcmp(dname, MDB_FILENAME) == 0
878 strcmp(dname, PMR_FILENAME) == 0
880 strcmp(dname, CREATING_DIRNAME) == 0
883 skip = True;
885 /* chop client suffix off this client's suffixed files */
886 else if (strcmp(dname, dirInfo->clientMDBFilename) == 0)
888 if (isAppleDouble)
890 d->d_name[MDB_FILENAME_LEN
891 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
893 else
895 d->d_name[MDB_FILENAME_LEN] = '\0';
898 else if (strcmp(dname, dirInfo->clientPMRFilename) == 0)
900 if (isAppleDouble)
902 d->d_name[PMR_FILENAME_LEN
903 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
905 else
907 d->d_name[PMR_FILENAME_LEN] = '\0';
910 else if (strcmp(dname, dirInfo->clientCreatingDirname)
911 == 0)
913 if (isAppleDouble)
915 d->d_name[CREATING_DIRNAME_LEN
916 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
918 else
920 d->d_name[CREATING_DIRNAME_LEN] = '\0';
924 * Anything that starts as an Avid-special file
925 * that's made it this far should be skipped. This
926 * is different from the original behaviour, which
927 * only skipped other client's suffixed files.
929 else if (
930 strncmp(MDB_FILENAME, dname,
931 MDB_FILENAME_LEN) == 0
933 strncmp(PMR_FILENAME, dname,
934 PMR_FILENAME_LEN) == 0
936 strncmp(CREATING_DIRNAME, dname,
937 CREATING_DIRNAME_LEN) == 0
940 skip = True;
943 while (skip);
945 out:
946 DEBUG(MH_INFO_DEBUG, ("Leaving mh_readdir\n"));
947 return d;
951 * Success: no success result defined.
952 * Failure: no failure result defined.
954 static void mh_seekdir(vfs_handle_struct *handle,
955 DIR *dirp,
956 long offset)
958 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_seekdir\n"));
959 SMB_VFS_NEXT_SEEKDIR(handle,
960 ((mh_dirinfo_struct*)dirp)->dirstream, offset);
964 * Success: return long
965 * Failure: no failure result defined.
967 static long mh_telldir(vfs_handle_struct *handle,
968 DIR *dirp)
970 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_telldir\n"));
971 return SMB_VFS_NEXT_TELLDIR(handle,
972 ((mh_dirinfo_struct*)dirp)->dirstream);
976 * Success: no success result defined.
977 * Failure: no failure result defined.
979 static void mh_rewinddir(vfs_handle_struct *handle,
980 DIR *dirp)
982 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_rewinddir\n"));
983 SMB_VFS_NEXT_REWINDDIR(handle,
984 ((mh_dirinfo_struct*)dirp)->dirstream);
988 * Success: return 0
989 * Failure: set errno, return -1
991 static int mh_mkdirat(vfs_handle_struct *handle,
992 struct files_struct *dirfsp,
993 const struct smb_filename *smb_fname,
994 mode_t mode)
996 int status;
997 struct smb_filename *clientFname = NULL;
998 const char *path = smb_fname->base_name;
1000 DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
1002 if (!is_in_media_files(path)) {
1003 status = SMB_VFS_NEXT_MKDIRAT(handle,
1004 dirfsp,
1005 smb_fname,
1006 mode);
1007 goto out;
1010 status = alloc_get_client_smb_fname(handle,
1011 talloc_tos(),
1012 smb_fname,
1013 &clientFname);
1014 if (status != 0) {
1015 goto err;
1018 status = SMB_VFS_NEXT_MKDIRAT(handle,
1019 dirfsp,
1020 clientFname,
1021 mode);
1022 err:
1023 TALLOC_FREE(clientFname);
1024 out:
1025 DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n", path));
1026 return status;
1030 * Success: return 0
1031 * Failure: set errno, return -1
1033 static int mh_closedir(vfs_handle_struct *handle,
1034 DIR *dirp)
1036 DIR *realdirp = ((mh_dirinfo_struct*)dirp)->dirstream;
1038 DEBUG(MH_INFO_DEBUG, ("Entering mh_closedir\n"));
1039 // Will this talloc_free destroy realdirp?
1040 TALLOC_FREE(dirp);
1042 DEBUG(MH_INFO_DEBUG, ("Leaving mh_closedir\n"));
1043 return SMB_VFS_NEXT_CLOSEDIR(handle, realdirp);
1047 * Success: return non-negative file descriptor
1048 * Failure: set errno, return -1
1050 static int mh_openat(struct vfs_handle_struct *handle,
1051 const struct files_struct *dirfsp,
1052 const struct smb_filename *smb_fname,
1053 files_struct *fsp,
1054 int flags,
1055 mode_t mode)
1057 int ret;
1058 struct smb_filename *clientFname;
1059 TALLOC_CTX *ctx;
1061 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1062 smb_fname->base_name));
1064 if (!is_in_media_files(smb_fname->base_name)) {
1065 ret = SMB_VFS_NEXT_OPENAT(handle,
1066 dirfsp,
1067 smb_fname,
1068 fsp,
1069 flags,
1070 mode);
1071 goto out;
1074 clientFname = NULL;
1075 ctx = talloc_tos();
1077 if (alloc_get_client_smb_fname(handle, ctx, smb_fname, &clientFname)) {
1078 ret = -1;
1079 goto err;
1083 * What about fsp->fsp_name? We also have to get correct stat info into
1084 * fsp and smb_fname for DB files, don't we?
1087 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s' "
1088 "smb_fname->st.st_ex_mtime %s"
1089 " fsp->fsp_name->st.st_ex_mtime %s",
1090 smb_fname->base_name,
1091 ctime(&(smb_fname->st.st_ex_mtime.tv_sec)),
1092 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec))));
1094 ret = SMB_VFS_NEXT_OPENAT(handle, dirfsp, clientFname, fsp, flags, mode);
1095 err:
1096 TALLOC_FREE(clientFname);
1097 out:
1098 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s'\n",
1099 smb_fname->base_name));
1100 return ret;
1104 * Success: return non-negative file descriptor
1105 * Failure: set errno, return -1
1107 static NTSTATUS mh_create_file(vfs_handle_struct *handle,
1108 struct smb_request *req,
1109 struct files_struct **dirfsp,
1110 struct smb_filename *smb_fname,
1111 uint32_t access_mask,
1112 uint32_t share_access,
1113 uint32_t create_disposition,
1114 uint32_t create_options,
1115 uint32_t file_attributes,
1116 uint32_t oplock_request,
1117 const struct smb2_lease *lease,
1118 uint64_t allocation_size,
1119 uint32_t private_flags,
1120 struct security_descriptor *sd,
1121 struct ea_list *ea_list,
1122 files_struct **result_fsp,
1123 int *pinfo,
1124 const struct smb2_create_blobs *in_context_blobs,
1125 struct smb2_create_blobs *out_context_blobs)
1127 NTSTATUS status;
1128 struct smb_filename *clientFname;
1129 TALLOC_CTX *ctx;
1132 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1133 smb_fname->base_name));
1134 if (!is_in_media_files(smb_fname->base_name))
1136 status = SMB_VFS_NEXT_CREATE_FILE(
1137 handle,
1138 req,
1139 dirfsp,
1140 smb_fname,
1141 access_mask,
1142 share_access,
1143 create_disposition,
1144 create_options,
1145 file_attributes,
1146 oplock_request,
1147 lease,
1148 allocation_size,
1149 private_flags,
1151 ea_list,
1152 result_fsp,
1153 pinfo,
1154 in_context_blobs,
1155 out_context_blobs);
1156 goto out;
1159 clientFname = NULL;
1160 ctx = talloc_tos();
1162 if (alloc_get_client_smb_fname(handle, ctx,
1163 smb_fname,
1164 &clientFname))
1166 status = map_nt_error_from_unix(errno);
1167 goto err;
1170 /* This only creates files, so we don't have to worry about
1171 * our fake directory stat'ing here.
1173 // But we still need to route stat calls for DB files
1174 // properly, right?
1175 status = SMB_VFS_NEXT_CREATE_FILE(
1176 handle,
1177 req,
1178 dirfsp,
1179 clientFname,
1180 access_mask,
1181 share_access,
1182 create_disposition,
1183 create_options,
1184 file_attributes,
1185 oplock_request,
1186 lease,
1187 allocation_size,
1188 private_flags,
1190 ea_list,
1191 result_fsp,
1192 pinfo,
1193 in_context_blobs,
1194 out_context_blobs);
1195 err:
1196 TALLOC_FREE(clientFname);
1197 out:
1198 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s'"
1199 "smb_fname->st.st_ex_mtime %s"
1200 " fsp->fsp_name->st.st_ex_mtime %s",
1201 smb_fname->base_name,
1202 ctime(&(smb_fname->st.st_ex_mtime.tv_sec)),
1203 (*result_fsp) && VALID_STAT((*result_fsp)->fsp_name->st) ?
1204 ctime(&((*result_fsp)->fsp_name->st.st_ex_mtime.tv_sec)) :
1205 "No fsp time\n"));
1206 return status;
1210 * Success: return 0
1211 * Failure: set errno, return -1
1213 static int mh_renameat(vfs_handle_struct *handle,
1214 files_struct *srcfsp,
1215 const struct smb_filename *smb_fname_src,
1216 files_struct *dstfsp,
1217 const struct smb_filename *smb_fname_dst)
1219 int status;
1220 struct smb_filename *srcClientFname;
1221 struct smb_filename *dstClientFname;
1222 TALLOC_CTX *ctx;
1225 DEBUG(MH_INFO_DEBUG, ("Entering with "
1226 "smb_fname_src->base_name '%s', "
1227 "smb_fname_dst->base_name '%s'\n",
1228 smb_fname_src->base_name,
1229 smb_fname_dst->base_name));
1231 if (!is_in_media_files(smb_fname_src->base_name)
1233 !is_in_media_files(smb_fname_dst->base_name))
1235 status = SMB_VFS_NEXT_RENAMEAT(handle,
1236 srcfsp,
1237 smb_fname_src,
1238 dstfsp,
1239 smb_fname_dst);
1240 goto out;
1243 srcClientFname = NULL;
1244 dstClientFname = NULL;
1245 ctx = talloc_tos();
1247 if ((status = alloc_get_client_smb_fname(handle, ctx,
1248 smb_fname_src,
1249 &srcClientFname)))
1251 goto err;
1254 if ((status = alloc_get_client_smb_fname(handle, ctx,
1255 smb_fname_dst,
1256 &dstClientFname)))
1258 goto err;
1261 status = SMB_VFS_NEXT_RENAMEAT(handle,
1262 srcfsp,
1263 srcClientFname,
1264 dstfsp,
1265 dstClientFname);
1266 err:
1267 TALLOC_FREE(dstClientFname);
1268 TALLOC_FREE(srcClientFname);
1269 out:
1270 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname_src->base_name '%s',"
1271 " smb_fname_dst->base_name '%s'\n",
1272 smb_fname_src->base_name,
1273 smb_fname_dst->base_name));
1274 return status;
1278 * Success: return 0
1279 * Failure: set errno, return -1
1281 static int mh_stat(vfs_handle_struct *handle,
1282 struct smb_filename *smb_fname)
1284 int status = 0;
1285 struct smb_filename *clientFname;
1286 TALLOC_CTX *ctx;
1289 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1290 smb_fname->base_name));
1292 if (!is_in_media_files(smb_fname->base_name))
1294 status = SMB_VFS_NEXT_STAT(handle, smb_fname);
1295 goto out;
1298 clientFname = NULL;
1299 ctx = talloc_tos();
1301 if ((status = alloc_get_client_smb_fname(handle, ctx,
1302 smb_fname,
1303 &clientFname)))
1305 goto err;
1307 DEBUG(MH_INFO_DEBUG, ("Stat'ing clientFname->base_name '%s'\n",
1308 clientFname->base_name));
1309 if ((status = SMB_VFS_NEXT_STAT(handle, clientFname)))
1311 goto err;
1313 if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_stat)))
1315 goto err;
1318 /* Unlike functions with const smb_filename, we have to
1319 * modify smb_fname itself to pass our info back up.
1321 DEBUG(MH_INFO_DEBUG, ("Setting smb_fname '%s' stat "
1322 "from clientFname '%s'\n",
1323 smb_fname->base_name,
1324 clientFname->base_name));
1325 smb_fname->st = clientFname->st;
1326 err:
1327 TALLOC_FREE(clientFname);
1328 out:
1329 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1330 ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1331 return status;
1335 * Success: return 0
1336 * Failure: set errno, return -1
1338 static int mh_lstat(vfs_handle_struct *handle,
1339 struct smb_filename *smb_fname)
1341 int status = 0;
1342 struct smb_filename *clientFname;
1343 TALLOC_CTX *ctx;
1345 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1346 smb_fname->base_name));
1348 if (!is_in_media_files(smb_fname->base_name))
1350 status = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1351 goto out;
1354 clientFname = NULL;
1355 ctx = talloc_tos();
1357 if ((status = alloc_get_client_smb_fname(handle, ctx,
1358 smb_fname,
1359 &clientFname)))
1361 goto err;
1363 if ((status = SMB_VFS_NEXT_LSTAT(handle, clientFname)))
1365 goto err;
1368 if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_lstat)))
1370 goto err;
1372 /* Unlike functions with const smb_filename, we have to
1373 * modify smb_fname itself to pass our info back up.
1375 smb_fname->st = clientFname->st;
1376 err:
1377 TALLOC_FREE(clientFname);
1378 out:
1379 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1380 ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1381 return status;
1385 * Success: return 0
1386 * Failure: set errno, return -1
1388 static int mh_fstat(vfs_handle_struct *handle,
1389 files_struct *fsp, SMB_STRUCT_STAT *sbuf)
1391 int status = 0;
1393 DEBUG(MH_INFO_DEBUG, ("Entering with fsp->fsp_name->base_name "
1394 "'%s'\n", fsp_str_dbg(fsp)));
1396 if ((status = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf)))
1398 goto out;
1401 if (fsp->fsp_name == NULL
1402 || !is_in_media_files(fsp->fsp_name->base_name))
1404 goto out;
1407 if ((status = mh_stat(handle, fsp->fsp_name)))
1409 goto out;
1412 *sbuf = fsp->fsp_name->st;
1413 out:
1414 DEBUG(MH_INFO_DEBUG, ("Leaving with fsp->fsp_name->st.st_ex_mtime "
1415 "%s",
1416 fsp->fsp_name != NULL ?
1417 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec)) :
1418 "0"));
1419 return status;
1423 * Success: return 0
1424 * Failure: set errno, return -1
1426 static int mh_unlinkat(vfs_handle_struct *handle,
1427 struct files_struct *dirfsp,
1428 const struct smb_filename *smb_fname,
1429 int flags)
1431 int status;
1432 struct smb_filename *clientFname;
1433 TALLOC_CTX *ctx;
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,
1438 dirfsp,
1439 smb_fname,
1440 flags);
1441 goto out;
1444 clientFname = NULL;
1445 ctx = talloc_tos();
1447 if ((status = alloc_get_client_smb_fname(handle, ctx,
1448 smb_fname,
1449 &clientFname))) {
1450 goto err;
1453 status = SMB_VFS_NEXT_UNLINKAT(handle,
1454 dirfsp,
1455 clientFname,
1456 flags);
1457 err:
1458 TALLOC_FREE(clientFname);
1459 out:
1460 return status;
1464 * Success: return 0
1465 * Failure: set errno, return -1
1467 static int mh_chmod(vfs_handle_struct *handle,
1468 const struct smb_filename *smb_fname,
1469 mode_t mode)
1471 int status;
1472 struct smb_filename *clientFname = NULL;
1474 DEBUG(MH_INFO_DEBUG, ("Entering mh_chmod\n"));
1475 if (!is_in_media_files(smb_fname->base_name))
1477 status = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
1478 goto out;
1481 status = alloc_get_client_smb_fname(handle,
1482 talloc_tos(),
1483 smb_fname,
1484 &clientFname);
1485 if (status != 0) {
1486 goto err;
1489 status = SMB_VFS_NEXT_CHMOD(handle, clientFname, mode);
1490 err:
1491 TALLOC_FREE(clientFname);
1492 out:
1493 return status;
1497 * Success: return 0
1498 * Failure: set errno, return -1
1500 static int mh_lchown(vfs_handle_struct *handle,
1501 const struct smb_filename *smb_fname,
1502 uid_t uid,
1503 gid_t gid)
1505 int status;
1506 struct smb_filename *clientFname = NULL;
1508 DEBUG(MH_INFO_DEBUG, ("Entering mh_lchown\n"));
1509 if (!is_in_media_files(smb_fname->base_name))
1511 status = SMB_VFS_NEXT_LCHOWN(handle, smb_fname, uid, gid);
1512 goto out;
1515 status = alloc_get_client_smb_fname(handle,
1516 talloc_tos(),
1517 smb_fname,
1518 &clientFname);
1519 if (status != 0) {
1520 goto err;
1523 status = SMB_VFS_NEXT_LCHOWN(handle, clientFname, uid, gid);
1524 err:
1525 TALLOC_FREE(clientFname);
1526 out:
1527 return status;
1531 * Success: return 0
1532 * Failure: set errno, return -1
1534 static int mh_chdir(vfs_handle_struct *handle,
1535 const struct smb_filename *smb_fname)
1537 int status;
1538 struct smb_filename *clientFname = NULL;
1540 DEBUG(MH_INFO_DEBUG, ("Entering mh_chdir\n"));
1541 if (!is_in_media_files(smb_fname->base_name)) {
1542 status = SMB_VFS_NEXT_CHDIR(handle, smb_fname);
1543 goto out;
1546 status = alloc_get_client_smb_fname(handle,
1547 talloc_tos(),
1548 smb_fname,
1549 &clientFname);
1550 if (status != 0) {
1551 goto err;
1554 status = SMB_VFS_NEXT_CHDIR(handle, clientFname);
1555 err:
1556 TALLOC_FREE(clientFname);
1557 out:
1558 return status;
1562 * Success: return 0
1563 * Failure: set errno, return -1
1565 static int mh_ntimes(vfs_handle_struct *handle,
1566 const struct smb_filename *smb_fname,
1567 struct smb_file_time *ft)
1569 int status;
1570 struct smb_filename *clientFname;
1571 TALLOC_CTX *ctx;
1574 DEBUG(MH_INFO_DEBUG, ("Entering mh_ntimes\n"));
1575 if (!is_in_media_files(smb_fname->base_name))
1577 status = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1578 goto out;
1581 clientFname = NULL;
1582 ctx = talloc_tos();
1584 if ((status = alloc_get_client_smb_fname(handle, ctx,
1585 smb_fname,
1586 &clientFname)))
1588 goto err;
1591 status = SMB_VFS_NEXT_NTIMES(handle, clientFname, ft);
1592 err:
1593 TALLOC_FREE(clientFname);
1594 out:
1595 return status;
1599 * Success: return 0
1600 * Failure: set errno, return -1
1603 static int mh_symlinkat(vfs_handle_struct *handle,
1604 const struct smb_filename *link_contents,
1605 struct files_struct *dirfsp,
1606 const struct smb_filename *new_smb_fname)
1608 int status = -1;
1609 struct smb_filename *new_link_target = NULL;
1610 struct smb_filename *newclientFname = NULL;
1612 DEBUG(MH_INFO_DEBUG, ("Entering mh_symlinkat\n"));
1613 if (!is_in_media_files(link_contents->base_name) &&
1614 !is_in_media_files(new_smb_fname->base_name)) {
1615 status = SMB_VFS_NEXT_SYMLINKAT(handle,
1616 link_contents,
1617 dirfsp,
1618 new_smb_fname);
1619 goto out;
1622 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1623 link_contents,
1624 &new_link_target))) {
1625 goto err;
1627 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1628 new_smb_fname,
1629 &newclientFname))) {
1630 goto err;
1633 status = SMB_VFS_NEXT_SYMLINKAT(handle,
1634 new_link_target,
1635 dirfsp,
1636 newclientFname);
1637 err:
1638 TALLOC_FREE(new_link_target);
1639 TALLOC_FREE(newclientFname);
1640 out:
1641 return status;
1645 * Success: return byte count
1646 * Failure: set errno, return -1
1648 static int mh_readlinkat(vfs_handle_struct *handle,
1649 files_struct *dirfsp,
1650 const struct smb_filename *smb_fname,
1651 char *buf,
1652 size_t bufsiz)
1654 int status;
1655 struct smb_filename *clientFname = NULL;
1657 DEBUG(MH_INFO_DEBUG, ("Entering mh_readlinkat\n"));
1658 if (!is_in_media_files(smb_fname->base_name)) {
1659 status = SMB_VFS_NEXT_READLINKAT(handle,
1660 dirfsp,
1661 smb_fname,
1662 buf,
1663 bufsiz);
1664 goto out;
1667 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1668 smb_fname,
1669 &clientFname))) {
1670 goto err;
1673 status = SMB_VFS_NEXT_READLINKAT(handle,
1674 dirfsp,
1675 clientFname,
1676 buf,
1677 bufsiz);
1679 err:
1680 TALLOC_FREE(clientFname);
1681 out:
1682 return status;
1686 * Success: return 0
1687 * Failure: set errno, return -1
1689 static int mh_linkat(vfs_handle_struct *handle,
1690 files_struct *srcfsp,
1691 const struct smb_filename *old_smb_fname,
1692 files_struct *dstfsp,
1693 const struct smb_filename *new_smb_fname,
1694 int flags)
1696 int status;
1697 struct smb_filename *oldclientFname = NULL;
1698 struct smb_filename *newclientFname = NULL;
1700 DEBUG(MH_INFO_DEBUG, ("Entering mh_linkat\n"));
1701 if (!is_in_media_files(old_smb_fname->base_name) &&
1702 !is_in_media_files(new_smb_fname->base_name)) {
1703 status = SMB_VFS_NEXT_LINKAT(handle,
1704 srcfsp,
1705 old_smb_fname,
1706 dstfsp,
1707 new_smb_fname,
1708 flags);
1709 goto out;
1712 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1713 old_smb_fname,
1714 &oldclientFname))) {
1715 goto err;
1717 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1718 new_smb_fname,
1719 &newclientFname))) {
1720 goto err;
1723 status = SMB_VFS_NEXT_LINKAT(handle,
1724 srcfsp,
1725 oldclientFname,
1726 dstfsp,
1727 newclientFname,
1728 flags);
1730 err:
1731 TALLOC_FREE(newclientFname);
1732 TALLOC_FREE(oldclientFname);
1733 out:
1734 return status;
1738 * Success: return 0
1739 * Failure: set errno, return -1
1741 static int mh_mknodat(vfs_handle_struct *handle,
1742 files_struct *dirfsp,
1743 const struct smb_filename *smb_fname,
1744 mode_t mode,
1745 SMB_DEV_T dev)
1747 int status;
1748 struct smb_filename *clientFname = NULL;
1749 TALLOC_CTX *ctx;
1751 DEBUG(MH_INFO_DEBUG, ("Entering mh_mknodat\n"));
1752 if (!is_in_media_files(smb_fname->base_name)) {
1753 status = SMB_VFS_NEXT_MKNODAT(handle,
1754 dirfsp,
1755 smb_fname,
1756 mode,
1757 dev);
1758 goto out;
1761 ctx = talloc_tos();
1763 if ((status = alloc_get_client_smb_fname(handle, ctx,
1764 smb_fname,
1765 &clientFname))) {
1766 goto err;
1769 status = SMB_VFS_NEXT_MKNODAT(handle,
1770 dirfsp,
1771 clientFname,
1772 mode,
1773 dev);
1775 err:
1776 TALLOC_FREE(clientFname);
1777 out:
1778 return status;
1782 * Success: return path pointer
1783 * Failure: set errno, return NULL pointer
1785 static struct smb_filename *mh_realpath(vfs_handle_struct *handle,
1786 TALLOC_CTX *ctx,
1787 const struct smb_filename *smb_fname)
1789 struct smb_filename *result_fname = NULL;
1790 struct smb_filename *clientFname = NULL;
1792 DEBUG(MH_INFO_DEBUG, ("Entering mh_realpath\n"));
1793 if (!is_in_media_files(smb_fname->base_name)) {
1794 return SMB_VFS_NEXT_REALPATH(handle, ctx, smb_fname);
1797 if (alloc_get_client_smb_fname(handle, ctx,
1798 smb_fname,
1799 &clientFname) != 0) {
1800 goto err;
1803 result_fname = SMB_VFS_NEXT_REALPATH(handle, ctx, clientFname);
1804 err:
1805 TALLOC_FREE(clientFname);
1806 return result_fname;
1810 * Success: return 0
1811 * Failure: set errno, return -1
1813 static int mh_chflags(vfs_handle_struct *handle,
1814 const struct smb_filename *smb_fname,
1815 unsigned int flags)
1817 int status;
1818 struct smb_filename *clientFname = NULL;
1819 TALLOC_CTX *ctx;
1821 DEBUG(MH_INFO_DEBUG, ("Entering mh_chflags\n"));
1822 if (!is_in_media_files(smb_fname->base_name)) {
1823 status = SMB_VFS_NEXT_CHFLAGS(handle, smb_fname, flags);
1824 goto out;
1827 ctx = talloc_tos();
1829 if ((status = alloc_get_client_smb_fname(handle, ctx,
1830 smb_fname,
1831 &clientFname))) {
1832 goto err;
1835 status = SMB_VFS_NEXT_CHFLAGS(handle, clientFname, flags);
1836 err:
1837 TALLOC_FREE(clientFname);
1838 out:
1839 return status;
1843 * Success: return NT_STATUS_OK
1844 * Failure: return NT status error
1846 static NTSTATUS mh_streaminfo(struct vfs_handle_struct *handle,
1847 struct files_struct *fsp,
1848 const struct smb_filename *smb_fname,
1849 TALLOC_CTX *ctx,
1850 unsigned int *num_streams,
1851 struct stream_struct **streams)
1853 NTSTATUS status;
1854 int ret;
1855 struct smb_filename *clientFname = NULL;
1857 DEBUG(MH_INFO_DEBUG, ("Entering mh_streaminfo\n"));
1858 if (!is_in_media_files(smb_fname->base_name)) {
1859 status = SMB_VFS_NEXT_STREAMINFO(handle,
1860 fsp,
1861 smb_fname,
1862 ctx,
1863 num_streams,
1864 streams);
1865 goto out;
1868 ret = alloc_get_client_smb_fname(handle,
1869 talloc_tos(),
1870 smb_fname,
1871 &clientFname);
1872 if (ret != 0) {
1873 status = NT_STATUS_NO_MEMORY;
1874 goto err;
1877 /* This only works on files, so we don't have to worry about
1878 * our fake directory stat'ing here.
1880 status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, clientFname,
1881 ctx, num_streams, streams);
1882 err:
1883 TALLOC_FREE(clientFname);
1884 out:
1885 return status;
1888 /* Ignoring get_real_filename function because the default
1889 * doesn't do anything.
1893 * Success: return NT_STATUS_OK
1894 * Failure: return NT status error
1895 * In this case, "name" is a path.
1897 static NTSTATUS mh_get_nt_acl_at(vfs_handle_struct *handle,
1898 struct files_struct *dirfsp,
1899 const struct smb_filename *smb_fname,
1900 uint32_t security_info,
1901 TALLOC_CTX *mem_ctx,
1902 struct security_descriptor **ppdesc)
1904 NTSTATUS status;
1905 char *clientPath;
1906 struct smb_filename *client_smb_fname = NULL;
1907 TALLOC_CTX *ctx;
1909 SMB_ASSERT(dirfsp == handle->conn->cwd_fsp);
1911 DEBUG(MH_INFO_DEBUG, ("Entering mh_get_nt_acl_at\n"));
1912 if (!is_in_media_files(smb_fname->base_name)) {
1913 status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle,
1914 dirfsp,
1915 smb_fname,
1916 security_info,
1917 mem_ctx,
1918 ppdesc);
1919 goto out;
1922 clientPath = NULL;
1923 ctx = talloc_tos();
1925 if (alloc_get_client_path(handle, ctx,
1926 smb_fname->base_name,
1927 &clientPath)) {
1928 status = map_nt_error_from_unix(errno);
1929 goto err;
1932 client_smb_fname = synthetic_smb_fname(talloc_tos(),
1933 clientPath,
1934 NULL,
1935 NULL,
1936 smb_fname->twrp,
1937 smb_fname->flags);
1938 if (client_smb_fname == NULL) {
1939 TALLOC_FREE(clientPath);
1940 return NT_STATUS_NO_MEMORY;
1943 status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle,
1944 dirfsp,
1945 client_smb_fname,
1946 security_info,
1947 mem_ctx,
1948 ppdesc);
1949 err:
1950 TALLOC_FREE(clientPath);
1951 TALLOC_FREE(client_smb_fname);
1952 out:
1953 return status;
1957 * Success: return acl pointer
1958 * Failure: set errno, return NULL
1960 static SMB_ACL_T mh_sys_acl_get_file(vfs_handle_struct *handle,
1961 const struct smb_filename *smb_fname,
1962 SMB_ACL_TYPE_T type,
1963 TALLOC_CTX *mem_ctx)
1965 SMB_ACL_T ret;
1966 int status;
1967 struct smb_filename *clientFname = NULL;
1969 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_get_file\n"));
1970 if (!is_in_media_files(smb_fname->base_name)) {
1971 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, smb_fname,
1972 type, mem_ctx);
1973 goto out;
1976 status = alloc_get_client_smb_fname(handle,
1977 talloc_tos(),
1978 smb_fname,
1979 &clientFname);
1980 if (status != 0) {
1981 ret = (SMB_ACL_T)NULL;
1982 goto err;
1985 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, clientFname, type, mem_ctx);
1986 err:
1987 TALLOC_FREE(clientFname);
1988 out:
1989 return ret;
1993 * Success: return 0
1994 * Failure: set errno, return -1
1995 * In this case, "name" is a path.
1997 static int mh_sys_acl_set_file(vfs_handle_struct *handle,
1998 const struct smb_filename *smb_fname,
1999 SMB_ACL_TYPE_T acltype,
2000 SMB_ACL_T theacl)
2002 int status;
2003 struct smb_filename *clientFname = NULL;
2005 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_set_file\n"));
2006 if (!is_in_media_files(smb_fname->base_name)) {
2007 status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, smb_fname,
2008 acltype, theacl);
2009 goto out;
2012 status = alloc_get_client_smb_fname(handle,
2013 talloc_tos(),
2014 smb_fname,
2015 &clientFname);
2016 if (status != 0) {
2017 goto err;
2020 status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, clientFname,
2021 acltype, theacl);
2022 err:
2023 TALLOC_FREE(clientFname);
2024 out:
2025 return status;
2029 * Success: return 0
2030 * Failure: set errno, return -1
2032 static int mh_sys_acl_delete_def_file(vfs_handle_struct *handle,
2033 const struct smb_filename *smb_fname)
2035 int status;
2036 struct smb_filename *clientFname = NULL;
2038 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_delete_def_file\n"));
2039 if (!is_in_media_files(smb_fname->base_name)) {
2040 status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle,
2041 smb_fname);
2042 goto out;
2045 status = alloc_get_client_smb_fname(handle,
2046 talloc_tos(),
2047 smb_fname,
2048 &clientFname);
2049 if (status != 0) {
2050 goto err;
2052 status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, clientFname);
2053 err:
2054 TALLOC_FREE(clientFname);
2055 out:
2056 return status;
2060 * Success: return positive number
2061 * Failure: set errno, return -1
2062 * In this case, "name" is an attr name.
2064 static ssize_t mh_getxattr(struct vfs_handle_struct *handle,
2065 const struct smb_filename *smb_fname,
2066 const char *name,
2067 void *value,
2068 size_t size)
2070 int status;
2071 struct smb_filename *clientFname = NULL;
2072 ssize_t ret;
2074 DEBUG(MH_INFO_DEBUG, ("Entering mh_getxattr\n"));
2075 if (!is_in_media_files(smb_fname->base_name)) {
2076 ret = SMB_VFS_NEXT_GETXATTR(handle, smb_fname,
2077 name, value, size);
2078 goto out;
2081 status = alloc_get_client_smb_fname(handle,
2082 talloc_tos(),
2083 smb_fname,
2084 &clientFname);
2085 if (status != 0) {
2086 ret = -1;
2087 goto err;
2089 ret = SMB_VFS_NEXT_GETXATTR(handle, clientFname, name, value, size);
2090 err:
2091 TALLOC_FREE(clientFname);
2092 out:
2093 return ret;
2097 * Success: return positive number
2098 * Failure: set errno, return -1
2100 static ssize_t mh_listxattr(struct vfs_handle_struct *handle,
2101 const struct smb_filename *smb_fname,
2102 char *list,
2103 size_t size)
2105 ssize_t ret;
2106 struct smb_filename *clientFname = NULL;
2107 int status;
2109 DEBUG(MH_INFO_DEBUG, ("Entering mh_listxattr\n"));
2110 if (!is_in_media_files(smb_fname->base_name)) {
2111 ret = SMB_VFS_NEXT_LISTXATTR(handle, smb_fname, list, size);
2112 goto out;
2115 status = alloc_get_client_smb_fname(handle,
2116 talloc_tos(),
2117 smb_fname,
2118 &clientFname);
2119 if (status != 0) {
2120 ret = -1;
2121 goto err;
2124 ret = SMB_VFS_NEXT_LISTXATTR(handle, clientFname, list, size);
2125 err:
2126 TALLOC_FREE(clientFname);
2127 out:
2128 return ret;
2132 * Success: return 0
2133 * Failure: set errno, return -1
2134 * In this case, "name" is an attr name.
2136 static int mh_removexattr(struct vfs_handle_struct *handle,
2137 const struct smb_filename *smb_fname,
2138 const char *name)
2140 int status;
2141 struct smb_filename *clientFname = NULL;
2143 DEBUG(MH_INFO_DEBUG, ("Entering mh_removexattr\n"));
2144 if (!is_in_media_files(smb_fname->base_name)) {
2145 status = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname, name);
2146 goto out;
2149 status = alloc_get_client_smb_fname(handle,
2150 talloc_tos(),
2151 smb_fname,
2152 &clientFname);
2153 if (status != 0) {
2154 goto err;
2156 status = SMB_VFS_NEXT_REMOVEXATTR(handle, clientFname, name);
2157 err:
2158 TALLOC_FREE(clientFname);
2159 out:
2160 return status;
2164 * Success: return 0
2165 * Failure: set errno, return -1
2166 * In this case, "name" is an attr name.
2168 static int mh_setxattr(struct vfs_handle_struct *handle,
2169 const struct smb_filename *smb_fname,
2170 const char *name,
2171 const void *value,
2172 size_t size,
2173 int flags)
2175 int status;
2176 struct smb_filename *clientFname = NULL;
2178 DEBUG(MH_INFO_DEBUG, ("Entering mh_setxattr\n"));
2179 if (!is_in_media_files(smb_fname->base_name)) {
2180 status = SMB_VFS_NEXT_SETXATTR(handle, smb_fname, name, value,
2181 size, flags);
2182 goto out;
2185 status = alloc_get_client_smb_fname(handle,
2186 talloc_tos(),
2187 smb_fname,
2188 &clientFname);
2189 if (status != 0) {
2190 goto err;
2192 status = SMB_VFS_NEXT_SETXATTR(handle, clientFname, name, value,
2193 size, flags);
2194 err:
2195 TALLOC_FREE(clientFname);
2196 out:
2197 return status;
2200 /* VFS operations structure */
2202 static struct vfs_fn_pointers vfs_mh_fns = {
2203 /* Disk operations */
2205 .statvfs_fn = mh_statvfs,
2207 /* Directory operations */
2209 .fdopendir_fn = mh_fdopendir,
2210 .readdir_fn = mh_readdir,
2211 .seekdir_fn = mh_seekdir,
2212 .telldir_fn = mh_telldir,
2213 .rewind_dir_fn = mh_rewinddir,
2214 .mkdirat_fn = mh_mkdirat,
2215 .closedir_fn = mh_closedir,
2217 /* File operations */
2219 .openat_fn = mh_openat,
2220 .create_file_fn = mh_create_file,
2221 .renameat_fn = mh_renameat,
2222 .stat_fn = mh_stat,
2223 .lstat_fn = mh_lstat,
2224 .fstat_fn = mh_fstat,
2225 .unlinkat_fn = mh_unlinkat,
2226 .chmod_fn = mh_chmod,
2227 .lchown_fn = mh_lchown,
2228 .chdir_fn = mh_chdir,
2229 .ntimes_fn = mh_ntimes,
2230 .symlinkat_fn = mh_symlinkat,
2231 .readlinkat_fn = mh_readlinkat,
2232 .linkat_fn = mh_linkat,
2233 .mknodat_fn = mh_mknodat,
2234 .realpath_fn = mh_realpath,
2235 .chflags_fn = mh_chflags,
2236 .streaminfo_fn = mh_streaminfo,
2238 /* NT ACL operations. */
2240 .get_nt_acl_at_fn = mh_get_nt_acl_at,
2242 /* POSIX ACL operations. */
2244 .sys_acl_get_file_fn = mh_sys_acl_get_file,
2245 .sys_acl_set_file_fn = mh_sys_acl_set_file,
2246 .sys_acl_delete_def_file_fn = mh_sys_acl_delete_def_file,
2248 /* EA operations. */
2249 .getxattr_fn = mh_getxattr,
2250 .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
2251 .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
2252 .listxattr_fn = mh_listxattr,
2253 .removexattr_fn = mh_removexattr,
2254 .setxattr_fn = mh_setxattr,
2256 /* aio operations */
2259 static_decl_vfs;
2260 NTSTATUS vfs_media_harmony_init(TALLOC_CTX *ctx)
2262 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2263 "media_harmony", &vfs_mh_fns);
2264 if (!NT_STATUS_IS_OK(ret))
2266 goto out;
2269 vfs_mh_debug_level = debug_add_class("media_harmony");
2271 if (vfs_mh_debug_level == -1) {
2272 vfs_mh_debug_level = DBGC_VFS;
2273 DEBUG(1, ("media_harmony_init: Couldn't register custom "
2274 "debugging class.\n"));
2275 } else {
2276 DEBUG(3, ("media_harmony_init: Debug class number of "
2277 "'media_harmony': %d\n",
2278 vfs_mh_debug_level));
2281 out:
2282 return ret;