vfs: remove dirfsp arg from SMB_VFS_CREATE_FILE()
[bbaumbach/samba-autobuild/.git] / source3 / modules / vfs_media_harmony.c
1 /*
2  * $Id: media_harmony.c,v 1.1 2007/11/06 10:07:22 stuart_hc Exp $
3  *
4  * Samba VFS module supporting multiple AVID clients sharing media.
5  *
6  * Copyright (C) 2005  Philip de Nier <philipn@users.sourceforge.net>
7  * Copyright (C) 2012  Andrew Klaassen <clawsoon@yahoo.com>
8  *
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.
13  *
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.
18  *
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.
23  */
24
25
26 /*
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.
30  *
31  * Add this module to the vfs objects option in your Samba share
32  * configuration.
33  * eg.
34  *
35  *   [avid_win]
36  *      path = /video
37  *      vfs objects = media_harmony
38  *      ...
39  *
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 *):
43  *
44  *      veto files = /.DS_Store/._@/.Trash@/.Spotlight@/.hidden/.hotfiles@/.vol/
45  *      delete veto files = yes
46  *
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.
50  *
51  *
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.
60  *
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.
73  *
74  *
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.
82  *
83  */
84
85
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"
92
93 #define MH_INFO_DEBUG 10
94 #define MH_ERR_DEBUG 0
95
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;
110
111 static int vfs_mh_debug_level = DBGC_VFS;
112
113 /* supplements the directory list stream */
114 typedef struct mh_dirinfo_struct
115 {
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;
124
125
126 /* Add "_<ip address>_<user name>" suffix to path or filename.
127  *
128  * Success: return 0
129  * Failure: set errno, path NULL, return -1
130  */
131 static int alloc_append_client_suffix(vfs_handle_struct *handle,
132                 char **path)
133 {
134         int status = 0;
135         char *raddr = NULL;
136
137         DEBUG(MH_INFO_DEBUG, ("Entering with *path '%s'\n", *path));
138
139         raddr = tsocket_address_inet_addr_string(
140                         handle->conn->sconn->remote_address, talloc_tos());
141         if (raddr == NULL)
142         {
143                 errno = ENOMEM;
144                 status = -1;
145                 goto err;
146         }
147
148         /* talloc_asprintf_append uses talloc_realloc, which
149          * frees original 'path' memory so we don't have to.
150          */
151         *path = talloc_asprintf_append(*path, "_%s_%s",
152                 raddr,
153                 handle->conn->session_info->unix_info->sanitized_username);
154         if (*path == NULL)
155         {
156                 DEBUG(MH_ERR_DEBUG, ("alloc_append_client_suffix "
157                                         "out of memory\n"));
158                 errno = ENOMEM;
159                 status = -1;
160                 goto err;
161         }
162         DEBUG(MH_INFO_DEBUG, ("Leaving with *path '%s'\n", *path));
163 err:
164         TALLOC_FREE(raddr);
165         return status;
166 }
167
168
169 /* Returns True if the file or directory begins with the appledouble
170  * prefix.
171  */
172 static bool is_apple_double(const char* fname)
173 {
174         bool ret = False;
175
176         DEBUG(MH_INFO_DEBUG, ("Entering with fname '%s'\n", fname));
177
178         if (strncmp(APPLE_DOUBLE_PREFIX, fname, APPLE_DOUBLE_PREFIX_LEN)
179                         == 0)
180         {
181                 ret = True;
182         }
183         DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
184                                 ret == True ? "True" : "False"));
185         return ret;
186 }
187
188 static bool starts_with_media_dir(const char* media_dirname,
189                 size_t media_dirname_len, const char* path)
190 {
191         bool ret = False;
192         const char *path_start;
193
194         DEBUG(MH_INFO_DEBUG, ("Entering with media_dirname '%s' "
195                               "path '%s'\n", media_dirname, path));
196
197         /* Sometimes Samba gives us "./OMFI MediaFiles". */
198         if (strncmp(path, "./", 2) == 0)
199         {
200                 path_start = &path[2];
201         }
202         else {
203                 path_start = path;
204         }
205
206         if (strncmp(media_dirname, path_start, media_dirname_len) == 0
207                         &&
208                 (
209                         path_start[media_dirname_len] == '\0'
210                         ||
211                         path_start[media_dirname_len] == '/'
212                 )
213         )
214         {
215                 ret = True;
216         }
217
218         DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
219                                 ret == True ? "True" : "False"));
220         return ret;
221 }
222
223 /*
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.
229  */
230 static bool is_in_media_files(const char* path)
231 {
232         bool ret = False;
233
234         DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
235
236         if (
237                 starts_with_media_dir(AVID_MEDIAFILES_DIRNAME,
238                                 AVID_MEDIAFILES_DIRNAME_LEN, path)
239                 ||
240                 starts_with_media_dir(OMFI_MEDIAFILES_DIRNAME,
241                                 OMFI_MEDIAFILES_DIRNAME_LEN, path)
242         )
243         {
244                 ret = True;
245         }
246         DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
247                                 ret == True ? "True" : "False"));
248         return ret;
249 }
250
251 /*
252  * Returns depth of path under media directory.  Deals with the
253  * occasional ..../. and ..../.. paths that get passed to stat.
254  *
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.
258  *
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.
262  */
263 static int depth_from_media_dir(const char* media_dirname,
264                 size_t media_dirname_len, const char* path)
265 {
266         int transition_count = 0;
267         const char *path_start;
268         const char *pathPtr;
269
270         DEBUG(MH_INFO_DEBUG, ("Entering with media_dirname '%s' "
271                               "path '%s'\n", media_dirname, path));
272
273         /* Sometimes Samba gives us "./OMFI MediaFiles". */
274         if (strncmp(path, "./", 2) == 0)
275         {
276                 path_start = &path[2];
277         }
278         else {
279                 path_start = path;
280         }
281
282         if (path_start[media_dirname_len] == '\0')
283         {
284                 goto out;
285         }
286
287         pathPtr = &path_start[media_dirname_len + 1];
288
289         while(1)
290         {
291                 if (*pathPtr == '\0' || *pathPtr == '/')
292                 {
293                         if (
294                                 *(pathPtr - 1) == '.'
295                                         &&
296                                 *(pathPtr - 2) == '.'
297                                         &&
298                                 *(pathPtr - 3) == '/'
299                         )
300                         {
301                                 transition_count--;
302                         }
303                         else if (
304                                 !
305                                 (
306                                         *(pathPtr - 1) == '/'
307                                         ||
308                                         (
309                                                 *(pathPtr - 1) == '.'
310                                                         &&
311                                                 *(pathPtr - 2) == '/'
312                                         )
313                                 )
314                         )
315                         {
316                                 transition_count++;
317                         }
318                 }
319                 if (*pathPtr == '\0')
320                 {
321                         break;
322                 }
323                 pathPtr++;
324         }
325
326         DEBUG(MH_INFO_DEBUG, ("Leaving with transition_count '%i'\n",
327                                 transition_count));
328 out:
329         return transition_count;
330 }
331
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)
338 {
339         bool ret = False;
340
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));
347
348         if (
349                 path_len > avid_db_filename_len
350                         &&
351                 strcmp(&path[path_len - avid_db_filename_len],
352                                 avid_db_filename) == 0
353                         &&
354                 (
355                         path[path_len - avid_db_filename_len - 1] == '/'
356                         ||
357                         (path_len > avid_db_filename_len
358                                 + APPLE_DOUBLE_PREFIX_LEN
359                                 &&
360                         path[path_len - avid_db_filename_len
361                                 - APPLE_DOUBLE_PREFIX_LEN - 1] == '/'
362                                 &&
363                         is_apple_double(&path[path_len
364                                 - avid_db_filename_len
365                                 - APPLE_DOUBLE_PREFIX_LEN]))
366                 )
367         )
368         {
369                 ret = True;
370         }
371         DEBUG(MH_INFO_DEBUG, ("Leaving with ret '%s'\n",
372                                 ret == True ? "True" : "False"));
373         return ret;
374 }
375
376
377 /* Add client suffix to paths to MDB_FILENAME, PMR_FILENAME and
378  * CREATING_SUBDIRNAME.
379  *
380  * Caller must free newPath.
381  *
382  * Success: return 0
383  * Failure: set errno, newPath NULL, return -1
384  */
385 static int alloc_get_client_path(vfs_handle_struct *handle,
386                 TALLOC_CTX *ctx,
387                 const char *path,
388                 char **newPath)
389 {
390         /* replace /CREATING_DIRNAME/ or /._CREATING_DIRNAME/
391          * directory in path - potentially in middle of path
392          * - with suffixed name.
393          */
394         int status = 0;
395         char* pathPtr;
396         size_t intermPathLen;
397
398         DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
399
400         *newPath = talloc_strdup(ctx, path);
401         if (*newPath == NULL)
402         {
403                 DEBUG(MH_ERR_DEBUG, ("alloc_get_client_path ENOMEM #1\n"));
404                 errno = ENOMEM;
405                 status = -1;
406                 goto out;
407         }
408         DEBUG(MH_INFO_DEBUG, ("newPath #1 %s\n", *newPath));
409         if (
410                 (pathPtr = strstr(path, CREATING_DIRNAME)) != NULL
411                         &&
412                 (
413                         *(pathPtr + CREATING_DIRNAME_LEN) == '\0'
414                         ||
415                         *(pathPtr + CREATING_DIRNAME_LEN) == '/'
416                 )
417                         &&
418                 (
419                         (pathPtr - path > 0
420                                 &&
421                          *(pathPtr - 1) == '/')
422                         ||
423                         (pathPtr - path > APPLE_DOUBLE_PREFIX_LEN
424                                 &&
425                         *(pathPtr - APPLE_DOUBLE_PREFIX_LEN - 1) == '/'
426                                 &&
427                          is_apple_double(pathPtr - APPLE_DOUBLE_PREFIX_LEN))
428                 )
429         )
430         {
431                 /* Insert client suffix into path. */
432                 (*newPath)[pathPtr - path + CREATING_DIRNAME_LEN] = '\0';
433                 DEBUG(MH_INFO_DEBUG, ("newPath #2 %s\n", *newPath));
434
435                 if ((status = alloc_append_client_suffix(handle, newPath)))
436                 {
437                         goto out;
438                 }
439
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)
444                 {
445                         DEBUG(MH_ERR_DEBUG, ("alloc_get_client_path "
446                                                 "ENOMEM #2\n"));
447                         errno = ENOMEM;
448                         status = -1;
449                         goto out;
450                 }
451                 DEBUG(MH_INFO_DEBUG, ("newPath #4 %s\n", *newPath));
452         }
453
454         /* replace /MDB_FILENAME or /PMR_FILENAME or /._MDB_FILENAME
455          * or /._PMR_FILENAME at newPath end with suffixed name.
456          */
457         intermPathLen = strlen(*newPath);
458         if (
459                 is_avid_database(*newPath, intermPathLen,
460                         MDB_FILENAME, MDB_FILENAME_LEN)
461                 ||
462                 is_avid_database(*newPath, intermPathLen,
463                         PMR_FILENAME, PMR_FILENAME_LEN)
464         )
465         {
466                 DEBUG(MH_INFO_DEBUG, ("newPath #5 %s\n", *newPath));
467                 if ((status = alloc_append_client_suffix(handle, newPath)))
468                 {
469                         goto out;
470                 }
471                 DEBUG(MH_INFO_DEBUG, ("newPath #6 %s\n", *newPath));
472         }
473 out:
474         /* newPath must be freed in caller. */
475         DEBUG(MH_INFO_DEBUG, ("Leaving with *newPath '%s'\n", *newPath));
476         return status;
477 }
478
479 /*
480  * Success: return 0
481  * Failure: set errno, return -1
482  */
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)
487 {
488         int status = 0;
489
490         DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
491                               smb_fname->base_name));
492
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;
500         }
501         if ((status = alloc_get_client_path(handle, ctx,
502                                 smb_fname->base_name,
503                                 &(*clientFname)->base_name)))
504         {
505                 goto err;
506         }
507         DEBUG(MH_INFO_DEBUG, ("Leaving with (*clientFname)->base_name "
508                                 "'%s'\n", (*clientFname)->base_name));
509 err:
510         return status;
511 }
512
513
514 /*
515  * Success: return 0
516  * Failure: set errno, return -1
517  */
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)
522 {
523         int status = 0;
524
525         DEBUG(MH_INFO_DEBUG, ("Entering with avid_db_filename '%s'\n",
526                               avid_db_filename));
527
528         if ((*path = talloc_strdup(ctx, avid_db_filename)) == NULL)
529         {
530                 DEBUG(MH_ERR_DEBUG, ("alloc_set_client_dirinfo_path "
531                                         "ENOMEM\n"));
532                 errno = ENOMEM;
533                 status = -1;
534                 goto err;
535         }
536         if ((status = alloc_append_client_suffix(handle, path)))
537         {
538                 goto err;
539         }
540         DEBUG(MH_INFO_DEBUG, ("Leaving with *path '%s'\n", *path));
541 err:
542         return status;
543 }
544
545 /*
546  * Replace mtime on clientFname with mtime from client-suffixed
547  * equivalent, if it exists.
548  *
549  * Success: return 0
550  * Failure: set errno, return -1
551  */
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))
556 {
557         int status = 0;
558         char *statPath;
559         SMB_STRUCT_STAT fakeStat;
560         int copy_len;
561
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))));
566
567         if (
568                 depth_from_media_dir(AVID_MXF_DIRNAME,
569                                 AVID_MXF_DIRNAME_LEN,
570                                 (*clientFname)->base_name)
571                         != 1
572                         &&
573                 depth_from_media_dir(OMFI_MEDIAFILES_DIRNAME,
574                                 OMFI_MEDIAFILES_DIRNAME_LEN,
575                                 (*clientFname)->base_name)
576                         != 0
577         )
578         {
579                 goto out;
580         }
581
582         copy_len = strlen((*clientFname)->base_name);
583
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.
587          */
588         if ((*clientFname)->base_name[copy_len - 1] == '.' &&
589                         (*clientFname)->base_name[copy_len - 2] == '/')
590         {
591                 copy_len -= 2;
592         }
593
594         if (((statPath = talloc_strndup(ctx,
595                         (*clientFname)->base_name, copy_len)) == NULL))
596         {
597                 errno = ENOMEM;
598                 status = -1;
599                 goto err;
600         }
601         if ((status = alloc_append_client_suffix(handle, &statPath)))
602         {
603                 goto err;
604         }
605
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))))
609         {
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.
614                  */
615                 goto err;
616         }
617
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;
628 }
629
630 /*
631  * Success: return 0
632  * Failure: set errno, return -1
633  */
634 static int mh_statvfs(struct vfs_handle_struct *handle,
635                 const struct smb_filename *smb_fname,
636                 struct vfs_statvfs_struct *statbuf)
637 {
638         int status;
639         struct smb_filename *clientFname = NULL;
640
641         DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n",
642                         smb_fname->base_name));
643
644         if (!is_in_media_files(smb_fname->base_name))
645         {
646                 status = SMB_VFS_NEXT_STATVFS(handle, smb_fname, statbuf);
647                 goto out;
648         }
649
650         status = alloc_get_client_smb_fname(handle,
651                                 talloc_tos(),
652                                 smb_fname,
653                                 &clientFname);
654         if (status != 0) {
655                 goto err;
656         }
657
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;
665 }
666
667 static int alloc_set_client_dirinfo(vfs_handle_struct *handle,
668                 const char *fname,
669                 struct mh_dirinfo_struct **dirInfo)
670 {
671         int status = 0;
672         char *clientPath;
673         TALLOC_CTX *ctx;
674
675         DEBUG(MH_INFO_DEBUG, ("Entering with fname '%s'\n", fname));
676
677         *dirInfo = talloc(NULL, struct mh_dirinfo_struct);
678         if (*dirInfo == NULL)
679         {
680                 goto err;
681         }
682
683         (*dirInfo)->dirpath = talloc_strdup(*dirInfo, fname);
684         if ((*dirInfo)->dirpath == NULL)
685         {
686                 goto err;
687         }
688
689         if (!is_in_media_files(fname))
690         {
691                 (*dirInfo)->clientPath = NULL;
692                 (*dirInfo)->clientMDBFilename = NULL;
693                 (*dirInfo)->clientPMRFilename = NULL;
694                 (*dirInfo)->clientCreatingDirname = NULL;
695                 (*dirInfo)->isInMediaFiles = False;
696                 goto out;
697         }
698
699         (*dirInfo)->isInMediaFiles = True;
700
701         if (alloc_set_client_dirinfo_path(handle,
702                                 *dirInfo,
703                                 &((*dirInfo)->clientMDBFilename),
704                                 MDB_FILENAME))
705         {
706                 goto err;
707         }
708
709         if (alloc_set_client_dirinfo_path(handle,
710                                 *dirInfo,
711                                 &((*dirInfo)->clientPMRFilename),
712                                 PMR_FILENAME))
713         {
714                 goto err;
715         }
716
717         if (alloc_set_client_dirinfo_path(handle,
718                                 *dirInfo,
719                                 &((*dirInfo)->clientCreatingDirname),
720                                 CREATING_DIRNAME))
721         {
722                 goto err;
723         }
724
725         clientPath = NULL;
726         ctx = talloc_tos();
727
728         if (alloc_get_client_path(handle, ctx,
729                                 fname,
730                                 &clientPath))
731         {
732                 goto err;
733         }
734
735         (*dirInfo)->clientPath = talloc_strdup(*dirInfo, clientPath);
736         if ((*dirInfo)->clientPath == NULL)
737         {
738                 goto err;
739         }
740
741         TALLOC_FREE(clientPath);
742
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;
749
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;
756 }
757
758 static DIR *mh_fdopendir(vfs_handle_struct *handle,
759                 files_struct *fsp,
760                 const char *mask,
761                 uint32_t attr)
762 {
763         struct mh_dirinfo_struct *dirInfo = NULL;
764         DIR *dirstream;
765
766         DEBUG(MH_INFO_DEBUG, ("Entering with fsp->fsp_name->base_name '%s'\n",
767                               fsp->fsp_name->base_name));
768
769         dirstream = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
770         if (!dirstream)
771         {
772                 goto err;
773         }
774
775         if (alloc_set_client_dirinfo(handle, fsp->fsp_name->base_name,
776                                         &dirInfo))
777         {
778                 goto err;
779         }
780
781         dirInfo->dirstream = dirstream;
782
783         if (! dirInfo->isInMediaFiles) {
784                 goto out;
785         }
786
787         if (set_fake_mtime(handle, fsp, &(fsp->fsp_name), sys_stat))
788         {
789                 goto err;
790         }
791
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;
807 }
808
809 /*
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.
815  *
816  * Success: return dirent
817  * End of data: return NULL
818  * Failure: set errno, return NULL
819  */
820 static struct dirent *mh_readdir(vfs_handle_struct *handle,
821                 DIR *dirp,
822                 SMB_STRUCT_STAT *sbuf)
823 {
824         mh_dirinfo_struct* dirInfo = (mh_dirinfo_struct*)dirp;
825         struct dirent *d = NULL;
826         int skip;
827
828         DEBUG(MH_INFO_DEBUG, ("Entering mh_readdir\n"));
829
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));
842
843         if (! dirInfo->isInMediaFiles)
844         {
845                 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
846                 goto out;
847         }
848
849         do
850         {
851                 const char* dname;
852                 bool isAppleDouble;
853
854                 skip = False;
855                 d = SMB_VFS_NEXT_READDIR(handle, dirInfo->dirstream, sbuf);
856
857                 if (d == NULL)
858                 {
859                         break;
860                 }
861
862                 /* ignore apple double prefix for logic below */
863                 if (is_apple_double(d->d_name))
864                 {
865                         dname = &d->d_name[APPLE_DOUBLE_PREFIX_LEN];
866                         isAppleDouble = True;
867                 }
868                 else
869                 {
870                         dname = d->d_name;
871                         isAppleDouble = False;
872                 }
873
874                 /* skip Avid-special files with no client suffix */
875                 if (
876                         strcmp(dname, MDB_FILENAME) == 0
877                         ||
878                         strcmp(dname, PMR_FILENAME) == 0
879                         ||
880                         strcmp(dname, CREATING_DIRNAME) == 0
881                 )
882                 {
883                         skip = True;
884                 }
885                 /* chop client suffix off this client's suffixed files */
886                 else if (strcmp(dname, dirInfo->clientMDBFilename) == 0)
887                 {
888                         if (isAppleDouble)
889                         {
890                                 d->d_name[MDB_FILENAME_LEN
891                                         + APPLE_DOUBLE_PREFIX_LEN] = '\0';
892                         }
893                         else
894                         {
895                                 d->d_name[MDB_FILENAME_LEN] = '\0';
896                         }
897                 }
898                 else if (strcmp(dname, dirInfo->clientPMRFilename) == 0)
899                 {
900                         if (isAppleDouble)
901                         {
902                                 d->d_name[PMR_FILENAME_LEN
903                                         + APPLE_DOUBLE_PREFIX_LEN] = '\0';
904                         }
905                         else
906                         {
907                                 d->d_name[PMR_FILENAME_LEN] = '\0';
908                         }
909                 }
910                 else if (strcmp(dname, dirInfo->clientCreatingDirname)
911                                 == 0)
912                 {
913                         if (isAppleDouble)
914                         {
915                                 d->d_name[CREATING_DIRNAME_LEN
916                                         + APPLE_DOUBLE_PREFIX_LEN] = '\0';
917                         }
918                         else
919                         {
920                                 d->d_name[CREATING_DIRNAME_LEN] = '\0';
921                         }
922                 }
923                 /*
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.
928                  */
929                 else if (
930                         strncmp(MDB_FILENAME, dname,
931                                 MDB_FILENAME_LEN) == 0
932                         ||
933                         strncmp(PMR_FILENAME, dname,
934                                 PMR_FILENAME_LEN) == 0
935                         ||
936                         strncmp(CREATING_DIRNAME, dname,
937                                 CREATING_DIRNAME_LEN) == 0
938                 )
939                 {
940                         skip = True;
941                 }
942         }
943         while (skip);
944
945 out:
946         DEBUG(MH_INFO_DEBUG, ("Leaving mh_readdir\n"));
947         return d;
948 }
949
950 /*
951  * Success: no success result defined.
952  * Failure: no failure result defined.
953  */
954 static void mh_seekdir(vfs_handle_struct *handle,
955                 DIR *dirp,
956                 long offset)
957 {
958         DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_seekdir\n"));
959         SMB_VFS_NEXT_SEEKDIR(handle,
960                         ((mh_dirinfo_struct*)dirp)->dirstream, offset);
961 }
962
963 /*
964  * Success: return long
965  * Failure: no failure result defined.
966  */
967 static long mh_telldir(vfs_handle_struct *handle,
968                 DIR *dirp)
969 {
970         DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_telldir\n"));
971         return SMB_VFS_NEXT_TELLDIR(handle,
972                         ((mh_dirinfo_struct*)dirp)->dirstream);
973 }
974
975 /*
976  * Success: no success result defined.
977  * Failure: no failure result defined.
978  */
979 static void mh_rewinddir(vfs_handle_struct *handle,
980                 DIR *dirp)
981 {
982         DEBUG(MH_INFO_DEBUG, ("Entering and leaving mh_rewinddir\n"));
983         SMB_VFS_NEXT_REWINDDIR(handle,
984                         ((mh_dirinfo_struct*)dirp)->dirstream);
985 }
986
987 /*
988  * Success: return 0
989  * Failure: set errno, return -1
990  */
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)
995 {
996         int status;
997         struct smb_filename *clientFname = NULL;
998         const char *path = smb_fname->base_name;
999
1000         DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
1001
1002         if (!is_in_media_files(path)) {
1003                 status = SMB_VFS_NEXT_MKDIRAT(handle,
1004                                 dirfsp,
1005                                 smb_fname,
1006                                 mode);
1007                 goto out;
1008         }
1009
1010         status = alloc_get_client_smb_fname(handle,
1011                                 talloc_tos(),
1012                                 smb_fname,
1013                                 &clientFname);
1014         if (status != 0) {
1015                 goto err;
1016         }
1017
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;
1027 }
1028
1029 /*
1030  * Success: return 0
1031  * Failure: set errno, return -1
1032  */
1033 static int mh_closedir(vfs_handle_struct *handle,
1034                 DIR *dirp)
1035 {
1036         DIR *realdirp = ((mh_dirinfo_struct*)dirp)->dirstream;
1037
1038         DEBUG(MH_INFO_DEBUG, ("Entering mh_closedir\n"));
1039         // Will this talloc_free destroy realdirp?
1040         TALLOC_FREE(dirp);
1041
1042         DEBUG(MH_INFO_DEBUG, ("Leaving mh_closedir\n"));
1043         return SMB_VFS_NEXT_CLOSEDIR(handle, realdirp);
1044 }
1045
1046 /*
1047  * Success: return non-negative file descriptor
1048  * Failure: set errno, return -1
1049  */
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)
1056 {
1057         int ret;
1058         struct smb_filename *clientFname;
1059         TALLOC_CTX *ctx;
1060
1061         DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1062                               smb_fname->base_name));
1063
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;
1072         }
1073
1074         clientFname = NULL;
1075         ctx = talloc_tos();
1076
1077         if (alloc_get_client_smb_fname(handle, ctx, smb_fname, &clientFname)) {
1078                 ret = -1;
1079                 goto err;
1080         }
1081
1082         /*
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?
1085          */
1086
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))));
1093
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;
1101 }
1102
1103 /*
1104  * Success: return non-negative file descriptor
1105  * Failure: set errno, return -1
1106  */
1107 static NTSTATUS mh_create_file(vfs_handle_struct *handle,
1108                 struct smb_request *req,
1109                 struct smb_filename *smb_fname,
1110                 uint32_t access_mask,
1111                 uint32_t share_access,
1112                 uint32_t create_disposition,
1113                 uint32_t create_options,
1114                 uint32_t file_attributes,
1115                 uint32_t oplock_request,
1116                 const struct smb2_lease *lease,
1117                 uint64_t allocation_size,
1118                 uint32_t private_flags,
1119                 struct security_descriptor *sd,
1120                 struct ea_list *ea_list,
1121                 files_struct **result_fsp,
1122                 int *pinfo,
1123                 const struct smb2_create_blobs *in_context_blobs,
1124                 struct smb2_create_blobs *out_context_blobs)
1125 {
1126         NTSTATUS status;
1127         struct smb_filename *clientFname;
1128         TALLOC_CTX *ctx;
1129
1130
1131         DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1132                                 smb_fname->base_name));
1133         if (!is_in_media_files(smb_fname->base_name))
1134         {
1135                 status = SMB_VFS_NEXT_CREATE_FILE(
1136                         handle,
1137                         req,
1138                         smb_fname,
1139                         access_mask,
1140                         share_access,
1141                         create_disposition,
1142                         create_options,
1143                         file_attributes,
1144                         oplock_request,
1145                         lease,
1146                         allocation_size,
1147                         private_flags,
1148                         sd,
1149                         ea_list,
1150                         result_fsp,
1151                         pinfo,
1152                         in_context_blobs,
1153                         out_context_blobs);
1154                 goto out;
1155         }
1156
1157         clientFname = NULL;
1158         ctx = talloc_tos();
1159
1160         if (alloc_get_client_smb_fname(handle, ctx,
1161                                 smb_fname,
1162                                 &clientFname))
1163         {
1164                 status = map_nt_error_from_unix(errno);
1165                 goto err;
1166         }
1167
1168         /* This only creates files, so we don't have to worry about
1169          * our fake directory stat'ing here.
1170          */
1171         // But we still need to route stat calls for DB files
1172         // properly, right?
1173         status = SMB_VFS_NEXT_CREATE_FILE(
1174                 handle,
1175                 req,
1176                 clientFname,
1177                 access_mask,
1178                 share_access,
1179                 create_disposition,
1180                 create_options,
1181                 file_attributes,
1182                 oplock_request,
1183                 lease,
1184                 allocation_size,
1185                 private_flags,
1186                 sd,
1187                 ea_list,
1188                 result_fsp,
1189                 pinfo,
1190                 in_context_blobs,
1191                 out_context_blobs);
1192 err:
1193         TALLOC_FREE(clientFname);
1194 out:
1195         DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->base_name '%s'"
1196                 "smb_fname->st.st_ex_mtime %s"
1197                 "               fsp->fsp_name->st.st_ex_mtime %s",
1198                 smb_fname->base_name,
1199                 ctime(&(smb_fname->st.st_ex_mtime.tv_sec)),
1200                 (*result_fsp) && VALID_STAT((*result_fsp)->fsp_name->st) ?
1201                 ctime(&((*result_fsp)->fsp_name->st.st_ex_mtime.tv_sec)) :
1202                 "No fsp time\n"));
1203         return status;
1204 }
1205
1206 /*
1207  * Success: return 0
1208  * Failure: set errno, return -1
1209  */
1210 static int mh_renameat(vfs_handle_struct *handle,
1211                 files_struct *srcfsp,
1212                 const struct smb_filename *smb_fname_src,
1213                 files_struct *dstfsp,
1214                 const struct smb_filename *smb_fname_dst)
1215 {
1216         int status;
1217         struct smb_filename *srcClientFname;
1218         struct smb_filename *dstClientFname;
1219         TALLOC_CTX *ctx;
1220
1221
1222         DEBUG(MH_INFO_DEBUG, ("Entering with "
1223                               "smb_fname_src->base_name '%s', "
1224                               "smb_fname_dst->base_name '%s'\n",
1225                               smb_fname_src->base_name,
1226                               smb_fname_dst->base_name));
1227
1228         if (!is_in_media_files(smb_fname_src->base_name)
1229                                 &&
1230                         !is_in_media_files(smb_fname_dst->base_name))
1231         {
1232                 status = SMB_VFS_NEXT_RENAMEAT(handle,
1233                                 srcfsp,
1234                                 smb_fname_src,
1235                                 dstfsp,
1236                                 smb_fname_dst);
1237                 goto out;
1238         }
1239
1240         srcClientFname = NULL;
1241         dstClientFname = NULL;
1242         ctx = talloc_tos();
1243
1244         if ((status = alloc_get_client_smb_fname(handle, ctx,
1245                                 smb_fname_src,
1246                                 &srcClientFname)))
1247         {
1248                 goto err;
1249         }
1250
1251         if ((status = alloc_get_client_smb_fname(handle, ctx,
1252                                 smb_fname_dst,
1253                                 &dstClientFname)))
1254         {
1255                 goto err;
1256         }
1257
1258         status = SMB_VFS_NEXT_RENAMEAT(handle,
1259                                 srcfsp,
1260                                 srcClientFname,
1261                                 dstfsp,
1262                                 dstClientFname);
1263 err:
1264         TALLOC_FREE(dstClientFname);
1265         TALLOC_FREE(srcClientFname);
1266 out:
1267         DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname_src->base_name '%s',"
1268                                 " smb_fname_dst->base_name '%s'\n",
1269                                 smb_fname_src->base_name,
1270                                 smb_fname_dst->base_name));
1271         return status;
1272 }
1273
1274 /*
1275  * Success: return 0
1276  * Failure: set errno, return -1
1277  */
1278 static int mh_stat(vfs_handle_struct *handle,
1279                 struct smb_filename *smb_fname)
1280 {
1281         int status = 0;
1282         struct smb_filename *clientFname;
1283         TALLOC_CTX *ctx;
1284
1285
1286         DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1287                               smb_fname->base_name));
1288
1289         if (!is_in_media_files(smb_fname->base_name))
1290         {
1291                 status = SMB_VFS_NEXT_STAT(handle, smb_fname);
1292                 goto out;
1293         }
1294
1295         clientFname = NULL;
1296         ctx = talloc_tos();
1297
1298         if ((status = alloc_get_client_smb_fname(handle, ctx,
1299                                 smb_fname,
1300                                 &clientFname)))
1301         {
1302                 goto err;
1303         }
1304         DEBUG(MH_INFO_DEBUG, ("Stat'ing clientFname->base_name '%s'\n",
1305                                 clientFname->base_name));
1306         if ((status = SMB_VFS_NEXT_STAT(handle, clientFname)))
1307         {
1308                 goto err;
1309         }
1310         if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_stat)))
1311         {
1312                 goto err;
1313         }
1314
1315         /* Unlike functions with const smb_filename, we have to
1316          * modify smb_fname itself to pass our info back up.
1317          */
1318         DEBUG(MH_INFO_DEBUG, ("Setting smb_fname '%s' stat "
1319                                 "from clientFname '%s'\n",
1320                                 smb_fname->base_name,
1321                                 clientFname->base_name));
1322         smb_fname->st = clientFname->st;
1323 err:
1324         TALLOC_FREE(clientFname);
1325 out:
1326         DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1327                         ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1328         return status;
1329 }
1330
1331 /*
1332  * Success: return 0
1333  * Failure: set errno, return -1
1334  */
1335 static int mh_lstat(vfs_handle_struct *handle,
1336                 struct smb_filename *smb_fname)
1337 {
1338         int status = 0;
1339         struct smb_filename *clientFname;
1340         TALLOC_CTX *ctx;
1341
1342         DEBUG(MH_INFO_DEBUG, ("Entering with smb_fname->base_name '%s'\n",
1343                               smb_fname->base_name));
1344
1345         if (!is_in_media_files(smb_fname->base_name))
1346         {
1347                 status = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1348                 goto out;
1349         }
1350
1351         clientFname = NULL;
1352         ctx = talloc_tos();
1353
1354         if ((status = alloc_get_client_smb_fname(handle, ctx,
1355                                 smb_fname,
1356                                 &clientFname)))
1357         {
1358                 goto err;
1359         }
1360         if ((status = SMB_VFS_NEXT_LSTAT(handle, clientFname)))
1361         {
1362                 goto err;
1363         }
1364
1365         if ((status = set_fake_mtime(handle, ctx, &clientFname, sys_lstat)))
1366         {
1367                 goto err;
1368         }
1369         /* Unlike functions with const smb_filename, we have to
1370          * modify smb_fname itself to pass our info back up.
1371          */
1372         smb_fname->st = clientFname->st;
1373 err:
1374         TALLOC_FREE(clientFname);
1375 out:
1376         DEBUG(MH_INFO_DEBUG, ("Leaving with smb_fname->st.st_ex_mtime %s",
1377                         ctime(&(smb_fname->st.st_ex_mtime.tv_sec))));
1378         return status;
1379 }
1380
1381 /*
1382  * Success: return 0
1383  * Failure: set errno, return -1
1384  */
1385 static int mh_fstat(vfs_handle_struct *handle,
1386                 files_struct *fsp, SMB_STRUCT_STAT *sbuf)
1387 {
1388         int status = 0;
1389
1390         DEBUG(MH_INFO_DEBUG, ("Entering with fsp->fsp_name->base_name "
1391                                 "'%s'\n", fsp_str_dbg(fsp)));
1392
1393         if ((status = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf)))
1394         {
1395                 goto out;
1396         }
1397
1398         if (fsp->fsp_name == NULL
1399                         || !is_in_media_files(fsp->fsp_name->base_name))
1400         {
1401                 goto out;
1402         }
1403
1404         if ((status = mh_stat(handle, fsp->fsp_name)))
1405         {
1406                 goto out;
1407         }
1408
1409         *sbuf = fsp->fsp_name->st;
1410 out:
1411         DEBUG(MH_INFO_DEBUG, ("Leaving with fsp->fsp_name->st.st_ex_mtime "
1412                         "%s",
1413                         fsp->fsp_name != NULL ?
1414                                 ctime(&(fsp->fsp_name->st.st_ex_mtime.tv_sec)) :
1415                                 "0"));
1416         return status;
1417 }
1418
1419 /*
1420  * Success: return 0
1421  * Failure: set errno, return -1
1422  */
1423 static int mh_unlinkat(vfs_handle_struct *handle,
1424                 struct files_struct *dirfsp,
1425                 const struct smb_filename *smb_fname,
1426                 int flags)
1427 {
1428         int status;
1429         struct smb_filename *clientFname;
1430         TALLOC_CTX *ctx;
1431
1432         DEBUG(MH_INFO_DEBUG, ("Entering mh_unlinkat\n"));
1433         if (!is_in_media_files(smb_fname->base_name)) {
1434                 status = SMB_VFS_NEXT_UNLINKAT(handle,
1435                                 dirfsp,
1436                                 smb_fname,
1437                                 flags);
1438                 goto out;
1439         }
1440
1441         clientFname = NULL;
1442         ctx = talloc_tos();
1443
1444         if ((status = alloc_get_client_smb_fname(handle, ctx,
1445                                 smb_fname,
1446                                 &clientFname))) {
1447                 goto err;
1448         }
1449
1450         status = SMB_VFS_NEXT_UNLINKAT(handle,
1451                                 dirfsp,
1452                                 clientFname,
1453                                 flags);
1454 err:
1455         TALLOC_FREE(clientFname);
1456 out:
1457         return status;
1458 }
1459
1460 /*
1461  * Success: return 0
1462  * Failure: set errno, return -1
1463  */
1464 static int mh_chmod(vfs_handle_struct *handle,
1465                 const struct smb_filename *smb_fname,
1466                 mode_t mode)
1467 {
1468         int status;
1469         struct smb_filename *clientFname = NULL;
1470
1471         DEBUG(MH_INFO_DEBUG, ("Entering mh_chmod\n"));
1472         if (!is_in_media_files(smb_fname->base_name))
1473         {
1474                 status = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
1475                 goto out;
1476         }
1477
1478         status = alloc_get_client_smb_fname(handle,
1479                                 talloc_tos(),
1480                                 smb_fname,
1481                                 &clientFname);
1482         if (status != 0) {
1483                 goto err;
1484         }
1485
1486         status = SMB_VFS_NEXT_CHMOD(handle, clientFname, mode);
1487 err:
1488         TALLOC_FREE(clientFname);
1489 out:
1490         return status;
1491 }
1492
1493 /*
1494  * Success: return 0
1495  * Failure: set errno, return -1
1496  */
1497 static int mh_lchown(vfs_handle_struct *handle,
1498                 const struct smb_filename *smb_fname,
1499                 uid_t uid,
1500                 gid_t gid)
1501 {
1502         int status;
1503         struct smb_filename *clientFname = NULL;
1504
1505         DEBUG(MH_INFO_DEBUG, ("Entering mh_lchown\n"));
1506         if (!is_in_media_files(smb_fname->base_name))
1507         {
1508                 status = SMB_VFS_NEXT_LCHOWN(handle, smb_fname, uid, gid);
1509                 goto out;
1510         }
1511
1512         status = alloc_get_client_smb_fname(handle,
1513                                 talloc_tos(),
1514                                 smb_fname,
1515                                 &clientFname);
1516         if (status != 0) {
1517                 goto err;
1518         }
1519
1520         status = SMB_VFS_NEXT_LCHOWN(handle, clientFname, uid, gid);
1521 err:
1522         TALLOC_FREE(clientFname);
1523 out:
1524         return status;
1525 }
1526
1527 /*
1528  * Success: return 0
1529  * Failure: set errno, return -1
1530  */
1531 static int mh_chdir(vfs_handle_struct *handle,
1532                 const struct smb_filename *smb_fname)
1533 {
1534         int status;
1535         struct smb_filename *clientFname = NULL;
1536
1537         DEBUG(MH_INFO_DEBUG, ("Entering mh_chdir\n"));
1538         if (!is_in_media_files(smb_fname->base_name)) {
1539                 status = SMB_VFS_NEXT_CHDIR(handle, smb_fname);
1540                 goto out;
1541         }
1542
1543         status = alloc_get_client_smb_fname(handle,
1544                                 talloc_tos(),
1545                                 smb_fname,
1546                                 &clientFname);
1547         if (status != 0) {
1548                 goto err;
1549         }
1550
1551         status = SMB_VFS_NEXT_CHDIR(handle, clientFname);
1552 err:
1553         TALLOC_FREE(clientFname);
1554 out:
1555         return status;
1556 }
1557
1558 /*
1559  * Success: return 0
1560  * Failure: set errno, return -1
1561  */
1562 static int mh_ntimes(vfs_handle_struct *handle,
1563                 const struct smb_filename *smb_fname,
1564                 struct smb_file_time *ft)
1565 {
1566         int status;
1567         struct smb_filename *clientFname;
1568         TALLOC_CTX *ctx;
1569
1570
1571         DEBUG(MH_INFO_DEBUG, ("Entering mh_ntimes\n"));
1572         if (!is_in_media_files(smb_fname->base_name))
1573         {
1574                 status = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1575                 goto out;
1576         }
1577
1578         clientFname = NULL;
1579         ctx = talloc_tos();
1580
1581         if ((status = alloc_get_client_smb_fname(handle, ctx,
1582                                 smb_fname,
1583                                 &clientFname)))
1584         {
1585                 goto err;
1586         }
1587
1588         status = SMB_VFS_NEXT_NTIMES(handle, clientFname, ft);
1589 err:
1590         TALLOC_FREE(clientFname);
1591 out:
1592         return status;
1593 }
1594
1595 /*
1596  * Success: return 0
1597  * Failure: set errno, return -1
1598  */
1599
1600 static int mh_symlinkat(vfs_handle_struct *handle,
1601                 const struct smb_filename *link_contents,
1602                 struct files_struct *dirfsp,
1603                 const struct smb_filename *new_smb_fname)
1604 {
1605         int status = -1;
1606         struct smb_filename *new_link_target = NULL;
1607         struct smb_filename *newclientFname = NULL;
1608
1609         DEBUG(MH_INFO_DEBUG, ("Entering mh_symlinkat\n"));
1610         if (!is_in_media_files(link_contents->base_name) &&
1611                         !is_in_media_files(new_smb_fname->base_name)) {
1612                 status = SMB_VFS_NEXT_SYMLINKAT(handle,
1613                                 link_contents,
1614                                 dirfsp,
1615                                 new_smb_fname);
1616                 goto out;
1617         }
1618
1619         if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1620                                 link_contents,
1621                                 &new_link_target))) {
1622                 goto err;
1623         }
1624         if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1625                                 new_smb_fname,
1626                                 &newclientFname))) {
1627                 goto err;
1628         }
1629
1630         status = SMB_VFS_NEXT_SYMLINKAT(handle,
1631                                 new_link_target,
1632                                 dirfsp,
1633                                 newclientFname);
1634 err:
1635         TALLOC_FREE(new_link_target);
1636         TALLOC_FREE(newclientFname);
1637 out:
1638         return status;
1639 }
1640
1641 /*
1642  * Success: return byte count
1643  * Failure: set errno, return -1
1644  */
1645 static int mh_readlinkat(vfs_handle_struct *handle,
1646                 files_struct *dirfsp,
1647                 const struct smb_filename *smb_fname,
1648                 char *buf,
1649                 size_t bufsiz)
1650 {
1651         int status;
1652         struct smb_filename *clientFname = NULL;
1653
1654         DEBUG(MH_INFO_DEBUG, ("Entering mh_readlinkat\n"));
1655         if (!is_in_media_files(smb_fname->base_name)) {
1656                 status = SMB_VFS_NEXT_READLINKAT(handle,
1657                                 dirfsp,
1658                                 smb_fname,
1659                                 buf,
1660                                 bufsiz);
1661                 goto out;
1662         }
1663
1664         if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1665                                 smb_fname,
1666                                 &clientFname))) {
1667                 goto err;
1668         }
1669
1670         status = SMB_VFS_NEXT_READLINKAT(handle,
1671                                 dirfsp,
1672                                 clientFname,
1673                                 buf,
1674                                 bufsiz);
1675
1676 err:
1677         TALLOC_FREE(clientFname);
1678 out:
1679         return status;
1680 }
1681
1682 /*
1683  * Success: return 0
1684  * Failure: set errno, return -1
1685  */
1686 static int mh_linkat(vfs_handle_struct *handle,
1687                 files_struct *srcfsp,
1688                 const struct smb_filename *old_smb_fname,
1689                 files_struct *dstfsp,
1690                 const struct smb_filename *new_smb_fname,
1691                 int flags)
1692 {
1693         int status;
1694         struct smb_filename *oldclientFname = NULL;
1695         struct smb_filename *newclientFname = NULL;
1696
1697         DEBUG(MH_INFO_DEBUG, ("Entering mh_linkat\n"));
1698         if (!is_in_media_files(old_smb_fname->base_name) &&
1699                         !is_in_media_files(new_smb_fname->base_name)) {
1700                 status = SMB_VFS_NEXT_LINKAT(handle,
1701                                 srcfsp,
1702                                 old_smb_fname,
1703                                 dstfsp,
1704                                 new_smb_fname,
1705                                 flags);
1706                 goto out;
1707         }
1708
1709         if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1710                                 old_smb_fname,
1711                                 &oldclientFname))) {
1712                 goto err;
1713         }
1714         if ((status = alloc_get_client_smb_fname(handle, talloc_tos(),
1715                                 new_smb_fname,
1716                                 &newclientFname))) {
1717                 goto err;
1718         }
1719
1720         status = SMB_VFS_NEXT_LINKAT(handle,
1721                                 srcfsp,
1722                                 oldclientFname,
1723                                 dstfsp,
1724                                 newclientFname,
1725                                 flags);
1726
1727 err:
1728         TALLOC_FREE(newclientFname);
1729         TALLOC_FREE(oldclientFname);
1730 out:
1731         return status;
1732 }
1733
1734 /*
1735  * Success: return 0
1736  * Failure: set errno, return -1
1737  */
1738 static int mh_mknodat(vfs_handle_struct *handle,
1739                 files_struct *dirfsp,
1740                 const struct smb_filename *smb_fname,
1741                 mode_t mode,
1742                 SMB_DEV_T dev)
1743 {
1744         int status;
1745         struct smb_filename *clientFname = NULL;
1746         TALLOC_CTX *ctx;
1747
1748         DEBUG(MH_INFO_DEBUG, ("Entering mh_mknodat\n"));
1749         if (!is_in_media_files(smb_fname->base_name)) {
1750                 status = SMB_VFS_NEXT_MKNODAT(handle,
1751                                 dirfsp,
1752                                 smb_fname,
1753                                 mode,
1754                                 dev);
1755                 goto out;
1756         }
1757
1758         ctx = talloc_tos();
1759
1760         if ((status = alloc_get_client_smb_fname(handle, ctx,
1761                                 smb_fname,
1762                                 &clientFname))) {
1763                 goto err;
1764         }
1765
1766         status = SMB_VFS_NEXT_MKNODAT(handle,
1767                         dirfsp,
1768                         clientFname,
1769                         mode,
1770                         dev);
1771
1772 err:
1773         TALLOC_FREE(clientFname);
1774 out:
1775         return status;
1776 }
1777
1778 /*
1779  * Success: return path pointer
1780  * Failure: set errno, return NULL pointer
1781  */
1782 static struct smb_filename *mh_realpath(vfs_handle_struct *handle,
1783                                 TALLOC_CTX *ctx,
1784                                 const struct smb_filename *smb_fname)
1785 {
1786         struct smb_filename *result_fname = NULL;
1787         struct smb_filename *clientFname = NULL;
1788
1789         DEBUG(MH_INFO_DEBUG, ("Entering mh_realpath\n"));
1790         if (!is_in_media_files(smb_fname->base_name)) {
1791                 return SMB_VFS_NEXT_REALPATH(handle, ctx, smb_fname);
1792         }
1793
1794         if (alloc_get_client_smb_fname(handle, ctx,
1795                                 smb_fname,
1796                                 &clientFname) != 0) {
1797                 goto err;
1798         }
1799
1800         result_fname = SMB_VFS_NEXT_REALPATH(handle, ctx, clientFname);
1801 err:
1802         TALLOC_FREE(clientFname);
1803         return result_fname;
1804 }
1805
1806 /*
1807  * Success: return 0
1808  * Failure: set errno, return -1
1809  */
1810 static int mh_chflags(vfs_handle_struct *handle,
1811                 const struct smb_filename *smb_fname,
1812                 unsigned int flags)
1813 {
1814         int status;
1815         struct smb_filename *clientFname = NULL;
1816         TALLOC_CTX *ctx;
1817
1818         DEBUG(MH_INFO_DEBUG, ("Entering mh_chflags\n"));
1819         if (!is_in_media_files(smb_fname->base_name)) {
1820                 status = SMB_VFS_NEXT_CHFLAGS(handle, smb_fname, flags);
1821                 goto out;
1822         }
1823
1824         ctx = talloc_tos();
1825
1826         if ((status = alloc_get_client_smb_fname(handle, ctx,
1827                                 smb_fname,
1828                                 &clientFname))) {
1829                 goto err;
1830         }
1831
1832         status = SMB_VFS_NEXT_CHFLAGS(handle, clientFname, flags);
1833 err:
1834         TALLOC_FREE(clientFname);
1835 out:
1836         return status;
1837 }
1838
1839 /*
1840  * Success: return NT_STATUS_OK
1841  * Failure: return NT status error
1842  */
1843 static NTSTATUS mh_streaminfo(struct vfs_handle_struct *handle,
1844                 struct files_struct *fsp,
1845                 const struct smb_filename *smb_fname,
1846                 TALLOC_CTX *ctx,
1847                 unsigned int *num_streams,
1848                 struct stream_struct **streams)
1849 {
1850         NTSTATUS status;
1851         int ret;
1852         struct smb_filename *clientFname = NULL;
1853
1854         DEBUG(MH_INFO_DEBUG, ("Entering mh_streaminfo\n"));
1855         if (!is_in_media_files(smb_fname->base_name)) {
1856                 status = SMB_VFS_NEXT_STREAMINFO(handle,
1857                                 fsp,
1858                                 smb_fname,
1859                                 ctx,
1860                                 num_streams,
1861                                 streams);
1862                 goto out;
1863         }
1864
1865         ret = alloc_get_client_smb_fname(handle,
1866                                 talloc_tos(),
1867                                 smb_fname,
1868                                 &clientFname);
1869         if (ret != 0) {
1870                 status = NT_STATUS_NO_MEMORY;
1871                 goto err;
1872         }
1873
1874         /* This only works on files, so we don't have to worry about
1875          * our fake directory stat'ing here.
1876          */
1877         status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, clientFname,
1878                                 ctx, num_streams, streams);
1879 err:
1880         TALLOC_FREE(clientFname);
1881 out:
1882         return status;
1883 }
1884
1885 /* Ignoring get_real_filename function because the default
1886  * doesn't do anything.
1887  */
1888
1889 /*
1890  * Success: return NT_STATUS_OK
1891  * Failure: return NT status error
1892  * In this case, "name" is a path.
1893  */
1894 static NTSTATUS mh_get_nt_acl_at(vfs_handle_struct *handle,
1895                         struct files_struct *dirfsp,
1896                         const struct smb_filename *smb_fname,
1897                         uint32_t security_info,
1898                         TALLOC_CTX *mem_ctx,
1899                         struct security_descriptor **ppdesc)
1900 {
1901         NTSTATUS status;
1902         char *clientPath;
1903         struct smb_filename *client_smb_fname = NULL;
1904         TALLOC_CTX *ctx;
1905
1906         SMB_ASSERT(dirfsp == handle->conn->cwd_fsp);
1907
1908         DEBUG(MH_INFO_DEBUG, ("Entering mh_get_nt_acl_at\n"));
1909         if (!is_in_media_files(smb_fname->base_name)) {
1910                 status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle,
1911                                         dirfsp,
1912                                         smb_fname,
1913                                         security_info,
1914                                         mem_ctx,
1915                                         ppdesc);
1916                 goto out;
1917         }
1918
1919         clientPath = NULL;
1920         ctx = talloc_tos();
1921
1922         if (alloc_get_client_path(handle, ctx,
1923                                 smb_fname->base_name,
1924                                 &clientPath)) {
1925                 status = map_nt_error_from_unix(errno);
1926                 goto err;
1927         }
1928
1929         client_smb_fname = synthetic_smb_fname(talloc_tos(),
1930                                         clientPath,
1931                                         NULL,
1932                                         NULL,
1933                                         smb_fname->twrp,
1934                                         smb_fname->flags);
1935         if (client_smb_fname == NULL) {
1936                 TALLOC_FREE(clientPath);
1937                 return NT_STATUS_NO_MEMORY;
1938         }
1939
1940         status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle,
1941                                         dirfsp,
1942                                         client_smb_fname,
1943                                         security_info,
1944                                         mem_ctx,
1945                                         ppdesc);
1946 err:
1947         TALLOC_FREE(clientPath);
1948         TALLOC_FREE(client_smb_fname);
1949 out:
1950         return status;
1951 }
1952
1953 /*
1954  * Success: return acl pointer
1955  * Failure: set errno, return NULL
1956  */
1957 static SMB_ACL_T mh_sys_acl_get_file(vfs_handle_struct *handle,
1958                                 const struct smb_filename *smb_fname,
1959                                 SMB_ACL_TYPE_T type,
1960                                 TALLOC_CTX *mem_ctx)
1961 {
1962         SMB_ACL_T ret;
1963         int status;
1964         struct smb_filename *clientFname = NULL;
1965
1966         DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_get_file\n"));
1967         if (!is_in_media_files(smb_fname->base_name)) {
1968                 ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, smb_fname,
1969                                 type, mem_ctx);
1970                 goto out;
1971         }
1972
1973         status = alloc_get_client_smb_fname(handle,
1974                                 talloc_tos(),
1975                                 smb_fname,
1976                                 &clientFname);
1977         if (status != 0) {
1978                 ret = (SMB_ACL_T)NULL;
1979                 goto err;
1980         }
1981
1982         ret = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, clientFname, type, mem_ctx);
1983 err:
1984         TALLOC_FREE(clientFname);
1985 out:
1986         return ret;
1987 }
1988
1989 /*
1990  * Success: return 0
1991  * Failure: set errno, return -1
1992  * In this case, "name" is a path.
1993  */
1994 static int mh_sys_acl_set_file(vfs_handle_struct *handle,
1995                 const struct smb_filename *smb_fname,
1996                 SMB_ACL_TYPE_T acltype,
1997                 SMB_ACL_T theacl)
1998 {
1999         int status;
2000         struct smb_filename *clientFname = NULL;
2001
2002         DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_set_file\n"));
2003         if (!is_in_media_files(smb_fname->base_name)) {
2004                 status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, smb_fname,
2005                                 acltype, theacl);
2006                 goto out;
2007         }
2008
2009         status = alloc_get_client_smb_fname(handle,
2010                                 talloc_tos(),
2011                                 smb_fname,
2012                                 &clientFname);
2013         if (status != 0) {
2014                 goto err;
2015         }
2016
2017         status = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, clientFname,
2018                         acltype, theacl);
2019 err:
2020         TALLOC_FREE(clientFname);
2021 out:
2022         return status;
2023 }
2024
2025 /*
2026  * Success: return 0
2027  * Failure: set errno, return -1
2028  */
2029 static int mh_sys_acl_delete_def_file(vfs_handle_struct *handle,
2030                         const struct smb_filename *smb_fname)
2031 {
2032         int status;
2033         struct smb_filename *clientFname = NULL;
2034
2035         DEBUG(MH_INFO_DEBUG, ("Entering mh_sys_acl_delete_def_file\n"));
2036         if (!is_in_media_files(smb_fname->base_name)) {
2037                 status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle,
2038                                 smb_fname);
2039                 goto out;
2040         }
2041
2042         status = alloc_get_client_smb_fname(handle,
2043                                 talloc_tos(),
2044                                 smb_fname,
2045                                 &clientFname);
2046         if (status != 0) {
2047                 goto err;
2048         }
2049         status = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, clientFname);
2050 err:
2051         TALLOC_FREE(clientFname);
2052 out:
2053         return status;
2054 }
2055
2056 /*
2057  * Success: return positive number
2058  * Failure: set errno, return -1
2059  * In this case, "name" is an attr name.
2060  */
2061 static ssize_t mh_getxattr(struct vfs_handle_struct *handle,
2062                 const struct smb_filename *smb_fname,
2063                 const char *name,
2064                 void *value,
2065                 size_t size)
2066 {
2067         int status;
2068         struct smb_filename *clientFname = NULL;
2069         ssize_t ret;
2070
2071         DEBUG(MH_INFO_DEBUG, ("Entering mh_getxattr\n"));
2072         if (!is_in_media_files(smb_fname->base_name)) {
2073                 ret = SMB_VFS_NEXT_GETXATTR(handle, smb_fname,
2074                                         name, value, size);
2075                 goto out;
2076         }
2077
2078         status = alloc_get_client_smb_fname(handle,
2079                                 talloc_tos(),
2080                                 smb_fname,
2081                                 &clientFname);
2082         if (status != 0) {
2083                 ret = -1;
2084                 goto err;
2085         }
2086         ret = SMB_VFS_NEXT_GETXATTR(handle, clientFname, name, value, size);
2087 err:
2088         TALLOC_FREE(clientFname);
2089 out:
2090         return ret;
2091 }
2092
2093 /*
2094  * Success: return positive number
2095  * Failure: set errno, return -1
2096  */
2097 static ssize_t mh_listxattr(struct vfs_handle_struct *handle,
2098                 const struct smb_filename *smb_fname,
2099                 char *list,
2100                 size_t size)
2101 {
2102         ssize_t ret;
2103         struct smb_filename *clientFname = NULL;
2104         int status;
2105
2106         DEBUG(MH_INFO_DEBUG, ("Entering mh_listxattr\n"));
2107         if (!is_in_media_files(smb_fname->base_name)) {
2108                 ret = SMB_VFS_NEXT_LISTXATTR(handle, smb_fname, list, size);
2109                 goto out;
2110         }
2111
2112         status = alloc_get_client_smb_fname(handle,
2113                                 talloc_tos(),
2114                                 smb_fname,
2115                                 &clientFname);
2116         if (status != 0) {
2117                 ret = -1;
2118                 goto err;
2119         }
2120
2121         ret = SMB_VFS_NEXT_LISTXATTR(handle, clientFname, list, size);
2122 err:
2123         TALLOC_FREE(clientFname);
2124 out:
2125         return ret;
2126 }
2127
2128 /*
2129  * Success: return 0
2130  * Failure: set errno, return -1
2131  * In this case, "name" is an attr name.
2132  */
2133 static int mh_removexattr(struct vfs_handle_struct *handle,
2134                 const struct smb_filename *smb_fname,
2135                 const char *name)
2136 {
2137         int status;
2138         struct smb_filename *clientFname = NULL;
2139
2140         DEBUG(MH_INFO_DEBUG, ("Entering mh_removexattr\n"));
2141         if (!is_in_media_files(smb_fname->base_name)) {
2142                 status = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname, name);
2143                 goto out;
2144         }
2145
2146         status = alloc_get_client_smb_fname(handle,
2147                                 talloc_tos(),
2148                                 smb_fname,
2149                                 &clientFname);
2150         if (status != 0) {
2151                 goto err;
2152         }
2153         status = SMB_VFS_NEXT_REMOVEXATTR(handle, clientFname, name);
2154 err:
2155         TALLOC_FREE(clientFname);
2156 out:
2157         return status;
2158 }
2159
2160 /*
2161  * Success: return 0
2162  * Failure: set errno, return -1
2163  * In this case, "name" is an attr name.
2164  */
2165 static int mh_setxattr(struct vfs_handle_struct *handle,
2166                 const struct smb_filename *smb_fname,
2167                 const char *name,
2168                 const void *value,
2169                 size_t size,
2170                 int flags)
2171 {
2172         int status;
2173         struct smb_filename *clientFname = NULL;
2174
2175         DEBUG(MH_INFO_DEBUG, ("Entering mh_setxattr\n"));
2176         if (!is_in_media_files(smb_fname->base_name)) {
2177                 status = SMB_VFS_NEXT_SETXATTR(handle, smb_fname, name, value,
2178                                 size, flags);
2179                 goto out;
2180         }
2181
2182         status = alloc_get_client_smb_fname(handle,
2183                                 talloc_tos(),
2184                                 smb_fname,
2185                                 &clientFname);
2186         if (status != 0) {
2187                 goto err;
2188         }
2189         status = SMB_VFS_NEXT_SETXATTR(handle, clientFname, name, value,
2190                         size, flags);
2191 err:
2192         TALLOC_FREE(clientFname);
2193 out:
2194         return status;
2195 }
2196
2197 /* VFS operations structure */
2198
2199 static struct vfs_fn_pointers vfs_mh_fns = {
2200         /* Disk operations */
2201
2202         .statvfs_fn = mh_statvfs,
2203
2204         /* Directory operations */
2205
2206         .fdopendir_fn = mh_fdopendir,
2207         .readdir_fn = mh_readdir,
2208         .seekdir_fn = mh_seekdir,
2209         .telldir_fn = mh_telldir,
2210         .rewind_dir_fn = mh_rewinddir,
2211         .mkdirat_fn = mh_mkdirat,
2212         .closedir_fn = mh_closedir,
2213
2214         /* File operations */
2215
2216         .openat_fn = mh_openat,
2217         .create_file_fn = mh_create_file,
2218         .renameat_fn = mh_renameat,
2219         .stat_fn = mh_stat,
2220         .lstat_fn = mh_lstat,
2221         .fstat_fn = mh_fstat,
2222         .unlinkat_fn = mh_unlinkat,
2223         .chmod_fn = mh_chmod,
2224         .lchown_fn = mh_lchown,
2225         .chdir_fn = mh_chdir,
2226         .ntimes_fn = mh_ntimes,
2227         .symlinkat_fn = mh_symlinkat,
2228         .readlinkat_fn = mh_readlinkat,
2229         .linkat_fn = mh_linkat,
2230         .mknodat_fn = mh_mknodat,
2231         .realpath_fn = mh_realpath,
2232         .chflags_fn = mh_chflags,
2233         .streaminfo_fn = mh_streaminfo,
2234
2235         /* NT ACL operations. */
2236
2237         .get_nt_acl_at_fn = mh_get_nt_acl_at,
2238
2239         /* POSIX ACL operations. */
2240
2241         .sys_acl_get_file_fn = mh_sys_acl_get_file,
2242         .sys_acl_set_file_fn = mh_sys_acl_set_file,
2243         .sys_acl_delete_def_file_fn = mh_sys_acl_delete_def_file,
2244
2245         /* EA operations. */
2246         .getxattr_fn = mh_getxattr,
2247         .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
2248         .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
2249         .listxattr_fn = mh_listxattr,
2250         .removexattr_fn = mh_removexattr,
2251         .setxattr_fn = mh_setxattr,
2252
2253         /* aio operations */
2254 };
2255
2256 static_decl_vfs;
2257 NTSTATUS vfs_media_harmony_init(TALLOC_CTX *ctx)
2258 {
2259         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2260                                 "media_harmony", &vfs_mh_fns);
2261         if (!NT_STATUS_IS_OK(ret))
2262         {
2263                 goto out;
2264         }
2265
2266         vfs_mh_debug_level = debug_add_class("media_harmony");
2267
2268         if (vfs_mh_debug_level == -1) {
2269                 vfs_mh_debug_level = DBGC_VFS;
2270                 DEBUG(1, ("media_harmony_init: Couldn't register custom "
2271                                 "debugging class.\n"));
2272         } else {
2273                 DEBUG(3, ("media_harmony_init: Debug class number of "
2274                                 "'media_harmony': %d\n",
2275                                 vfs_mh_debug_level));
2276         }
2277
2278 out:
2279         return ret;
2280 }