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