s4:selftest: explicitly set NSS/RESOLV_WAPPER_* in wait_for_start
[Samba.git] / source3 / modules / vfs_media_harmony.c
blobf0815d79f957e728579e33f77ca17d904899ee3f
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 /* Success: return a mh_dirinfo_struct cast as a DIR
759 * Failure: set errno, return NULL
761 static DIR *mh_opendir(vfs_handle_struct *handle,
762 const struct smb_filename *smb_fname,
763 const char *mask,
764 uint32_t attr)
766 struct mh_dirinfo_struct *dirInfo;
768 DEBUG(MH_INFO_DEBUG, ("Entering with fname '%s'\n",
769 smb_fname->base_name));
771 if (alloc_set_client_dirinfo(handle, smb_fname->base_name, &dirInfo))
773 goto err;
776 if (!dirInfo->isInMediaFiles)
778 dirInfo->dirstream = SMB_VFS_NEXT_OPENDIR(handle,
779 smb_fname, mask, attr);
780 } else {
781 struct smb_filename *smb_fname_clientpath =
782 synthetic_smb_fname(talloc_tos(),
783 dirInfo->clientPath,
784 NULL,
785 NULL,
786 smb_fname->flags);
787 if (smb_fname_clientpath == NULL) {
788 goto err;
791 dirInfo->dirstream = SMB_VFS_NEXT_OPENDIR(handle,
792 smb_fname_clientpath, mask, attr);
793 TALLOC_FREE(smb_fname_clientpath);
796 if (dirInfo->dirstream == NULL) {
797 goto err;
800 /* Success is freed in closedir. */
801 DEBUG(MH_INFO_DEBUG, ("Leaving with dirInfo->dirpath '%s', "
802 "dirInfo->clientPath '%s'\n",
803 dirInfo->dirpath,
804 dirInfo->clientPath));
805 return (DIR*)dirInfo;
806 err:
807 /* Failure is freed here. */
808 DEBUG(MH_ERR_DEBUG, ("Failing with fname '%s'\n",
809 smb_fname->base_name));
810 TALLOC_FREE(dirInfo);
811 return NULL;
814 static DIR *mh_fdopendir(vfs_handle_struct *handle,
815 files_struct *fsp,
816 const char *mask,
817 uint32_t attr)
819 struct mh_dirinfo_struct *dirInfo = NULL;
820 DIR *dirstream;
822 DEBUG(MH_INFO_DEBUG, ("Entering with fsp->fsp_name->base_name '%s'\n",
823 fsp->fsp_name->base_name));
825 dirstream = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
826 if (!dirstream)
828 goto err;
831 if (alloc_set_client_dirinfo(handle, fsp->fsp_name->base_name,
832 &dirInfo))
834 goto err;
837 dirInfo->dirstream = dirstream;
839 if (! dirInfo->isInMediaFiles) {
840 goto out;
843 if (set_fake_mtime(handle, fsp, &(fsp->fsp_name), sys_stat))
845 goto err;
848 out:
849 DEBUG(MH_INFO_DEBUG, ("Leaving with dirInfo->dirpath '%s', "
850 "dirInfo->clientPath '%s', "
851 "fsp->fsp_name->st.st_ex_mtime %s",
852 dirInfo->dirpath,
853 dirInfo->clientPath,
854 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec))));
855 /* Success is freed in closedir. */
856 return (DIR *) dirInfo;
857 err:
858 /* Failure is freed here. */
859 DEBUG(MH_ERR_DEBUG, ("Failing with fsp->fsp_name->base_name '%s'\n",
860 fsp->fsp_name->base_name));
861 TALLOC_FREE(dirInfo);
862 return NULL;
866 * skip MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
867 * directory, skip other client's suffixed MDB_FILENAME and PMR_FILENAME
868 * filenames and CREATING_DIRNAME directory, replace this client's
869 * suffixed MDB_FILENAME and PMR_FILENAME filenames and CREATING_DIRNAME
870 * directory with non suffixed.
872 * Success: return dirent
873 * End of data: return NULL
874 * Failure: set errno, return NULL
876 static struct dirent *mh_readdir(vfs_handle_struct *handle,
877 DIR *dirp,
878 SMB_STRUCT_STAT *sbuf)
880 mh_dirinfo_struct* dirInfo = (mh_dirinfo_struct*)dirp;
881 struct dirent *d = NULL;
882 int skip;
884 DEBUG(MH_INFO_DEBUG, ("Entering mh_readdir\n"));
886 DEBUG(MH_INFO_DEBUG, ("dirInfo->dirpath '%s', "
887 "dirInfo->clientPath '%s', "
888 "dirInfo->isInMediaFiles '%s', "
889 "dirInfo->clientMDBFilename '%s', "
890 "dirInfo->clientPMRFilename '%s', "
891 "dirInfo->clientCreatingDirname '%s'\n",
892 dirInfo->dirpath,
893 dirInfo->clientPath,
894 dirInfo->isInMediaFiles ? "True" : "False",
895 dirInfo->clientMDBFilename,
896 dirInfo->clientPMRFilename,
897 dirInfo->clientCreatingDirname));
899 if (! dirInfo->isInMediaFiles)
901 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
902 goto out;
907 const char* dname;
908 bool isAppleDouble;
910 skip = False;
911 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
913 if (d == NULL)
915 break;
918 /* ignore apple double prefix for logic below */
919 if (is_apple_double(d->d_name))
921 dname = &d->d_name[APPLE_DOUBLE_PREFIX_LEN];
922 isAppleDouble = True;
924 else
926 dname = d->d_name;
927 isAppleDouble = False;
930 /* skip Avid-special files with no client suffix */
931 if (
932 strcmp(dname, MDB_FILENAME) == 0
934 strcmp(dname, PMR_FILENAME) == 0
936 strcmp(dname, CREATING_DIRNAME) == 0
939 skip = True;
941 /* chop client suffix off this client's suffixed files */
942 else if (strcmp(dname, dirInfo->clientMDBFilename) == 0)
944 if (isAppleDouble)
946 d->d_name[MDB_FILENAME_LEN
947 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
949 else
951 d->d_name[MDB_FILENAME_LEN] = '\0';
954 else if (strcmp(dname, dirInfo->clientPMRFilename) == 0)
956 if (isAppleDouble)
958 d->d_name[PMR_FILENAME_LEN
959 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
961 else
963 d->d_name[PMR_FILENAME_LEN] = '\0';
966 else if (strcmp(dname, dirInfo->clientCreatingDirname)
967 == 0)
969 if (isAppleDouble)
971 d->d_name[CREATING_DIRNAME_LEN
972 + APPLE_DOUBLE_PREFIX_LEN] = '\0';
974 else
976 d->d_name[CREATING_DIRNAME_LEN] = '\0';
980 * Anything that starts as an Avid-special file
981 * that's made it this far should be skipped. This
982 * is different from the original behaviour, which
983 * only skipped other client's suffixed files.
985 else if (
986 strncmp(MDB_FILENAME, dname,
987 MDB_FILENAME_LEN) == 0
989 strncmp(PMR_FILENAME, dname,
990 PMR_FILENAME_LEN) == 0
992 strncmp(CREATING_DIRNAME, dname,
993 CREATING_DIRNAME_LEN) == 0
996 skip = True;
999 while (skip);
1001 out:
1002 DEBUG(MH_INFO_DEBUG, ("Leaving mh_readdir\n"));
1003 return d;
1007 * Success: no success result defined.
1008 * Failure: no failure result defined.
1010 static void mh_seekdir(vfs_handle_struct *handle,
1011 DIR *dirp,
1012 long offset)
1014 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_seekdir\n"));
1015 SMB_VFS_NEXT_SEEKDIR(handle,
1016 ((mh_dirinfo_struct*)dirp)->dirstream, offset);
1020 * Success: return long
1021 * Failure: no failure result defined.
1023 static long mh_telldir(vfs_handle_struct *handle,
1024 DIR *dirp)
1026 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_telldir\n"));
1027 return SMB_VFS_NEXT_TELLDIR(handle,
1028 ((mh_dirinfo_struct*)dirp)->dirstream);
1032 * Success: no success result defined.
1033 * Failure: no failure result defined.
1035 static void mh_rewinddir(vfs_handle_struct *handle,
1036 DIR *dirp)
1038 DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_rewinddir\n"));
1039 SMB_VFS_NEXT_REWINDDIR(handle,
1040 ((mh_dirinfo_struct*)dirp)->dirstream);
1044 * Success: return 0
1045 * Failure: set errno, return -1
1047 static int mh_mkdir(vfs_handle_struct *handle,
1048 const struct smb_filename *smb_fname,
1049 mode_t mode)
1051 int status;
1052 struct smb_filename *clientFname = NULL;
1053 const char *path = smb_fname->base_name;
1055 DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
1057 if (!is_in_media_files(path))
1059 status = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
1060 goto out;
1063 status = alloc_get_client_smb_fname(handle,
1064 talloc_tos(),
1065 smb_fname,
1066 &clientFname);
1067 if (status != 0) {
1068 goto err;
1071 status = SMB_VFS_NEXT_MKDIR(handle, clientFname, mode);
1072 err:
1073 TALLOC_FREE(clientFname);
1074 out:
1075 DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n", path));
1076 return status;
1080 * Success: return 0
1081 * Failure: set errno, return -1
1083 static int mh_rmdir(vfs_handle_struct *handle,
1084 const struct smb_filename *smb_fname)
1086 int status;
1087 struct smb_filename *clientFname = NULL;
1088 const char *path = smb_fname->base_name;
1090 DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
1092 if (!is_in_media_files(path))
1094 status = SMB_VFS_NEXT_RMDIR(handle, smb_fname);
1095 goto out;
1098 status = alloc_get_client_smb_fname(handle,
1099 talloc_tos(),
1100 smb_fname,
1101 &clientFname);
1102 if (status != 0) {
1103 goto err;
1106 status = SMB_VFS_NEXT_RMDIR(handle, clientFname);
1107 err:
1108 TALLOC_FREE(clientFname);
1109 out:
1110 DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n", path));
1111 return status;
1115 * Success: return 0
1116 * Failure: set errno, return -1
1118 static int mh_closedir(vfs_handle_struct *handle,
1119 DIR *dirp)
1121 DIR *realdirp = ((mh_dirinfo_struct*)dirp)->dirstream;
1123 DEBUG(MH_INFO_DEBUG, ("Entering mh_closedir\n"));
1124 // Will this talloc_free destroy realdirp?
1125 TALLOC_FREE(dirp);
1127 DEBUG(MH_INFO_DEBUG, ("Leaving mh_closedir\n"));
1128 return SMB_VFS_NEXT_CLOSEDIR(handle, realdirp);
1132 * Success: return non-negative file descriptor
1133 * Failure: set errno, return -1
1135 static int mh_open(vfs_handle_struct *handle,
1136 struct smb_filename *smb_fname,
1137 files_struct *fsp,
1138 int flags,
1139 mode_t mode)
1141 int ret;
1142 struct smb_filename *clientFname;
1143 TALLOC_CTX *ctx;
1146 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1147 smb_fname->base_name));
1149 if (!is_in_media_files(smb_fname->base_name))
1151 ret = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags,
1152 mode);
1153 goto out;
1156 clientFname = NULL;
1157 ctx = talloc_tos();
1159 if(alloc_get_client_smb_fname(handle, ctx,
1160 smb_fname,
1161 &clientFname))
1163 ret = -1;
1164 goto err;
1167 // What about fsp->fsp_name?
1168 // We also have to get correct stat info into fsp and smb_fname
1169 // for DB files, don't we?
1171 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s' "
1172 "smb_fname->st.st_ex_mtime %s"
1173 " fsp->fsp_name->st.st_ex_mtime %s",
1174 smb_fname->base_name,
1175 ctime(&(smb_fname->st.st_ex_mtime.tv_sec)),
1176 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec))));
1178 ret = SMB_VFS_NEXT_OPEN(handle, clientFname, fsp, flags, mode);
1179 err:
1180 TALLOC_FREE(clientFname);
1181 out:
1182 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s'\n",
1183 smb_fname->base_name));
1184 return ret;
1188 * Success: return non-negative file descriptor
1189 * Failure: set errno, return -1
1191 static NTSTATUS mh_create_file(vfs_handle_struct *handle,
1192 struct smb_request *req,
1193 uint16_t root_dir_fid,
1194 struct smb_filename *smb_fname,
1195 uint32_t access_mask,
1196 uint32_t share_access,
1197 uint32_t create_disposition,
1198 uint32_t create_options,
1199 uint32_t file_attributes,
1200 uint32_t oplock_request,
1201 struct smb2_lease *lease,
1202 uint64_t allocation_size,
1203 uint32_t private_flags,
1204 struct security_descriptor *sd,
1205 struct ea_list *ea_list,
1206 files_struct **result_fsp,
1207 int *pinfo,
1208 const struct smb2_create_blobs *in_context_blobs,
1209 struct smb2_create_blobs *out_context_blobs)
1211 NTSTATUS status;
1212 struct smb_filename *clientFname;
1213 TALLOC_CTX *ctx;
1216 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1217 smb_fname->base_name));
1218 if (!is_in_media_files(smb_fname->base_name))
1220 status = SMB_VFS_NEXT_CREATE_FILE(
1221 handle,
1222 req,
1223 root_dir_fid,
1224 smb_fname,
1225 access_mask,
1226 share_access,
1227 create_disposition,
1228 create_options,
1229 file_attributes,
1230 oplock_request,
1231 lease,
1232 allocation_size,
1233 private_flags,
1235 ea_list,
1236 result_fsp,
1237 pinfo,
1238 in_context_blobs,
1239 out_context_blobs);
1240 goto out;
1243 clientFname = NULL;
1244 ctx = talloc_tos();
1246 if (alloc_get_client_smb_fname(handle, ctx,
1247 smb_fname,
1248 &clientFname))
1250 status = map_nt_error_from_unix(errno);
1251 goto err;
1254 /* This only creates files, so we don't have to worry about
1255 * our fake directory stat'ing here.
1257 // But we still need to route stat calls for DB files
1258 // properly, right?
1259 status = SMB_VFS_NEXT_CREATE_FILE(
1260 handle,
1261 req,
1262 root_dir_fid,
1263 clientFname,
1264 access_mask,
1265 share_access,
1266 create_disposition,
1267 create_options,
1268 file_attributes,
1269 oplock_request,
1270 lease,
1271 allocation_size,
1272 private_flags,
1274 ea_list,
1275 result_fsp,
1276 pinfo,
1277 in_context_blobs,
1278 out_context_blobs);
1279 err:
1280 TALLOC_FREE(clientFname);
1281 out:
1282 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s'"
1283 "smb_fname->st.st_ex_mtime %s"
1284 " fsp->fsp_name->st.st_ex_mtime %s",
1285 smb_fname->base_name,
1286 ctime(&(smb_fname->st.st_ex_mtime.tv_sec)),
1287 (*result_fsp) && VALID_STAT((*result_fsp)->fsp_name->st) ?
1288 ctime(&((*result_fsp)->fsp_name->st.st_ex_mtime.tv_sec)) :
1289 "No fsp time\n"));
1290 return status;
1294 * Success: return 0
1295 * Failure: set errno, return -1
1297 static int mh_rename(vfs_handle_struct *handle,
1298 const struct smb_filename *smb_fname_src,
1299 const struct smb_filename *smb_fname_dst)
1301 int status;
1302 struct smb_filename *srcClientFname;
1303 struct smb_filename *dstClientFname;
1304 TALLOC_CTX *ctx;
1307 DEBUG(MH_INFO_DEBUG, ("Entering with "
1308 "smb_fname_src->base_name '%s', "
1309 "smb_fname_dst->base_name '%s'\n",
1310 smb_fname_src->base_name,
1311 smb_fname_dst->base_name));
1313 if (!is_in_media_files(smb_fname_src->base_name)
1315 !is_in_media_files(smb_fname_dst->base_name))
1317 status = SMB_VFS_NEXT_RENAME(handle, smb_fname_src,
1318 smb_fname_dst);
1319 goto out;
1322 srcClientFname = NULL;
1323 dstClientFname = NULL;
1324 ctx = talloc_tos();
1326 if ((status = alloc_get_client_smb_fname(handle, ctx,
1327 smb_fname_src,
1328 &srcClientFname)))
1330 goto err;
1333 if ((status = alloc_get_client_smb_fname(handle, ctx,
1334 smb_fname_dst,
1335 &dstClientFname)))
1337 goto err;
1340 status = SMB_VFS_NEXT_RENAME(handle, srcClientFname,
1341 dstClientFname);
1342 err:
1343 TALLOC_FREE(dstClientFname);
1344 TALLOC_FREE(srcClientFname);
1345 out:
1346 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname_src->base_name '%s',"
1347 " smb_fname_dst->base_name '%s'\n",
1348 smb_fname_src->base_name,
1349 smb_fname_dst->base_name));
1350 return status;
1354 * Success: return 0
1355 * Failure: set errno, return -1
1357 static int mh_stat(vfs_handle_struct *handle,
1358 struct smb_filename *smb_fname)
1360 int status = 0;
1361 struct smb_filename *clientFname;
1362 TALLOC_CTX *ctx;
1365 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1366 smb_fname->base_name));
1368 if (!is_in_media_files(smb_fname->base_name))
1370 status = SMB_VFS_NEXT_STAT(handle, smb_fname);
1371 goto out;
1374 clientFname = NULL;
1375 ctx = talloc_tos();
1377 if ((status = alloc_get_client_smb_fname(handle, ctx,
1378 smb_fname,
1379 &clientFname)))
1381 goto err;
1383 DEBUG(MH_INFO_DEBUG, ("Stat'ing clientFname->base_name '%s'\n",
1384 clientFname->base_name));
1385 if ((status = SMB_VFS_NEXT_STAT(handle, clientFname)))
1387 goto err;
1389 if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_stat)))
1391 goto err;
1394 /* Unlike functions with const smb_filename, we have to
1395 * modify smb_fname itself to pass our info back up.
1397 DEBUG(MH_INFO_DEBUG, ("Setting smb_fname '%s' stat "
1398 "from clientFname '%s'\n",
1399 smb_fname->base_name,
1400 clientFname->base_name));
1401 smb_fname->st = clientFname->st;
1402 err:
1403 TALLOC_FREE(clientFname);
1404 out:
1405 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1406 ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1407 return status;
1411 * Success: return 0
1412 * Failure: set errno, return -1
1414 static int mh_lstat(vfs_handle_struct *handle,
1415 struct smb_filename *smb_fname)
1417 int status = 0;
1418 struct smb_filename *clientFname;
1419 TALLOC_CTX *ctx;
1421 DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1422 smb_fname->base_name));
1424 if (!is_in_media_files(smb_fname->base_name))
1426 status = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1427 goto out;
1430 clientFname = NULL;
1431 ctx = talloc_tos();
1433 if ((status = alloc_get_client_smb_fname(handle, ctx,
1434 smb_fname,
1435 &clientFname)))
1437 goto err;
1439 if ((status = SMB_VFS_NEXT_LSTAT(handle, clientFname)))
1441 goto err;
1444 if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_lstat)))
1446 goto err;
1448 /* Unlike functions with const smb_filename, we have to
1449 * modify smb_fname itself to pass our info back up.
1451 smb_fname->st = clientFname->st;
1452 err:
1453 TALLOC_FREE(clientFname);
1454 out:
1455 DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1456 ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1457 return status;
1461 * Success: return 0
1462 * Failure: set errno, return -1
1464 static int mh_fstat(vfs_handle_struct *handle,
1465 files_struct *fsp, SMB_STRUCT_STAT *sbuf)
1467 int status = 0;
1469 DEBUG(MH_INFO_DEBUG, ("Entering with fsp->fsp_name->base_name "
1470 "'%s'\n", fsp_str_dbg(fsp)));
1472 if ((status = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf)))
1474 goto out;
1477 if (fsp->fsp_name == NULL
1478 || !is_in_media_files(fsp->fsp_name->base_name))
1480 goto out;
1483 if ((status = mh_stat(handle, fsp->fsp_name)))
1485 goto out;
1488 *sbuf = fsp->fsp_name->st;
1489 out:
1490 DEBUG(MH_INFO_DEBUG, ("Leaving with fsp->fsp_name->st.st_ex_mtime "
1491 "%s",
1492 fsp->fsp_name != NULL ?
1493 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec)) :
1494 "0"));
1495 return status;
1499 * Success: return 0
1500 * Failure: set errno, return -1
1502 static int mh_unlink(vfs_handle_struct *handle,
1503 const struct smb_filename *smb_fname)
1505 int status;
1506 struct smb_filename *clientFname;
1507 TALLOC_CTX *ctx;
1509 DEBUG(MH_INFO_DEBUG, ("Entering mh_unlink\n"));
1510 if (!is_in_media_files(smb_fname->base_name))
1512 status = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
1513 goto out;
1516 clientFname = NULL;
1517 ctx = talloc_tos();
1519 if ((status = alloc_get_client_smb_fname(handle, ctx,
1520 smb_fname,
1521 &clientFname)))
1523 goto err;
1526 status = SMB_VFS_NEXT_UNLINK(handle, clientFname);
1527 err:
1528 TALLOC_FREE(clientFname);
1529 out:
1530 return status;
1534 * Success: return 0
1535 * Failure: set errno, return -1
1537 static int mh_chmod(vfs_handle_struct *handle,
1538 const struct smb_filename *smb_fname,
1539 mode_t mode)
1541 int status;
1542 struct smb_filename *clientFname = NULL;
1544 DEBUG(MH_INFO_DEBUG, ("Entering mh_chmod\n"));
1545 if (!is_in_media_files(smb_fname->base_name))
1547 status = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
1548 goto out;
1551 status = alloc_get_client_smb_fname(handle,
1552 talloc_tos(),
1553 smb_fname,
1554 &clientFname);
1555 if (status != 0) {
1556 goto err;
1559 status = SMB_VFS_NEXT_CHMOD(handle, clientFname, mode);
1560 err:
1561 TALLOC_FREE(clientFname);
1562 out:
1563 return status;
1567 * Success: return 0
1568 * Failure: set errno, return -1
1570 static int mh_chown(vfs_handle_struct *handle,
1571 const struct smb_filename *smb_fname,
1572 uid_t uid,
1573 gid_t gid)
1575 int status;
1576 struct smb_filename *clientFname = NULL;
1578 DEBUG(MH_INFO_DEBUG, ("Entering mh_chown\n"));
1579 if (!is_in_media_files(smb_fname->base_name))
1581 status = SMB_VFS_NEXT_CHOWN(handle, smb_fname, uid, gid);
1582 goto out;
1585 status = alloc_get_client_smb_fname(handle,
1586 talloc_tos(),
1587 smb_fname,
1588 &clientFname);
1589 if (status != 0) {
1590 goto err;
1593 status = SMB_VFS_NEXT_CHOWN(handle, clientFname, uid, gid);
1594 err:
1595 TALLOC_FREE(clientFname);
1596 out:
1597 return status;
1601 * Success: return 0
1602 * Failure: set errno, return -1
1604 static int mh_lchown(vfs_handle_struct *handle,
1605 const struct smb_filename *smb_fname,
1606 uid_t uid,
1607 gid_t gid)
1609 int status;
1610 struct smb_filename *clientFname = NULL;
1612 DEBUG(MH_INFO_DEBUG, ("Entering mh_lchown\n"));
1613 if (!is_in_media_files(smb_fname->base_name))
1615 status = SMB_VFS_NEXT_LCHOWN(handle, smb_fname, uid, gid);
1616 goto out;
1619 status = alloc_get_client_smb_fname(handle,
1620 talloc_tos(),
1621 smb_fname,
1622 &clientFname);
1623 if (status != 0) {
1624 goto err;
1627 status = SMB_VFS_NEXT_LCHOWN(handle, clientFname, uid, gid);
1628 err:
1629 TALLOC_FREE(clientFname);
1630 out:
1631 return status;
1635 * Success: return 0
1636 * Failure: set errno, return -1
1638 static int mh_chdir(vfs_handle_struct *handle,
1639 const struct smb_filename *smb_fname)
1641 int status;
1642 struct smb_filename *clientFname = NULL;
1644 DEBUG(MH_INFO_DEBUG, ("Entering mh_chdir\n"));
1645 if (!is_in_media_files(smb_fname->base_name)) {
1646 status = SMB_VFS_NEXT_CHDIR(handle, smb_fname);
1647 goto out;
1650 status = alloc_get_client_smb_fname(handle,
1651 talloc_tos(),
1652 smb_fname,
1653 &clientFname);
1654 if (status != 0) {
1655 goto err;
1658 status = SMB_VFS_NEXT_CHDIR(handle, clientFname);
1659 err:
1660 TALLOC_FREE(clientFname);
1661 out:
1662 return status;
1666 * Success: return 0
1667 * Failure: set errno, return -1
1669 static int mh_ntimes(vfs_handle_struct *handle,
1670 const struct smb_filename *smb_fname,
1671 struct smb_file_time *ft)
1673 int status;
1674 struct smb_filename *clientFname;
1675 TALLOC_CTX *ctx;
1678 DEBUG(MH_INFO_DEBUG, ("Entering mh_ntimes\n"));
1679 if (!is_in_media_files(smb_fname->base_name))
1681 status = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1682 goto out;
1685 clientFname = NULL;
1686 ctx = talloc_tos();
1688 if ((status = alloc_get_client_smb_fname(handle, ctx,
1689 smb_fname,
1690 &clientFname)))
1692 goto err;
1695 status = SMB_VFS_NEXT_NTIMES(handle, clientFname, ft);
1696 err:
1697 TALLOC_FREE(clientFname);
1698 out:
1699 return status;
1703 * Success: return 0
1704 * Failure: set errno, return -1
1707 static int mh_symlink(vfs_handle_struct *handle,
1708 const char *link_contents,
1709 const struct smb_filename *new_smb_fname)
1711 int status = -1;
1712 char *client_link_contents = NULL;
1713 struct smb_filename *newclientFname = NULL;
1715 DEBUG(MH_INFO_DEBUG, ("Entering mh_symlink\n"));
1716 if (!is_in_media_files(link_contents) &&
1717 !is_in_media_files(new_smb_fname->base_name)) {
1718 status = SMB_VFS_NEXT_SYMLINK(handle,
1719 link_contents,
1720 new_smb_fname);
1721 goto out;
1724 if ((status = alloc_get_client_path(handle, talloc_tos(),
1725 link_contents,
1726 &client_link_contents))) {
1727 goto err;
1729 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1730 new_smb_fname,
1731 &newclientFname))) {
1732 goto err;
1735 status = SMB_VFS_NEXT_SYMLINK(handle,
1736 client_link_contents,
1737 newclientFname);
1738 err:
1739 TALLOC_FREE(client_link_contents);
1740 TALLOC_FREE(newclientFname);
1741 out:
1742 return status;
1746 * Success: return byte count
1747 * Failure: set errno, return -1
1749 static int mh_readlink(vfs_handle_struct *handle,
1750 const struct smb_filename *smb_fname,
1751 char *buf,
1752 size_t bufsiz)
1754 int status;
1755 struct smb_filename *clientFname = NULL;
1757 DEBUG(MH_INFO_DEBUG, ("Entering mh_readlink\n"));
1758 if (!is_in_media_files(smb_fname->base_name)) {
1759 status = SMB_VFS_NEXT_READLINK(handle, smb_fname, buf, bufsiz);
1760 goto out;
1763 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1764 smb_fname,
1765 &clientFname))) {
1766 goto err;
1769 status = SMB_VFS_NEXT_READLINK(handle, clientFname, buf, bufsiz);
1770 err:
1771 TALLOC_FREE(clientFname);
1772 out:
1773 return status;
1777 * Success: return 0
1778 * Failure: set errno, return -1
1780 static int mh_link(vfs_handle_struct *handle,
1781 const struct smb_filename *old_smb_fname,
1782 const struct smb_filename *new_smb_fname)
1784 int status;
1785 struct smb_filename *oldclientFname = NULL;
1786 struct smb_filename *newclientFname = NULL;
1788 DEBUG(MH_INFO_DEBUG, ("Entering mh_link\n"));
1789 if (!is_in_media_files(old_smb_fname->base_name) &&
1790 !is_in_media_files(new_smb_fname->base_name)) {
1791 status = SMB_VFS_NEXT_LINK(handle,
1792 old_smb_fname,
1793 new_smb_fname);
1794 goto out;
1797 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1798 old_smb_fname,
1799 &oldclientFname))) {
1800 goto err;
1802 if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1803 new_smb_fname,
1804 &newclientFname))) {
1805 goto err;
1808 status = SMB_VFS_NEXT_LINK(handle, oldclientFname, newclientFname);
1809 err:
1810 TALLOC_FREE(newclientFname);
1811 TALLOC_FREE(oldclientFname);
1812 out:
1813 return status;
1817 * Success: return 0
1818 * Failure: set errno, return -1
1820 static int mh_mknod(vfs_handle_struct *handle,
1821 const struct smb_filename *smb_fname,
1822 mode_t mode,
1823 SMB_DEV_T dev)
1825 int status;
1826 struct smb_filename *clientFname = NULL;
1827 TALLOC_CTX *ctx;
1829 DEBUG(MH_INFO_DEBUG, ("Entering mh_mknod\n"));
1830 if (!is_in_media_files(smb_fname->base_name)) {
1831 status = SMB_VFS_NEXT_MKNOD(handle, smb_fname, mode, dev);
1832 goto out;
1835 ctx = talloc_tos();
1837 if ((status = alloc_get_client_smb_fname(handle, ctx,
1838 smb_fname,
1839 &clientFname))) {
1840 goto err;
1843 status = SMB_VFS_NEXT_MKNOD(handle, clientFname, mode, dev);
1844 err:
1845 TALLOC_FREE(clientFname);
1846 out:
1847 return status;
1851 * Success: return path pointer
1852 * Failure: set errno, return NULL pointer
1854 static struct smb_filename *mh_realpath(vfs_handle_struct *handle,
1855 TALLOC_CTX *ctx,
1856 const struct smb_filename *smb_fname)
1858 struct smb_filename *result_fname = NULL;
1859 struct smb_filename *clientFname = NULL;
1861 DEBUG(MH_INFO_DEBUG, ("Entering mh_realpath\n"));
1862 if (!is_in_media_files(smb_fname->base_name)) {
1863 return SMB_VFS_NEXT_REALPATH(handle, ctx, smb_fname);
1866 if (alloc_get_client_smb_fname(handle, ctx,
1867 smb_fname,
1868 &clientFname) != 0) {
1869 goto err;
1872 result_fname = SMB_VFS_NEXT_REALPATH(handle, ctx, clientFname);
1873 err:
1874 TALLOC_FREE(clientFname);
1875 return result_fname;
1879 * Success: return 0
1880 * Failure: set errno, return -1
1882 static int mh_chflags(vfs_handle_struct *handle,
1883 const struct smb_filename *smb_fname,
1884 unsigned int flags)
1886 int status;
1887 struct smb_filename *clientFname = NULL;
1888 TALLOC_CTX *ctx;
1890 DEBUG(MH_INFO_DEBUG, ("Entering mh_chflags\n"));
1891 if (!is_in_media_files(smb_fname->base_name)) {
1892 status = SMB_VFS_NEXT_CHFLAGS(handle, smb_fname, flags);
1893 goto out;
1896 ctx = talloc_tos();
1898 if ((status = alloc_get_client_smb_fname(handle, ctx,
1899 smb_fname,
1900 &clientFname))) {
1901 goto err;
1904 status = SMB_VFS_NEXT_CHFLAGS(handle, clientFname, flags);
1905 err:
1906 TALLOC_FREE(clientFname);
1907 out:
1908 return status;
1912 * Success: return NT_STATUS_OK
1913 * Failure: return NT status error
1915 static NTSTATUS mh_streaminfo(struct vfs_handle_struct *handle,
1916 struct files_struct *fsp,
1917 const struct smb_filename *smb_fname,
1918 TALLOC_CTX *ctx,
1919 unsigned int *num_streams,
1920 struct stream_struct **streams)
1922 NTSTATUS status;
1923 int ret;
1924 struct smb_filename *clientFname = NULL;
1926 DEBUG(MH_INFO_DEBUG, ("Entering mh_streaminfo\n"));
1927 if (!is_in_media_files(smb_fname->base_name)) {
1928 status = SMB_VFS_NEXT_STREAMINFO(handle,
1929 fsp,
1930 smb_fname,
1931 ctx,
1932 num_streams,
1933 streams);
1934 goto out;
1937 ret = alloc_get_client_smb_fname(handle,
1938 talloc_tos(),
1939 smb_fname,
1940 &clientFname);
1941 if (ret != 0) {
1942 status = NT_STATUS_NO_MEMORY;
1943 goto err;
1946 /* This only works on files, so we don't have to worry about
1947 * our fake directory stat'ing here.
1949 status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, clientFname,
1950 ctx, num_streams, streams);
1951 err:
1952 TALLOC_FREE(clientFname);
1953 out:
1954 return status;
1957 /* Ignoring get_real_filename function because the default
1958 * doesn't do anything.
1962 * Success: return NT_STATUS_OK
1963 * Failure: return NT status error
1964 * In this case, "name" is a path.
1966 static NTSTATUS mh_get_nt_acl(vfs_handle_struct *handle,
1967 const struct smb_filename *smb_fname,
1968 uint32_t security_info,
1969 TALLOC_CTX *mem_ctx,
1970 struct security_descriptor **ppdesc)
1972 NTSTATUS status;
1973 char *clientPath;
1974 struct smb_filename *client_smb_fname = NULL;
1975 TALLOC_CTX *ctx;
1977 DEBUG(MH_INFO_DEBUG, ("Entering mh_get_nt_acl\n"));
1978 if (!is_in_media_files(smb_fname->base_name))
1980 status = SMB_VFS_NEXT_GET_NT_ACL(handle, smb_fname,
1981 security_info,
1982 mem_ctx, ppdesc);
1983 goto out;
1986 clientPath = NULL;
1987 ctx = talloc_tos();
1989 if (alloc_get_client_path(handle, ctx,
1990 smb_fname->base_name,
1991 &clientPath))
1993 status = map_nt_error_from_unix(errno);
1994 goto err;
1997 client_smb_fname = synthetic_smb_fname(talloc_tos(),
1998 clientPath,
1999 NULL,
2000 NULL,
2001 smb_fname->flags);
2002 if (client_smb_fname == NULL) {
2003 TALLOC_FREE(clientPath);
2004 return NT_STATUS_NO_MEMORY;
2007 status = SMB_VFS_NEXT_GET_NT_ACL(handle, client_smb_fname,
2008 security_info,
2009 mem_ctx, ppdesc);
2010 err:
2011 TALLOC_FREE(clientPath);
2012 TALLOC_FREE(client_smb_fname);
2013 out:
2014 return status;
2018 * Success: return 0
2019 * Failure: set errno, return -1
2021 static int mh_chmod_acl(vfs_handle_struct *handle,
2022 const struct smb_filename *smb_fname,
2023 mode_t mode)
2025 int status;
2026 struct smb_filename *clientFname = NULL;
2028 DEBUG(MH_INFO_DEBUG, ("Entering mh_chmod_acl\n"));
2029 if (!is_in_media_files(smb_fname->base_name))
2031 status = SMB_VFS_NEXT_CHMOD_ACL(handle, smb_fname, mode);
2032 goto out;
2035 status = alloc_get_client_smb_fname(handle,
2036 talloc_tos(),
2037 smb_fname,
2038 &clientFname);
2039 if (status != 0) {
2040 goto err;
2043 status = SMB_VFS_NEXT_CHMOD_ACL(handle, clientFname, mode);
2044 err:
2045 TALLOC_FREE(clientFname);
2046 out:
2047 return status;
2051 * Success: return acl pointer
2052 * Failure: set errno, return NULL
2054 static SMB_ACL_T mh_sys_acl_get_file(vfs_handle_struct *handle,
2055 const struct smb_filename *smb_fname,
2056 SMB_ACL_TYPE_T type,
2057 TALLOC_CTX *mem_ctx)
2059 SMB_ACL_T ret;
2060 int status;
2061 struct smb_filename *clientFname = NULL;
2063 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_get_file\n"));
2064 if (!is_in_media_files(smb_fname->base_name)) {
2065 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, smb_fname,
2066 type, mem_ctx);
2067 goto out;
2070 status = alloc_get_client_smb_fname(handle,
2071 talloc_tos(),
2072 smb_fname,
2073 &clientFname);
2074 if (status != 0) {
2075 ret = (SMB_ACL_T)NULL;
2076 goto err;
2079 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, clientFname, type, mem_ctx);
2080 err:
2081 TALLOC_FREE(clientFname);
2082 out:
2083 return ret;
2087 * Success: return 0
2088 * Failure: set errno, return -1
2089 * In this case, "name" is a path.
2091 static int mh_sys_acl_set_file(vfs_handle_struct *handle,
2092 const struct smb_filename *smb_fname,
2093 SMB_ACL_TYPE_T acltype,
2094 SMB_ACL_T theacl)
2096 int status;
2097 struct smb_filename *clientFname = NULL;
2099 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_set_file\n"));
2100 if (!is_in_media_files(smb_fname->base_name)) {
2101 status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, smb_fname,
2102 acltype, theacl);
2103 goto out;
2106 status = alloc_get_client_smb_fname(handle,
2107 talloc_tos(),
2108 smb_fname,
2109 &clientFname);
2110 if (status != 0) {
2111 goto err;
2114 status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, clientFname,
2115 acltype, theacl);
2116 err:
2117 TALLOC_FREE(clientFname);
2118 out:
2119 return status;
2123 * Success: return 0
2124 * Failure: set errno, return -1
2126 static int mh_sys_acl_delete_def_file(vfs_handle_struct *handle,
2127 const struct smb_filename *smb_fname)
2129 int status;
2130 struct smb_filename *clientFname = NULL;
2132 DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_delete_def_file\n"));
2133 if (!is_in_media_files(smb_fname->base_name)) {
2134 status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle,
2135 smb_fname);
2136 goto out;
2139 status = alloc_get_client_smb_fname(handle,
2140 talloc_tos(),
2141 smb_fname,
2142 &clientFname);
2143 if (status != 0) {
2144 goto err;
2146 status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, clientFname);
2147 err:
2148 TALLOC_FREE(clientFname);
2149 out:
2150 return status;
2154 * Success: return positive number
2155 * Failure: set errno, return -1
2156 * In this case, "name" is an attr name.
2158 static ssize_t mh_getxattr(struct vfs_handle_struct *handle,
2159 const struct smb_filename *smb_fname,
2160 const char *name,
2161 void *value,
2162 size_t size)
2164 int status;
2165 struct smb_filename *clientFname = NULL;
2166 ssize_t ret;
2168 DEBUG(MH_INFO_DEBUG, ("Entering mh_getxattr\n"));
2169 if (!is_in_media_files(smb_fname->base_name)) {
2170 ret = SMB_VFS_NEXT_GETXATTR(handle, smb_fname,
2171 name, value, size);
2172 goto out;
2175 status = alloc_get_client_smb_fname(handle,
2176 talloc_tos(),
2177 smb_fname,
2178 &clientFname);
2179 if (status != 0) {
2180 ret = -1;
2181 goto err;
2183 ret = SMB_VFS_NEXT_GETXATTR(handle, clientFname, name, value, size);
2184 err:
2185 TALLOC_FREE(clientFname);
2186 out:
2187 return ret;
2191 * Success: return positive number
2192 * Failure: set errno, return -1
2194 static ssize_t mh_listxattr(struct vfs_handle_struct *handle,
2195 const struct smb_filename *smb_fname,
2196 char *list,
2197 size_t size)
2199 ssize_t ret;
2200 struct smb_filename *clientFname = NULL;
2201 int status;
2203 DEBUG(MH_INFO_DEBUG, ("Entering mh_listxattr\n"));
2204 if (!is_in_media_files(smb_fname->base_name)) {
2205 ret = SMB_VFS_NEXT_LISTXATTR(handle, smb_fname, list, size);
2206 goto out;
2209 status = alloc_get_client_smb_fname(handle,
2210 talloc_tos(),
2211 smb_fname,
2212 &clientFname);
2213 if (status != 0) {
2214 ret = -1;
2215 goto err;
2218 ret = SMB_VFS_NEXT_LISTXATTR(handle, clientFname, list, size);
2219 err:
2220 TALLOC_FREE(clientFname);
2221 out:
2222 return ret;
2226 * Success: return 0
2227 * Failure: set errno, return -1
2228 * In this case, "name" is an attr name.
2230 static int mh_removexattr(struct vfs_handle_struct *handle,
2231 const struct smb_filename *smb_fname,
2232 const char *name)
2234 int status;
2235 struct smb_filename *clientFname = NULL;
2237 DEBUG(MH_INFO_DEBUG, ("Entering mh_removexattr\n"));
2238 if (!is_in_media_files(smb_fname->base_name)) {
2239 status = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname, name);
2240 goto out;
2243 status = alloc_get_client_smb_fname(handle,
2244 talloc_tos(),
2245 smb_fname,
2246 &clientFname);
2247 if (status != 0) {
2248 goto err;
2250 status = SMB_VFS_NEXT_REMOVEXATTR(handle, clientFname, name);
2251 err:
2252 TALLOC_FREE(clientFname);
2253 out:
2254 return status;
2258 * Success: return 0
2259 * Failure: set errno, return -1
2260 * In this case, "name" is an attr name.
2262 static int mh_setxattr(struct vfs_handle_struct *handle,
2263 const struct smb_filename *smb_fname,
2264 const char *name,
2265 const void *value,
2266 size_t size,
2267 int flags)
2269 int status;
2270 struct smb_filename *clientFname = NULL;
2272 DEBUG(MH_INFO_DEBUG, ("Entering mh_setxattr\n"));
2273 if (!is_in_media_files(smb_fname->base_name)) {
2274 status = SMB_VFS_NEXT_SETXATTR(handle, smb_fname, name, value,
2275 size, flags);
2276 goto out;
2279 status = alloc_get_client_smb_fname(handle,
2280 talloc_tos(),
2281 smb_fname,
2282 &clientFname);
2283 if (status != 0) {
2284 goto err;
2286 status = SMB_VFS_NEXT_SETXATTR(handle, clientFname, name, value,
2287 size, flags);
2288 err:
2289 TALLOC_FREE(clientFname);
2290 out:
2291 return status;
2294 /* VFS operations structure */
2296 static struct vfs_fn_pointers vfs_mh_fns = {
2297 /* Disk operations */
2299 .statvfs_fn = mh_statvfs,
2301 /* Directory operations */
2303 .opendir_fn = mh_opendir,
2304 .fdopendir_fn = mh_fdopendir,
2305 .readdir_fn = mh_readdir,
2306 .seekdir_fn = mh_seekdir,
2307 .telldir_fn = mh_telldir,
2308 .rewind_dir_fn = mh_rewinddir,
2309 .mkdir_fn = mh_mkdir,
2310 .rmdir_fn = mh_rmdir,
2311 .closedir_fn = mh_closedir,
2313 /* File operations */
2315 .open_fn = mh_open,
2316 .create_file_fn = mh_create_file,
2317 .rename_fn = mh_rename,
2318 .stat_fn = mh_stat,
2319 .lstat_fn = mh_lstat,
2320 .fstat_fn = mh_fstat,
2321 .unlink_fn = mh_unlink,
2322 .chmod_fn = mh_chmod,
2323 .chown_fn = mh_chown,
2324 .lchown_fn = mh_lchown,
2325 .chdir_fn = mh_chdir,
2326 .ntimes_fn = mh_ntimes,
2327 .symlink_fn = mh_symlink,
2328 .readlink_fn = mh_readlink,
2329 .link_fn = mh_link,
2330 .mknod_fn = mh_mknod,
2331 .realpath_fn = mh_realpath,
2332 .chflags_fn = mh_chflags,
2333 .streaminfo_fn = mh_streaminfo,
2335 /* NT ACL operations. */
2337 .get_nt_acl_fn = mh_get_nt_acl,
2339 /* POSIX ACL operations. */
2341 .chmod_acl_fn = mh_chmod_acl,
2343 .sys_acl_get_file_fn = mh_sys_acl_get_file,
2344 .sys_acl_set_file_fn = mh_sys_acl_set_file,
2345 .sys_acl_delete_def_file_fn = mh_sys_acl_delete_def_file,
2347 /* EA operations. */
2348 .getxattr_fn = mh_getxattr,
2349 .listxattr_fn = mh_listxattr,
2350 .removexattr_fn = mh_removexattr,
2351 .setxattr_fn = mh_setxattr,
2353 /* aio operations */
2356 static_decl_vfs;
2357 NTSTATUS vfs_media_harmony_init(TALLOC_CTX *ctx)
2359 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2360 "media_harmony", &vfs_mh_fns);
2361 if (!NT_STATUS_IS_OK(ret))
2363 goto out;
2366 vfs_mh_debug_level = debug_add_class("media_harmony");
2368 if (vfs_mh_debug_level == -1) {
2369 vfs_mh_debug_level = DBGC_VFS;
2370 DEBUG(1, ("media_harmony_init: Couldn't register custom "
2371 "debugging class.\n"));
2372 } else {
2373 DEBUG(3, ("media_harmony_init: Debug class number of "
2374 "'media_harmony': %d\n",
2375 vfs_mh_debug_level));
2378 out:
2379 return ret;