vfs_fruit: remove base_fsp name translation
[samba.git] / source3 / modules / vfs_fruit.c
1 /*
2  * OS X and Netatalk interoperability VFS module for Samba-3.x
3  *
4  * Copyright (C) Ralph Boehme, 2013, 2014
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "includes.h"
21 #include "MacExtensions.h"
22 #include "smbd/smbd.h"
23 #include "system/filesys.h"
24 #include "lib/util/time.h"
25 #include "../lib/crypto/md5.h"
26 #include "system/shmem.h"
27 #include "locking/proto.h"
28 #include "smbd/globals.h"
29 #include "messages.h"
30 #include "libcli/security/security.h"
31 #include "../libcli/smb/smb2_create_ctx.h"
32 #include "lib/util/sys_rw.h"
33 #include "lib/util/tevent_ntstatus.h"
34
35 /*
36  * Enhanced OS X and Netatalk compatibility
37  * ========================================
38  *
39  * This modules takes advantage of vfs_streams_xattr and
40  * vfs_catia. VFS modules vfs_fruit and vfs_streams_xattr must be
41  * loaded in the correct order:
42  *
43  *   vfs modules = catia fruit streams_xattr
44  *
45  * The module intercepts the OS X special streams "AFP_AfpInfo" and
46  * "AFP_Resource" and handles them in a special way. All other named
47  * streams are deferred to vfs_streams_xattr.
48  *
49  * The OS X client maps all NTFS illegal characters to the Unicode
50  * private range. This module optionally stores the charcters using
51  * their native ASCII encoding using vfs_catia. If you're not enabling
52  * this feature, you can skip catia from vfs modules.
53  *
54  * Finally, open modes are optionally checked against Netatalk AFP
55  * share modes.
56  *
57  * The "AFP_AfpInfo" named stream is a binary blob containing OS X
58  * extended metadata for files and directories. This module optionally
59  * reads and stores this metadata in a way compatible with Netatalk 3
60  * which stores the metadata in an EA "org.netatalk.metadata". Cf
61  * source3/include/MacExtensions.h for a description of the binary
62  * blobs content.
63  *
64  * The "AFP_Resource" named stream may be arbitrarily large, thus it
65  * can't be stored in an xattr on most filesystem. ZFS on Solaris is
66  * the only available filesystem where xattrs can be of any size and
67  * the OS supports using the file APIs for xattrs.
68  *
69  * The AFP_Resource stream is stored in an AppleDouble file prepending
70  * "._" to the filename. On Solaris with ZFS the stream is optionally
71  * stored in an EA "org.netatalk.resource".
72  *
73  *
74  * Extended Attributes
75  * ===================
76  *
77  * The OS X SMB client sends xattrs as ADS too. For xattr interop with
78  * other protocols you may want to adjust the xattr names the VFS
79  * module vfs_streams_xattr uses for storing ADS's. This defaults to
80  * user.DosStream.ADS_NAME:$DATA and can be changed by specifying
81  * these module parameters:
82  *
83  *   streams_xattr:prefix = user.
84  *   streams_xattr:store_stream_type = false
85  *
86  *
87  * TODO
88  * ====
89  *
90  * - log diagnostic if any needed VFS module is not loaded
91  *   (eg with lp_vfs_objects())
92  * - add tests
93  */
94
95 static int vfs_fruit_debug_level = DBGC_VFS;
96
97 #undef DBGC_CLASS
98 #define DBGC_CLASS vfs_fruit_debug_level
99
100 #define FRUIT_PARAM_TYPE_NAME "fruit"
101 #define ADOUBLE_NAME_PREFIX "._"
102
103 #define NETATALK_META_XATTR "org.netatalk.Metadata"
104 #define NETATALK_RSRC_XATTR "org.netatalk.ResourceFork"
105
106 #if defined(HAVE_ATTROPEN)
107 #define AFPINFO_EA_NETATALK NETATALK_META_XATTR
108 #define AFPRESOURCE_EA_NETATALK NETATALK_RSRC_XATTR
109 #else
110 #define AFPINFO_EA_NETATALK "user." NETATALK_META_XATTR
111 #define AFPRESOURCE_EA_NETATALK "user." NETATALK_RSRC_XATTR
112 #endif
113
114 enum apple_fork {APPLE_FORK_DATA, APPLE_FORK_RSRC};
115
116 enum fruit_rsrc {FRUIT_RSRC_STREAM, FRUIT_RSRC_ADFILE, FRUIT_RSRC_XATTR};
117 enum fruit_meta {FRUIT_META_STREAM, FRUIT_META_NETATALK};
118 enum fruit_locking {FRUIT_LOCKING_NETATALK, FRUIT_LOCKING_NONE};
119 enum fruit_encoding {FRUIT_ENC_NATIVE, FRUIT_ENC_PRIVATE};
120
121 struct fruit_config_data {
122         enum fruit_rsrc rsrc;
123         enum fruit_meta meta;
124         enum fruit_locking locking;
125         enum fruit_encoding encoding;
126         bool use_aapl;          /* config from smb.conf */
127         bool nego_aapl;         /* client negotiated AAPL */
128         bool use_copyfile;
129         bool readdir_attr_enabled;
130         bool unix_info_enabled;
131         bool copyfile_enabled;
132         bool veto_appledouble;
133         bool posix_rename;
134
135         /*
136          * Additional options, all enabled by default,
137          * possibly useful for analyzing performance. The associated
138          * operations with each of them may be expensive, so having
139          * the chance to disable them individually gives a chance
140          * tweaking the setup for the particular usecase.
141          */
142         bool readdir_attr_rsize;
143         bool readdir_attr_finder_info;
144         bool readdir_attr_max_access;
145 };
146
147 static const struct enum_list fruit_rsrc[] = {
148         {FRUIT_RSRC_STREAM, "stream"}, /* pass on to vfs_streams_xattr */
149         {FRUIT_RSRC_ADFILE, "file"}, /* ._ AppleDouble file */
150         {FRUIT_RSRC_XATTR, "xattr"}, /* Netatalk compatible xattr (ZFS only) */
151         { -1, NULL}
152 };
153
154 static const struct enum_list fruit_meta[] = {
155         {FRUIT_META_STREAM, "stream"}, /* pass on to vfs_streams_xattr */
156         {FRUIT_META_NETATALK, "netatalk"}, /* Netatalk compatible xattr */
157         { -1, NULL}
158 };
159
160 static const struct enum_list fruit_locking[] = {
161         {FRUIT_LOCKING_NETATALK, "netatalk"}, /* synchronize locks with Netatalk */
162         {FRUIT_LOCKING_NONE, "none"},
163         { -1, NULL}
164 };
165
166 static const struct enum_list fruit_encoding[] = {
167         {FRUIT_ENC_NATIVE, "native"}, /* map unicode private chars to ASCII */
168         {FRUIT_ENC_PRIVATE, "private"}, /* keep unicode private chars */
169         { -1, NULL}
170 };
171
172 /*****************************************************************************
173  * Defines, functions and data structures that deal with AppleDouble
174  *****************************************************************************/
175
176 /*
177  * There are two AppleDouble blobs we deal with:
178  *
179  * - ADOUBLE_META - AppleDouble blob used by Netatalk for storing
180  *   metadata in an xattr
181  *
182  * - ADOUBLE_RSRC - AppleDouble blob used by OS X and Netatalk in
183  *   ._ files
184  */
185 typedef enum {ADOUBLE_META, ADOUBLE_RSRC} adouble_type_t;
186
187 /* Version info */
188 #define AD_VERSION2     0x00020000
189 #define AD_VERSION      AD_VERSION2
190
191 /*
192  * AppleDouble entry IDs.
193  */
194 #define ADEID_DFORK         1
195 #define ADEID_RFORK         2
196 #define ADEID_NAME          3
197 #define ADEID_COMMENT       4
198 #define ADEID_ICONBW        5
199 #define ADEID_ICONCOL       6
200 #define ADEID_FILEI         7
201 #define ADEID_FILEDATESI    8
202 #define ADEID_FINDERI       9
203 #define ADEID_MACFILEI      10
204 #define ADEID_PRODOSFILEI   11
205 #define ADEID_MSDOSFILEI    12
206 #define ADEID_SHORTNAME     13
207 #define ADEID_AFPFILEI      14
208 #define ADEID_DID           15
209
210 /* Private Netatalk entries */
211 #define ADEID_PRIVDEV       16
212 #define ADEID_PRIVINO       17
213 #define ADEID_PRIVSYN       18
214 #define ADEID_PRIVID        19
215 #define ADEID_MAX           (ADEID_PRIVID + 1)
216
217 /*
218  * These are the real ids for the private entries,
219  * as stored in the adouble file
220  */
221 #define AD_DEV              0x80444556
222 #define AD_INO              0x80494E4F
223 #define AD_SYN              0x8053594E
224 #define AD_ID               0x8053567E
225
226 /* Number of actually used entries */
227 #define ADEID_NUM_XATTR      8
228 #define ADEID_NUM_DOT_UND    2
229 #define ADEID_NUM_RSRC_XATTR 1
230
231 /* AppleDouble magic */
232 #define AD_APPLESINGLE_MAGIC 0x00051600
233 #define AD_APPLEDOUBLE_MAGIC 0x00051607
234 #define AD_MAGIC             AD_APPLEDOUBLE_MAGIC
235
236 /* Sizes of relevant entry bits */
237 #define ADEDLEN_MAGIC       4
238 #define ADEDLEN_VERSION     4
239 #define ADEDLEN_FILLER      16
240 #define AD_FILLER_TAG       "Netatalk        " /* should be 16 bytes */
241 #define ADEDLEN_NENTRIES    2
242 #define AD_HEADER_LEN       (ADEDLEN_MAGIC + ADEDLEN_VERSION + \
243                              ADEDLEN_FILLER + ADEDLEN_NENTRIES) /* 26 */
244 #define AD_ENTRY_LEN_EID    4
245 #define AD_ENTRY_LEN_OFF    4
246 #define AD_ENTRY_LEN_LEN    4
247 #define AD_ENTRY_LEN (AD_ENTRY_LEN_EID + AD_ENTRY_LEN_OFF + AD_ENTRY_LEN_LEN)
248
249 /* Field widths */
250 #define ADEDLEN_NAME            255
251 #define ADEDLEN_COMMENT         200
252 #define ADEDLEN_FILEI           16
253 #define ADEDLEN_FINDERI         32
254 #define ADEDLEN_FILEDATESI      16
255 #define ADEDLEN_SHORTNAME       12 /* length up to 8.3 */
256 #define ADEDLEN_AFPFILEI        4
257 #define ADEDLEN_MACFILEI        4
258 #define ADEDLEN_PRODOSFILEI     8
259 #define ADEDLEN_MSDOSFILEI      2
260 #define ADEDLEN_DID             4
261 #define ADEDLEN_PRIVDEV         8
262 #define ADEDLEN_PRIVINO         8
263 #define ADEDLEN_PRIVSYN         8
264 #define ADEDLEN_PRIVID          4
265
266 /* Offsets */
267 #define ADEDOFF_MAGIC         0
268 #define ADEDOFF_VERSION       (ADEDOFF_MAGIC + ADEDLEN_MAGIC)
269 #define ADEDOFF_FILLER        (ADEDOFF_VERSION + ADEDLEN_VERSION)
270 #define ADEDOFF_NENTRIES      (ADEDOFF_FILLER + ADEDLEN_FILLER)
271
272 #define ADEDOFF_FINDERI_XATTR    (AD_HEADER_LEN + \
273                                   (ADEID_NUM_XATTR * AD_ENTRY_LEN))
274 #define ADEDOFF_COMMENT_XATTR    (ADEDOFF_FINDERI_XATTR    + ADEDLEN_FINDERI)
275 #define ADEDOFF_FILEDATESI_XATTR (ADEDOFF_COMMENT_XATTR    + ADEDLEN_COMMENT)
276 #define ADEDOFF_AFPFILEI_XATTR   (ADEDOFF_FILEDATESI_XATTR + \
277                                   ADEDLEN_FILEDATESI)
278 #define ADEDOFF_PRIVDEV_XATTR    (ADEDOFF_AFPFILEI_XATTR   + ADEDLEN_AFPFILEI)
279 #define ADEDOFF_PRIVINO_XATTR    (ADEDOFF_PRIVDEV_XATTR    + ADEDLEN_PRIVDEV)
280 #define ADEDOFF_PRIVSYN_XATTR    (ADEDOFF_PRIVINO_XATTR    + ADEDLEN_PRIVINO)
281 #define ADEDOFF_PRIVID_XATTR     (ADEDOFF_PRIVSYN_XATTR    + ADEDLEN_PRIVSYN)
282
283 #define ADEDOFF_FINDERI_DOT_UND  (AD_HEADER_LEN + \
284                                   (ADEID_NUM_DOT_UND * AD_ENTRY_LEN))
285 #define ADEDOFF_RFORK_DOT_UND    (ADEDOFF_FINDERI_DOT_UND + ADEDLEN_FINDERI)
286
287 #define AD_DATASZ_XATTR (AD_HEADER_LEN + \
288                          (ADEID_NUM_XATTR * AD_ENTRY_LEN) + \
289                          ADEDLEN_FINDERI + ADEDLEN_COMMENT + \
290                          ADEDLEN_FILEDATESI + ADEDLEN_AFPFILEI + \
291                          ADEDLEN_PRIVDEV + ADEDLEN_PRIVINO + \
292                          ADEDLEN_PRIVSYN + ADEDLEN_PRIVID)
293
294 #if AD_DATASZ_XATTR != 402
295 #error bad size for AD_DATASZ_XATTR
296 #endif
297
298 #define AD_DATASZ_DOT_UND (AD_HEADER_LEN + \
299                            (ADEID_NUM_DOT_UND * AD_ENTRY_LEN) + \
300                            ADEDLEN_FINDERI)
301 #if AD_DATASZ_DOT_UND != 82
302 #error bad size for AD_DATASZ_DOT_UND
303 #endif
304
305 /*
306  * Sharemode locks fcntl() offsets
307  */
308 #if _FILE_OFFSET_BITS == 64 || defined(HAVE_LARGEFILE)
309 #define AD_FILELOCK_BASE (UINT64_C(0x7FFFFFFFFFFFFFFF) - 9)
310 #else
311 #define AD_FILELOCK_BASE (UINT32_C(0x7FFFFFFF) - 9)
312 #endif
313 #define BYTELOCK_MAX (AD_FILELOCK_BASE - 1)
314
315 #define AD_FILELOCK_OPEN_WR        (AD_FILELOCK_BASE + 0)
316 #define AD_FILELOCK_OPEN_RD        (AD_FILELOCK_BASE + 1)
317 #define AD_FILELOCK_RSRC_OPEN_WR   (AD_FILELOCK_BASE + 2)
318 #define AD_FILELOCK_RSRC_OPEN_RD   (AD_FILELOCK_BASE + 3)
319 #define AD_FILELOCK_DENY_WR        (AD_FILELOCK_BASE + 4)
320 #define AD_FILELOCK_DENY_RD        (AD_FILELOCK_BASE + 5)
321 #define AD_FILELOCK_RSRC_DENY_WR   (AD_FILELOCK_BASE + 6)
322 #define AD_FILELOCK_RSRC_DENY_RD   (AD_FILELOCK_BASE + 7)
323 #define AD_FILELOCK_OPEN_NONE      (AD_FILELOCK_BASE + 8)
324 #define AD_FILELOCK_RSRC_OPEN_NONE (AD_FILELOCK_BASE + 9)
325
326 /* Time stuff we overload the bits a little */
327 #define AD_DATE_CREATE         0
328 #define AD_DATE_MODIFY         4
329 #define AD_DATE_BACKUP         8
330 #define AD_DATE_ACCESS        12
331 #define AD_DATE_MASK          (AD_DATE_CREATE | AD_DATE_MODIFY | \
332                                AD_DATE_BACKUP | AD_DATE_ACCESS)
333 #define AD_DATE_UNIX          (1 << 10)
334 #define AD_DATE_START         0x80000000
335 #define AD_DATE_DELTA         946684800
336 #define AD_DATE_FROM_UNIX(x)  (htonl((x) - AD_DATE_DELTA))
337 #define AD_DATE_TO_UNIX(x)    (ntohl(x) + AD_DATE_DELTA)
338
339 /* Accessor macros */
340 #define ad_getentrylen(ad,eid)     ((ad)->ad_eid[(eid)].ade_len)
341 #define ad_getentryoff(ad,eid)     ((ad)->ad_eid[(eid)].ade_off)
342 #define ad_setentrylen(ad,eid,len) ((ad)->ad_eid[(eid)].ade_len = (len))
343 #define ad_setentryoff(ad,eid,off) ((ad)->ad_eid[(eid)].ade_off = (off))
344
345 struct ad_entry {
346         size_t ade_off;
347         size_t ade_len;
348 };
349
350 struct adouble {
351         vfs_handle_struct        *ad_handle;
352         files_struct             *ad_fsp;
353         adouble_type_t            ad_type;
354         uint32_t                  ad_magic;
355         uint32_t                  ad_version;
356         struct ad_entry           ad_eid[ADEID_MAX];
357         char                     *ad_data;
358 };
359
360 struct ad_entry_order {
361         uint32_t id, offset, len;
362 };
363
364 /* Netatalk AppleDouble metadata xattr */
365 static const
366 struct ad_entry_order entry_order_meta_xattr[ADEID_NUM_XATTR + 1] = {
367         {ADEID_FINDERI,    ADEDOFF_FINDERI_XATTR,    ADEDLEN_FINDERI},
368         {ADEID_COMMENT,    ADEDOFF_COMMENT_XATTR,    0},
369         {ADEID_FILEDATESI, ADEDOFF_FILEDATESI_XATTR, ADEDLEN_FILEDATESI},
370         {ADEID_AFPFILEI,   ADEDOFF_AFPFILEI_XATTR,   ADEDLEN_AFPFILEI},
371         {ADEID_PRIVDEV,    ADEDOFF_PRIVDEV_XATTR,    0},
372         {ADEID_PRIVINO,    ADEDOFF_PRIVINO_XATTR,    0},
373         {ADEID_PRIVSYN,    ADEDOFF_PRIVSYN_XATTR,    0},
374         {ADEID_PRIVID,     ADEDOFF_PRIVID_XATTR,     0},
375         {0, 0, 0}
376 };
377
378 /* AppleDouble resource fork file (the ones prefixed by "._") */
379 static const
380 struct ad_entry_order entry_order_dot_und[ADEID_NUM_DOT_UND + 1] = {
381         {ADEID_FINDERI,    ADEDOFF_FINDERI_DOT_UND,  ADEDLEN_FINDERI},
382         {ADEID_RFORK,      ADEDOFF_RFORK_DOT_UND,    0},
383         {0, 0, 0}
384 };
385
386 /*
387  * Fake AppleDouble entry oder for resource fork xattr.  The xattr
388  * isn't an AppleDouble file, it simply contains the resource data,
389  * but in order to be able to use some API calls like ad_getentryoff()
390  * we build a fake/helper struct adouble with this entry order struct.
391  */
392 static const
393 struct ad_entry_order entry_order_rsrc_xattr[ADEID_NUM_RSRC_XATTR + 1] = {
394         {ADEID_RFORK, 0, 0},
395         {0, 0, 0}
396 };
397
398 /* Conversion from enumerated id to on-disk AppleDouble id */
399 #define AD_EID_DISK(a) (set_eid[a])
400 static const uint32_t set_eid[] = {
401         0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
402         AD_DEV, AD_INO, AD_SYN, AD_ID
403 };
404
405 /*
406  * Forward declarations
407  */
408 static struct adouble *ad_init(TALLOC_CTX *ctx, vfs_handle_struct *handle,
409                                adouble_type_t type, files_struct *fsp);
410 static int ad_write(struct adouble *ad, const char *path);
411 static int adouble_path(TALLOC_CTX *ctx, const char *path_in, char **path_out);
412
413 /**
414  * Return a pointer to an AppleDouble entry
415  *
416  * Returns NULL if the entry is not present
417  **/
418 static char *ad_get_entry(const struct adouble *ad, int eid)
419 {
420         off_t off = ad_getentryoff(ad, eid);
421         size_t len = ad_getentrylen(ad, eid);
422
423         if (off == 0 || len == 0) {
424                 return NULL;
425         }
426
427         return ad->ad_data + off;
428 }
429
430 /**
431  * Get a date
432  **/
433 static int ad_getdate(const struct adouble *ad,
434                       unsigned int dateoff,
435                       uint32_t *date)
436 {
437         bool xlate = (dateoff & AD_DATE_UNIX);
438         char *p = NULL;
439
440         dateoff &= AD_DATE_MASK;
441         p = ad_get_entry(ad, ADEID_FILEDATESI);
442         if (p == NULL) {
443                 return -1;
444         }
445
446         if (dateoff > AD_DATE_ACCESS) {
447             return -1;
448         }
449
450         memcpy(date, p + dateoff, sizeof(uint32_t));
451
452         if (xlate) {
453                 *date = AD_DATE_TO_UNIX(*date);
454         }
455         return 0;
456 }
457
458 /**
459  * Set a date
460  **/
461 static int ad_setdate(struct adouble *ad, unsigned int dateoff, uint32_t date)
462 {
463         bool xlate = (dateoff & AD_DATE_UNIX);
464         char *p = NULL;
465
466         p = ad_get_entry(ad, ADEID_FILEDATESI);
467         if (p == NULL) {
468                 return -1;
469         }
470
471         dateoff &= AD_DATE_MASK;
472         if (xlate) {
473                 date = AD_DATE_FROM_UNIX(date);
474         }
475
476         if (dateoff > AD_DATE_ACCESS) {
477                 return -1;
478         }
479
480         memcpy(p + dateoff, &date, sizeof(date));
481
482         return 0;
483 }
484
485
486 /**
487  * Map on-disk AppleDouble id to enumerated id
488  **/
489 static uint32_t get_eid(uint32_t eid)
490 {
491         if (eid <= 15) {
492                 return eid;
493         }
494
495         switch (eid) {
496         case AD_DEV:
497                 return ADEID_PRIVDEV;
498         case AD_INO:
499                 return ADEID_PRIVINO;
500         case AD_SYN:
501                 return ADEID_PRIVSYN;
502         case AD_ID:
503                 return ADEID_PRIVID;
504         default:
505                 break;
506         }
507
508         return 0;
509 }
510
511 /**
512  * Pack AppleDouble structure into data buffer
513  **/
514 static bool ad_pack(struct adouble *ad)
515 {
516         uint32_t       eid;
517         uint16_t       nent;
518         uint32_t       bufsize;
519         uint32_t       offset = 0;
520
521         bufsize = talloc_get_size(ad->ad_data);
522
523         if (offset + ADEDLEN_MAGIC < offset ||
524                         offset + ADEDLEN_MAGIC >= bufsize) {
525                 return false;
526         }
527         RSIVAL(ad->ad_data, offset, ad->ad_magic);
528         offset += ADEDLEN_MAGIC;
529
530         if (offset + ADEDLEN_VERSION < offset ||
531                         offset + ADEDLEN_VERSION >= bufsize) {
532                 return false;
533         }
534         RSIVAL(ad->ad_data, offset, ad->ad_version);
535         offset += ADEDLEN_VERSION;
536
537         if (offset + ADEDLEN_FILLER < offset ||
538                         offset + ADEDLEN_FILLER >= bufsize) {
539                 return false;
540         }
541         if (ad->ad_type == ADOUBLE_RSRC) {
542                 memcpy(ad->ad_data + offset, AD_FILLER_TAG, ADEDLEN_FILLER);
543         }
544         offset += ADEDLEN_FILLER;
545
546         if (offset + ADEDLEN_NENTRIES < offset ||
547                         offset + ADEDLEN_NENTRIES >= bufsize) {
548                 return false;
549         }
550         offset += ADEDLEN_NENTRIES;
551
552         for (eid = 0, nent = 0; eid < ADEID_MAX; eid++) {
553                 if (ad->ad_eid[eid].ade_off == 0) {
554                         /*
555                          * ade_off is also used as indicator whether a
556                          * specific entry is used or not
557                          */
558                         continue;
559                 }
560
561                 if (offset + AD_ENTRY_LEN_EID < offset ||
562                                 offset + AD_ENTRY_LEN_EID >= bufsize) {
563                         return false;
564                 }
565                 RSIVAL(ad->ad_data, offset, AD_EID_DISK(eid));
566                 offset += AD_ENTRY_LEN_EID;
567
568                 if (offset + AD_ENTRY_LEN_OFF < offset ||
569                                 offset + AD_ENTRY_LEN_OFF >= bufsize) {
570                         return false;
571                 }
572                 RSIVAL(ad->ad_data, offset, ad->ad_eid[eid].ade_off);
573                 offset += AD_ENTRY_LEN_OFF;
574
575                 if (offset + AD_ENTRY_LEN_LEN < offset ||
576                                 offset + AD_ENTRY_LEN_LEN >= bufsize) {
577                         return false;
578                 }
579                 RSIVAL(ad->ad_data, offset, ad->ad_eid[eid].ade_len);
580                 offset += AD_ENTRY_LEN_LEN;
581
582                 nent++;
583         }
584
585         if (ADEDOFF_NENTRIES + 2 >= bufsize) {
586                 return false;
587         }
588         RSSVAL(ad->ad_data, ADEDOFF_NENTRIES, nent);
589
590         return true;
591 }
592
593 /**
594  * Unpack an AppleDouble blob into a struct adoble
595  **/
596 static bool ad_unpack(struct adouble *ad, const size_t nentries,
597                       size_t filesize)
598 {
599         size_t bufsize = talloc_get_size(ad->ad_data);
600         size_t adentries, i;
601         uint32_t eid, len, off;
602
603         /*
604          * The size of the buffer ad->ad_data is checked when read, so
605          * we wouldn't have to check our own offsets, a few extra
606          * checks won't hurt though. We have to check the offsets we
607          * read from the buffer anyway.
608          */
609
610         if (bufsize < (AD_HEADER_LEN + (AD_ENTRY_LEN * nentries))) {
611                 DEBUG(1, ("bad size\n"));
612                 return false;
613         }
614
615         ad->ad_magic = RIVAL(ad->ad_data, 0);
616         ad->ad_version = RIVAL(ad->ad_data, ADEDOFF_VERSION);
617         if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION)) {
618                 DEBUG(1, ("wrong magic or version\n"));
619                 return false;
620         }
621
622         adentries = RSVAL(ad->ad_data, ADEDOFF_NENTRIES);
623         if (adentries != nentries) {
624                 DEBUG(1, ("invalid number of entries: %zu\n",
625                           adentries));
626                 return false;
627         }
628
629         /* now, read in the entry bits */
630         for (i = 0; i < adentries; i++) {
631                 eid = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN));
632                 eid = get_eid(eid);
633                 off = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN) + 4);
634                 len = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN) + 8);
635
636                 if (!eid || eid > ADEID_MAX) {
637                         DEBUG(1, ("bogus eid %d\n", eid));
638                         return false;
639                 }
640
641                 /*
642                  * All entries other than the resource fork are
643                  * expected to be read into the ad_data buffer, so
644                  * ensure the specified offset is within that bound
645                  */
646                 if ((off > bufsize) && (eid != ADEID_RFORK)) {
647                         DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
648                                   eid, off, len));
649                         return false;
650                 }
651
652                 /*
653                  * All entries besides FinderInfo and resource fork
654                  * must fit into the buffer. FinderInfo is special as
655                  * it may be larger then the default 32 bytes (if it
656                  * contains marshalled xattrs), but we will fixup that
657                  * in ad_convert(). And the resource fork is never
658                  * accessed directly by the ad_data buf (also see
659                  * comment above) anyway.
660                  */
661                 if ((eid != ADEID_RFORK) &&
662                     (eid != ADEID_FINDERI) &&
663                     ((off + len) > bufsize)) {
664                         DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
665                                   eid, off, len));
666                         return false;
667                 }
668
669                 /*
670                  * That would be obviously broken
671                  */
672                 if (off > filesize) {
673                         DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
674                                   eid, off, len));
675                         return false;
676                 }
677
678                 /*
679                  * Check for any entry that has its end beyond the
680                  * filesize.
681                  */
682                 if (off + len < off) {
683                         DEBUG(1, ("offset wrap in eid %d: off: %" PRIu32
684                                   ", len: %" PRIu32 "\n",
685                                   eid, off, len));
686                         return false;
687
688                 }
689                 if (off + len > filesize) {
690                         /*
691                          * If this is the resource fork entry, we fix
692                          * up the length, for any other entry we bail
693                          * out.
694                          */
695                         if (eid != ADEID_RFORK) {
696                                 DEBUG(1, ("bogus eid %d: off: %" PRIu32
697                                           ", len: %" PRIu32 "\n",
698                                           eid, off, len));
699                                 return false;
700                         }
701
702                         /*
703                          * Fixup the resource fork entry by limiting
704                          * the size to entryoffset - filesize.
705                          */
706                         len = filesize - off;
707                         DEBUG(1, ("Limiting ADEID_RFORK: off: %" PRIu32
708                                   ", len: %" PRIu32 "\n", off, len));
709                 }
710
711                 ad->ad_eid[eid].ade_off = off;
712                 ad->ad_eid[eid].ade_len = len;
713         }
714
715         return true;
716 }
717
718 /**
719  * Convert from Apple's ._ file to Netatalk
720  *
721  * Apple's AppleDouble may contain a FinderInfo entry longer then 32
722  * bytes containing packed xattrs. Netatalk can't deal with that, so
723  * we simply discard the packed xattrs.
724  *
725  * @return -1 in case an error occurred, 0 if no conversion was done, 1
726  * otherwise
727  **/
728 static int ad_convert(struct adouble *ad, int fd)
729 {
730         int rc = 0;
731         char *map = MAP_FAILED;
732         size_t origlen;
733
734         origlen = ad_getentryoff(ad, ADEID_RFORK) +
735                 ad_getentrylen(ad, ADEID_RFORK);
736
737         /* FIXME: direct use of mmap(), vfs_aio_fork does it too */
738         map = mmap(NULL, origlen, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
739         if (map == MAP_FAILED) {
740                 DEBUG(2, ("mmap AppleDouble: %s\n", strerror(errno)));
741                 rc = -1;
742                 goto exit;
743         }
744
745         if (ad_getentrylen(ad, ADEID_RFORK) > 0) {
746                 memmove(map + ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI,
747                         map + ad_getentryoff(ad, ADEID_RFORK),
748                         ad_getentrylen(ad, ADEID_RFORK));
749         }
750
751         ad_setentrylen(ad, ADEID_FINDERI, ADEDLEN_FINDERI);
752         ad_setentryoff(ad, ADEID_RFORK,
753                        ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI);
754
755         /*
756          * FIXME: direct ftruncate(), but we don't have a fsp for the
757          * VFS call
758          */
759         rc = ftruncate(fd, ad_getentryoff(ad, ADEID_RFORK)
760                        + ad_getentrylen(ad, ADEID_RFORK));
761
762 exit:
763         if (map != MAP_FAILED) {
764                 munmap(map, origlen);
765         }
766         return rc;
767 }
768
769 /**
770  * Read and parse Netatalk AppleDouble metadata xattr
771  **/
772 static ssize_t ad_header_read_meta(struct adouble *ad, const char *path)
773 {
774         int      rc = 0;
775         ssize_t  ealen;
776         bool     ok;
777
778         DEBUG(10, ("reading meta xattr for %s\n", path));
779
780         ealen = SMB_VFS_GETXATTR(ad->ad_handle->conn, path,
781                                  AFPINFO_EA_NETATALK, ad->ad_data,
782                                  AD_DATASZ_XATTR);
783         if (ealen == -1) {
784                 switch (errno) {
785                 case ENOATTR:
786                 case ENOENT:
787                         if (errno == ENOATTR) {
788                                 errno = ENOENT;
789                         }
790                         rc = -1;
791                         goto exit;
792                 default:
793                         DEBUG(2, ("error reading meta xattr: %s\n",
794                                   strerror(errno)));
795                         rc = -1;
796                         goto exit;
797                 }
798         }
799         if (ealen != AD_DATASZ_XATTR) {
800                 DEBUG(2, ("bad size %zd\n", ealen));
801                 errno = EINVAL;
802                 rc = -1;
803                 goto exit;
804         }
805
806         /* Now parse entries */
807         ok = ad_unpack(ad, ADEID_NUM_XATTR, AD_DATASZ_XATTR);
808         if (!ok) {
809                 DEBUG(2, ("invalid AppleDouble metadata xattr\n"));
810                 errno = EINVAL;
811                 rc = -1;
812                 goto exit;
813         }
814
815         if (!ad_getentryoff(ad, ADEID_FINDERI)
816             || !ad_getentryoff(ad, ADEID_COMMENT)
817             || !ad_getentryoff(ad, ADEID_FILEDATESI)
818             || !ad_getentryoff(ad, ADEID_AFPFILEI)
819             || !ad_getentryoff(ad, ADEID_PRIVDEV)
820             || !ad_getentryoff(ad, ADEID_PRIVINO)
821             || !ad_getentryoff(ad, ADEID_PRIVSYN)
822             || !ad_getentryoff(ad, ADEID_PRIVID)) {
823                 DEBUG(2, ("invalid AppleDouble metadata xattr\n"));
824                 errno = EINVAL;
825                 rc = -1;
826                 goto exit;
827         }
828
829 exit:
830         DEBUG(10, ("reading meta xattr for %s, rc: %d\n", path, rc));
831
832         if (rc != 0) {
833                 ealen = -1;
834                 if (errno == EINVAL) {
835                         become_root();
836                         removexattr(path, AFPINFO_EA_NETATALK);
837                         unbecome_root();
838                         errno = ENOENT;
839                 }
840         }
841         return ealen;
842 }
843
844 /**
845  * Read and parse resource fork, either ._ AppleDouble file or xattr
846  **/
847 static ssize_t ad_header_read_rsrc(struct adouble *ad, const char *path)
848 {
849         struct fruit_config_data *config = NULL;
850         int fd = -1;
851         int rc = 0;
852         ssize_t len;
853         char *adpath = NULL;
854         bool opened = false;
855         int mode;
856         struct adouble *meta_ad = NULL;
857         SMB_STRUCT_STAT sbuf;
858         bool ok;
859         int saved_errno = 0;
860
861         SMB_VFS_HANDLE_GET_DATA(ad->ad_handle, config,
862                                 struct fruit_config_data, return -1);
863
864         /* Try rw first so we can use the fd in ad_convert() */
865         mode = O_RDWR;
866
867         if (ad->ad_fsp && ad->ad_fsp->fh && (ad->ad_fsp->fh->fd != -1)) {
868                 fd = ad->ad_fsp->fh->fd;
869         } else {
870                 if (config->rsrc == FRUIT_RSRC_XATTR) {
871                         adpath = talloc_strdup(talloc_tos(), path);
872                 } else {
873                         rc = adouble_path(talloc_tos(), path, &adpath);
874                         if (rc != 0) {
875                                 goto exit;
876                         }
877                 }
878
879         retry:
880                 if (config->rsrc == FRUIT_RSRC_XATTR) {
881 #ifndef HAVE_ATTROPEN
882                         errno = ENOSYS;
883                         rc = -1;
884                         goto exit;
885 #else
886                         /* FIXME: direct Solaris xattr syscall */
887                         fd = attropen(adpath, AFPRESOURCE_EA_NETATALK,
888                                       mode, 0);
889 #endif
890                 } else {
891                         /* FIXME: direct open(), don't have an fsp */
892                         fd = open(adpath, mode);
893                 }
894
895                 if (fd == -1) {
896                         switch (errno) {
897                         case EROFS:
898                         case EACCES:
899                                 if (mode == O_RDWR) {
900                                         mode = O_RDONLY;
901                                         goto retry;
902                                 }
903                                 /* fall through ... */
904                         default:
905                                 DEBUG(2, ("open AppleDouble: %s, %s\n",
906                                           adpath, strerror(errno)));
907                                 rc = -1;
908                                 goto exit;
909                         }
910                 }
911                 opened = true;
912         }
913
914         if (config->rsrc == FRUIT_RSRC_XATTR) {
915                 /* FIXME: direct sys_fstat(), don't have an fsp */
916                 rc = sys_fstat(
917                         fd, &sbuf,
918                         lp_fake_directory_create_times(
919                                 SNUM(ad->ad_handle->conn)));
920                 if (rc != 0) {
921                         goto exit;
922                 }
923                 len = sbuf.st_ex_size;
924                 ad_setentrylen(ad, ADEID_RFORK, len);
925         } else {
926                 /* FIXME: direct sys_pread(), don't have an fsp */
927                 len = sys_pread(fd, ad->ad_data, AD_DATASZ_DOT_UND, 0);
928                 if (len != AD_DATASZ_DOT_UND) {
929                         DEBUG(2, ("%s: bad size: %zd\n",
930                                   strerror(errno), len));
931                         rc = -1;
932                         goto exit;
933                 }
934
935                 /* FIXME: direct sys_fstat(), we don't have an fsp */
936                 rc = sys_fstat(fd, &sbuf,
937                                lp_fake_directory_create_times(
938                                        SNUM(ad->ad_handle->conn)));
939                 if (rc != 0) {
940                         goto exit;
941                 }
942
943                 /* Now parse entries */
944                 ok = ad_unpack(ad, ADEID_NUM_DOT_UND, sbuf.st_ex_size);
945                 if (!ok) {
946                         DEBUG(1, ("invalid AppleDouble resource %s\n", path));
947                         errno = EINVAL;
948                         rc = -1;
949                         goto exit;
950                 }
951
952                 if ((ad_getentryoff(ad, ADEID_FINDERI)
953                      != ADEDOFF_FINDERI_DOT_UND)
954                     || (ad_getentrylen(ad, ADEID_FINDERI)
955                         < ADEDLEN_FINDERI)
956                     || (ad_getentryoff(ad, ADEID_RFORK)
957                         < ADEDOFF_RFORK_DOT_UND)) {
958                         DEBUG(2, ("invalid AppleDouble resource %s\n", path));
959                         errno = EINVAL;
960                         rc = -1;
961                         goto exit;
962                 }
963
964                 if ((mode == O_RDWR)
965                     && (ad_getentrylen(ad, ADEID_FINDERI) > ADEDLEN_FINDERI)) {
966                         char *p_ad = NULL;
967                         char *p_meta_ad = NULL;
968
969                         rc = ad_convert(ad, fd);
970                         if (rc != 0) {
971                                 rc = -1;
972                                 goto exit;
973                         }
974                         /*
975                          * Can't use ad_write() because we might not have a fsp
976                          */
977                         ok = ad_pack(ad);
978                         if (!ok) {
979                                 rc = -1;
980                                 goto exit;
981                         }
982                         /* FIXME: direct sys_pwrite(), don't have an fsp */
983                         len = sys_pwrite(fd, ad->ad_data,
984                                          AD_DATASZ_DOT_UND, 0);
985                         if (len != AD_DATASZ_DOT_UND) {
986                                 DEBUG(2, ("%s: bad size: %zd\n", adpath, len));
987                                 rc = -1;
988                                 goto exit;
989                         }
990
991                         meta_ad = ad_init(talloc_tos(), ad->ad_handle,
992                                           ADOUBLE_META, NULL);
993                         if (meta_ad == NULL) {
994                                 rc = -1;
995                                 goto exit;
996                         }
997
998                         p_ad = ad_get_entry(ad, ADEID_FINDERI);
999                         if (p_ad == NULL) {
1000                                 rc = -1;
1001                                 goto exit;
1002                         }
1003                         p_meta_ad = ad_get_entry(meta_ad, ADEID_FINDERI);
1004                         if (p_meta_ad == NULL) {
1005                                 rc = -1;
1006                                 goto exit;
1007                         }
1008
1009                         memcpy(p_meta_ad, p_ad, ADEDLEN_FINDERI);
1010
1011                         rc = ad_write(meta_ad, path);
1012                         if (rc != 0) {
1013                                 rc = -1;
1014                                 goto exit;
1015                         }
1016                 }
1017         }
1018
1019         DEBUG(10, ("opened AppleDouble: %s\n", path));
1020
1021 exit:
1022         if (rc != 0) {
1023                 saved_errno = errno;
1024                 len = -1;
1025         }
1026         if (opened && fd != -1) {
1027                 close(fd);
1028         }
1029         TALLOC_FREE(adpath);
1030         TALLOC_FREE(meta_ad);
1031         if (rc != 0) {
1032                 errno = saved_errno;
1033         }
1034         return len;
1035 }
1036
1037 /**
1038  * Read and unpack an AppleDouble metadata xattr or resource
1039  **/
1040 static ssize_t ad_read(struct adouble *ad, const char *path)
1041 {
1042         switch (ad->ad_type) {
1043         case ADOUBLE_META:
1044                 return ad_header_read_meta(ad, path);
1045         case ADOUBLE_RSRC:
1046                 return ad_header_read_rsrc(ad, path);
1047         default:
1048                 return -1;
1049         }
1050 }
1051
1052 /**
1053  * Allocate a struct adouble without initialiing it
1054  *
1055  * The struct is either hang of the fsp extension context or if fsp is
1056  * NULL from ctx.
1057  *
1058  * @param[in] ctx        talloc context
1059  * @param[in] handle     vfs handle
1060  * @param[in] type       type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1061
1062  * @param[in] fsp        if not NULL (for stream IO), the adouble handle is
1063  *                       added as an fsp extension
1064  *
1065  * @return               adouble handle
1066  **/
1067 static struct adouble *ad_alloc(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1068                                 adouble_type_t type, files_struct *fsp)
1069 {
1070         int rc = 0;
1071         size_t adsize = 0;
1072         struct adouble *ad;
1073         struct fruit_config_data *config;
1074
1075         SMB_VFS_HANDLE_GET_DATA(handle, config,
1076                                 struct fruit_config_data, return NULL);
1077
1078         switch (type) {
1079         case ADOUBLE_META:
1080                 adsize = AD_DATASZ_XATTR;
1081                 break;
1082         case ADOUBLE_RSRC:
1083                 if (config->rsrc == FRUIT_RSRC_ADFILE) {
1084                         adsize = AD_DATASZ_DOT_UND;
1085                 }
1086                 break;
1087         default:
1088                 return NULL;
1089         }
1090
1091         if (!fsp) {
1092                 ad = talloc_zero(ctx, struct adouble);
1093                 if (ad == NULL) {
1094                         rc = -1;
1095                         goto exit;
1096                 }
1097                 if (adsize) {
1098                         ad->ad_data = talloc_zero_array(ad, char, adsize);
1099                 }
1100         } else {
1101                 ad = (struct adouble *)VFS_ADD_FSP_EXTENSION(handle, fsp,
1102                                                              struct adouble,
1103                                                              NULL);
1104                 if (ad == NULL) {
1105                         rc = -1;
1106                         goto exit;
1107                 }
1108                 if (adsize) {
1109                         ad->ad_data = talloc_zero_array(
1110                                 VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
1111                                 char, adsize);
1112                 }
1113                 ad->ad_fsp = fsp;
1114         }
1115
1116         if (adsize && ad->ad_data == NULL) {
1117                 rc = -1;
1118                 goto exit;
1119         }
1120         ad->ad_handle = handle;
1121         ad->ad_type = type;
1122         ad->ad_magic = AD_MAGIC;
1123         ad->ad_version = AD_VERSION;
1124
1125 exit:
1126         if (rc != 0) {
1127                 TALLOC_FREE(ad);
1128         }
1129         return ad;
1130 }
1131
1132 /**
1133  * Allocate and initialize a new struct adouble
1134  *
1135  * @param[in] ctx        talloc context
1136  * @param[in] handle     vfs handle
1137  * @param[in] type       type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1138  * @param[in] fsp        file handle, may be NULL for a type of e_ad_meta
1139  *
1140  * @return               adouble handle, initialized
1141  **/
1142 static struct adouble *ad_init(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1143                                adouble_type_t type, files_struct *fsp)
1144 {
1145         int rc = 0;
1146         const struct ad_entry_order  *eid;
1147         struct adouble *ad = NULL;
1148         struct fruit_config_data *config;
1149         time_t t = time(NULL);
1150
1151         SMB_VFS_HANDLE_GET_DATA(handle, config,
1152                                 struct fruit_config_data, return NULL);
1153
1154         switch (type) {
1155         case ADOUBLE_META:
1156                 eid = entry_order_meta_xattr;
1157                 break;
1158         case ADOUBLE_RSRC:
1159                 if (config->rsrc == FRUIT_RSRC_ADFILE) {
1160                         eid = entry_order_dot_und;
1161                 } else {
1162                         eid = entry_order_rsrc_xattr;
1163                 }
1164                 break;
1165         default:
1166                 return NULL;
1167         }
1168
1169         ad = ad_alloc(ctx, handle, type, fsp);
1170         if (ad == NULL) {
1171                 return NULL;
1172         }
1173
1174         while (eid->id) {
1175                 ad->ad_eid[eid->id].ade_off = eid->offset;
1176                 ad->ad_eid[eid->id].ade_len = eid->len;
1177                 eid++;
1178         }
1179
1180         /* put something sane in the date fields */
1181         ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, t);
1182         ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, t);
1183         ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, t);
1184         ad_setdate(ad, AD_DATE_BACKUP, htonl(AD_DATE_START));
1185
1186         if (rc != 0) {
1187                 TALLOC_FREE(ad);
1188         }
1189         return ad;
1190 }
1191
1192 /**
1193  * Return AppleDouble data for a file
1194  *
1195  * @param[in] ctx      talloc context
1196  * @param[in] handle   vfs handle
1197  * @param[in] path     pathname to file or directory
1198  * @param[in] type     type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1199  *
1200  * @return             talloced struct adouble or NULL on error
1201  **/
1202 static struct adouble *ad_get(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1203                               const char *path, adouble_type_t type)
1204 {
1205         int rc = 0;
1206         ssize_t len;
1207         struct adouble *ad = NULL;
1208
1209         DEBUG(10, ("ad_get(%s) called for %s\n",
1210                    type == ADOUBLE_META ? "meta" : "rsrc", path));
1211
1212         ad = ad_alloc(ctx, handle, type, NULL);
1213         if (ad == NULL) {
1214                 rc = -1;
1215                 goto exit;
1216         }
1217
1218         len = ad_read(ad, path);
1219         if (len == -1) {
1220                 DEBUG(10, ("error reading AppleDouble for %s\n", path));
1221                 rc = -1;
1222                 goto exit;
1223         }
1224
1225 exit:
1226         DEBUG(10, ("ad_get(%s) for %s returning %d\n",
1227                   type == ADOUBLE_META ? "meta" : "rsrc", path, rc));
1228
1229         if (rc != 0) {
1230                 TALLOC_FREE(ad);
1231         }
1232         return ad;
1233 }
1234
1235 /**
1236  * Set AppleDouble metadata on a file or directory
1237  *
1238  * @param[in] ad      adouble handle
1239
1240  * @param[in] path    pathname to file or directory, may be NULL for a
1241  *                    resource fork
1242  *
1243  * @return            status code, 0 means success
1244  **/
1245 static int ad_write(struct adouble *ad, const char *path)
1246 {
1247         int rc = 0;
1248         ssize_t len;
1249         bool ok;
1250
1251         ok = ad_pack(ad);
1252         if (!ok) {
1253                 return -1;
1254         }
1255
1256         switch (ad->ad_type) {
1257         case ADOUBLE_META:
1258                 rc = SMB_VFS_SETXATTR(ad->ad_handle->conn, path,
1259                                       AFPINFO_EA_NETATALK, ad->ad_data,
1260                                       AD_DATASZ_XATTR, 0);
1261                 break;
1262         case ADOUBLE_RSRC:
1263                 if ((ad->ad_fsp == NULL)
1264                     || (ad->ad_fsp->fh == NULL)
1265                     || (ad->ad_fsp->fh->fd == -1)) {
1266                         rc = -1;
1267                         goto exit;
1268                 }
1269                 /* FIXME: direct sys_pwrite(), don't have an fsp */
1270                 len = sys_pwrite(ad->ad_fsp->fh->fd, ad->ad_data,
1271                                  talloc_get_size(ad->ad_data), 0);
1272                 if (len != talloc_get_size(ad->ad_data)) {
1273                         DEBUG(1, ("short write on %s: %zd",
1274                                   fsp_str_dbg(ad->ad_fsp), len));
1275                         rc = -1;
1276                         goto exit;
1277                 }
1278                 break;
1279         default:
1280                 return -1;
1281         }
1282 exit:
1283         return rc;
1284 }
1285
1286 /*****************************************************************************
1287  * Helper functions
1288  *****************************************************************************/
1289
1290 static bool is_afpinfo_stream(const struct smb_filename *smb_fname)
1291 {
1292         if (strncasecmp_m(smb_fname->stream_name,
1293                           AFPINFO_STREAM_NAME,
1294                           strlen(AFPINFO_STREAM_NAME)) == 0) {
1295                 return true;
1296         }
1297         return false;
1298 }
1299
1300 static bool is_afpresource_stream(const struct smb_filename *smb_fname)
1301 {
1302         if (strncasecmp_m(smb_fname->stream_name,
1303                           AFPRESOURCE_STREAM_NAME,
1304                           strlen(AFPRESOURCE_STREAM_NAME)) == 0) {
1305                 return true;
1306         }
1307         return false;
1308 }
1309
1310 /**
1311  * Test whether stream is an Apple stream, not used atm
1312  **/
1313 #if 0
1314 static bool is_apple_stream(const struct smb_filename *smb_fname)
1315 {
1316         if (is_afpinfo_stream(smb_fname)) {
1317                 return true;
1318         }
1319         if (is_afpresource_stream(smb_fname)) {
1320                 return true;
1321         }
1322         return false;
1323 }
1324 #endif
1325
1326 /**
1327  * Initialize config struct from our smb.conf config parameters
1328  **/
1329 static int init_fruit_config(vfs_handle_struct *handle)
1330 {
1331         struct fruit_config_data *config;
1332         int enumval;
1333
1334         config = talloc_zero(handle->conn, struct fruit_config_data);
1335         if (!config) {
1336                 DEBUG(1, ("talloc_zero() failed\n"));
1337                 errno = ENOMEM;
1338                 return -1;
1339         }
1340
1341         /*
1342          * Versions up to Samba 4.5.x had a spelling bug in the
1343          * fruit:resource option calling lp_parm_enum with
1344          * "res*s*ource" (ie two s).
1345          *
1346          * In Samba 4.6 we accept both the wrong and the correct
1347          * spelling, in Samba 4.7 the bad spelling will be removed.
1348          */
1349         enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1350                                "ressource", fruit_rsrc, FRUIT_RSRC_ADFILE);
1351         if (enumval == -1) {
1352                 DEBUG(1, ("value for %s: resource type unknown\n",
1353                           FRUIT_PARAM_TYPE_NAME));
1354                 return -1;
1355         }
1356         config->rsrc = (enum fruit_rsrc)enumval;
1357
1358         enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1359                                "resource", fruit_rsrc, enumval);
1360         if (enumval == -1) {
1361                 DEBUG(1, ("value for %s: resource type unknown\n",
1362                           FRUIT_PARAM_TYPE_NAME));
1363                 return -1;
1364         }
1365         config->rsrc = (enum fruit_rsrc)enumval;
1366
1367         enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1368                                "metadata", fruit_meta, FRUIT_META_NETATALK);
1369         if (enumval == -1) {
1370                 DEBUG(1, ("value for %s: metadata type unknown\n",
1371                           FRUIT_PARAM_TYPE_NAME));
1372                 return -1;
1373         }
1374         config->meta = (enum fruit_meta)enumval;
1375
1376         enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1377                                "locking", fruit_locking, FRUIT_LOCKING_NONE);
1378         if (enumval == -1) {
1379                 DEBUG(1, ("value for %s: locking type unknown\n",
1380                           FRUIT_PARAM_TYPE_NAME));
1381                 return -1;
1382         }
1383         config->locking = (enum fruit_locking)enumval;
1384
1385         enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1386                                "encoding", fruit_encoding, FRUIT_ENC_PRIVATE);
1387         if (enumval == -1) {
1388                 DEBUG(1, ("value for %s: encoding type unknown\n",
1389                           FRUIT_PARAM_TYPE_NAME));
1390                 return -1;
1391         }
1392         config->encoding = (enum fruit_encoding)enumval;
1393
1394         config->veto_appledouble = lp_parm_bool(
1395                 SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1396                 "veto_appledouble", true);
1397
1398         config->use_aapl = lp_parm_bool(
1399                 -1, FRUIT_PARAM_TYPE_NAME, "aapl", true);
1400
1401         config->unix_info_enabled = lp_parm_bool(
1402                 -1, FRUIT_PARAM_TYPE_NAME, "nfs_aces", true);
1403
1404         config->use_copyfile = lp_parm_bool(-1, FRUIT_PARAM_TYPE_NAME,
1405                                            "copyfile", false);
1406
1407         config->posix_rename = lp_parm_bool(
1408                 SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME, "posix_rename", true);
1409
1410         config->readdir_attr_rsize = lp_parm_bool(
1411                 SNUM(handle->conn), "readdir_attr", "aapl_rsize", true);
1412
1413         config->readdir_attr_finder_info = lp_parm_bool(
1414                 SNUM(handle->conn), "readdir_attr", "aapl_finder_info", true);
1415
1416         config->readdir_attr_max_access = lp_parm_bool(
1417                 SNUM(handle->conn), "readdir_attr", "aapl_max_access", true);
1418
1419         SMB_VFS_HANDLE_SET_DATA(handle, config,
1420                                 NULL, struct fruit_config_data,
1421                                 return -1);
1422
1423         return 0;
1424 }
1425
1426 /**
1427  * Prepend "._" to a basename
1428  **/
1429 static int adouble_path(TALLOC_CTX *ctx, const char *path_in, char **path_out)
1430 {
1431         char *parent;
1432         const char *base;
1433
1434         if (!parent_dirname(ctx, path_in, &parent, &base)) {
1435                 return -1;
1436         }
1437
1438         *path_out = talloc_asprintf(ctx, "%s/._%s", parent, base);
1439         if (*path_out == NULL) {
1440                 return -1;
1441         }
1442
1443         return 0;
1444 }
1445
1446 /**
1447  * Allocate and initialize an AfpInfo struct
1448  **/
1449 static AfpInfo *afpinfo_new(TALLOC_CTX *ctx)
1450 {
1451         AfpInfo *ai = talloc_zero(ctx, AfpInfo);
1452         if (ai == NULL) {
1453                 return NULL;
1454         }
1455         ai->afpi_Signature = AFP_Signature;
1456         ai->afpi_Version = AFP_Version;
1457         ai->afpi_BackupTime = AD_DATE_START;
1458         return ai;
1459 }
1460
1461 /**
1462  * Pack an AfpInfo struct into a buffer
1463  *
1464  * Buffer size must be at least AFP_INFO_SIZE
1465  * Returns size of packed buffer
1466  **/
1467 static ssize_t afpinfo_pack(const AfpInfo *ai, char *buf)
1468 {
1469         memset(buf, 0, AFP_INFO_SIZE);
1470
1471         RSIVAL(buf, 0, ai->afpi_Signature);
1472         RSIVAL(buf, 4, ai->afpi_Version);
1473         RSIVAL(buf, 12, ai->afpi_BackupTime);
1474         memcpy(buf + 16, ai->afpi_FinderInfo, sizeof(ai->afpi_FinderInfo));
1475
1476         return AFP_INFO_SIZE;
1477 }
1478
1479 /**
1480  * Unpack a buffer into a AfpInfo structure
1481  *
1482  * Buffer size must be at least AFP_INFO_SIZE
1483  * Returns allocated AfpInfo struct
1484  **/
1485 static AfpInfo *afpinfo_unpack(TALLOC_CTX *ctx, const void *data)
1486 {
1487         AfpInfo *ai = talloc_zero(ctx, AfpInfo);
1488         if (ai == NULL) {
1489                 return NULL;
1490         }
1491
1492         ai->afpi_Signature = RIVAL(data, 0);
1493         ai->afpi_Version = RIVAL(data, 4);
1494         ai->afpi_BackupTime = RIVAL(data, 12);
1495         memcpy(ai->afpi_FinderInfo, (const char *)data + 16,
1496                sizeof(ai->afpi_FinderInfo));
1497
1498         if (ai->afpi_Signature != AFP_Signature
1499             || ai->afpi_Version != AFP_Version) {
1500                 DEBUG(1, ("Bad AfpInfo signature or version\n"));
1501                 TALLOC_FREE(ai);
1502         }
1503
1504         return ai;
1505 }
1506
1507 /**
1508  * Fake an inode number from the md5 hash of the (xattr) name
1509  **/
1510 static SMB_INO_T fruit_inode(const SMB_STRUCT_STAT *sbuf, const char *sname)
1511 {
1512         MD5_CTX ctx;
1513         unsigned char hash[16];
1514         SMB_INO_T result;
1515         char *upper_sname;
1516
1517         upper_sname = talloc_strdup_upper(talloc_tos(), sname);
1518         SMB_ASSERT(upper_sname != NULL);
1519
1520         MD5Init(&ctx);
1521         MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_dev),
1522                   sizeof(sbuf->st_ex_dev));
1523         MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_ino),
1524                   sizeof(sbuf->st_ex_ino));
1525         MD5Update(&ctx, (unsigned char *)upper_sname,
1526                   talloc_get_size(upper_sname)-1);
1527         MD5Final(hash, &ctx);
1528
1529         TALLOC_FREE(upper_sname);
1530
1531         /* Hopefully all the variation is in the lower 4 (or 8) bytes! */
1532         memcpy(&result, hash, sizeof(result));
1533
1534         DEBUG(10, ("fruit_inode \"%s\": ino=0x%llu\n",
1535                    sname, (unsigned long long)result));
1536
1537         return result;
1538 }
1539
1540 /**
1541  * Ensure ad_fsp is still valid
1542  **/
1543 static bool fruit_fsp_recheck(struct adouble *ad, files_struct *fsp)
1544 {
1545         if (ad->ad_fsp == fsp) {
1546                 return true;
1547         }
1548         ad->ad_fsp = fsp;
1549
1550         return true;
1551 }
1552
1553 static bool add_fruit_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
1554                              struct stream_struct **streams,
1555                              const char *name, off_t size,
1556                              off_t alloc_size)
1557 {
1558         struct stream_struct *tmp;
1559
1560         tmp = talloc_realloc(mem_ctx, *streams, struct stream_struct,
1561                              (*num_streams)+1);
1562         if (tmp == NULL) {
1563                 return false;
1564         }
1565
1566         tmp[*num_streams].name = talloc_asprintf(tmp, "%s:$DATA", name);
1567         if (tmp[*num_streams].name == NULL) {
1568                 return false;
1569         }
1570
1571         tmp[*num_streams].size = size;
1572         tmp[*num_streams].alloc_size = alloc_size;
1573
1574         *streams = tmp;
1575         *num_streams += 1;
1576         return true;
1577 }
1578
1579 static bool filter_empty_rsrc_stream(unsigned int *num_streams,
1580                                      struct stream_struct **streams)
1581 {
1582         struct stream_struct *tmp = *streams;
1583         unsigned int i;
1584
1585         if (*num_streams == 0) {
1586                 return true;
1587         }
1588
1589         for (i = 0; i < *num_streams; i++) {
1590                 if (strequal_m(tmp[i].name, AFPRESOURCE_STREAM)) {
1591                         break;
1592                 }
1593         }
1594
1595         if (i == *num_streams) {
1596                 return true;
1597         }
1598
1599         if (tmp[i].size > 0) {
1600                 return true;
1601         }
1602
1603         TALLOC_FREE(tmp[i].name);
1604         if (*num_streams - 1 > i) {
1605                 memmove(&tmp[i], &tmp[i+1],
1606                         (*num_streams - i - 1) * sizeof(struct stream_struct));
1607         }
1608
1609         *num_streams -= 1;
1610         return true;
1611 }
1612
1613 static bool del_fruit_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
1614                              struct stream_struct **streams,
1615                              const char *name)
1616 {
1617         struct stream_struct *tmp = *streams;
1618         unsigned int i;
1619
1620         if (*num_streams == 0) {
1621                 return true;
1622         }
1623
1624         for (i = 0; i < *num_streams; i++) {
1625                 if (strequal_m(tmp[i].name, name)) {
1626                         break;
1627                 }
1628         }
1629
1630         if (i == *num_streams) {
1631                 return true;
1632         }
1633
1634         TALLOC_FREE(tmp[i].name);
1635         if (*num_streams - 1 > i) {
1636                 memmove(&tmp[i], &tmp[i+1],
1637                         (*num_streams - i - 1) * sizeof(struct stream_struct));
1638         }
1639
1640         *num_streams -= 1;
1641         return true;
1642 }
1643
1644 static bool ad_empty_finderinfo(const struct adouble *ad)
1645 {
1646         int cmp;
1647         char emptybuf[ADEDLEN_FINDERI] = {0};
1648         char *fi = NULL;
1649
1650         fi = ad_get_entry(ad, ADEID_FINDERI);
1651         if (fi == NULL) {
1652                 DBG_ERR("Missing FinderInfo in struct adouble [%p]\n", ad);
1653                 return false;
1654         }
1655
1656         cmp = memcmp(emptybuf, fi, ADEDLEN_FINDERI);
1657         return (cmp == 0);
1658 }
1659
1660 static bool ai_empty_finderinfo(const AfpInfo *ai)
1661 {
1662         int cmp;
1663         char emptybuf[ADEDLEN_FINDERI] = {0};
1664
1665         cmp = memcmp(emptybuf, &ai->afpi_FinderInfo[0], ADEDLEN_FINDERI);
1666         return (cmp == 0);
1667 }
1668
1669 /**
1670  * Update btime with btime from Netatalk
1671  **/
1672 static void update_btime(vfs_handle_struct *handle,
1673                          struct smb_filename *smb_fname)
1674 {
1675         uint32_t t;
1676         struct timespec creation_time = {0};
1677         struct adouble *ad;
1678         struct fruit_config_data *config = NULL;
1679
1680         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
1681                                 return);
1682
1683         switch (config->meta) {
1684         case FRUIT_META_STREAM:
1685                 return;
1686         case FRUIT_META_NETATALK:
1687                 /* Handled below */
1688                 break;
1689         default:
1690                 DBG_ERR("Unexpected meta config [%d]\n", config->meta);
1691                 return;
1692         }
1693
1694         ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
1695         if (ad == NULL) {
1696                 return;
1697         }
1698         if (ad_getdate(ad, AD_DATE_UNIX | AD_DATE_CREATE, &t) != 0) {
1699                 TALLOC_FREE(ad);
1700                 return;
1701         }
1702         TALLOC_FREE(ad);
1703
1704         creation_time.tv_sec = convert_uint32_t_to_time_t(t);
1705         update_stat_ex_create_time(&smb_fname->st, creation_time);
1706
1707         return;
1708 }
1709
1710 /**
1711  * Map an access mask to a Netatalk single byte byte range lock
1712  **/
1713 static off_t access_to_netatalk_brl(enum apple_fork fork_type,
1714                                     uint32_t access_mask)
1715 {
1716         off_t offset;
1717
1718         switch (access_mask) {
1719         case FILE_READ_DATA:
1720                 offset = AD_FILELOCK_OPEN_RD;
1721                 break;
1722
1723         case FILE_WRITE_DATA:
1724         case FILE_APPEND_DATA:
1725                 offset = AD_FILELOCK_OPEN_WR;
1726                 break;
1727
1728         default:
1729                 offset = AD_FILELOCK_OPEN_NONE;
1730                 break;
1731         }
1732
1733         if (fork_type == APPLE_FORK_RSRC) {
1734                 if (offset == AD_FILELOCK_OPEN_NONE) {
1735                         offset = AD_FILELOCK_RSRC_OPEN_NONE;
1736                 } else {
1737                         offset += 2;
1738                 }
1739         }
1740
1741         return offset;
1742 }
1743
1744 /**
1745  * Map a deny mode to a Netatalk brl
1746  **/
1747 static off_t denymode_to_netatalk_brl(enum apple_fork fork_type,
1748                                       uint32_t deny_mode)
1749 {
1750         off_t offset;
1751
1752         switch (deny_mode) {
1753         case DENY_READ:
1754                 offset = AD_FILELOCK_DENY_RD;
1755                 break;
1756
1757         case DENY_WRITE:
1758                 offset = AD_FILELOCK_DENY_WR;
1759                 break;
1760
1761         default:
1762                 smb_panic("denymode_to_netatalk_brl: bad deny mode\n");
1763         }
1764
1765         if (fork_type == APPLE_FORK_RSRC) {
1766                 offset += 2;
1767         }
1768
1769         return offset;
1770 }
1771
1772 /**
1773  * Call fcntl() with an exclusive F_GETLK request in order to
1774  * determine if there's an exisiting shared lock
1775  *
1776  * @return true if the requested lock was found or any error occurred
1777  *         false if the lock was not found
1778  **/
1779 static bool test_netatalk_lock(files_struct *fsp, off_t in_offset)
1780 {
1781         bool result;
1782         off_t offset = in_offset;
1783         off_t len = 1;
1784         int type = F_WRLCK;
1785         pid_t pid;
1786
1787         result = SMB_VFS_GETLOCK(fsp, &offset, &len, &type, &pid);
1788         if (result == false) {
1789                 return true;
1790         }
1791
1792         if (type != F_UNLCK) {
1793                 return true;
1794         }
1795
1796         return false;
1797 }
1798
1799 static NTSTATUS fruit_check_access(vfs_handle_struct *handle,
1800                                    files_struct *fsp,
1801                                    uint32_t access_mask,
1802                                    uint32_t deny_mode)
1803 {
1804         NTSTATUS status = NT_STATUS_OK;
1805         struct byte_range_lock *br_lck = NULL;
1806         bool open_for_reading, open_for_writing, deny_read, deny_write;
1807         off_t off;
1808
1809         /* FIXME: hardcoded data fork, add resource fork */
1810         enum apple_fork fork_type = APPLE_FORK_DATA;
1811
1812         DEBUG(10, ("fruit_check_access: %s, am: %s/%s, dm: %s/%s\n",
1813                   fsp_str_dbg(fsp),
1814                   access_mask & FILE_READ_DATA ? "READ" :"-",
1815                   access_mask & FILE_WRITE_DATA ? "WRITE" : "-",
1816                   deny_mode & DENY_READ ? "DENY_READ" : "-",
1817                   deny_mode & DENY_WRITE ? "DENY_WRITE" : "-"));
1818
1819         /*
1820          * Check read access and deny read mode
1821          */
1822         if ((access_mask & FILE_READ_DATA) || (deny_mode & DENY_READ)) {
1823                 /* Check access */
1824                 open_for_reading = test_netatalk_lock(
1825                         fsp, access_to_netatalk_brl(fork_type, FILE_READ_DATA));
1826
1827                 deny_read = test_netatalk_lock(
1828                         fsp, denymode_to_netatalk_brl(fork_type, DENY_READ));
1829
1830                 DEBUG(10, ("read: %s, deny_write: %s\n",
1831                           open_for_reading == true ? "yes" : "no",
1832                           deny_read == true ? "yes" : "no"));
1833
1834                 if (((access_mask & FILE_READ_DATA) && deny_read)
1835                     || ((deny_mode & DENY_READ) && open_for_reading)) {
1836                         return NT_STATUS_SHARING_VIOLATION;
1837                 }
1838
1839                 /* Set locks */
1840                 if (access_mask & FILE_READ_DATA) {
1841                         off = access_to_netatalk_brl(fork_type, FILE_READ_DATA);
1842                         br_lck = do_lock(
1843                                 handle->conn->sconn->msg_ctx, fsp,
1844                                 fsp->op->global->open_persistent_id, 1, off,
1845                                 READ_LOCK, POSIX_LOCK, false,
1846                                 &status, NULL);
1847
1848                         if (!NT_STATUS_IS_OK(status))  {
1849                                 return status;
1850                         }
1851                         TALLOC_FREE(br_lck);
1852                 }
1853
1854                 if (deny_mode & DENY_READ) {
1855                         off = denymode_to_netatalk_brl(fork_type, DENY_READ);
1856                         br_lck = do_lock(
1857                                 handle->conn->sconn->msg_ctx, fsp,
1858                                 fsp->op->global->open_persistent_id, 1, off,
1859                                 READ_LOCK, POSIX_LOCK, false,
1860                                 &status, NULL);
1861
1862                         if (!NT_STATUS_IS_OK(status)) {
1863                                 return status;
1864                         }
1865                         TALLOC_FREE(br_lck);
1866                 }
1867         }
1868
1869         /*
1870          * Check write access and deny write mode
1871          */
1872         if ((access_mask & FILE_WRITE_DATA) || (deny_mode & DENY_WRITE)) {
1873                 /* Check access */
1874                 open_for_writing = test_netatalk_lock(
1875                         fsp, access_to_netatalk_brl(fork_type, FILE_WRITE_DATA));
1876
1877                 deny_write = test_netatalk_lock(
1878                         fsp, denymode_to_netatalk_brl(fork_type, DENY_WRITE));
1879
1880                 DEBUG(10, ("write: %s, deny_write: %s\n",
1881                           open_for_writing == true ? "yes" : "no",
1882                           deny_write == true ? "yes" : "no"));
1883
1884                 if (((access_mask & FILE_WRITE_DATA) && deny_write)
1885                     || ((deny_mode & DENY_WRITE) && open_for_writing)) {
1886                         return NT_STATUS_SHARING_VIOLATION;
1887                 }
1888
1889                 /* Set locks */
1890                 if (access_mask & FILE_WRITE_DATA) {
1891                         off = access_to_netatalk_brl(fork_type, FILE_WRITE_DATA);
1892                         br_lck = do_lock(
1893                                 handle->conn->sconn->msg_ctx, fsp,
1894                                 fsp->op->global->open_persistent_id, 1, off,
1895                                 READ_LOCK, POSIX_LOCK, false,
1896                                 &status, NULL);
1897
1898                         if (!NT_STATUS_IS_OK(status)) {
1899                                 return status;
1900                         }
1901                         TALLOC_FREE(br_lck);
1902
1903                 }
1904                 if (deny_mode & DENY_WRITE) {
1905                         off = denymode_to_netatalk_brl(fork_type, DENY_WRITE);
1906                         br_lck = do_lock(
1907                                 handle->conn->sconn->msg_ctx, fsp,
1908                                 fsp->op->global->open_persistent_id, 1, off,
1909                                 READ_LOCK, POSIX_LOCK, false,
1910                                 &status, NULL);
1911
1912                         if (!NT_STATUS_IS_OK(status)) {
1913                                 return status;
1914                         }
1915                         TALLOC_FREE(br_lck);
1916                 }
1917         }
1918
1919         TALLOC_FREE(br_lck);
1920
1921         return status;
1922 }
1923
1924 static NTSTATUS check_aapl(vfs_handle_struct *handle,
1925                            struct smb_request *req,
1926                            const struct smb2_create_blobs *in_context_blobs,
1927                            struct smb2_create_blobs *out_context_blobs)
1928 {
1929         struct fruit_config_data *config;
1930         NTSTATUS status;
1931         struct smb2_create_blob *aapl = NULL;
1932         uint32_t cmd;
1933         bool ok;
1934         uint8_t p[16];
1935         DATA_BLOB blob = data_blob_talloc(req, NULL, 0);
1936         uint64_t req_bitmap, client_caps;
1937         uint64_t server_caps = SMB2_CRTCTX_AAPL_UNIX_BASED;
1938         smb_ucs2_t *model;
1939         size_t modellen;
1940
1941         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
1942                                 return NT_STATUS_UNSUCCESSFUL);
1943
1944         if (!config->use_aapl
1945             || in_context_blobs == NULL
1946             || out_context_blobs == NULL) {
1947                 return NT_STATUS_OK;
1948         }
1949
1950         aapl = smb2_create_blob_find(in_context_blobs,
1951                                      SMB2_CREATE_TAG_AAPL);
1952         if (aapl == NULL) {
1953                 return NT_STATUS_OK;
1954         }
1955
1956         if (aapl->data.length != 24) {
1957                 DEBUG(1, ("unexpected AAPL ctxt length: %ju\n",
1958                           (uintmax_t)aapl->data.length));
1959                 return NT_STATUS_INVALID_PARAMETER;
1960         }
1961
1962         cmd = IVAL(aapl->data.data, 0);
1963         if (cmd != SMB2_CRTCTX_AAPL_SERVER_QUERY) {
1964                 DEBUG(1, ("unsupported AAPL cmd: %d\n", cmd));
1965                 return NT_STATUS_INVALID_PARAMETER;
1966         }
1967
1968         req_bitmap = BVAL(aapl->data.data, 8);
1969         client_caps = BVAL(aapl->data.data, 16);
1970
1971         SIVAL(p, 0, SMB2_CRTCTX_AAPL_SERVER_QUERY);
1972         SIVAL(p, 4, 0);
1973         SBVAL(p, 8, req_bitmap);
1974         ok = data_blob_append(req, &blob, p, 16);
1975         if (!ok) {
1976                 return NT_STATUS_UNSUCCESSFUL;
1977         }
1978
1979         if (req_bitmap & SMB2_CRTCTX_AAPL_SERVER_CAPS) {
1980                 if ((client_caps & SMB2_CRTCTX_AAPL_SUPPORTS_READ_DIR_ATTR) &&
1981                     (handle->conn->tcon->compat->fs_capabilities & FILE_NAMED_STREAMS)) {
1982                         server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_READ_DIR_ATTR;
1983                         config->readdir_attr_enabled = true;
1984                 }
1985
1986                 if (config->use_copyfile) {
1987                         server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_OSX_COPYFILE;
1988                         config->copyfile_enabled = true;
1989                 }
1990
1991                 /*
1992                  * The client doesn't set the flag, so we can't check
1993                  * for it and just set it unconditionally
1994                  */
1995                 if (config->unix_info_enabled) {
1996                         server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_NFS_ACE;
1997                 }
1998
1999                 SBVAL(p, 0, server_caps);
2000                 ok = data_blob_append(req, &blob, p, 8);
2001                 if (!ok) {
2002                         return NT_STATUS_UNSUCCESSFUL;
2003                 }
2004         }
2005
2006         if (req_bitmap & SMB2_CRTCTX_AAPL_VOLUME_CAPS) {
2007                 SBVAL(p, 0,
2008                       lp_case_sensitive(SNUM(handle->conn->tcon->compat)) ?
2009                       SMB2_CRTCTX_AAPL_CASE_SENSITIVE : 0);
2010                 ok = data_blob_append(req, &blob, p, 8);
2011                 if (!ok) {
2012                         return NT_STATUS_UNSUCCESSFUL;
2013                 }
2014         }
2015
2016         if (req_bitmap & SMB2_CRTCTX_AAPL_MODEL_INFO) {
2017                 ok = convert_string_talloc(req,
2018                                            CH_UNIX, CH_UTF16LE,
2019                                            "Samba", strlen("Samba"),
2020                                            &model, &modellen);
2021                 if (!ok) {
2022                         return NT_STATUS_UNSUCCESSFUL;
2023                 }
2024
2025                 SIVAL(p, 0, 0);
2026                 SIVAL(p + 4, 0, modellen);
2027                 ok = data_blob_append(req, &blob, p, 8);
2028                 if (!ok) {
2029                         talloc_free(model);
2030                         return NT_STATUS_UNSUCCESSFUL;
2031                 }
2032
2033                 ok = data_blob_append(req, &blob, model, modellen);
2034                 talloc_free(model);
2035                 if (!ok) {
2036                         return NT_STATUS_UNSUCCESSFUL;
2037                 }
2038         }
2039
2040         status = smb2_create_blob_add(out_context_blobs,
2041                                       out_context_blobs,
2042                                       SMB2_CREATE_TAG_AAPL,
2043                                       blob);
2044         if (NT_STATUS_IS_OK(status)) {
2045                 config->nego_aapl = true;
2046         }
2047
2048         return status;
2049 }
2050
2051 static bool readdir_attr_meta_finderi_stream(
2052         struct vfs_handle_struct *handle,
2053         const struct smb_filename *smb_fname,
2054         AfpInfo *ai)
2055 {
2056         struct smb_filename *stream_name = NULL;
2057         files_struct *fsp = NULL;
2058         ssize_t nread;
2059         NTSTATUS status;
2060         int ret;
2061         bool ok;
2062         uint8_t buf[AFP_INFO_SIZE];
2063
2064         stream_name = synthetic_smb_fname(talloc_tos(),
2065                                           smb_fname->base_name,
2066                                           AFPINFO_STREAM_NAME,
2067                                           NULL, smb_fname->flags);
2068         if (stream_name == NULL) {
2069                 return false;
2070         }
2071
2072         ret = SMB_VFS_STAT(handle->conn, stream_name);
2073         if (ret != 0) {
2074                 return false;
2075         }
2076
2077         status = SMB_VFS_CREATE_FILE(
2078                 handle->conn,                           /* conn */
2079                 NULL,                                   /* req */
2080                 0,                                      /* root_dir_fid */
2081                 stream_name,                            /* fname */
2082                 FILE_READ_DATA,                         /* access_mask */
2083                 (FILE_SHARE_READ | FILE_SHARE_WRITE |   /* share_access */
2084                         FILE_SHARE_DELETE),
2085                 FILE_OPEN,                              /* create_disposition*/
2086                 0,                                      /* create_options */
2087                 0,                                      /* file_attributes */
2088                 INTERNAL_OPEN_ONLY,                     /* oplock_request */
2089                 NULL,                                   /* lease */
2090                 0,                                      /* allocation_size */
2091                 0,                                      /* private_flags */
2092                 NULL,                                   /* sd */
2093                 NULL,                                   /* ea_list */
2094                 &fsp,                                   /* result */
2095                 NULL,                                   /* pinfo */
2096                 NULL, NULL);                            /* create context */
2097
2098         TALLOC_FREE(stream_name);
2099
2100         if (!NT_STATUS_IS_OK(status)) {
2101                 return false;
2102         }
2103
2104         nread = SMB_VFS_PREAD(fsp, &buf[0], AFP_INFO_SIZE, 0);
2105         if (nread != AFP_INFO_SIZE) {
2106                 DBG_ERR("short read [%s] [%zd/%d]\n",
2107                         smb_fname_str_dbg(stream_name), nread, AFP_INFO_SIZE);
2108                 ok = false;
2109                 goto fail;
2110         }
2111
2112         memcpy(&ai->afpi_FinderInfo[0], &buf[AFP_OFF_FinderInfo],
2113                AFP_FinderSize);
2114
2115         ok = true;
2116
2117 fail:
2118         if (fsp != NULL) {
2119                 close_file(NULL, fsp, NORMAL_CLOSE);
2120         }
2121
2122         return ok;
2123 }
2124
2125 static bool readdir_attr_meta_finderi_netatalk(
2126         struct vfs_handle_struct *handle,
2127         const struct smb_filename *smb_fname,
2128         AfpInfo *ai)
2129 {
2130         struct adouble *ad = NULL;
2131         char *p = NULL;
2132
2133         ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
2134         if (ad == NULL) {
2135                 return false;
2136         }
2137
2138         p = ad_get_entry(ad, ADEID_FINDERI);
2139         if (p == NULL) {
2140                 DBG_ERR("No ADEID_FINDERI for [%s]\n", smb_fname->base_name);
2141                 TALLOC_FREE(ad);
2142                 return false;
2143         }
2144
2145         memcpy(&ai->afpi_FinderInfo[0], p, AFP_FinderSize);
2146         TALLOC_FREE(ad);
2147         return true;
2148 }
2149
2150 static bool readdir_attr_meta_finderi(struct vfs_handle_struct *handle,
2151                                       const struct smb_filename *smb_fname,
2152                                       struct readdir_attr_data *attr_data)
2153 {
2154         struct fruit_config_data *config = NULL;
2155         uint32_t date_added;
2156         AfpInfo ai = {0};
2157         bool ok;
2158
2159         SMB_VFS_HANDLE_GET_DATA(handle, config,
2160                                 struct fruit_config_data,
2161                                 return false);
2162
2163         switch (config->meta) {
2164         case FRUIT_META_NETATALK:
2165                 ok = readdir_attr_meta_finderi_netatalk(
2166                         handle, smb_fname, &ai);
2167                 break;
2168
2169         case FRUIT_META_STREAM:
2170                 ok = readdir_attr_meta_finderi_stream(
2171                         handle, smb_fname, &ai);
2172                 break;
2173
2174         default:
2175                 DBG_ERR("Unexpected meta config [%d]\n", config->meta);
2176                 return false;
2177         }
2178
2179         if (!ok) {
2180                 /* Don't bother with errors, it's likely ENOENT */
2181                 return true;
2182         }
2183
2184         if (S_ISREG(smb_fname->st.st_ex_mode)) {
2185                 /* finder_type */
2186                 memcpy(&attr_data->attr_data.aapl.finder_info[0],
2187                        &ai.afpi_FinderInfo[0], 4);
2188
2189                 /* finder_creator */
2190                 memcpy(&attr_data->attr_data.aapl.finder_info[0] + 4,
2191                        &ai.afpi_FinderInfo[4], 4);
2192         }
2193
2194         /* finder_flags */
2195         memcpy(&attr_data->attr_data.aapl.finder_info[0] + 8,
2196                &ai.afpi_FinderInfo[8], 2);
2197
2198         /* finder_ext_flags */
2199         memcpy(&attr_data->attr_data.aapl.finder_info[0] + 10,
2200                &ai.afpi_FinderInfo[24], 2);
2201
2202         /* creation date */
2203         date_added = convert_time_t_to_uint32_t(
2204                 smb_fname->st.st_ex_btime.tv_sec - AD_DATE_DELTA);
2205
2206         RSIVAL(&attr_data->attr_data.aapl.finder_info[0], 12, date_added);
2207
2208         return true;
2209 }
2210
2211 static uint64_t readdir_attr_rfork_size_adouble(
2212         struct vfs_handle_struct *handle,
2213         const struct smb_filename *smb_fname)
2214 {
2215         struct adouble *ad = NULL;
2216         uint64_t rfork_size;
2217
2218         ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
2219                     ADOUBLE_RSRC);
2220         if (ad == NULL) {
2221                 return 0;
2222         }
2223
2224         rfork_size = ad_getentrylen(ad, ADEID_RFORK);
2225         TALLOC_FREE(ad);
2226
2227         return rfork_size;
2228 }
2229
2230 static uint64_t readdir_attr_rfork_size_stream(
2231         struct vfs_handle_struct *handle,
2232         const struct smb_filename *smb_fname)
2233 {
2234         struct smb_filename *stream_name = NULL;
2235         int ret;
2236         uint64_t rfork_size;
2237
2238         stream_name = synthetic_smb_fname(talloc_tos(),
2239                                           smb_fname->base_name,
2240                                           AFPRESOURCE_STREAM_NAME,
2241                                           NULL, 0);
2242         if (stream_name == NULL) {
2243                 return 0;
2244         }
2245
2246         ret = SMB_VFS_STAT(handle->conn, stream_name);
2247         if (ret != 0) {
2248                 TALLOC_FREE(stream_name);
2249                 return 0;
2250         }
2251
2252         rfork_size = stream_name->st.st_ex_size;
2253         TALLOC_FREE(stream_name);
2254
2255         return rfork_size;
2256 }
2257
2258 static uint64_t readdir_attr_rfork_size(struct vfs_handle_struct *handle,
2259                                         const struct smb_filename *smb_fname)
2260 {
2261         struct fruit_config_data *config = NULL;
2262         uint64_t rfork_size;
2263
2264         SMB_VFS_HANDLE_GET_DATA(handle, config,
2265                                 struct fruit_config_data,
2266                                 return 0);
2267
2268         switch (config->rsrc) {
2269         case FRUIT_RSRC_ADFILE:
2270         case FRUIT_RSRC_XATTR:
2271                 rfork_size = readdir_attr_rfork_size_adouble(handle,
2272                                                              smb_fname);
2273                 break;
2274
2275         case FRUIT_META_STREAM:
2276                 rfork_size = readdir_attr_rfork_size_stream(handle,
2277                                                             smb_fname);
2278                 break;
2279
2280         default:
2281                 DBG_ERR("Unexpected rsrc config [%d]\n", config->rsrc);
2282                 rfork_size = 0;
2283                 break;
2284         }
2285
2286         return rfork_size;
2287 }
2288
2289 static NTSTATUS readdir_attr_macmeta(struct vfs_handle_struct *handle,
2290                                      const struct smb_filename *smb_fname,
2291                                      struct readdir_attr_data *attr_data)
2292 {
2293         NTSTATUS status = NT_STATUS_OK;
2294         struct fruit_config_data *config = NULL;
2295         bool ok;
2296
2297         SMB_VFS_HANDLE_GET_DATA(handle, config,
2298                                 struct fruit_config_data,
2299                                 return NT_STATUS_UNSUCCESSFUL);
2300
2301
2302         /* Ensure we return a default value in the creation_date field */
2303         RSIVAL(&attr_data->attr_data.aapl.finder_info, 12, AD_DATE_START);
2304
2305         /*
2306          * Resource fork length
2307          */
2308
2309         if (config->readdir_attr_rsize) {
2310                 uint64_t rfork_size;
2311
2312                 rfork_size = readdir_attr_rfork_size(handle, smb_fname);
2313                 attr_data->attr_data.aapl.rfork_size = rfork_size;
2314         }
2315
2316         /*
2317          * FinderInfo
2318          */
2319
2320         if (config->readdir_attr_finder_info) {
2321                 ok = readdir_attr_meta_finderi(handle, smb_fname, attr_data);
2322                 if (!ok) {
2323                         status = NT_STATUS_INTERNAL_ERROR;
2324                 }
2325         }
2326
2327         return status;
2328 }
2329
2330 /* Search MS NFS style ACE with UNIX mode */
2331 static NTSTATUS check_ms_nfs(vfs_handle_struct *handle,
2332                              files_struct *fsp,
2333                              const struct security_descriptor *psd,
2334                              mode_t *pmode,
2335                              bool *pdo_chmod)
2336 {
2337         uint32_t i;
2338         struct fruit_config_data *config = NULL;
2339
2340         *pdo_chmod = false;
2341
2342         SMB_VFS_HANDLE_GET_DATA(handle, config,
2343                                 struct fruit_config_data,
2344                                 return NT_STATUS_UNSUCCESSFUL);
2345
2346         if (psd->dacl == NULL || !config->unix_info_enabled) {
2347                 return NT_STATUS_OK;
2348         }
2349
2350         for (i = 0; i < psd->dacl->num_aces; i++) {
2351                 if (dom_sid_compare_domain(
2352                             &global_sid_Unix_NFS_Mode,
2353                             &psd->dacl->aces[i].trustee) == 0) {
2354                         *pmode = (mode_t)psd->dacl->aces[i].trustee.sub_auths[2];
2355                         *pmode &= (S_IRWXU | S_IRWXG | S_IRWXO);
2356                         *pdo_chmod = true;
2357
2358                         DEBUG(10, ("MS NFS chmod request %s, %04o\n",
2359                                    fsp_str_dbg(fsp), (unsigned)(*pmode)));
2360                         break;
2361                 }
2362         }
2363
2364         return NT_STATUS_OK;
2365 }
2366
2367 /****************************************************************************
2368  * VFS ops
2369  ****************************************************************************/
2370
2371 static int fruit_connect(vfs_handle_struct *handle,
2372                          const char *service,
2373                          const char *user)
2374 {
2375         int rc;
2376         char *list = NULL, *newlist = NULL;
2377         struct fruit_config_data *config;
2378
2379         DEBUG(10, ("fruit_connect\n"));
2380
2381         rc = SMB_VFS_NEXT_CONNECT(handle, service, user);
2382         if (rc < 0) {
2383                 return rc;
2384         }
2385
2386         rc = init_fruit_config(handle);
2387         if (rc != 0) {
2388                 return rc;
2389         }
2390
2391         SMB_VFS_HANDLE_GET_DATA(handle, config,
2392                                 struct fruit_config_data, return -1);
2393
2394         if (config->veto_appledouble) {
2395                 list = lp_veto_files(talloc_tos(), SNUM(handle->conn));
2396
2397                 if (list) {
2398                         if (strstr(list, "/" ADOUBLE_NAME_PREFIX "*/") == NULL) {
2399                                 newlist = talloc_asprintf(
2400                                         list,
2401                                         "%s/" ADOUBLE_NAME_PREFIX "*/",
2402                                         list);
2403                                 lp_do_parameter(SNUM(handle->conn),
2404                                                 "veto files",
2405                                                 newlist);
2406                         }
2407                 } else {
2408                         lp_do_parameter(SNUM(handle->conn),
2409                                         "veto files",
2410                                         "/" ADOUBLE_NAME_PREFIX "*/");
2411                 }
2412
2413                 TALLOC_FREE(list);
2414         }
2415
2416         if (config->encoding == FRUIT_ENC_NATIVE) {
2417                 lp_do_parameter(
2418                         SNUM(handle->conn),
2419                         "catia:mappings",
2420                         "0x01:0xf001,0x02:0xf002,0x03:0xf003,0x04:0xf004,"
2421                         "0x05:0xf005,0x06:0xf006,0x07:0xf007,0x08:0xf008,"
2422                         "0x09:0xf009,0x0a:0xf00a,0x0b:0xf00b,0x0c:0xf00c,"
2423                         "0x0d:0xf00d,0x0e:0xf00e,0x0f:0xf00f,0x10:0xf010,"
2424                         "0x11:0xf011,0x12:0xf012,0x13:0xf013,0x14:0xf014,"
2425                         "0x15:0xf015,0x16:0xf016,0x17:0xf017,0x18:0xf018,"
2426                         "0x19:0xf019,0x1a:0xf01a,0x1b:0xf01b,0x1c:0xf01c,"
2427                         "0x1d:0xf01d,0x1e:0xf01e,0x1f:0xf01f,"
2428                         "0x22:0xf020,0x2a:0xf021,0x3a:0xf022,0x3c:0xf023,"
2429                         "0x3e:0xf024,0x3f:0xf025,0x5c:0xf026,0x7c:0xf027,"
2430                         "0x0d:0xf00d");
2431         }
2432
2433         return rc;
2434 }
2435
2436 static int fruit_open_meta_stream(vfs_handle_struct *handle,
2437                                   struct smb_filename *smb_fname,
2438                                   files_struct *fsp,
2439                                   int flags,
2440                                   mode_t mode)
2441 {
2442         AfpInfo *ai = NULL;
2443         char afpinfo_buf[AFP_INFO_SIZE];
2444         ssize_t len, written;
2445         int hostfd = -1;
2446         int rc = -1;
2447
2448         hostfd = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2449         if (hostfd == -1) {
2450                 return -1;
2451         }
2452
2453         if (!(flags & (O_CREAT | O_TRUNC))) {
2454                 return hostfd;
2455         }
2456
2457         ai = afpinfo_new(talloc_tos());
2458         if (ai == NULL) {
2459                 rc = -1;
2460                 goto fail;
2461         }
2462
2463         len = afpinfo_pack(ai, afpinfo_buf);
2464         if (len != AFP_INFO_SIZE) {
2465                 rc = -1;
2466                 goto fail;
2467         }
2468
2469         /* Set fd, needed in SMB_VFS_NEXT_PWRITE() */
2470         fsp->fh->fd = hostfd;
2471
2472         written = SMB_VFS_NEXT_PWRITE(handle, fsp, afpinfo_buf,
2473                                       AFP_INFO_SIZE, 0);
2474         fsp->fh->fd = -1;
2475         if (written != AFP_INFO_SIZE) {
2476                 DBG_ERR("bad write [%zd/%d]\n", written, AFP_INFO_SIZE);
2477                 rc = -1;
2478                 goto fail;
2479         }
2480
2481         rc = 0;
2482
2483 fail:
2484         DBG_DEBUG("rc=%d, fd=%d\n", rc, hostfd);
2485
2486         if (rc != 0) {
2487                 int saved_errno = errno;
2488                 if (hostfd >= 0) {
2489                         fsp->fh->fd = hostfd;
2490                         SMB_VFS_NEXT_CLOSE(handle, fsp);
2491                 }
2492                 hostfd = -1;
2493                 errno = saved_errno;
2494         }
2495         return hostfd;
2496 }
2497
2498 static int fruit_open_meta_netatalk(vfs_handle_struct *handle,
2499                                     struct smb_filename *smb_fname,
2500                                     files_struct *fsp,
2501                                     int flags,
2502                                     mode_t mode)
2503 {
2504         int rc = 0;
2505         struct smb_filename *smb_fname_base = NULL;
2506         int baseflags;
2507         int hostfd = -1;
2508         struct adouble *ad = NULL;
2509
2510         /* Create an smb_filename with stream_name == NULL. */
2511         smb_fname_base = synthetic_smb_fname(talloc_tos(),
2512                                         smb_fname->base_name,
2513                                         NULL,
2514                                         NULL,
2515                                         smb_fname->flags);
2516
2517         if (smb_fname_base == NULL) {
2518                 errno = ENOMEM;
2519                 rc = -1;
2520                 goto exit;
2521         }
2522
2523         /*
2524          * We use baseflags to turn off nasty side-effects when opening the
2525          * underlying file.
2526          */
2527         baseflags = flags;
2528         baseflags &= ~O_TRUNC;
2529         baseflags &= ~O_EXCL;
2530         baseflags &= ~O_CREAT;
2531
2532         hostfd = SMB_VFS_NEXT_OPEN(handle, smb_fname_base, fsp,
2533                                    baseflags, mode);
2534
2535         /*
2536          * It is legit to open a stream on a directory, but the base
2537          * fd has to be read-only.
2538          */
2539         if ((hostfd == -1) && (errno == EISDIR)) {
2540                 baseflags &= ~O_ACCMODE;
2541                 baseflags |= O_RDONLY;
2542                 hostfd = SMB_VFS_NEXT_OPEN(handle, smb_fname_base, fsp,
2543                                            baseflags, mode);
2544         }
2545
2546         TALLOC_FREE(smb_fname_base);
2547
2548         if (hostfd == -1) {
2549                 rc = -1;
2550                 goto exit;
2551         }
2552
2553         if (flags & (O_CREAT | O_TRUNC)) {
2554                 /*
2555                  * The attribute does not exist or needs to be truncated,
2556                  * create an AppleDouble EA
2557                  */
2558                 ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2559                              handle, ADOUBLE_META, fsp);
2560                 if (ad == NULL) {
2561                         rc = -1;
2562                         goto exit;
2563                 }
2564
2565                 rc = ad_write(ad, smb_fname->base_name);
2566                 if (rc != 0) {
2567                         rc = -1;
2568                         goto exit;
2569                 }
2570         } else {
2571                 ad = ad_alloc(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2572                               handle, ADOUBLE_META, fsp);
2573                 if (ad == NULL) {
2574                         rc = -1;
2575                         goto exit;
2576                 }
2577                 if (ad_read(ad, smb_fname->base_name) == -1) {
2578                         rc = -1;
2579                         goto exit;
2580                 }
2581         }
2582
2583 exit:
2584         DEBUG(10, ("fruit_open meta rc=%d, fd=%d\n", rc, hostfd));
2585         if (rc != 0) {
2586                 int saved_errno = errno;
2587                 if (hostfd >= 0) {
2588                         /*
2589                          * BUGBUGBUG -- we would need to call
2590                          * fd_close_posix here, but we don't have a
2591                          * full fsp yet
2592                          */
2593                         fsp->fh->fd = hostfd;
2594                         SMB_VFS_NEXT_CLOSE(handle, fsp);
2595                 }
2596                 hostfd = -1;
2597                 errno = saved_errno;
2598         }
2599         return hostfd;
2600 }
2601
2602 static int fruit_open_meta(vfs_handle_struct *handle,
2603                            struct smb_filename *smb_fname,
2604                            files_struct *fsp, int flags, mode_t mode)
2605 {
2606         int rc;
2607         struct fruit_config_data *config = NULL;
2608
2609         DBG_DEBUG("path [%s]\n", smb_fname_str_dbg(smb_fname));
2610
2611         SMB_VFS_HANDLE_GET_DATA(handle, config,
2612                                 struct fruit_config_data, return -1);
2613
2614         switch (config->meta) {
2615         case FRUIT_META_STREAM:
2616                 rc = fruit_open_meta_stream(handle, smb_fname,
2617                                             fsp, flags, mode);
2618                 break;
2619
2620         case FRUIT_META_NETATALK:
2621                 rc = fruit_open_meta_netatalk(handle, smb_fname,
2622                                               fsp, flags, mode);
2623                 break;
2624
2625         default:
2626                 DBG_ERR("Unexpected meta config [%d]\n", config->meta);
2627                 return -1;
2628         }
2629
2630         DBG_DEBUG("path [%s] rc [%d]\n", smb_fname_str_dbg(smb_fname), rc);
2631         return rc;
2632 }
2633
2634 static int fruit_open_rsrc_adouble(vfs_handle_struct *handle,
2635                                    struct smb_filename *smb_fname,
2636                                    files_struct *fsp,
2637                                    int flags,
2638                                    mode_t mode)
2639 {
2640         int rc = 0;
2641         struct adouble *ad = NULL;
2642         struct smb_filename *smb_fname_base = NULL;
2643         char *adpath = NULL;
2644         int hostfd = -1;
2645
2646         if (!(flags & O_CREAT) && !VALID_STAT(smb_fname->st)) {
2647                 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
2648                 if (rc != 0) {
2649                         rc = -1;
2650                         goto exit;
2651                 }
2652         }
2653
2654         if (VALID_STAT(smb_fname->st) && S_ISDIR(smb_fname->st.st_ex_mode)) {
2655                 /* sorry, but directories don't habe a resource fork */
2656                 rc = -1;
2657                 goto exit;
2658         }
2659
2660         rc = adouble_path(talloc_tos(), smb_fname->base_name, &adpath);
2661         if (rc != 0) {
2662                 goto exit;
2663         }
2664
2665         /* Create an smb_filename with stream_name == NULL. */
2666         smb_fname_base = synthetic_smb_fname(talloc_tos(),
2667                                         adpath,
2668                                         NULL,
2669                                         NULL,
2670                                         smb_fname->flags);
2671         if (smb_fname_base == NULL) {
2672                 errno = ENOMEM;
2673                 rc = -1;
2674                 goto exit;
2675         }
2676
2677         /* Sanitize flags */
2678         if (flags & O_WRONLY) {
2679                 /* We always need read access for the metadata header too */
2680                 flags &= ~O_WRONLY;
2681                 flags |= O_RDWR;
2682         }
2683
2684         hostfd = SMB_VFS_NEXT_OPEN(handle, smb_fname_base, fsp,
2685                                    flags, mode);
2686         if (hostfd == -1) {
2687                 rc = -1;
2688                 goto exit;
2689         }
2690
2691         /* REVIEW: we need this in ad_write() */
2692         fsp->fh->fd = hostfd;
2693
2694         if (flags & (O_CREAT | O_TRUNC)) {
2695                 ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2696                              handle, ADOUBLE_RSRC, fsp);
2697                 if (ad == NULL) {
2698                         rc = -1;
2699                         goto exit;
2700                 }
2701                 rc = ad_write(ad, smb_fname->base_name);
2702                 if (rc != 0) {
2703                         rc = -1;
2704                         goto exit;
2705                 }
2706         } else {
2707                 ad = ad_alloc(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2708                               handle, ADOUBLE_RSRC, fsp);
2709                 if (ad == NULL) {
2710                         rc = -1;
2711                         goto exit;
2712                 }
2713                 if (ad_read(ad, smb_fname->base_name) == -1) {
2714                         rc = -1;
2715                         goto exit;
2716                 }
2717         }
2718
2719 exit:
2720
2721         TALLOC_FREE(adpath);
2722         TALLOC_FREE(smb_fname_base);
2723
2724         DEBUG(10, ("fruit_open resource fork: rc=%d, fd=%d\n", rc, hostfd));
2725         if (rc != 0) {
2726                 int saved_errno = errno;
2727                 if (hostfd >= 0) {
2728                         /*
2729                          * BUGBUGBUG -- we would need to call
2730                          * fd_close_posix here, but we don't have a
2731                          * full fsp yet
2732                          */
2733                         fsp->fh->fd = hostfd;
2734                         SMB_VFS_CLOSE(fsp);
2735                 }
2736                 hostfd = -1;
2737                 errno = saved_errno;
2738         }
2739         return hostfd;
2740 }
2741
2742 static int fruit_open_rsrc_xattr(vfs_handle_struct *handle,
2743                                  struct smb_filename *smb_fname,
2744                                  files_struct *fsp,
2745                                  int flags,
2746                                  mode_t mode)
2747 {
2748 #ifdef HAVE_ATTROPEN
2749         int fd = -1;
2750         struct adouble *ad = NULL;
2751
2752         ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2753                      handle, ADOUBLE_RSRC, fsp);
2754         if (ad == NULL) {
2755                 return -1;
2756         }
2757
2758         fd = attropen(smb_fname->base_name,
2759                           AFPRESOURCE_EA_NETATALK, flags, mode);
2760         if (fd == -1) {
2761                 return -1;
2762         }
2763
2764         return fd;
2765
2766 #else
2767         errno = ENOSYS;
2768         return -1;
2769 #endif
2770 }
2771
2772 static int fruit_open_rsrc(vfs_handle_struct *handle,
2773                            struct smb_filename *smb_fname,
2774                            files_struct *fsp, int flags, mode_t mode)
2775 {
2776         int fd;
2777         struct fruit_config_data *config = NULL;
2778
2779         DBG_DEBUG("Path [%s]\n", smb_fname_str_dbg(smb_fname));
2780
2781         SMB_VFS_HANDLE_GET_DATA(handle, config,
2782                                 struct fruit_config_data, return -1);
2783
2784         switch (config->rsrc) {
2785         case FRUIT_RSRC_STREAM:
2786                 fd = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2787                 break;
2788
2789         case FRUIT_RSRC_ADFILE:
2790                 fd = fruit_open_rsrc_adouble(handle, smb_fname,
2791                                              fsp, flags, mode);
2792                 break;
2793
2794         case FRUIT_RSRC_XATTR:
2795                 fd = fruit_open_rsrc_xattr(handle, smb_fname,
2796                                            fsp, flags, mode);
2797                 break;
2798
2799         default:
2800                 DBG_ERR("Unexpected rsrc config [%d]\n", config->rsrc);
2801                 return -1;
2802         }
2803
2804         DBG_DEBUG("Path [%s] fd [%d]\n", smb_fname_str_dbg(smb_fname), fd);
2805         return fd;
2806 }
2807
2808 static int fruit_open(vfs_handle_struct *handle,
2809                       struct smb_filename *smb_fname,
2810                       files_struct *fsp, int flags, mode_t mode)
2811 {
2812         DEBUG(10, ("fruit_open called for %s\n",
2813                    smb_fname_str_dbg(smb_fname)));
2814
2815         if (!is_ntfs_stream_smb_fname(smb_fname)) {
2816                 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2817         }
2818
2819         if (is_afpinfo_stream(smb_fname)) {
2820                 return fruit_open_meta(handle, smb_fname, fsp, flags, mode);
2821         } else if (is_afpresource_stream(smb_fname)) {
2822                 return fruit_open_rsrc(handle, smb_fname, fsp, flags, mode);
2823         }
2824
2825         return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2826 }
2827
2828 static int fruit_rename(struct vfs_handle_struct *handle,
2829                         const struct smb_filename *smb_fname_src,
2830                         const struct smb_filename *smb_fname_dst)
2831 {
2832         int rc = -1;
2833         char *src_adouble_path = NULL;
2834         char *dst_adouble_path = NULL;
2835         struct fruit_config_data *config = NULL;
2836         struct smb_filename *src_adp_smb_fname = NULL;
2837         struct smb_filename *dst_adp_smb_fname = NULL;
2838
2839         SMB_VFS_HANDLE_GET_DATA(handle, config,
2840                                 struct fruit_config_data, return -1);
2841
2842         if (!VALID_STAT(smb_fname_src->st)) {
2843                 DBG_ERR("Need valid stat for [%s]\n",
2844                         smb_fname_str_dbg(smb_fname_src));
2845                 return -1;
2846         }
2847
2848         rc = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
2849         if (rc != 0) {
2850                 return -1;
2851         }
2852
2853         if ((config->rsrc != FRUIT_RSRC_ADFILE) ||
2854             (!S_ISREG(smb_fname_src->st.st_ex_mode)))
2855         {
2856                 return 0;
2857         }
2858
2859         rc = adouble_path(talloc_tos(), smb_fname_src->base_name,
2860                           &src_adouble_path);
2861         if (rc != 0) {
2862                 goto done;
2863         }
2864         src_adp_smb_fname = synthetic_smb_fname(talloc_tos(),
2865                                                 src_adouble_path,
2866                                                 NULL, NULL,
2867                                                 smb_fname_src->flags);
2868         TALLOC_FREE(src_adouble_path);
2869         if (src_adp_smb_fname == NULL) {
2870                 rc = -1;
2871                 goto done;
2872         }
2873
2874         rc = adouble_path(talloc_tos(), smb_fname_dst->base_name,
2875                           &dst_adouble_path);
2876         if (rc != 0) {
2877                 goto done;
2878         }
2879         dst_adp_smb_fname = synthetic_smb_fname(talloc_tos(),
2880                                                 dst_adouble_path,
2881                                                 NULL, NULL,
2882                                                 smb_fname_dst->flags);
2883         TALLOC_FREE(dst_adouble_path);
2884         if (dst_adp_smb_fname == NULL) {
2885                 rc = -1;
2886                 goto done;
2887         }
2888
2889         DBG_DEBUG("%s -> %s\n",
2890                   smb_fname_str_dbg(src_adp_smb_fname),
2891                   smb_fname_str_dbg(dst_adp_smb_fname));
2892
2893         rc = SMB_VFS_NEXT_RENAME(handle, src_adp_smb_fname, dst_adp_smb_fname);
2894         if (errno == ENOENT) {
2895                 rc = 0;
2896         }
2897
2898 done:
2899         TALLOC_FREE(src_adp_smb_fname);
2900         TALLOC_FREE(dst_adp_smb_fname);
2901         return rc;
2902 }
2903
2904 static int fruit_unlink_meta_stream(vfs_handle_struct *handle,
2905                                     const struct smb_filename *smb_fname)
2906 {
2907         return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
2908 }
2909
2910 static int fruit_unlink_meta_netatalk(vfs_handle_struct *handle,
2911                                       const struct smb_filename *smb_fname)
2912 {
2913         return SMB_VFS_REMOVEXATTR(handle->conn,
2914                                    smb_fname->base_name,
2915                                    AFPINFO_EA_NETATALK);
2916 }
2917
2918 static int fruit_unlink_meta(vfs_handle_struct *handle,
2919                              const struct smb_filename *smb_fname)
2920 {
2921         struct fruit_config_data *config = NULL;
2922         int rc;
2923
2924         SMB_VFS_HANDLE_GET_DATA(handle, config,
2925                                 struct fruit_config_data, return -1);
2926
2927         switch (config->meta) {
2928         case FRUIT_META_STREAM:
2929                 rc = fruit_unlink_meta_stream(handle, smb_fname);
2930                 break;
2931
2932         case FRUIT_META_NETATALK:
2933                 rc = fruit_unlink_meta_netatalk(handle, smb_fname);
2934                 break;
2935
2936         default:
2937                 DBG_ERR("Unsupported meta config [%d]\n", config->meta);
2938                 return -1;
2939         }
2940
2941         return rc;
2942 }
2943
2944 static int fruit_unlink_rsrc_stream(vfs_handle_struct *handle,
2945                                     const struct smb_filename *smb_fname,
2946                                     bool force_unlink)
2947 {
2948         int ret;
2949
2950         if (!force_unlink) {
2951                 struct smb_filename *smb_fname_cp = NULL;
2952                 off_t size;
2953
2954                 smb_fname_cp = cp_smb_filename(talloc_tos(), smb_fname);
2955                 if (smb_fname_cp == NULL) {
2956                         return -1;
2957                 }
2958
2959                 /*
2960                  * 0 byte resource fork streams are not listed by
2961                  * vfs_streaminfo, as a result stream cleanup/deletion of file
2962                  * deletion doesn't remove the resourcefork stream.
2963                  */
2964
2965                 ret = SMB_VFS_NEXT_STAT(handle, smb_fname_cp);
2966                 if (ret != 0) {
2967                         TALLOC_FREE(smb_fname_cp);
2968                         DBG_ERR("stat [%s] failed [%s]\n",
2969                                 smb_fname_str_dbg(smb_fname_cp), strerror(errno));
2970                         return -1;
2971                 }
2972
2973                 size = smb_fname_cp->st.st_ex_size;
2974                 TALLOC_FREE(smb_fname_cp);
2975
2976                 if (size > 0) {
2977                         /* OS X ignores resource fork stream delete requests */
2978                         return 0;
2979                 }
2980         }
2981
2982         ret = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
2983         if ((ret != 0) && (errno == ENOENT) && force_unlink) {
2984                 ret = 0;
2985         }
2986
2987         return ret;
2988 }
2989
2990 static int fruit_unlink_rsrc_adouble(vfs_handle_struct *handle,
2991                                      const struct smb_filename *smb_fname,
2992                                      bool force_unlink)
2993 {
2994         int rc;
2995         char *adp = NULL;
2996         struct adouble *ad = NULL;
2997         struct smb_filename *adp_smb_fname = NULL;
2998
2999         if (!force_unlink) {
3000                 ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
3001                             ADOUBLE_RSRC);
3002                 if (ad == NULL) {
3003                         errno = ENOENT;
3004                         return -1;
3005                 }
3006
3007
3008                 /*
3009                  * 0 byte resource fork streams are not listed by
3010                  * vfs_streaminfo, as a result stream cleanup/deletion of file
3011                  * deletion doesn't remove the resourcefork stream.
3012                  */
3013
3014                 if (ad_getentrylen(ad, ADEID_RFORK) > 0) {
3015                         /* OS X ignores resource fork stream delete requests */
3016                         TALLOC_FREE(ad);
3017                         return 0;
3018                 }
3019
3020                 TALLOC_FREE(ad);
3021         }
3022
3023         rc = adouble_path(talloc_tos(), smb_fname->base_name, &adp);
3024         if (rc != 0) {
3025                 return -1;
3026         }
3027
3028         adp_smb_fname = synthetic_smb_fname(talloc_tos(), adp,
3029                                             NULL, NULL,
3030                                             smb_fname->flags);
3031         TALLOC_FREE(adp);
3032         if (adp_smb_fname == NULL) {
3033                 return -1;
3034         }
3035
3036         rc = SMB_VFS_NEXT_UNLINK(handle, adp_smb_fname);
3037         TALLOC_FREE(adp_smb_fname);
3038         if ((rc != 0) && (errno == ENOENT) && force_unlink) {
3039                 rc = 0;
3040         }
3041
3042         return rc;
3043 }
3044
3045 static int fruit_unlink_rsrc_xattr(vfs_handle_struct *handle,
3046                                    const struct smb_filename *smb_fname,
3047                                    bool force_unlink)
3048 {
3049         /*
3050          * OS X ignores resource fork stream delete requests, so nothing to do
3051          * here. Removing the file will remove the xattr anyway, so we don't
3052          * have to take care of removing 0 byte resource forks that could be
3053          * left behind.
3054          */
3055         return 0;
3056 }
3057
3058 static int fruit_unlink_rsrc(vfs_handle_struct *handle,
3059                              const struct smb_filename *smb_fname,
3060                              bool force_unlink)
3061 {
3062         struct fruit_config_data *config = NULL;
3063         int rc;
3064
3065         SMB_VFS_HANDLE_GET_DATA(handle, config,
3066                                 struct fruit_config_data, return -1);
3067
3068         switch (config->rsrc) {
3069         case FRUIT_RSRC_STREAM:
3070                 rc = fruit_unlink_rsrc_stream(handle, smb_fname, force_unlink);
3071                 break;
3072
3073         case FRUIT_RSRC_ADFILE:
3074                 rc = fruit_unlink_rsrc_adouble(handle, smb_fname, force_unlink);
3075                 break;
3076
3077         case FRUIT_RSRC_XATTR:
3078                 rc = fruit_unlink_rsrc_xattr(handle, smb_fname, force_unlink);
3079                 break;
3080
3081         default:
3082                 DBG_ERR("Unsupported rsrc config [%d]\n", config->rsrc);
3083                 return -1;
3084         }
3085
3086         return rc;
3087 }
3088
3089 static int fruit_unlink(vfs_handle_struct *handle,
3090                         const struct smb_filename *smb_fname)
3091 {
3092         int rc;
3093         struct fruit_config_data *config = NULL;
3094         struct smb_filename *rsrc_smb_fname = NULL;
3095
3096         SMB_VFS_HANDLE_GET_DATA(handle, config,
3097                                 struct fruit_config_data, return -1);
3098
3099         if (is_afpinfo_stream(smb_fname)) {
3100                 return fruit_unlink_meta(handle, smb_fname);
3101         } else if (is_afpresource_stream(smb_fname)) {
3102                 return fruit_unlink_rsrc(handle, smb_fname, false);
3103         } if (is_ntfs_stream_smb_fname(smb_fname)) {
3104                 return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
3105         }
3106
3107         /*
3108          * A request to delete the base file. Because 0 byte resource
3109          * fork streams are not listed by fruit_streaminfo,
3110          * delete_all_streams() can't remove 0 byte resource fork
3111          * streams, so we have to cleanup this here.
3112          */
3113         rsrc_smb_fname = synthetic_smb_fname(talloc_tos(),
3114                                              smb_fname->base_name,
3115                                              AFPRESOURCE_STREAM_NAME,
3116                                              NULL,
3117                                              smb_fname->flags);
3118         if (rsrc_smb_fname == NULL) {
3119                 return -1;
3120         }
3121
3122         rc = fruit_unlink_rsrc(handle, rsrc_smb_fname, true);
3123         if ((rc != 0) && (errno != ENOENT)) {
3124                 DBG_ERR("Forced unlink of [%s] failed [%s]\n",
3125                         smb_fname_str_dbg(rsrc_smb_fname), strerror(errno));
3126                 TALLOC_FREE(rsrc_smb_fname);
3127                 return -1;
3128         }
3129         TALLOC_FREE(rsrc_smb_fname);
3130
3131         return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
3132 }
3133
3134 static int fruit_chmod(vfs_handle_struct *handle,
3135                        const struct smb_filename *smb_fname,
3136                        mode_t mode)
3137 {
3138         int rc = -1;
3139         char *adp = NULL;
3140         struct fruit_config_data *config = NULL;
3141         const char *path = smb_fname->base_name;
3142         struct smb_filename *smb_fname_adp = NULL;
3143
3144         rc = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
3145         if (rc != 0) {
3146                 return rc;
3147         }
3148
3149         SMB_VFS_HANDLE_GET_DATA(handle, config,
3150                                 struct fruit_config_data, return -1);
3151
3152         if (config->rsrc != FRUIT_RSRC_ADFILE) {
3153                 return 0;
3154         }
3155
3156         if (!VALID_STAT(smb_fname->st)) {
3157                 return 0;
3158         }
3159
3160         if (!S_ISREG(smb_fname->st.st_ex_mode)) {
3161                 return 0;
3162         }
3163
3164         rc = adouble_path(talloc_tos(), path, &adp);
3165         if (rc != 0) {
3166                 return -1;
3167         }
3168
3169         DEBUG(10, ("fruit_chmod: %s\n", adp));
3170
3171         smb_fname_adp = synthetic_smb_fname(talloc_tos(),
3172                                         adp,
3173                                         NULL,
3174                                         NULL,
3175                                         smb_fname->flags);
3176         if (smb_fname_adp == NULL) {
3177                 TALLOC_FREE(adp);
3178                 errno = ENOMEM;
3179                 return -1;
3180         }
3181
3182         rc = SMB_VFS_NEXT_CHMOD(handle, smb_fname_adp, mode);
3183         if (errno == ENOENT) {
3184                 rc = 0;
3185         }
3186
3187         TALLOC_FREE(smb_fname_adp);
3188         TALLOC_FREE(adp);
3189         return rc;
3190 }
3191
3192 static int fruit_chown(vfs_handle_struct *handle,
3193                        const struct smb_filename *smb_fname,
3194                        uid_t uid,
3195                        gid_t gid)
3196 {
3197         int rc = -1;
3198         char *adp = NULL;
3199         struct fruit_config_data *config = NULL;
3200         struct smb_filename *adp_smb_fname = NULL;
3201
3202         rc = SMB_VFS_NEXT_CHOWN(handle, smb_fname, uid, gid);
3203         if (rc != 0) {
3204                 return rc;
3205         }
3206
3207         SMB_VFS_HANDLE_GET_DATA(handle, config,
3208                                 struct fruit_config_data, return -1);
3209
3210         if (config->rsrc != FRUIT_RSRC_ADFILE) {
3211                 return 0;
3212         }
3213
3214         if (!VALID_STAT(smb_fname->st)) {
3215                 return 0;
3216         }
3217
3218         if (!S_ISREG(smb_fname->st.st_ex_mode)) {
3219                 return 0;
3220         }
3221
3222         rc = adouble_path(talloc_tos(), smb_fname->base_name, &adp);
3223         if (rc != 0) {
3224                 goto done;
3225         }
3226
3227         DEBUG(10, ("fruit_chown: %s\n", adp));
3228
3229         adp_smb_fname = synthetic_smb_fname(talloc_tos(),
3230                                         adp,
3231                                         NULL,
3232                                         NULL,
3233                                         smb_fname->flags);
3234         if (adp_smb_fname == NULL) {
3235                 errno = ENOMEM;
3236                 rc = -1;
3237                 goto done;
3238         }
3239
3240         rc = SMB_VFS_NEXT_CHOWN(handle, adp_smb_fname, uid, gid);
3241         if (errno == ENOENT) {
3242                 rc = 0;
3243         }
3244
3245  done:
3246         TALLOC_FREE(adp);
3247         TALLOC_FREE(adp_smb_fname);
3248         return rc;
3249 }
3250
3251 static int fruit_rmdir(struct vfs_handle_struct *handle,
3252                         const struct smb_filename *smb_fname)
3253 {
3254         DIR *dh = NULL;
3255         struct dirent *de;
3256         struct fruit_config_data *config;
3257
3258         SMB_VFS_HANDLE_GET_DATA(handle, config,
3259                                 struct fruit_config_data, return -1);
3260
3261         if (config->rsrc != FRUIT_RSRC_ADFILE) {
3262                 goto exit_rmdir;
3263         }
3264
3265         /*
3266          * Due to there is no way to change bDeleteVetoFiles variable
3267          * from this module, need to clean up ourselves
3268          */
3269
3270         dh = SMB_VFS_OPENDIR(handle->conn, smb_fname, NULL, 0);
3271         if (dh == NULL) {
3272                 goto exit_rmdir;
3273         }
3274
3275         while ((de = SMB_VFS_READDIR(handle->conn, dh, NULL)) != NULL) {
3276                 int match;
3277                 struct adouble *ad = NULL;
3278                 char *p = NULL;
3279                 struct smb_filename *ad_smb_fname = NULL;
3280                 int ret;
3281
3282                 match = strncmp(de->d_name,
3283                                 ADOUBLE_NAME_PREFIX,
3284                                 strlen(ADOUBLE_NAME_PREFIX));
3285                 if (match != 0) {
3286                         continue;
3287                 }
3288
3289                 p = talloc_asprintf(talloc_tos(), "%s/%s",
3290                                     smb_fname->base_name, de->d_name);
3291                 if (p == NULL) {
3292                         DBG_ERR("talloc_asprintf failed\n");
3293                         return -1;
3294                 }
3295
3296                 /*
3297                  * Check whether it's a valid AppleDouble file, if
3298                  * yes, delete it, ignore it otherwise.
3299                  */
3300                 ad = ad_get(talloc_tos(), handle, p, ADOUBLE_RSRC);
3301                 if (ad == NULL) {
3302                         TALLOC_FREE(p);
3303                         continue;
3304                 }
3305                 TALLOC_FREE(ad);
3306
3307                 ad_smb_fname = synthetic_smb_fname(talloc_tos(), p,
3308                                                     NULL, NULL,
3309                                                     smb_fname->flags);
3310                 TALLOC_FREE(p);
3311                 if (ad_smb_fname == NULL) {
3312                         DBG_ERR("synthetic_smb_fname failed\n");
3313                         return -1;
3314                 }
3315
3316                 ret = SMB_VFS_NEXT_UNLINK(handle, ad_smb_fname);
3317                 TALLOC_FREE(ad_smb_fname);
3318                 if (ret != 0) {
3319                         DBG_ERR("Deleting [%s] failed\n",
3320                                 smb_fname_str_dbg(ad_smb_fname));
3321                 }
3322         }
3323
3324 exit_rmdir:
3325         if (dh) {
3326                 closedir(dh);
3327         }
3328         return SMB_VFS_NEXT_RMDIR(handle, smb_fname);
3329 }
3330
3331 static ssize_t fruit_pread(vfs_handle_struct *handle,
3332                            files_struct *fsp, void *data,
3333                            size_t n, off_t offset)
3334 {
3335         int rc = 0;
3336         struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
3337                 handle, fsp);
3338         struct fruit_config_data *config = NULL;
3339         AfpInfo *ai = NULL;
3340         ssize_t len = -1;
3341         size_t to_return = n;
3342
3343         DEBUG(10, ("fruit_pread: offset=%d, size=%d\n", (int)offset, (int)n));
3344
3345         if (!fsp->base_fsp) {
3346                 return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
3347         }
3348
3349         SMB_VFS_HANDLE_GET_DATA(handle, config,
3350                                 struct fruit_config_data, return -1);
3351
3352         if (is_afpinfo_stream(fsp->fsp_name)) {
3353                 /*
3354                  * OS X has a off-by-1 error in the offset calculation, so we're
3355                  * bug compatible here. It won't hurt, as any relevant real
3356                  * world read requests from the AFP_AfpInfo stream will be
3357                  * offset=0 n=60. offset is ignored anyway, see below.
3358                  */
3359                 if ((offset < 0) || (offset >= AFP_INFO_SIZE + 1)) {
3360                         len = 0;
3361                         rc = 0;
3362                         goto exit;
3363                 }
3364
3365                 to_return = MIN(n, AFP_INFO_SIZE);
3366
3367                 /* Yes, macOS always reads from offset 0 */
3368                 offset = 0;
3369         }
3370
3371         if (ad == NULL) {
3372                 len = SMB_VFS_NEXT_PREAD(handle, fsp, data, to_return, offset);
3373                 if (len == -1) {
3374                         rc = -1;
3375                         goto exit;
3376                 }
3377                 goto exit;
3378         }
3379
3380         if (!fruit_fsp_recheck(ad, fsp)) {
3381                 rc = -1;
3382                 goto exit;
3383         }
3384
3385         if (ad->ad_type == ADOUBLE_META) {
3386                 char afpinfo_buf[AFP_INFO_SIZE];
3387                 char *p = NULL;
3388
3389                 ai = afpinfo_new(talloc_tos());
3390                 if (ai == NULL) {
3391                         rc = -1;
3392                         goto exit;
3393                 }
3394
3395                 len = ad_read(ad, fsp->base_fsp->fsp_name->base_name);
3396                 if (len == -1) {
3397                         rc = -1;
3398                         goto exit;
3399                 }
3400
3401                 p = ad_get_entry(ad, ADEID_FINDERI);
3402                 if (p == NULL) {
3403                         DBG_ERR("No ADEID_FINDERI for [%s]\n",
3404                                 fsp->fsp_name->base_name);
3405                         rc = -1;
3406                         goto exit;
3407                 }
3408
3409                 memcpy(&ai->afpi_FinderInfo[0], p, ADEDLEN_FINDERI);
3410
3411                 len = afpinfo_pack(ai, afpinfo_buf);
3412                 if (len != AFP_INFO_SIZE) {
3413                         rc = -1;
3414                         goto exit;
3415                 }
3416
3417                 /*
3418                  * OS X ignores offset when reading from AFP_AfpInfo stream!
3419                  */
3420                 memcpy(data, afpinfo_buf, to_return);
3421                 len = to_return;
3422         } else {
3423                 len = SMB_VFS_NEXT_PREAD(
3424                         handle, fsp, data, n,
3425                         offset + ad_getentryoff(ad, ADEID_RFORK));
3426                 if (len == -1) {
3427                         rc = -1;
3428                         goto exit;
3429                 }
3430         }
3431 exit:
3432         TALLOC_FREE(ai);
3433         if (rc != 0) {
3434                 len = -1;
3435         }
3436         DEBUG(10, ("fruit_pread: rc=%d, len=%zd\n", rc, len));
3437         return len;
3438 }
3439
3440 static ssize_t fruit_pwrite(vfs_handle_struct *handle,
3441                             files_struct *fsp, const void *data,
3442                             size_t n, off_t offset)
3443 {
3444         int rc = 0;
3445         struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
3446                 handle, fsp);
3447         struct fruit_config_data *config = NULL;
3448         AfpInfo *ai = NULL;
3449         ssize_t len;
3450
3451         DEBUG(10, ("fruit_pwrite: offset=%d, size=%d\n", (int)offset, (int)n));
3452
3453         if (!fsp->base_fsp) {
3454                 return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
3455         }
3456
3457         SMB_VFS_HANDLE_GET_DATA(handle, config,
3458                                 struct fruit_config_data, return -1);
3459
3460         if (is_afpinfo_stream(fsp->fsp_name)) {
3461                 /*
3462                  * Writing an all 0 blob to the metadata stream
3463                  * results in the stream being removed on a macOS
3464                  * server. This ensures we behave the same and it
3465                  * verified by the "delete AFP_AfpInfo by writing all
3466                  * 0" test.
3467                  */
3468                 if (n != AFP_INFO_SIZE || offset != 0) {
3469                         DEBUG(1, ("unexpected offset=%jd or size=%jd\n",
3470                                   (intmax_t)offset, (intmax_t)n));
3471                         rc = -1;
3472                         goto exit;
3473                 }
3474                 ai = afpinfo_unpack(talloc_tos(), data);
3475                 if (ai == NULL) {
3476                         rc = -1;
3477                         goto exit;
3478                 }
3479
3480                 if (ai_empty_finderinfo(ai)) {
3481                         switch (config->meta) {
3482                         case FRUIT_META_STREAM:
3483                                 rc = SMB_VFS_UNLINK(handle->conn, fsp->fsp_name);
3484                                 break;
3485
3486                         case FRUIT_META_NETATALK:
3487                                 rc = SMB_VFS_REMOVEXATTR(
3488                                         handle->conn,
3489                                         fsp->fsp_name->base_name,
3490                                         AFPINFO_EA_NETATALK);
3491                                 break;
3492
3493                         default:
3494                                 DBG_ERR("Unexpected meta config [%d]\n",
3495                                         config->meta);
3496                                 rc = -1;
3497                                 goto exit;
3498                         }
3499
3500                         if (rc != 0 && errno != ENOENT && errno != ENOATTR) {
3501                                 DBG_WARNING("Can't delete metadata for %s: %s\n",
3502                                             fsp->fsp_name->base_name, strerror(errno));
3503                                 goto exit;
3504                         }
3505
3506                         rc = 0;
3507                         goto exit;
3508                 }
3509         }
3510
3511         if (ad == NULL) {
3512                 len = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
3513                 if (len != n) {
3514                         rc = -1;
3515                         goto exit;
3516                 }
3517                 goto exit;
3518         }
3519
3520         if (!fruit_fsp_recheck(ad, fsp)) {
3521                 rc = -1;
3522                 goto exit;
3523         }
3524
3525         if (ad->ad_type == ADOUBLE_META) {
3526                 char *p = NULL;
3527
3528                 p = ad_get_entry(ad, ADEID_FINDERI);
3529                 if (p == NULL) {
3530                         DBG_ERR("No ADEID_FINDERI for [%s]\n",
3531                                 fsp->fsp_name->base_name);
3532                         rc = -1;
3533                         goto exit;
3534                 }
3535
3536                 memcpy(p, &ai->afpi_FinderInfo[0], ADEDLEN_FINDERI);
3537                 rc = ad_write(ad, fsp->base_fsp->fsp_name->base_name);
3538         } else {
3539                 len = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n,
3540                                    offset + ad_getentryoff(ad, ADEID_RFORK));
3541                 if (len != n) {
3542                         rc = -1;
3543                         goto exit;
3544                 }
3545
3546                 if (config->rsrc == FRUIT_RSRC_ADFILE) {
3547                         rc = ad_read(ad, fsp->base_fsp->fsp_name->base_name);
3548                         if (rc == -1) {
3549                                 goto exit;
3550                         }
3551                         rc = 0;
3552
3553                         if ((len + offset) > ad_getentrylen(ad, ADEID_RFORK)) {
3554                                 ad_setentrylen(ad, ADEID_RFORK, len + offset);
3555                                 rc = ad_write(ad, fsp->base_fsp->fsp_name->base_name);
3556                         }
3557                 }
3558         }
3559
3560 exit:
3561         TALLOC_FREE(ai);
3562         if (rc != 0) {
3563                 return -1;
3564         }
3565         return n;
3566 }
3567
3568 /**
3569  * Helper to stat/lstat the base file of an smb_fname.
3570  */
3571 static int fruit_stat_base(vfs_handle_struct *handle,
3572                            struct smb_filename *smb_fname,
3573                            bool follow_links)
3574 {
3575         char *tmp_stream_name;
3576         int rc;
3577
3578         tmp_stream_name = smb_fname->stream_name;
3579         smb_fname->stream_name = NULL;
3580         if (follow_links) {
3581                 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
3582         } else {
3583                 rc = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3584         }
3585         smb_fname->stream_name = tmp_stream_name;
3586         return rc;
3587 }
3588
3589 static int fruit_stat_meta_stream(vfs_handle_struct *handle,
3590                                   struct smb_filename *smb_fname,
3591                                   bool follow_links)
3592 {
3593         int ret;
3594
3595         if (follow_links) {
3596                 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
3597         } else {
3598                 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3599         }
3600
3601         return ret;
3602 }
3603
3604 static int fruit_stat_meta_netatalk(vfs_handle_struct *handle,
3605                                     struct smb_filename *smb_fname,
3606                                     bool follow_links)
3607 {
3608         struct adouble *ad = NULL;
3609
3610         ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
3611         if (ad == NULL) {
3612                 DBG_INFO("fruit_stat_meta %s: %s\n",
3613                          smb_fname_str_dbg(smb_fname), strerror(errno));
3614                 errno = ENOENT;
3615                 return -1;
3616         }
3617         TALLOC_FREE(ad);
3618
3619         /* Populate the stat struct with info from the base file. */
3620         if (fruit_stat_base(handle, smb_fname, follow_links) == -1) {
3621                 return -1;
3622         }
3623         smb_fname->st.st_ex_size = AFP_INFO_SIZE;
3624         smb_fname->st.st_ex_ino = fruit_inode(&smb_fname->st,
3625                                               smb_fname->stream_name);
3626         return 0;
3627 }
3628
3629 static int fruit_stat_meta(vfs_handle_struct *handle,
3630                            struct smb_filename *smb_fname,
3631                            bool follow_links)
3632 {
3633         struct fruit_config_data *config = NULL;
3634         int ret;
3635
3636         SMB_VFS_HANDLE_GET_DATA(handle, config,
3637                                 struct fruit_config_data, return -1);
3638
3639         switch (config->meta) {
3640         case FRUIT_META_STREAM:
3641                 ret = fruit_stat_meta_stream(handle, smb_fname, follow_links);
3642                 break;
3643
3644         case FRUIT_META_NETATALK:
3645                 ret = fruit_stat_meta_netatalk(handle, smb_fname, follow_links);
3646                 break;
3647
3648         default:
3649                 DBG_ERR("Unexpected meta config [%d]\n", config->meta);
3650                 return -1;
3651         }
3652
3653         return ret;
3654 }
3655
3656 static int fruit_stat_rsrc_netatalk(vfs_handle_struct *handle,
3657                                     struct smb_filename *smb_fname,
3658                                     bool follow_links)
3659 {
3660         struct adouble *ad = NULL;
3661         int ret;
3662
3663         ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_RSRC);
3664         if (ad == NULL) {
3665                 errno = ENOENT;
3666                 return -1;
3667         }
3668
3669         /* Populate the stat struct with info from the base file. */
3670         ret = fruit_stat_base(handle, smb_fname, follow_links);
3671         if (ret != 0) {
3672                 TALLOC_FREE(ad);
3673                 return -1;
3674         }
3675
3676         smb_fname->st.st_ex_size = ad_getentrylen(ad, ADEID_RFORK);
3677         smb_fname->st.st_ex_ino = fruit_inode(&smb_fname->st,
3678                                               smb_fname->stream_name);
3679         TALLOC_FREE(ad);
3680         return 0;
3681 }
3682
3683 static int fruit_stat_rsrc_stream(vfs_handle_struct *handle,
3684                                   struct smb_filename *smb_fname,
3685                                   bool follow_links)
3686 {
3687         int ret;
3688
3689         if (follow_links) {
3690                 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
3691         } else {
3692                 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3693         }
3694
3695         return ret;
3696 }
3697
3698 static int fruit_stat_rsrc_xattr(vfs_handle_struct *handle,
3699                                  struct smb_filename *smb_fname,
3700                                  bool follow_links)
3701 {
3702 #ifdef HAVE_ATTROPEN
3703         int ret;
3704         int fd = -1;
3705
3706         /* Populate the stat struct with info from the base file. */
3707         ret = fruit_stat_base(handle, smb_fname, follow_links);
3708         if (ret != 0) {
3709                 return -1;
3710         }
3711
3712         fd = attropen(smb_fname->base_name,
3713                       AFPRESOURCE_EA_NETATALK,
3714                       O_RDONLY);
3715         if (fd == -1) {
3716                 return 0;
3717         }
3718
3719         ret = sys_fstat(fd, &smb_fname->st, false);
3720         if (ret != 0) {
3721                 close(fd);
3722                 DBG_ERR("fstat [%s:%s] failed\n", smb_fname->base_name,
3723                         AFPRESOURCE_EA_NETATALK);
3724                 return -1;
3725         }
3726         close(fd);
3727         fd = -1;
3728
3729         smb_fname->st.st_ex_ino = fruit_inode(&smb_fname->st,
3730                                               smb_fname->stream_name);
3731
3732         return ret;
3733
3734 #else
3735         errno = ENOSYS;
3736         return -1;
3737 #endif
3738 }
3739
3740 static int fruit_stat_rsrc(vfs_handle_struct *handle,
3741                            struct smb_filename *smb_fname,
3742                            bool follow_links)
3743 {
3744         struct fruit_config_data *config = NULL;
3745         int ret;
3746
3747         DBG_DEBUG("Path [%s]\n", smb_fname_str_dbg(smb_fname));
3748
3749         SMB_VFS_HANDLE_GET_DATA(handle, config,
3750                                 struct fruit_config_data, return -1);
3751
3752         switch (config->rsrc) {
3753         case FRUIT_RSRC_STREAM:
3754                 ret = fruit_stat_rsrc_stream(handle, smb_fname, follow_links);
3755                 break;
3756
3757         case FRUIT_RSRC_XATTR:
3758                 ret = fruit_stat_rsrc_xattr(handle, smb_fname, follow_links);
3759                 break;
3760
3761         case FRUIT_RSRC_ADFILE:
3762                 ret = fruit_stat_rsrc_netatalk(handle, smb_fname, follow_links);
3763                 break;
3764
3765         default:
3766                 DBG_ERR("Unexpected rsrc config [%d]\n", config->rsrc);
3767                 return -1;
3768         }
3769
3770         return ret;
3771 }
3772
3773 static int fruit_stat(vfs_handle_struct *handle,
3774                       struct smb_filename *smb_fname)
3775 {
3776         int rc = -1;
3777
3778         DEBUG(10, ("fruit_stat called for %s\n",
3779                    smb_fname_str_dbg(smb_fname)));
3780
3781         if (!is_ntfs_stream_smb_fname(smb_fname)
3782             || is_ntfs_default_stream_smb_fname(smb_fname)) {
3783                 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
3784                 if (rc == 0) {
3785                         update_btime(handle, smb_fname);
3786                 }
3787                 return rc;
3788         }
3789
3790         /*
3791          * Note if lp_posix_paths() is true, we can never
3792          * get here as is_ntfs_stream_smb_fname() is
3793          * always false. So we never need worry about
3794          * not following links here.
3795          */
3796
3797         if (is_afpinfo_stream(smb_fname)) {
3798                 rc = fruit_stat_meta(handle, smb_fname, true);
3799         } else if (is_afpresource_stream(smb_fname)) {
3800                 rc = fruit_stat_rsrc(handle, smb_fname, true);
3801         } else {
3802                 return SMB_VFS_NEXT_STAT(handle, smb_fname);
3803         }
3804
3805         if (rc == 0) {
3806                 update_btime(handle, smb_fname);
3807                 smb_fname->st.st_ex_mode &= ~S_IFMT;
3808                 smb_fname->st.st_ex_mode |= S_IFREG;
3809                 smb_fname->st.st_ex_blocks =
3810                         smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
3811         }
3812         return rc;
3813 }
3814
3815 static int fruit_lstat(vfs_handle_struct *handle,
3816                        struct smb_filename *smb_fname)
3817 {
3818         int rc = -1;
3819
3820         DEBUG(10, ("fruit_lstat called for %s\n",
3821                    smb_fname_str_dbg(smb_fname)));
3822
3823         if (!is_ntfs_stream_smb_fname(smb_fname)
3824             || is_ntfs_default_stream_smb_fname(smb_fname)) {
3825                 rc = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3826                 if (rc == 0) {
3827                         update_btime(handle, smb_fname);
3828                 }
3829                 return rc;
3830         }
3831
3832         if (is_afpinfo_stream(smb_fname)) {
3833                 rc = fruit_stat_meta(handle, smb_fname, false);
3834         } else if (is_afpresource_stream(smb_fname)) {
3835                 rc = fruit_stat_rsrc(handle, smb_fname, false);
3836         } else {
3837                 return SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3838         }
3839
3840         if (rc == 0) {
3841                 update_btime(handle, smb_fname);
3842                 smb_fname->st.st_ex_mode &= ~S_IFMT;
3843                 smb_fname->st.st_ex_mode |= S_IFREG;
3844                 smb_fname->st.st_ex_blocks =
3845                         smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
3846         }
3847         return rc;
3848 }
3849
3850 static int fruit_fstat_meta(vfs_handle_struct *handle,
3851                             files_struct *fsp,
3852                             SMB_STRUCT_STAT *sbuf)
3853 {
3854         DEBUG(10, ("fruit_fstat_meta called for %s\n",
3855                    smb_fname_str_dbg(fsp->base_fsp->fsp_name)));
3856
3857         /* Populate the stat struct with info from the base file. */
3858         if (fruit_stat_base(handle, fsp->base_fsp->fsp_name, false) == -1) {
3859                 return -1;
3860         }
3861         *sbuf = fsp->base_fsp->fsp_name->st;
3862         sbuf->st_ex_size = AFP_INFO_SIZE;
3863         sbuf->st_ex_ino = fruit_inode(sbuf, fsp->fsp_name->stream_name);
3864
3865         return 0;
3866 }
3867
3868 static int fruit_fstat_rsrc(vfs_handle_struct *handle, files_struct *fsp,
3869                             SMB_STRUCT_STAT *sbuf)
3870 {
3871         struct fruit_config_data *config;
3872         struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
3873                 handle, fsp);
3874
3875         DEBUG(10, ("fruit_fstat_rsrc called for %s\n",
3876                    smb_fname_str_dbg(fsp->base_fsp->fsp_name)));
3877
3878         SMB_VFS_HANDLE_GET_DATA(handle, config,
3879                                 struct fruit_config_data, return -1);
3880
3881         if (config->rsrc == FRUIT_RSRC_STREAM) {
3882                 return SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
3883         }
3884
3885         /* Populate the stat struct with info from the base file. */
3886         if (fruit_stat_base(handle, fsp->base_fsp->fsp_name, false) == -1) {
3887                 return -1;
3888         }
3889         *sbuf = fsp->base_fsp->fsp_name->st;
3890         sbuf->st_ex_size = ad_getentrylen(ad, ADEID_RFORK);
3891         sbuf->st_ex_ino = fruit_inode(sbuf, fsp->fsp_name->stream_name);
3892
3893         DEBUG(10, ("fruit_fstat_rsrc %s, size: %zd\n",
3894                    smb_fname_str_dbg(fsp->fsp_name),
3895                    (ssize_t)sbuf->st_ex_size));
3896
3897         return 0;
3898 }
3899
3900 static int fruit_fstat(vfs_handle_struct *handle, files_struct *fsp,
3901                        SMB_STRUCT_STAT *sbuf)
3902 {
3903         int rc;
3904         struct adouble *ad = (struct adouble *)
3905                 VFS_FETCH_FSP_EXTENSION(handle, fsp);
3906
3907         DEBUG(10, ("fruit_fstat called for %s\n",
3908                    smb_fname_str_dbg(fsp->fsp_name)));
3909
3910         if (ad == NULL || fsp->base_fsp == NULL) {
3911                 rc = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
3912                 goto exit;
3913         }
3914
3915         if (!fruit_fsp_recheck(ad, fsp)) {
3916                 rc = -1;
3917                 goto exit;
3918         }
3919
3920         switch (ad->ad_type) {
3921         case ADOUBLE_META:
3922                 rc = fruit_fstat_meta(handle, fsp, sbuf);
3923                 break;
3924         case ADOUBLE_RSRC:
3925                 rc = fruit_fstat_rsrc(handle, fsp, sbuf);
3926                 break;
3927         default:
3928                 DEBUG(10, ("fruit_fstat %s: bad type\n",
3929                            smb_fname_str_dbg(fsp->fsp_name)));
3930                 rc = -1;
3931                 goto exit;
3932         }
3933
3934         if (rc == 0) {
3935                 sbuf->st_ex_mode &= ~S_IFMT;
3936                 sbuf->st_ex_mode |= S_IFREG;
3937                 sbuf->st_ex_blocks = sbuf->st_ex_size / STAT_ST_BLOCKSIZE + 1;
3938         }
3939
3940 exit:
3941         DEBUG(10, ("fruit_fstat %s, size: %zd\n",
3942                    smb_fname_str_dbg(fsp->fsp_name),
3943                    (ssize_t)sbuf->st_ex_size));
3944         return rc;
3945 }
3946
3947 static NTSTATUS fruit_streaminfo_meta_stream(
3948         vfs_handle_struct *handle,
3949         struct files_struct *fsp,
3950         const struct smb_filename *smb_fname,
3951         TALLOC_CTX *mem_ctx,
3952         unsigned int *pnum_streams,
3953         struct stream_struct **pstreams)
3954 {
3955         return NT_STATUS_OK;
3956 }
3957
3958 static NTSTATUS fruit_streaminfo_meta_netatalk(
3959         vfs_handle_struct *handle,
3960         struct files_struct *fsp,
3961         const struct smb_filename *smb_fname,
3962         TALLOC_CTX *mem_ctx,
3963         unsigned int *pnum_streams,
3964         struct stream_struct **pstreams)
3965 {
3966         struct adouble *ad = NULL;
3967         bool is_fi_empty;
3968         bool ok;
3969
3970         /* Remove the Netatalk xattr from the list */
3971         ok = del_fruit_stream(mem_ctx, pnum_streams, pstreams,
3972                               ":" NETATALK_META_XATTR ":$DATA");
3973         if (!ok) {
3974                 return NT_STATUS_NO_MEMORY;
3975         }
3976
3977         ad = ad_get(talloc_tos(), handle,
3978                     smb_fname->base_name, ADOUBLE_META);
3979         if (ad == NULL) {
3980                 return NT_STATUS_OK;
3981         }
3982
3983         is_fi_empty = ad_empty_finderinfo(ad);
3984         TALLOC_FREE(ad);
3985
3986         if (is_fi_empty) {
3987                 return NT_STATUS_OK;
3988         }
3989
3990         ok = add_fruit_stream(mem_ctx, pnum_streams, pstreams,
3991                               AFPINFO_STREAM_NAME, AFP_INFO_SIZE,
3992                               smb_roundup(handle->conn, AFP_INFO_SIZE));
3993         if (!ok) {
3994                 return NT_STATUS_NO_MEMORY;
3995         }
3996
3997         return NT_STATUS_OK;
3998 }
3999
4000 static NTSTATUS fruit_streaminfo_meta(vfs_handle_struct *handle,
4001                                       struct files_struct *fsp,
4002                                       const struct smb_filename *smb_fname,
4003                                       TALLOC_CTX *mem_ctx,
4004                                       unsigned int *pnum_streams,
4005                                       struct stream_struct **pstreams)
4006 {
4007         struct fruit_config_data *config = NULL;
4008         NTSTATUS status;
4009
4010         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
4011                                 return NT_STATUS_INTERNAL_ERROR);
4012
4013         switch (config->meta) {
4014         case FRUIT_META_NETATALK:
4015                 status = fruit_streaminfo_meta_netatalk(handle, fsp, smb_fname,
4016                                                         mem_ctx, pnum_streams,
4017                                                         pstreams);
4018                 break;
4019
4020         case FRUIT_META_STREAM:
4021                 status = fruit_streaminfo_meta_stream(handle, fsp, smb_fname,
4022                                                       mem_ctx, pnum_streams,
4023                                                       pstreams);
4024                 break;
4025
4026         default:
4027                 return NT_STATUS_INTERNAL_ERROR;
4028         }
4029
4030         return status;
4031 }
4032
4033 static NTSTATUS fruit_streaminfo_rsrc_stream(
4034         vfs_handle_struct *handle,
4035         struct files_struct *fsp,
4036         const struct smb_filename *smb_fname,
4037         TALLOC_CTX *mem_ctx,
4038         unsigned int *pnum_streams,
4039         struct stream_struct **pstreams)
4040 {
4041         bool ok;
4042
4043         ok = filter_empty_rsrc_stream(pnum_streams, pstreams);
4044         if (!ok) {
4045                 DBG_ERR("Filtering resource stream failed\n");
4046                 return NT_STATUS_INTERNAL_ERROR;
4047         }
4048         return NT_STATUS_OK;
4049 }
4050
4051 static NTSTATUS fruit_streaminfo_rsrc_xattr(
4052         vfs_handle_struct *handle,
4053         struct files_struct *fsp,
4054         const struct smb_filename *smb_fname,
4055         TALLOC_CTX *mem_ctx,
4056         unsigned int *pnum_streams,
4057         struct stream_struct **pstreams)
4058 {
4059         bool ok;
4060
4061         ok = filter_empty_rsrc_stream(pnum_streams, pstreams);
4062         if (!ok) {
4063                 DBG_ERR("Filtering resource stream failed\n");
4064                 return NT_STATUS_INTERNAL_ERROR;
4065         }
4066         return NT_STATUS_OK;
4067 }
4068
4069 static NTSTATUS fruit_streaminfo_rsrc_adouble(
4070         vfs_handle_struct *handle,
4071         struct files_struct *fsp,
4072         const struct smb_filename *smb_fname,
4073         TALLOC_CTX *mem_ctx,
4074         unsigned int *pnum_streams,
4075         struct stream_struct **pstreams)
4076 {
4077         struct stream_struct *stream = *pstreams;
4078         unsigned int num_streams = *pnum_streams;
4079         struct adouble *ad = NULL;
4080         bool ok;
4081         size_t rlen;
4082         int i;
4083
4084         /*
4085          * Check if there's a AFPRESOURCE_STREAM from the VFS streams backend
4086          * and if yes, remove it from the list
4087          */
4088         for (i = 0; i < num_streams; i++) {
4089                 if (strequal_m(stream[i].name, AFPRESOURCE_STREAM)) {
4090                         break;
4091                 }
4092         }
4093
4094         if (i < num_streams) {
4095                 DBG_WARNING("Unexpected AFPRESOURCE_STREAM on [%s]\n",
4096                             smb_fname_str_dbg(smb_fname));
4097
4098                 ok = del_fruit_stream(mem_ctx, pnum_streams, pstreams,
4099                                       AFPRESOURCE_STREAM);
4100                 if (!ok) {
4101                         return NT_STATUS_INTERNAL_ERROR;
4102                 }
4103         }
4104
4105         ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
4106                     ADOUBLE_RSRC);
4107         if (ad == NULL) {
4108                 return NT_STATUS_OK;
4109         }
4110
4111         rlen = ad_getentrylen(ad, ADEID_RFORK);
4112         TALLOC_FREE(ad);
4113
4114         if (rlen == 0) {
4115                 return NT_STATUS_OK;
4116         }
4117
4118         ok = add_fruit_stream(mem_ctx, pnum_streams, pstreams,
4119                               AFPRESOURCE_STREAM_NAME, rlen,
4120                               smb_roundup(handle->conn, rlen));
4121         if (!ok) {
4122                 return NT_STATUS_NO_MEMORY;
4123         }
4124
4125         return NT_STATUS_OK;
4126 }
4127
4128 static NTSTATUS fruit_streaminfo_rsrc(vfs_handle_struct *handle,
4129                                       struct files_struct *fsp,
4130                                       const struct smb_filename *smb_fname,
4131                                       TALLOC_CTX *mem_ctx,
4132                                       unsigned int *pnum_streams,
4133                                       struct stream_struct **pstreams)
4134 {
4135         struct fruit_config_data *config = NULL;
4136         NTSTATUS status;
4137
4138         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
4139                                 return NT_STATUS_INTERNAL_ERROR);
4140
4141         switch (config->rsrc) {
4142         case FRUIT_RSRC_STREAM:
4143                 status = fruit_streaminfo_rsrc_stream(handle, fsp, smb_fname,
4144                                                       mem_ctx, pnum_streams,
4145                                                       pstreams);
4146                 break;
4147
4148         case FRUIT_RSRC_XATTR:
4149                 status = fruit_streaminfo_rsrc_xattr(handle, fsp, smb_fname,
4150                                                      mem_ctx, pnum_streams,
4151                                                      pstreams);
4152                 break;
4153
4154         case FRUIT_RSRC_ADFILE:
4155                 status = fruit_streaminfo_rsrc_adouble(handle, fsp, smb_fname,
4156                                                        mem_ctx, pnum_streams,
4157                                                        pstreams);
4158                 break;
4159
4160         default:
4161                 return NT_STATUS_INTERNAL_ERROR;
4162         }
4163
4164         return status;
4165 }
4166
4167 static NTSTATUS fruit_streaminfo(vfs_handle_struct *handle,
4168                                  struct files_struct *fsp,
4169                                  const struct smb_filename *smb_fname,
4170                                  TALLOC_CTX *mem_ctx,
4171                                  unsigned int *pnum_streams,
4172                                  struct stream_struct **pstreams)
4173 {
4174         struct fruit_config_data *config = NULL;
4175         NTSTATUS status;
4176
4177         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
4178                                 return NT_STATUS_UNSUCCESSFUL);
4179
4180         DBG_DEBUG("Path [%s]\n", smb_fname_str_dbg(smb_fname));
4181
4182         status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, smb_fname, mem_ctx,
4183                                          pnum_streams, pstreams);
4184         if (!NT_STATUS_IS_OK(status)) {
4185                 return status;
4186         }
4187
4188         status = fruit_streaminfo_meta(handle, fsp, smb_fname,
4189                                        mem_ctx, pnum_streams, pstreams);
4190         if (!NT_STATUS_IS_OK(status)) {
4191                 return status;
4192         }
4193
4194         status = fruit_streaminfo_rsrc(handle, fsp, smb_fname,
4195                                        mem_ctx, pnum_streams, pstreams);
4196         if (!NT_STATUS_IS_OK(status)) {
4197                 return status;
4198         }
4199
4200         return NT_STATUS_OK;
4201 }
4202
4203 static int fruit_ntimes(vfs_handle_struct *handle,
4204                         const struct smb_filename *smb_fname,
4205                         struct smb_file_time *ft)
4206 {
4207         int rc = 0;
4208         struct adouble *ad = NULL;
4209         struct fruit_config_data *config = NULL;
4210
4211         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
4212                                 return -1);
4213
4214         if ((config->meta != FRUIT_META_NETATALK) ||
4215             null_timespec(ft->create_time))
4216         {
4217                 return SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
4218         }
4219
4220         DEBUG(10,("set btime for %s to %s\n", smb_fname_str_dbg(smb_fname),
4221                  time_to_asc(convert_timespec_to_time_t(ft->create_time))));
4222
4223         ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
4224         if (ad == NULL) {
4225                 goto exit;
4226         }
4227
4228         ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX,
4229                    convert_time_t_to_uint32_t(ft->create_time.tv_sec));
4230
4231         rc = ad_write(ad, smb_fname->base_name);
4232
4233 exit:
4234
4235         TALLOC_FREE(ad);
4236         if (rc != 0) {
4237                 DEBUG(1, ("fruit_ntimes: %s\n", smb_fname_str_dbg(smb_fname)));
4238                 return -1;
4239         }
4240         return SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
4241 }
4242
4243 static int fruit_fallocate(struct vfs_handle_struct *handle,
4244                            struct files_struct *fsp,
4245                            uint32_t mode,
4246                            off_t offset,
4247                            off_t len)
4248 {
4249         struct adouble *ad =
4250                 (struct adouble *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
4251
4252         if (ad == NULL) {
4253                 return SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
4254         }
4255
4256         if (!fruit_fsp_recheck(ad, fsp)) {
4257                 return -1;
4258         }
4259
4260         /* Let the pwrite code path handle it. */
4261         errno = ENOSYS;
4262         return -1;
4263 }
4264
4265 static int fruit_ftruncate_rsrc_xattr(struct vfs_handle_struct *handle,
4266                                       struct files_struct *fsp,
4267                                       off_t offset)
4268 {
4269         if (offset == 0) {
4270                 return SMB_VFS_FREMOVEXATTR(fsp, AFPRESOURCE_EA_NETATALK);
4271         }
4272
4273 #ifdef HAVE_ATTROPEN
4274         return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
4275 #endif
4276         return 0;
4277 }
4278
4279 static int fruit_ftruncate_rsrc_adouble(struct vfs_handle_struct *handle,
4280                                         struct files_struct *fsp,
4281                                         off_t offset)
4282 {
4283         int rc;
4284         struct adouble *ad =
4285                 (struct adouble *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
4286         off_t ad_off = ad_getentryoff(ad, ADEID_RFORK);
4287
4288         if (!fruit_fsp_recheck(ad, fsp)) {
4289                 return -1;
4290         }
4291
4292         rc = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset + ad_off);
4293         if (rc != 0) {
4294                 return -1;
4295         }
4296
4297         ad_setentrylen(ad, ADEID_RFORK, offset);
4298
4299         rc = ad_write(ad, NULL);
4300         if (rc != 0) {
4301                 DBG_ERR("ad_write [%s] failed [%s]\n",
4302                         fsp_str_dbg(fsp), strerror(errno));
4303                 return -1;
4304         }
4305
4306         DBG_DEBUG("Path [%s] offset [%jd]\n",
4307                   fsp_str_dbg(fsp), (intmax_t)offset);
4308
4309         return 0;
4310 }
4311
4312 static int fruit_ftruncate_rsrc_stream(struct vfs_handle_struct *handle,
4313                                        struct files_struct *fsp,
4314                                        off_t offset)
4315 {
4316         if (offset == 0) {
4317                 return SMB_VFS_NEXT_UNLINK(handle, fsp->fsp_name);
4318         }
4319
4320         return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
4321 }
4322
4323 static int fruit_ftruncate_rsrc(struct vfs_handle_struct *handle,
4324                                 struct files_struct *fsp,
4325                                 off_t offset)
4326 {
4327         int ret;
4328         struct fruit_config_data *config;
4329
4330         SMB_VFS_HANDLE_GET_DATA(handle, config,
4331                                 struct fruit_config_data, return -1);
4332
4333         switch (config->rsrc) {
4334         case FRUIT_RSRC_XATTR:
4335                 ret = fruit_ftruncate_rsrc_xattr(handle, fsp, offset);
4336                 break;
4337
4338         case FRUIT_RSRC_ADFILE:
4339                 ret = fruit_ftruncate_rsrc_adouble(handle, fsp, offset);
4340                 break;
4341
4342         case FRUIT_RSRC_STREAM:
4343                 ret = fruit_ftruncate_rsrc_stream(handle, fsp, offset);
4344                 break;
4345
4346         default:
4347                 DBG_ERR("Unexpected rsrc config [%d]\n", config->rsrc);
4348                 return -1;
4349         }
4350
4351
4352         return ret;
4353 }
4354
4355 static int fruit_ftruncate(struct vfs_handle_struct *handle,
4356                            struct files_struct *fsp,
4357                            off_t offset)
4358 {
4359         DBG_DEBUG("fruit_ftruncate called for file %s offset %.0f\n",
4360                    fsp_str_dbg(fsp), (double)offset);
4361
4362         if (is_afpinfo_stream(fsp->fsp_name)) {
4363                 if (offset > 60) {
4364                         DBG_WARNING("ftruncate %s to %jd",
4365                                     fsp_str_dbg(fsp), (intmax_t)offset);
4366                         /* OS X returns NT_STATUS_ALLOTTED_SPACE_EXCEEDED  */
4367                         errno = EOVERFLOW;
4368                         return -1;
4369                 }
4370
4371                 DBG_WARNING("ignoring ftruncate %s to %jd",
4372                             fsp_str_dbg(fsp), (intmax_t)offset);
4373                 /* OS X returns success but does nothing  */
4374                 return 0;
4375         }
4376
4377         if (is_afpresource_stream(fsp->fsp_name)) {
4378                 return fruit_ftruncate_rsrc(handle, fsp, offset);
4379         }
4380
4381         return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
4382 }
4383
4384 static NTSTATUS fruit_create_file(vfs_handle_struct *handle,
4385                                   struct smb_request *req,
4386                                   uint16_t root_dir_fid,
4387                                   struct smb_filename *smb_fname,
4388                                   uint32_t access_mask,
4389                                   uint32_t share_access,
4390                                   uint32_t create_disposition,
4391                                   uint32_t create_options,
4392                                   uint32_t file_attributes,
4393                                   uint32_t oplock_request,
4394                                   struct smb2_lease *lease,
4395                                   uint64_t allocation_size,
4396                                   uint32_t private_flags,
4397                                   struct security_descriptor *sd,
4398                                   struct ea_list *ea_list,
4399                                   files_struct **result,
4400                                   int *pinfo,
4401                                   const struct smb2_create_blobs *in_context_blobs,
4402                                   struct smb2_create_blobs *out_context_blobs)
4403 {
4404         NTSTATUS status;
4405         struct fruit_config_data *config = NULL;
4406         files_struct *fsp = NULL;
4407
4408         status = check_aapl(handle, req, in_context_blobs, out_context_blobs);
4409         if (!NT_STATUS_IS_OK(status)) {
4410                 goto fail;
4411         }
4412
4413         SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
4414                                 return NT_STATUS_UNSUCCESSFUL);
4415
4416         status = SMB_VFS_NEXT_CREATE_FILE(
4417                 handle, req, root_dir_fid, smb_fname,
4418                 access_mask, share_access,
4419                 create_disposition, create_options,
4420                 file_attributes, oplock_request,
4421                 lease,
4422                 allocation_size, private_flags,
4423                 sd, ea_list, result,
4424                 pinfo, in_context_blobs, out_context_blobs);
4425         if (!NT_STATUS_IS_OK(status)) {
4426                 return status;
4427         }
4428
4429         fsp = *result;
4430
4431         if (config->nego_aapl) {
4432                 if (config->copyfile_enabled) {
4433                         /*
4434                          * Set a flag in the fsp. Gets used in
4435                          * copychunk to check whether the special
4436                          * Apple copyfile semantics for copychunk
4437                          * should be allowed in a copychunk request
4438                          * with a count of 0.
4439                          */
4440                         fsp->aapl_copyfile_supported = true;
4441                 }
4442
4443                 if (config->posix_rename && fsp->is_directory) {
4444                         /*
4445                          * Enable POSIX directory rename behaviour
4446                          */
4447                         fsp->posix_flags |= FSP_POSIX_FLAGS_RENAME;
4448                 }
4449         }
4450
4451         /*
4452          * If this is a plain open for existing files, opening an 0
4453          * byte size resource fork MUST fail with
4454          * NT_STATUS_OBJECT_NAME_NOT_FOUND.
4455          *
4456          * Cf the vfs_fruit torture tests in test_rfork_create().
4457          */
4458         if (is_afpresource_stream(fsp->fsp_name) &&
4459             create_disposition == FILE_OPEN)
4460         {
4461                 if (fsp->fsp_name->st.st_ex_size == 0) {
4462                         status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
4463                         goto fail;
4464                 }
4465         }
4466
4467         if (is_ntfs_stream_smb_fname(smb_fname)
4468             || fsp->is_directory) {
4469                 return status;
4470         }
4471
4472         if (config->locking == FRUIT_LOCKING_NETATALK) {
4473                 status = fruit_check_access(
4474                         handle, *result,
4475                         access_mask,
4476                         map_share_mode_to_deny_mode(share_access, 0));
4477                 if (!NT_STATUS_IS_OK(status)) {
4478                         goto fail;
4479                 }
4480         }
4481
4482         return status;
4483
4484 fail:
4485         DEBUG(10, ("fruit_create_file: %s\n", nt_errstr(status)));
4486
4487         if (fsp) {
4488                 close_file(req, fsp, ERROR_CLOSE);
4489                 *result = fsp = NULL;
4490         }
4491
4492         return status;
4493 }
4494
4495 static NTSTATUS fruit_readdir_attr(struct vfs_handle_struct *handle,
4496                                    const struct smb_filename *fname,
4497                                    TALLOC_CTX *mem_ctx,
4498                                    struct readdir_attr_data **pattr_data)
4499 {
4500         struct fruit_config_data *config = NULL;
4501         struct readdir_attr_data *attr_data;
4502         NTSTATUS status;
4503
4504         SMB_VFS_HANDLE_GET_DATA(handle, config,
4505                                 struct fruit_config_data,
4506                                 return NT_STATUS_UNSUCCESSFUL);
4507
4508         if (!config->nego_aapl) {
4509                 return SMB_VFS_NEXT_READDIR_ATTR(handle, fname, mem_ctx, pattr_data);
4510         }
4511
4512         DEBUG(10, ("fruit_readdir_attr %s\n", fname->base_name));
4513
4514         *pattr_data = talloc_zero(mem_ctx, struct readdir_attr_data);
4515         if (*pattr_data == NULL) {
4516                 return NT_STATUS_UNSUCCESSFUL;
4517         }
4518         attr_data = *pattr_data;
4519         attr_data->type = RDATTR_AAPL;
4520
4521         /*
4522          * Mac metadata: compressed FinderInfo, resource fork length
4523          * and creation date
4524          */
4525         status = readdir_attr_macmeta(handle, fname, attr_data);
4526         if (!NT_STATUS_IS_OK(status)) {
4527                 /*
4528                  * Error handling is tricky: if we return failure from
4529                  * this function, the corresponding directory entry
4530                  * will to be passed to the client, so we really just
4531                  * want to error out on fatal errors.
4532                  */
4533                 if  (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
4534                         goto fail;
4535                 }
4536         }
4537
4538         /*
4539          * UNIX mode
4540          */
4541         if (config->unix_info_enabled) {
4542                 attr_data->attr_data.aapl.unix_mode = fname->st.st_ex_mode;
4543         }
4544
4545         /*
4546          * max_access
4547          */
4548         if (!config->readdir_attr_max_access) {
4549                 attr_data->attr_data.aapl.max_access = FILE_GENERIC_ALL;
4550         } else {
4551                 status = smbd_calculate_access_mask(
4552                         handle->conn,
4553                         fname,
4554                         false,
4555                         SEC_FLAG_MAXIMUM_ALLOWED,
4556                         &attr_data->attr_data.aapl.max_access);
4557                 if (!NT_STATUS_IS_OK(status)) {
4558                         goto fail;
4559                 }
4560         }
4561
4562         return NT_STATUS_OK;
4563
4564 fail:
4565         DEBUG(1, ("fruit_readdir_attr %s, error: %s\n",
4566                   fname->base_name, nt_errstr(status)));
4567         TALLOC_FREE(*pattr_data);
4568         return status;
4569 }
4570
4571 static NTSTATUS fruit_fget_nt_acl(vfs_handle_struct *handle,
4572                                   files_struct *fsp,
4573                                   uint32_t security_info,
4574                                   TALLOC_CTX *mem_ctx,
4575                                   struct security_descriptor **ppdesc)
4576 {
4577         NTSTATUS status;
4578         struct security_ace ace;
4579         struct dom_sid sid;
4580         struct fruit_config_data *config;
4581
4582         SMB_VFS_HANDLE_GET_DATA(handle, config,
4583                                 struct fruit_config_data,
4584                                 return NT_STATUS_UNSUCCESSFUL);
4585
4586         status = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info,
4587                                           mem_ctx, ppdesc);
4588         if (!NT_STATUS_IS_OK(status)) {
4589                 return status;
4590         }
4591
4592         /*
4593          * Add MS NFS style ACEs with uid, gid and mode
4594          */
4595         if (!config->unix_info_enabled) {
4596                 return NT_STATUS_OK;
4597         }
4598
4599         /* MS NFS style mode */
4600         sid_compose(&sid, &global_sid_Unix_NFS_Mode, fsp->fsp_name->st.st_ex_mode);
4601         init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
4602         status = security_descriptor_dacl_add(*ppdesc, &ace);
4603         if (!NT_STATUS_IS_OK(status)) {
4604                 DEBUG(1,("failed to add MS NFS style ACE\n"));
4605                 return status;
4606         }
4607
4608         /* MS NFS style uid */
4609         sid_compose(&sid, &global_sid_Unix_NFS_Users, fsp->fsp_name->st.st_ex_uid);
4610         init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
4611         status = security_descriptor_dacl_add(*ppdesc, &ace);
4612         if (!NT_STATUS_IS_OK(status)) {
4613                 DEBUG(1,("failed to add MS NFS style ACE\n"));
4614                 return status;
4615         }
4616
4617         /* MS NFS style gid */
4618         sid_compose(&sid, &global_sid_Unix_NFS_Groups, fsp->fsp_name->st.st_ex_gid);
4619         init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
4620         status = security_descriptor_dacl_add(*ppdesc, &ace);
4621         if (!NT_STATUS_IS_OK(status)) {
4622                 DEBUG(1,("failed to add MS NFS style ACE\n"));
4623                 return status;
4624         }
4625
4626         return NT_STATUS_OK;
4627 }
4628
4629 static NTSTATUS fruit_fset_nt_acl(vfs_handle_struct *handle,
4630                                   files_struct *fsp,
4631                                   uint32_t security_info_sent,
4632                                   const struct security_descriptor *psd)
4633 {
4634         NTSTATUS status;
4635         bool do_chmod;
4636         mode_t ms_nfs_mode = 0;
4637         int result;
4638
4639         DBG_DEBUG("fruit_fset_nt_acl: %s\n", fsp_str_dbg(fsp));
4640
4641         status = check_ms_nfs(handle, fsp, psd, &ms_nfs_mode, &do_chmod);
4642         if (!NT_STATUS_IS_OK(status)) {
4643                 DEBUG(1, ("fruit_fset_nt_acl: check_ms_nfs failed%s\n", fsp_str_dbg(fsp)));
4644                 return status;
4645         }
4646
4647         status = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
4648         if (!NT_STATUS_IS_OK(status)) {
4649                 DEBUG(1, ("fruit_fset_nt_acl: SMB_VFS_NEXT_FSET_NT_ACL failed%s\n", fsp_str_dbg(fsp)));
4650                 return status;
4651         }
4652
4653         if (do_chmod) {
4654                 if (fsp->fh->fd != -1) {
4655                         result = SMB_VFS_FCHMOD(fsp, ms_nfs_mode);
4656                 } else {
4657                         result = SMB_VFS_CHMOD(fsp->conn,
4658                                                fsp->fsp_name,
4659                                                ms_nfs_mode);
4660                 }
4661
4662                 if (result != 0) {
4663                         DEBUG(1, ("chmod: %s, result: %d, %04o error %s\n", fsp_str_dbg(fsp),
4664                                   result, (unsigned)ms_nfs_mode,
4665                                   strerror(errno)));
4666                         status = map_nt_error_from_unix(errno);
4667                         return status;
4668                 }
4669         }
4670
4671         return NT_STATUS_OK;
4672 }
4673
4674 struct fruit_copy_chunk_state {
4675         struct vfs_handle_struct *handle;
4676         off_t copied;
4677         struct files_struct *src_fsp;
4678         struct files_struct *dst_fsp;
4679         bool is_copyfile;
4680 };
4681
4682 static void fruit_copy_chunk_done(struct tevent_req *subreq);
4683 static struct tevent_req *fruit_copy_chunk_send(struct vfs_handle_struct *handle,
4684                                                 TALLOC_CTX *mem_ctx,
4685                                                 struct tevent_context *ev,
4686                                                 struct files_struct *src_fsp,
4687                                                 off_t src_off,
4688                                                 struct files_struct *dest_fsp,
4689                                                 off_t dest_off,
4690                                                 off_t num)
4691 {
4692         struct tevent_req *req, *subreq;
4693         struct fruit_copy_chunk_state *fruit_copy_chunk_state;
4694         NTSTATUS status;
4695         struct fruit_config_data *config;
4696         off_t to_copy = num;
4697
4698         DEBUG(10,("soff: %ju, doff: %ju, len: %ju\n",
4699                   (uintmax_t)src_off, (uintmax_t)dest_off, (uintmax_t)num));
4700
4701         SMB_VFS_HANDLE_GET_DATA(handle, config,
4702                                 struct fruit_config_data,
4703                                 return NULL);
4704
4705         req = tevent_req_create(mem_ctx, &fruit_copy_chunk_state,
4706                                 struct fruit_copy_chunk_state);
4707         if (req == NULL) {
4708                 return NULL;
4709         }
4710         fruit_copy_chunk_state->handle = handle;
4711         fruit_copy_chunk_state->src_fsp = src_fsp;
4712         fruit_copy_chunk_state->dst_fsp = dest_fsp;
4713
4714         /*
4715          * Check if this a OS X copyfile style copychunk request with
4716          * a requested chunk count of 0 that was translated to a
4717          * copy_chunk_send VFS call overloading the parameters src_off
4718          * = dest_off = num = 0.
4719          */
4720         if ((src_off == 0) && (dest_off == 0) && (num == 0) &&
4721             src_fsp->aapl_copyfile_supported &&
4722             dest_fsp->aapl_copyfile_supported)
4723         {
4724                 status = vfs_stat_fsp(src_fsp);
4725                 if (tevent_req_nterror(req, status)) {
4726                         return tevent_req_post(req, ev);
4727                 }
4728
4729                 to_copy = src_fsp->fsp_name->st.st_ex_size;
4730                 fruit_copy_chunk_state->is_copyfile = true;
4731         }
4732
4733         subreq = SMB_VFS_NEXT_COPY_CHUNK_SEND(handle,
4734                                               mem_ctx,
4735                                               ev,
4736                                               src_fsp,
4737                                               src_off,
4738                                               dest_fsp,
4739                                               dest_off,
4740                                               to_copy);
4741         if (tevent_req_nomem(subreq, req)) {
4742                 return tevent_req_post(req, ev);
4743         }
4744
4745         tevent_req_set_callback(subreq, fruit_copy_chunk_done, req);
4746         return req;
4747 }
4748
4749 static void fruit_copy_chunk_done(struct tevent_req *subreq)
4750 {
4751         struct tevent_req *req = tevent_req_callback_data(
4752                 subreq, struct tevent_req);
4753         struct fruit_copy_chunk_state *state = tevent_req_data(
4754                 req, struct fruit_copy_chunk_state);
4755         NTSTATUS status;
4756         unsigned int num_streams = 0;
4757         struct stream_struct *streams = NULL;
4758         unsigned int i;
4759         struct smb_filename *src_fname_tmp = NULL;
4760         struct smb_filename *dst_fname_tmp = NULL;
4761
4762         status = SMB_VFS_NEXT_COPY_CHUNK_RECV(state->handle,
4763                                               subreq,
4764                                               &state->copied);
4765         TALLOC_FREE(subreq);
4766         if (tevent_req_nterror(req, status)) {
4767                 return;
4768         }
4769
4770         if (!state->is_copyfile) {
4771                 tevent_req_done(req);
4772                 return;
4773         }
4774
4775         /*
4776          * Now copy all remaining streams. We know the share supports
4777          * streams, because we're in vfs_fruit. We don't do this async
4778          * because streams are few and small.
4779          */
4780         status = vfs_streaminfo(state->handle->conn, state->src_fsp,
4781                                 state->src_fsp->fsp_name,
4782                                 req, &num_streams, &streams);
4783         if (tevent_req_nterror(req, status)) {
4784                 return;
4785         }
4786
4787         if (num_streams == 1) {
4788                 /* There is always one stream, ::$DATA. */
4789                 tevent_req_done(req);
4790                 return;
4791         }
4792
4793         for (i = 0; i < num_streams; i++) {
4794                 DEBUG(10, ("%s: stream: '%s'/%zu\n",
4795                           __func__, streams[i].name, (size_t)streams[i].size));
4796
4797                 src_fname_tmp = synthetic_smb_fname(
4798                         req,
4799                         state->src_fsp->fsp_name->base_name,
4800                         streams[i].name,
4801                         NULL,
4802                         state->src_fsp->fsp_name->flags);
4803                 if (tevent_req_nomem(src_fname_tmp, req)) {
4804                         return;
4805                 }
4806
4807                 if (is_ntfs_default_stream_smb_fname(src_fname_tmp)) {
4808                         TALLOC_FREE(src_fname_tmp);
4809                         continue;
4810                 }
4811
4812                 dst_fname_tmp = synthetic_smb_fname(
4813                         req,
4814                         state->dst_fsp->fsp_name->base_name,
4815                         streams[i].name,
4816                         NULL,
4817                         state->dst_fsp->fsp_name->flags);
4818                 if (tevent_req_nomem(dst_fname_tmp, req)) {
4819                         TALLOC_FREE(src_fname_tmp);
4820                         return;
4821                 }
4822
4823                 status = copy_file(req,
4824                                    state->handle->conn,
4825                                    src_fname_tmp,
4826                                    dst_fname_tmp,
4827                                    OPENX_FILE_CREATE_IF_NOT_EXIST,
4828                                    0, false);
4829                 if (!NT_STATUS_IS_OK(status)) {
4830                         DEBUG(1, ("%s: copy %s to %s failed: %s\n", __func__,
4831                                   smb_fname_str_dbg(src_fname_tmp),
4832                                   smb_fname_str_dbg(dst_fname_tmp),
4833                                   nt_errstr(status)));
4834                         TALLOC_FREE(src_fname_tmp);
4835                         TALLOC_FREE(dst_fname_tmp);
4836                         tevent_req_nterror(req, status);
4837                         return;
4838                 }
4839
4840                 TALLOC_FREE(src_fname_tmp);
4841                 TALLOC_FREE(dst_fname_tmp);
4842         }
4843
4844         TALLOC_FREE(streams);
4845         TALLOC_FREE(src_fname_tmp);
4846         TALLOC_FREE(dst_fname_tmp);
4847         tevent_req_done(req);
4848 }
4849
4850 static NTSTATUS fruit_copy_chunk_recv(struct vfs_handle_struct *handle,
4851                                       struct tevent_req *req,
4852                                       off_t *copied)
4853 {
4854         struct fruit_copy_chunk_state *fruit_copy_chunk_state = tevent_req_data(
4855                 req, struct fruit_copy_chunk_state);
4856         NTSTATUS status;
4857
4858         if (tevent_req_is_nterror(req, &status)) {
4859                 DEBUG(1, ("server side copy chunk failed: %s\n",
4860                           nt_errstr(status)));
4861                 *copied = 0;
4862                 tevent_req_received(req);
4863                 return status;
4864         }
4865
4866         *copied = fruit_copy_chunk_state->copied;
4867         tevent_req_received(req);
4868
4869         return NT_STATUS_OK;
4870 }
4871
4872 static struct vfs_fn_pointers vfs_fruit_fns = {
4873         .connect_fn = fruit_connect,
4874
4875         /* File operations */
4876         .chmod_fn = fruit_chmod,
4877         .chown_fn = fruit_chown,
4878         .unlink_fn = fruit_unlink,
4879         .rename_fn = fruit_rename,
4880         .rmdir_fn = fruit_rmdir,
4881         .open_fn = fruit_open,
4882         .pread_fn = fruit_pread,
4883         .pwrite_fn = fruit_pwrite,
4884         .stat_fn = fruit_stat,
4885         .lstat_fn = fruit_lstat,
4886         .fstat_fn = fruit_fstat,
4887         .streaminfo_fn = fruit_streaminfo,
4888         .ntimes_fn = fruit_ntimes,
4889         .ftruncate_fn = fruit_ftruncate,
4890         .fallocate_fn = fruit_fallocate,
4891         .create_file_fn = fruit_create_file,
4892         .readdir_attr_fn = fruit_readdir_attr,
4893         .copy_chunk_send_fn = fruit_copy_chunk_send,
4894         .copy_chunk_recv_fn = fruit_copy_chunk_recv,
4895
4896         /* NT ACL operations */
4897         .fget_nt_acl_fn = fruit_fget_nt_acl,
4898         .fset_nt_acl_fn = fruit_fset_nt_acl,
4899 };
4900
4901 NTSTATUS vfs_fruit_init(void);
4902 NTSTATUS vfs_fruit_init(void)
4903 {
4904         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "fruit",
4905                                         &vfs_fruit_fns);
4906         if (!NT_STATUS_IS_OK(ret)) {
4907                 return ret;
4908         }
4909
4910         vfs_fruit_debug_level = debug_add_class("fruit");
4911         if (vfs_fruit_debug_level == -1) {
4912                 vfs_fruit_debug_level = DBGC_VFS;
4913                 DEBUG(0, ("%s: Couldn't register custom debugging class!\n",
4914                           "vfs_fruit_init"));
4915         } else {
4916                 DEBUG(10, ("%s: Debug class number of '%s': %d\n",
4917                            "vfs_fruit_init","fruit",vfs_fruit_debug_level));
4918         }
4919
4920         return ret;
4921 }