vfs_acl_common: avoid setting POSIX ACLs if "ignore system acls" is set
[Samba.git] / source3 / modules / vfs_fruit.c
blobcb0d2848fa319cd98a7f8dd2ac669e1aa86632f5
1 /*
2 * OS X and Netatalk interoperability VFS module for Samba-3.x
4 * Copyright (C) Ralph Boehme, 2013, 2014
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.
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.
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/>.
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"
36 * Enhanced OS X and Netatalk compatibility
37 * ========================================
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:
43 * vfs modules = catia fruit streams_xattr
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.
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.
54 * Finally, open modes are optionally checked against Netatalk AFP
55 * share modes.
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.
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.
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.ressource".
74 * Extended Attributes
75 * ===================
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:
83 * streams_xattr:prefix = user.
84 * streams_xattr:store_stream_type = false
87 * TODO
88 * ====
90 * - log diagnostic if any needed VFS module is not loaded
91 * (eg with lp_vfs_objects())
92 * - add tests
95 static int vfs_fruit_debug_level = DBGC_VFS;
97 #undef DBGC_CLASS
98 #define DBGC_CLASS vfs_fruit_debug_level
100 #define FRUIT_PARAM_TYPE_NAME "fruit"
101 #define ADOUBLE_NAME_PREFIX "._"
104 * REVIEW:
105 * This is hokey, but what else can we do?
107 #define NETATALK_META_XATTR "org.netatalk.Metadata"
108 #if defined(HAVE_ATTROPEN) || defined(FREEBSD)
109 #define AFPINFO_EA_NETATALK NETATALK_META_XATTR
110 #define AFPRESOURCE_EA_NETATALK "org.netatalk.ResourceFork"
111 #else
112 #define AFPINFO_EA_NETATALK "user." NETATALK_META_XATTR
113 #define AFPRESOURCE_EA_NETATALK "user.org.netatalk.ResourceFork"
114 #endif
116 enum apple_fork {APPLE_FORK_DATA, APPLE_FORK_RSRC};
118 enum fruit_rsrc {FRUIT_RSRC_STREAM, FRUIT_RSRC_ADFILE, FRUIT_RSRC_XATTR};
119 enum fruit_meta {FRUIT_META_STREAM, FRUIT_META_NETATALK};
120 enum fruit_locking {FRUIT_LOCKING_NETATALK, FRUIT_LOCKING_NONE};
121 enum fruit_encoding {FRUIT_ENC_NATIVE, FRUIT_ENC_PRIVATE};
123 struct fruit_config_data {
124 enum fruit_rsrc rsrc;
125 enum fruit_meta meta;
126 enum fruit_locking locking;
127 enum fruit_encoding encoding;
128 bool use_aapl; /* config from smb.conf */
129 bool nego_aapl; /* client negotiated AAPL */
130 bool use_copyfile;
131 bool readdir_attr_enabled;
132 bool unix_info_enabled;
133 bool copyfile_enabled;
134 bool veto_appledouble;
137 * Additional options, all enabled by default,
138 * possibly useful for analyzing performance. The associated
139 * operations with each of them may be expensive, so having
140 * the chance to disable them individually gives a chance
141 * tweaking the setup for the particular usecase.
143 bool readdir_attr_rsize;
144 bool readdir_attr_finder_info;
145 bool readdir_attr_max_access;
148 static const struct enum_list fruit_rsrc[] = {
149 {FRUIT_RSRC_STREAM, "stream"}, /* pass on to vfs_streams_xattr */
150 {FRUIT_RSRC_ADFILE, "file"}, /* ._ AppleDouble file */
151 {FRUIT_RSRC_XATTR, "xattr"}, /* Netatalk compatible xattr (ZFS only) */
152 { -1, NULL}
155 static const struct enum_list fruit_meta[] = {
156 {FRUIT_META_STREAM, "stream"}, /* pass on to vfs_streams_xattr */
157 {FRUIT_META_NETATALK, "netatalk"}, /* Netatalk compatible xattr */
158 { -1, NULL}
161 static const struct enum_list fruit_locking[] = {
162 {FRUIT_LOCKING_NETATALK, "netatalk"}, /* synchronize locks with Netatalk */
163 {FRUIT_LOCKING_NONE, "none"},
164 { -1, NULL}
167 static const struct enum_list fruit_encoding[] = {
168 {FRUIT_ENC_NATIVE, "native"}, /* map unicode private chars to ASCII */
169 {FRUIT_ENC_PRIVATE, "private"}, /* keep unicode private chars */
170 { -1, NULL}
173 /*****************************************************************************
174 * Defines, functions and data structures that deal with AppleDouble
175 *****************************************************************************/
178 * There are two AppleDouble blobs we deal with:
180 * - ADOUBLE_META - AppleDouble blob used by Netatalk for storing
181 * metadata in an xattr
183 * - ADOUBLE_RSRC - AppleDouble blob used by OS X and Netatalk in
184 * ._ files
186 typedef enum {ADOUBLE_META, ADOUBLE_RSRC} adouble_type_t;
188 /* Version info */
189 #define AD_VERSION2 0x00020000
190 #define AD_VERSION AD_VERSION2
193 * AppleDouble entry IDs.
195 #define ADEID_DFORK 1
196 #define ADEID_RFORK 2
197 #define ADEID_NAME 3
198 #define ADEID_COMMENT 4
199 #define ADEID_ICONBW 5
200 #define ADEID_ICONCOL 6
201 #define ADEID_FILEI 7
202 #define ADEID_FILEDATESI 8
203 #define ADEID_FINDERI 9
204 #define ADEID_MACFILEI 10
205 #define ADEID_PRODOSFILEI 11
206 #define ADEID_MSDOSFILEI 12
207 #define ADEID_SHORTNAME 13
208 #define ADEID_AFPFILEI 14
209 #define ADEID_DID 15
211 /* Private Netatalk entries */
212 #define ADEID_PRIVDEV 16
213 #define ADEID_PRIVINO 17
214 #define ADEID_PRIVSYN 18
215 #define ADEID_PRIVID 19
216 #define ADEID_MAX (ADEID_PRIVID + 1)
219 * These are the real ids for the private entries,
220 * as stored in the adouble file
222 #define AD_DEV 0x80444556
223 #define AD_INO 0x80494E4F
224 #define AD_SYN 0x8053594E
225 #define AD_ID 0x8053567E
227 /* Number of actually used entries */
228 #define ADEID_NUM_XATTR 8
229 #define ADEID_NUM_DOT_UND 2
230 #define ADEID_NUM_RSRC_XATTR 1
232 /* AppleDouble magic */
233 #define AD_APPLESINGLE_MAGIC 0x00051600
234 #define AD_APPLEDOUBLE_MAGIC 0x00051607
235 #define AD_MAGIC AD_APPLEDOUBLE_MAGIC
237 /* Sizes of relevant entry bits */
238 #define ADEDLEN_MAGIC 4
239 #define ADEDLEN_VERSION 4
240 #define ADEDLEN_FILLER 16
241 #define AD_FILLER_TAG "Netatalk " /* should be 16 bytes */
242 #define ADEDLEN_NENTRIES 2
243 #define AD_HEADER_LEN (ADEDLEN_MAGIC + ADEDLEN_VERSION + \
244 ADEDLEN_FILLER + ADEDLEN_NENTRIES) /* 26 */
245 #define AD_ENTRY_LEN_EID 4
246 #define AD_ENTRY_LEN_OFF 4
247 #define AD_ENTRY_LEN_LEN 4
248 #define AD_ENTRY_LEN (AD_ENTRY_LEN_EID + AD_ENTRY_LEN_OFF + AD_ENTRY_LEN_LEN)
250 /* Field widths */
251 #define ADEDLEN_NAME 255
252 #define ADEDLEN_COMMENT 200
253 #define ADEDLEN_FILEI 16
254 #define ADEDLEN_FINDERI 32
255 #define ADEDLEN_FILEDATESI 16
256 #define ADEDLEN_SHORTNAME 12 /* length up to 8.3 */
257 #define ADEDLEN_AFPFILEI 4
258 #define ADEDLEN_MACFILEI 4
259 #define ADEDLEN_PRODOSFILEI 8
260 #define ADEDLEN_MSDOSFILEI 2
261 #define ADEDLEN_DID 4
262 #define ADEDLEN_PRIVDEV 8
263 #define ADEDLEN_PRIVINO 8
264 #define ADEDLEN_PRIVSYN 8
265 #define ADEDLEN_PRIVID 4
267 /* Offsets */
268 #define ADEDOFF_MAGIC 0
269 #define ADEDOFF_VERSION (ADEDOFF_MAGIC + ADEDLEN_MAGIC)
270 #define ADEDOFF_FILLER (ADEDOFF_VERSION + ADEDLEN_VERSION)
271 #define ADEDOFF_NENTRIES (ADEDOFF_FILLER + ADEDLEN_FILLER)
273 #define ADEDOFF_FINDERI_XATTR (AD_HEADER_LEN + \
274 (ADEID_NUM_XATTR * AD_ENTRY_LEN))
275 #define ADEDOFF_COMMENT_XATTR (ADEDOFF_FINDERI_XATTR + ADEDLEN_FINDERI)
276 #define ADEDOFF_FILEDATESI_XATTR (ADEDOFF_COMMENT_XATTR + ADEDLEN_COMMENT)
277 #define ADEDOFF_AFPFILEI_XATTR (ADEDOFF_FILEDATESI_XATTR + \
278 ADEDLEN_FILEDATESI)
279 #define ADEDOFF_PRIVDEV_XATTR (ADEDOFF_AFPFILEI_XATTR + ADEDLEN_AFPFILEI)
280 #define ADEDOFF_PRIVINO_XATTR (ADEDOFF_PRIVDEV_XATTR + ADEDLEN_PRIVDEV)
281 #define ADEDOFF_PRIVSYN_XATTR (ADEDOFF_PRIVINO_XATTR + ADEDLEN_PRIVINO)
282 #define ADEDOFF_PRIVID_XATTR (ADEDOFF_PRIVSYN_XATTR + ADEDLEN_PRIVSYN)
284 #define ADEDOFF_FINDERI_DOT_UND (AD_HEADER_LEN + \
285 (ADEID_NUM_DOT_UND * AD_ENTRY_LEN))
286 #define ADEDOFF_RFORK_DOT_UND (ADEDOFF_FINDERI_DOT_UND + ADEDLEN_FINDERI)
288 #define AD_DATASZ_XATTR (AD_HEADER_LEN + \
289 (ADEID_NUM_XATTR * AD_ENTRY_LEN) + \
290 ADEDLEN_FINDERI + ADEDLEN_COMMENT + \
291 ADEDLEN_FILEDATESI + ADEDLEN_AFPFILEI + \
292 ADEDLEN_PRIVDEV + ADEDLEN_PRIVINO + \
293 ADEDLEN_PRIVSYN + ADEDLEN_PRIVID)
295 #if AD_DATASZ_XATTR != 402
296 #error bad size for AD_DATASZ_XATTR
297 #endif
299 #define AD_DATASZ_DOT_UND (AD_HEADER_LEN + \
300 (ADEID_NUM_DOT_UND * AD_ENTRY_LEN) + \
301 ADEDLEN_FINDERI)
302 #if AD_DATASZ_DOT_UND != 82
303 #error bad size for AD_DATASZ_DOT_UND
304 #endif
307 * Sharemode locks fcntl() offsets
309 #if _FILE_OFFSET_BITS == 64 || defined(HAVE_LARGEFILE)
310 #define AD_FILELOCK_BASE (UINT64_C(0x7FFFFFFFFFFFFFFF) - 9)
311 #else
312 #define AD_FILELOCK_BASE (UINT32_C(0x7FFFFFFF) - 9)
313 #endif
314 #define BYTELOCK_MAX (AD_FILELOCK_BASE - 1)
316 #define AD_FILELOCK_OPEN_WR (AD_FILELOCK_BASE + 0)
317 #define AD_FILELOCK_OPEN_RD (AD_FILELOCK_BASE + 1)
318 #define AD_FILELOCK_RSRC_OPEN_WR (AD_FILELOCK_BASE + 2)
319 #define AD_FILELOCK_RSRC_OPEN_RD (AD_FILELOCK_BASE + 3)
320 #define AD_FILELOCK_DENY_WR (AD_FILELOCK_BASE + 4)
321 #define AD_FILELOCK_DENY_RD (AD_FILELOCK_BASE + 5)
322 #define AD_FILELOCK_RSRC_DENY_WR (AD_FILELOCK_BASE + 6)
323 #define AD_FILELOCK_RSRC_DENY_RD (AD_FILELOCK_BASE + 7)
324 #define AD_FILELOCK_OPEN_NONE (AD_FILELOCK_BASE + 8)
325 #define AD_FILELOCK_RSRC_OPEN_NONE (AD_FILELOCK_BASE + 9)
327 /* Time stuff we overload the bits a little */
328 #define AD_DATE_CREATE 0
329 #define AD_DATE_MODIFY 4
330 #define AD_DATE_BACKUP 8
331 #define AD_DATE_ACCESS 12
332 #define AD_DATE_MASK (AD_DATE_CREATE | AD_DATE_MODIFY | \
333 AD_DATE_BACKUP | AD_DATE_ACCESS)
334 #define AD_DATE_UNIX (1 << 10)
335 #define AD_DATE_START 0x80000000
336 #define AD_DATE_DELTA 946684800
337 #define AD_DATE_FROM_UNIX(x) (htonl((x) - AD_DATE_DELTA))
338 #define AD_DATE_TO_UNIX(x) (ntohl(x) + AD_DATE_DELTA)
340 /* Accessor macros */
341 #define ad_getentrylen(ad,eid) ((ad)->ad_eid[(eid)].ade_len)
342 #define ad_getentryoff(ad,eid) ((ad)->ad_eid[(eid)].ade_off)
343 #define ad_setentrylen(ad,eid,len) ((ad)->ad_eid[(eid)].ade_len = (len))
344 #define ad_setentryoff(ad,eid,off) ((ad)->ad_eid[(eid)].ade_off = (off))
345 #define ad_entry(ad,eid) ((ad)->ad_data + ad_getentryoff((ad),(eid)))
347 struct ad_entry {
348 size_t ade_off;
349 size_t ade_len;
352 struct adouble {
353 vfs_handle_struct *ad_handle;
354 files_struct *ad_fsp;
355 adouble_type_t ad_type;
356 uint32_t ad_magic;
357 uint32_t ad_version;
358 struct ad_entry ad_eid[ADEID_MAX];
359 char *ad_data;
362 struct ad_entry_order {
363 uint32_t id, offset, len;
366 /* Netatalk AppleDouble metadata xattr */
367 static const
368 struct ad_entry_order entry_order_meta_xattr[ADEID_NUM_XATTR + 1] = {
369 {ADEID_FINDERI, ADEDOFF_FINDERI_XATTR, ADEDLEN_FINDERI},
370 {ADEID_COMMENT, ADEDOFF_COMMENT_XATTR, 0},
371 {ADEID_FILEDATESI, ADEDOFF_FILEDATESI_XATTR, ADEDLEN_FILEDATESI},
372 {ADEID_AFPFILEI, ADEDOFF_AFPFILEI_XATTR, ADEDLEN_AFPFILEI},
373 {ADEID_PRIVDEV, ADEDOFF_PRIVDEV_XATTR, 0},
374 {ADEID_PRIVINO, ADEDOFF_PRIVINO_XATTR, 0},
375 {ADEID_PRIVSYN, ADEDOFF_PRIVSYN_XATTR, 0},
376 {ADEID_PRIVID, ADEDOFF_PRIVID_XATTR, 0},
377 {0, 0, 0}
380 /* AppleDouble ressource fork file (the ones prefixed by "._") */
381 static const
382 struct ad_entry_order entry_order_dot_und[ADEID_NUM_DOT_UND + 1] = {
383 {ADEID_FINDERI, ADEDOFF_FINDERI_DOT_UND, ADEDLEN_FINDERI},
384 {ADEID_RFORK, ADEDOFF_RFORK_DOT_UND, 0},
385 {0, 0, 0}
389 * Fake AppleDouble entry oder for ressource fork xattr. The xattr
390 * isn't an AppleDouble file, it simply contains the ressource data,
391 * but in order to be able to use some API calls like ad_getentryoff()
392 * we build a fake/helper struct adouble with this entry order struct.
394 static const
395 struct ad_entry_order entry_order_rsrc_xattr[ADEID_NUM_RSRC_XATTR + 1] = {
396 {ADEID_RFORK, 0, 0},
397 {0, 0, 0}
400 /* Conversion from enumerated id to on-disk AppleDouble id */
401 #define AD_EID_DISK(a) (set_eid[a])
402 static const uint32_t set_eid[] = {
403 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
404 AD_DEV, AD_INO, AD_SYN, AD_ID
408 * Forward declarations
410 static struct adouble *ad_init(TALLOC_CTX *ctx, vfs_handle_struct *handle,
411 adouble_type_t type, files_struct *fsp);
412 static int ad_write(struct adouble *ad, const char *path);
413 static int adouble_path(TALLOC_CTX *ctx, const char *path_in, char **path_out);
416 * Get a date
418 static int ad_getdate(const struct adouble *ad,
419 unsigned int dateoff,
420 uint32_t *date)
422 bool xlate = (dateoff & AD_DATE_UNIX);
424 dateoff &= AD_DATE_MASK;
425 if (!ad_getentryoff(ad, ADEID_FILEDATESI)) {
426 return -1;
429 if (dateoff > AD_DATE_ACCESS) {
430 return -1;
432 memcpy(date,
433 ad_entry(ad, ADEID_FILEDATESI) + dateoff,
434 sizeof(uint32_t));
436 if (xlate) {
437 *date = AD_DATE_TO_UNIX(*date);
439 return 0;
443 * Set a date
445 static int ad_setdate(struct adouble *ad, unsigned int dateoff, uint32_t date)
447 bool xlate = (dateoff & AD_DATE_UNIX);
449 if (!ad_getentryoff(ad, ADEID_FILEDATESI)) {
450 return 0;
453 dateoff &= AD_DATE_MASK;
454 if (xlate) {
455 date = AD_DATE_FROM_UNIX(date);
458 if (dateoff > AD_DATE_ACCESS) {
459 return -1;
462 memcpy(ad_entry(ad, ADEID_FILEDATESI) + dateoff, &date, sizeof(date));
464 return 0;
469 * Map on-disk AppleDouble id to enumerated id
471 static uint32_t get_eid(uint32_t eid)
473 if (eid <= 15) {
474 return eid;
477 switch (eid) {
478 case AD_DEV:
479 return ADEID_PRIVDEV;
480 case AD_INO:
481 return ADEID_PRIVINO;
482 case AD_SYN:
483 return ADEID_PRIVSYN;
484 case AD_ID:
485 return ADEID_PRIVID;
486 default:
487 break;
490 return 0;
494 * Pack AppleDouble structure into data buffer
496 static bool ad_pack(struct adouble *ad)
498 uint32_t eid;
499 uint16_t nent;
500 uint32_t bufsize;
501 uint32_t offset = 0;
503 bufsize = talloc_get_size(ad->ad_data);
505 if (offset + ADEDLEN_MAGIC < offset ||
506 offset + ADEDLEN_MAGIC >= bufsize) {
507 return false;
509 RSIVAL(ad->ad_data, offset, ad->ad_magic);
510 offset += ADEDLEN_MAGIC;
512 if (offset + ADEDLEN_VERSION < offset ||
513 offset + ADEDLEN_VERSION >= bufsize) {
514 return false;
516 RSIVAL(ad->ad_data, offset, ad->ad_version);
517 offset += ADEDLEN_VERSION;
519 if (offset + ADEDLEN_FILLER < offset ||
520 offset + ADEDLEN_FILLER >= bufsize) {
521 return false;
523 if (ad->ad_type == ADOUBLE_RSRC) {
524 memcpy(ad->ad_data + offset, AD_FILLER_TAG, ADEDLEN_FILLER);
526 offset += ADEDLEN_FILLER;
528 if (offset + ADEDLEN_NENTRIES < offset ||
529 offset + ADEDLEN_NENTRIES >= bufsize) {
530 return false;
532 offset += ADEDLEN_NENTRIES;
534 for (eid = 0, nent = 0; eid < ADEID_MAX; eid++) {
535 if (ad->ad_eid[eid].ade_off == 0) {
537 * ade_off is also used as indicator whether a
538 * specific entry is used or not
540 continue;
543 if (offset + AD_ENTRY_LEN_EID < offset ||
544 offset + AD_ENTRY_LEN_EID >= bufsize) {
545 return false;
547 RSIVAL(ad->ad_data, offset, AD_EID_DISK(eid));
548 offset += AD_ENTRY_LEN_EID;
550 if (offset + AD_ENTRY_LEN_OFF < offset ||
551 offset + AD_ENTRY_LEN_OFF >= bufsize) {
552 return false;
554 RSIVAL(ad->ad_data, offset, ad->ad_eid[eid].ade_off);
555 offset += AD_ENTRY_LEN_OFF;
557 if (offset + AD_ENTRY_LEN_LEN < offset ||
558 offset + AD_ENTRY_LEN_LEN >= bufsize) {
559 return false;
561 RSIVAL(ad->ad_data, offset, ad->ad_eid[eid].ade_len);
562 offset += AD_ENTRY_LEN_LEN;
564 nent++;
567 if (ADEDOFF_NENTRIES + 2 >= bufsize) {
568 return false;
570 RSSVAL(ad->ad_data, ADEDOFF_NENTRIES, nent);
572 return true;
576 * Unpack an AppleDouble blob into a struct adoble
578 static bool ad_unpack(struct adouble *ad, const int nentries, size_t filesize)
580 size_t bufsize = talloc_get_size(ad->ad_data);
581 int adentries, i;
582 uint32_t eid, len, off;
585 * The size of the buffer ad->ad_data is checked when read, so
586 * we wouldn't have to check our own offsets, a few extra
587 * checks won't hurt though. We have to check the offsets we
588 * read from the buffer anyway.
591 if (bufsize < (AD_HEADER_LEN + (AD_ENTRY_LEN * nentries))) {
592 DEBUG(1, ("bad size\n"));
593 return false;
596 ad->ad_magic = RIVAL(ad->ad_data, 0);
597 ad->ad_version = RIVAL(ad->ad_data, ADEDOFF_VERSION);
598 if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION)) {
599 DEBUG(1, ("wrong magic or version\n"));
600 return false;
603 adentries = RSVAL(ad->ad_data, ADEDOFF_NENTRIES);
604 if (adentries != nentries) {
605 DEBUG(1, ("invalid number of entries: %d\n", adentries));
606 return false;
609 /* now, read in the entry bits */
610 for (i = 0; i < adentries; i++) {
611 eid = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN));
612 eid = get_eid(eid);
613 off = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN) + 4);
614 len = RIVAL(ad->ad_data, AD_HEADER_LEN + (i * AD_ENTRY_LEN) + 8);
616 if (!eid || eid > ADEID_MAX) {
617 DEBUG(1, ("bogus eid %d\n", eid));
618 return false;
622 * All entries other than the resource fork are
623 * expected to be read into the ad_data buffer, so
624 * ensure the specified offset is within that bound
626 if ((off > bufsize) && (eid != ADEID_RFORK)) {
627 DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
628 eid, off, len));
629 return false;
633 * All entries besides FinderInfo and resource fork
634 * must fit into the buffer. FinderInfo is special as
635 * it may be larger then the default 32 bytes (if it
636 * contains marshalled xattrs), but we will fixup that
637 * in ad_convert(). And the resource fork is never
638 * accessed directly by the ad_data buf (also see
639 * comment above) anyway.
641 if ((eid != ADEID_RFORK) &&
642 (eid != ADEID_FINDERI) &&
643 ((off + len) > bufsize)) {
644 DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
645 eid, off, len));
646 return false;
650 * That would be obviously broken
652 if (off > filesize) {
653 DEBUG(1, ("bogus eid %d: off: %" PRIu32 ", len: %" PRIu32 "\n",
654 eid, off, len));
655 return false;
659 * Check for any entry that has its end beyond the
660 * filesize.
662 if (off + len < off) {
663 DEBUG(1, ("offset wrap in eid %d: off: %" PRIu32
664 ", len: %" PRIu32 "\n",
665 eid, off, len));
666 return false;
669 if (off + len > filesize) {
671 * If this is the resource fork entry, we fix
672 * up the length, for any other entry we bail
673 * out.
675 if (eid != ADEID_RFORK) {
676 DEBUG(1, ("bogus eid %d: off: %" PRIu32
677 ", len: %" PRIu32 "\n",
678 eid, off, len));
679 return false;
683 * Fixup the resource fork entry by limiting
684 * the size to entryoffset - filesize.
686 len = filesize - off;
687 DEBUG(1, ("Limiting ADEID_RFORK: off: %" PRIu32
688 ", len: %" PRIu32 "\n", off, len));
691 ad->ad_eid[eid].ade_off = off;
692 ad->ad_eid[eid].ade_len = len;
695 return true;
699 * Convert from Apple's ._ file to Netatalk
701 * Apple's AppleDouble may contain a FinderInfo entry longer then 32
702 * bytes containing packed xattrs. Netatalk can't deal with that, so
703 * we simply discard the packed xattrs.
705 * @return -1 in case an error occured, 0 if no conversion was done, 1
706 * otherwise
708 static int ad_convert(struct adouble *ad, int fd)
710 int rc = 0;
711 char *map = MAP_FAILED;
712 size_t origlen;
714 origlen = ad_getentryoff(ad, ADEID_RFORK) +
715 ad_getentrylen(ad, ADEID_RFORK);
717 /* FIXME: direct use of mmap(), vfs_aio_fork does it too */
718 map = mmap(NULL, origlen, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
719 if (map == MAP_FAILED) {
720 DEBUG(2, ("mmap AppleDouble: %s\n", strerror(errno)));
721 rc = -1;
722 goto exit;
725 if (ad_getentrylen(ad, ADEID_RFORK) > 0) {
726 memmove(map + ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI,
727 map + ad_getentryoff(ad, ADEID_RFORK),
728 ad_getentrylen(ad, ADEID_RFORK));
731 ad_setentrylen(ad, ADEID_FINDERI, ADEDLEN_FINDERI);
732 ad_setentryoff(ad, ADEID_RFORK,
733 ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI);
736 * FIXME: direct ftruncate(), but we don't have a fsp for the
737 * VFS call
739 rc = ftruncate(fd, ad_getentryoff(ad, ADEID_RFORK)
740 + ad_getentrylen(ad, ADEID_RFORK));
742 exit:
743 if (map != MAP_FAILED) {
744 munmap(map, origlen);
746 return rc;
750 * Read and parse Netatalk AppleDouble metadata xattr
752 static ssize_t ad_header_read_meta(struct adouble *ad, const char *path)
754 int rc = 0;
755 ssize_t ealen;
756 bool ok;
758 DEBUG(10, ("reading meta xattr for %s\n", path));
760 ealen = SMB_VFS_GETXATTR(ad->ad_handle->conn, path,
761 AFPINFO_EA_NETATALK, ad->ad_data,
762 AD_DATASZ_XATTR);
763 if (ealen == -1) {
764 switch (errno) {
765 case ENOATTR:
766 case ENOENT:
767 if (errno == ENOATTR) {
768 errno = ENOENT;
770 rc = -1;
771 goto exit;
772 default:
773 DEBUG(2, ("error reading meta xattr: %s\n",
774 strerror(errno)));
775 rc = -1;
776 goto exit;
779 if (ealen != AD_DATASZ_XATTR) {
780 DEBUG(2, ("bad size %zd\n", ealen));
781 errno = EINVAL;
782 rc = -1;
783 goto exit;
786 /* Now parse entries */
787 ok = ad_unpack(ad, ADEID_NUM_XATTR, AD_DATASZ_XATTR);
788 if (!ok) {
789 DEBUG(2, ("invalid AppleDouble metadata xattr\n"));
790 errno = EINVAL;
791 rc = -1;
792 goto exit;
795 if (!ad_getentryoff(ad, ADEID_FINDERI)
796 || !ad_getentryoff(ad, ADEID_COMMENT)
797 || !ad_getentryoff(ad, ADEID_FILEDATESI)
798 || !ad_getentryoff(ad, ADEID_AFPFILEI)
799 || !ad_getentryoff(ad, ADEID_PRIVDEV)
800 || !ad_getentryoff(ad, ADEID_PRIVINO)
801 || !ad_getentryoff(ad, ADEID_PRIVSYN)
802 || !ad_getentryoff(ad, ADEID_PRIVID)) {
803 DEBUG(2, ("invalid AppleDouble metadata xattr\n"));
804 errno = EINVAL;
805 rc = -1;
806 goto exit;
809 exit:
810 DEBUG(10, ("reading meta xattr for %s, rc: %d\n", path, rc));
812 if (rc != 0) {
813 ealen = -1;
814 if (errno == EINVAL) {
815 become_root();
816 removexattr(path, AFPINFO_EA_NETATALK);
817 unbecome_root();
818 errno = ENOENT;
821 return ealen;
825 * Read and parse resource fork, either ._ AppleDouble file or xattr
827 static ssize_t ad_header_read_rsrc(struct adouble *ad, const char *path)
829 struct fruit_config_data *config = NULL;
830 int fd = -1;
831 int rc = 0;
832 ssize_t len;
833 char *adpath = NULL;
834 bool opened = false;
835 int mode;
836 struct adouble *meta_ad = NULL;
837 SMB_STRUCT_STAT sbuf;
838 bool ok;
839 int saved_errno = 0;
841 SMB_VFS_HANDLE_GET_DATA(ad->ad_handle, config,
842 struct fruit_config_data, return -1);
844 /* Try rw first so we can use the fd in ad_convert() */
845 mode = O_RDWR;
847 if (ad->ad_fsp && ad->ad_fsp->fh && (ad->ad_fsp->fh->fd != -1)) {
848 fd = ad->ad_fsp->fh->fd;
849 } else {
850 if (config->rsrc == FRUIT_RSRC_XATTR) {
851 adpath = talloc_strdup(talloc_tos(), path);
852 } else {
853 rc = adouble_path(talloc_tos(), path, &adpath);
854 if (rc != 0) {
855 goto exit;
859 retry:
860 if (config->rsrc == FRUIT_RSRC_XATTR) {
861 #ifndef HAVE_ATTROPEN
862 errno = ENOSYS;
863 rc = -1;
864 goto exit;
865 #else
866 /* FIXME: direct Solaris xattr syscall */
867 fd = attropen(adpath, AFPRESOURCE_EA_NETATALK,
868 mode, 0);
869 #endif
870 } else {
871 /* FIXME: direct open(), don't have an fsp */
872 fd = open(adpath, mode);
875 if (fd == -1) {
876 switch (errno) {
877 case EROFS:
878 case EACCES:
879 if (mode == O_RDWR) {
880 mode = O_RDONLY;
881 goto retry;
883 /* fall through ... */
884 default:
885 DEBUG(2, ("open AppleDouble: %s, %s\n",
886 adpath, strerror(errno)));
887 rc = -1;
888 goto exit;
891 opened = true;
894 if (config->rsrc == FRUIT_RSRC_XATTR) {
895 /* FIXME: direct sys_fstat(), don't have an fsp */
896 rc = sys_fstat(
897 fd, &sbuf,
898 lp_fake_directory_create_times(
899 SNUM(ad->ad_handle->conn)));
900 if (rc != 0) {
901 goto exit;
903 len = sbuf.st_ex_size;
904 ad_setentrylen(ad, ADEID_RFORK, len);
905 } else {
906 /* FIXME: direct sys_pread(), don't have an fsp */
907 len = sys_pread(fd, ad->ad_data, AD_DATASZ_DOT_UND, 0);
908 if (len != AD_DATASZ_DOT_UND) {
909 DEBUG(2, ("%s: bad size: %zd\n",
910 strerror(errno), len));
911 rc = -1;
912 goto exit;
915 /* FIXME: direct sys_fstat(), we don't have an fsp */
916 rc = sys_fstat(fd, &sbuf,
917 lp_fake_directory_create_times(
918 SNUM(ad->ad_handle->conn)));
919 if (rc != 0) {
920 goto exit;
923 /* Now parse entries */
924 ok = ad_unpack(ad, ADEID_NUM_DOT_UND, sbuf.st_ex_size);
925 if (!ok) {
926 DEBUG(1, ("invalid AppleDouble ressource %s\n", path));
927 errno = EINVAL;
928 rc = -1;
929 goto exit;
932 if ((ad_getentryoff(ad, ADEID_FINDERI)
933 != ADEDOFF_FINDERI_DOT_UND)
934 || (ad_getentrylen(ad, ADEID_FINDERI)
935 < ADEDLEN_FINDERI)
936 || (ad_getentryoff(ad, ADEID_RFORK)
937 < ADEDOFF_RFORK_DOT_UND)) {
938 DEBUG(2, ("invalid AppleDouble ressource %s\n", path));
939 errno = EINVAL;
940 rc = -1;
941 goto exit;
944 if ((mode == O_RDWR)
945 && (ad_getentrylen(ad, ADEID_FINDERI) > ADEDLEN_FINDERI)) {
946 rc = ad_convert(ad, fd);
947 if (rc != 0) {
948 rc = -1;
949 goto exit;
952 * Can't use ad_write() because we might not have a fsp
954 ok = ad_pack(ad);
955 if (!ok) {
956 rc = -1;
957 goto exit;
959 /* FIXME: direct sys_pwrite(), don't have an fsp */
960 len = sys_pwrite(fd, ad->ad_data,
961 AD_DATASZ_DOT_UND, 0);
962 if (len != AD_DATASZ_DOT_UND) {
963 DEBUG(2, ("%s: bad size: %zd\n", adpath, len));
964 rc = -1;
965 goto exit;
968 meta_ad = ad_init(talloc_tos(), ad->ad_handle,
969 ADOUBLE_META, NULL);
970 if (meta_ad == NULL) {
971 rc = -1;
972 goto exit;
975 memcpy(ad_entry(meta_ad, ADEID_FINDERI),
976 ad_entry(ad, ADEID_FINDERI),
977 ADEDLEN_FINDERI);
979 rc = ad_write(meta_ad, path);
980 if (rc != 0) {
981 rc = -1;
982 goto exit;
987 DEBUG(10, ("opened AppleDouble: %s\n", path));
989 exit:
990 if (rc != 0) {
991 saved_errno = errno;
992 len = -1;
994 if (opened && fd != -1) {
995 close(fd);
997 TALLOC_FREE(adpath);
998 TALLOC_FREE(meta_ad);
999 if (rc != 0) {
1000 errno = saved_errno;
1002 return len;
1006 * Read and unpack an AppleDouble metadata xattr or resource
1008 static ssize_t ad_read(struct adouble *ad, const char *path)
1010 switch (ad->ad_type) {
1011 case ADOUBLE_META:
1012 return ad_header_read_meta(ad, path);
1013 case ADOUBLE_RSRC:
1014 return ad_header_read_rsrc(ad, path);
1015 default:
1016 return -1;
1021 * Allocate a struct adouble without initialiing it
1023 * The struct is either hang of the fsp extension context or if fsp is
1024 * NULL from ctx.
1026 * @param[in] ctx talloc context
1027 * @param[in] handle vfs handle
1028 * @param[in] type type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1030 * @param[in] fsp if not NULL (for stream IO), the adouble handle is
1031 * added as an fsp extension
1033 * @return adouble handle
1035 static struct adouble *ad_alloc(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1036 adouble_type_t type, files_struct *fsp)
1038 int rc = 0;
1039 size_t adsize = 0;
1040 struct adouble *ad;
1041 struct fruit_config_data *config;
1043 SMB_VFS_HANDLE_GET_DATA(handle, config,
1044 struct fruit_config_data, return NULL);
1046 switch (type) {
1047 case ADOUBLE_META:
1048 adsize = AD_DATASZ_XATTR;
1049 break;
1050 case ADOUBLE_RSRC:
1051 if (config->rsrc == FRUIT_RSRC_ADFILE) {
1052 adsize = AD_DATASZ_DOT_UND;
1054 break;
1055 default:
1056 return NULL;
1059 if (!fsp) {
1060 ad = talloc_zero(ctx, struct adouble);
1061 if (ad == NULL) {
1062 rc = -1;
1063 goto exit;
1065 if (adsize) {
1066 ad->ad_data = talloc_zero_array(ad, char, adsize);
1068 } else {
1069 ad = (struct adouble *)VFS_ADD_FSP_EXTENSION(handle, fsp,
1070 struct adouble,
1071 NULL);
1072 if (ad == NULL) {
1073 rc = -1;
1074 goto exit;
1076 if (adsize) {
1077 ad->ad_data = talloc_zero_array(
1078 VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
1079 char, adsize);
1081 ad->ad_fsp = fsp;
1084 if (adsize && ad->ad_data == NULL) {
1085 rc = -1;
1086 goto exit;
1088 ad->ad_handle = handle;
1089 ad->ad_type = type;
1090 ad->ad_magic = AD_MAGIC;
1091 ad->ad_version = AD_VERSION;
1093 exit:
1094 if (rc != 0) {
1095 TALLOC_FREE(ad);
1097 return ad;
1101 * Allocate and initialize a new struct adouble
1103 * @param[in] ctx talloc context
1104 * @param[in] handle vfs handle
1105 * @param[in] type type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1106 * @param[in] fsp file handle, may be NULL for a type of e_ad_meta
1108 * @return adouble handle, initialized
1110 static struct adouble *ad_init(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1111 adouble_type_t type, files_struct *fsp)
1113 int rc = 0;
1114 const struct ad_entry_order *eid;
1115 struct adouble *ad = NULL;
1116 struct fruit_config_data *config;
1117 time_t t = time(NULL);
1119 SMB_VFS_HANDLE_GET_DATA(handle, config,
1120 struct fruit_config_data, return NULL);
1122 switch (type) {
1123 case ADOUBLE_META:
1124 eid = entry_order_meta_xattr;
1125 break;
1126 case ADOUBLE_RSRC:
1127 if (config->rsrc == FRUIT_RSRC_ADFILE) {
1128 eid = entry_order_dot_und;
1129 } else {
1130 eid = entry_order_rsrc_xattr;
1132 break;
1133 default:
1134 return NULL;
1137 ad = ad_alloc(ctx, handle, type, fsp);
1138 if (ad == NULL) {
1139 return NULL;
1142 while (eid->id) {
1143 ad->ad_eid[eid->id].ade_off = eid->offset;
1144 ad->ad_eid[eid->id].ade_len = eid->len;
1145 eid++;
1148 /* put something sane in the date fields */
1149 ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, t);
1150 ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, t);
1151 ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, t);
1152 ad_setdate(ad, AD_DATE_BACKUP, htonl(AD_DATE_START));
1154 if (rc != 0) {
1155 TALLOC_FREE(ad);
1157 return ad;
1161 * Return AppleDouble data for a file
1163 * @param[in] ctx talloc context
1164 * @param[in] handle vfs handle
1165 * @param[in] path pathname to file or directory
1166 * @param[in] type type of AppleDouble, ADOUBLE_META or ADOUBLE_RSRC
1168 * @return talloced struct adouble or NULL on error
1170 static struct adouble *ad_get(TALLOC_CTX *ctx, vfs_handle_struct *handle,
1171 const char *path, adouble_type_t type)
1173 int rc = 0;
1174 ssize_t len;
1175 struct adouble *ad = NULL;
1177 DEBUG(10, ("ad_get(%s) called for %s\n",
1178 type == ADOUBLE_META ? "meta" : "rsrc", path));
1180 ad = ad_alloc(ctx, handle, type, NULL);
1181 if (ad == NULL) {
1182 rc = -1;
1183 goto exit;
1186 len = ad_read(ad, path);
1187 if (len == -1) {
1188 DEBUG(10, ("error reading AppleDouble for %s\n", path));
1189 rc = -1;
1190 goto exit;
1193 exit:
1194 DEBUG(10, ("ad_get(%s) for %s returning %d\n",
1195 type == ADOUBLE_META ? "meta" : "rsrc", path, rc));
1197 if (rc != 0) {
1198 TALLOC_FREE(ad);
1200 return ad;
1204 * Set AppleDouble metadata on a file or directory
1206 * @param[in] ad adouble handle
1208 * @param[in] path pathname to file or directory, may be NULL for a
1209 * resource fork
1211 * @return status code, 0 means success
1213 static int ad_write(struct adouble *ad, const char *path)
1215 int rc = 0;
1216 ssize_t len;
1217 bool ok;
1219 ok = ad_pack(ad);
1220 if (!ok) {
1221 return -1;
1224 switch (ad->ad_type) {
1225 case ADOUBLE_META:
1226 rc = SMB_VFS_SETXATTR(ad->ad_handle->conn, path,
1227 AFPINFO_EA_NETATALK, ad->ad_data,
1228 AD_DATASZ_XATTR, 0);
1229 break;
1230 case ADOUBLE_RSRC:
1231 if ((ad->ad_fsp == NULL)
1232 || (ad->ad_fsp->fh == NULL)
1233 || (ad->ad_fsp->fh->fd == -1)) {
1234 rc = -1;
1235 goto exit;
1237 /* FIXME: direct sys_pwrite(), don't have an fsp */
1238 len = sys_pwrite(ad->ad_fsp->fh->fd, ad->ad_data,
1239 talloc_get_size(ad->ad_data), 0);
1240 if (len != talloc_get_size(ad->ad_data)) {
1241 DEBUG(1, ("short write on %s: %zd",
1242 fsp_str_dbg(ad->ad_fsp), len));
1243 rc = -1;
1244 goto exit;
1246 break;
1247 default:
1248 return -1;
1250 exit:
1251 return rc;
1254 /*****************************************************************************
1255 * Helper functions
1256 *****************************************************************************/
1258 static bool is_afpinfo_stream(const struct smb_filename *smb_fname)
1260 if (strncasecmp_m(smb_fname->stream_name,
1261 AFPINFO_STREAM_NAME,
1262 strlen(AFPINFO_STREAM_NAME)) == 0) {
1263 return true;
1265 return false;
1268 static bool is_afpresource_stream(const struct smb_filename *smb_fname)
1270 if (strncasecmp_m(smb_fname->stream_name,
1271 AFPRESOURCE_STREAM_NAME,
1272 strlen(AFPRESOURCE_STREAM_NAME)) == 0) {
1273 return true;
1275 return false;
1279 * Test whether stream is an Apple stream, not used atm
1281 #if 0
1282 static bool is_apple_stream(const struct smb_filename *smb_fname)
1284 if (is_afpinfo_stream(smb_fname)) {
1285 return true;
1287 if (is_afpresource_stream(smb_fname)) {
1288 return true;
1290 return false;
1292 #endif
1295 * Initialize config struct from our smb.conf config parameters
1297 static int init_fruit_config(vfs_handle_struct *handle)
1299 struct fruit_config_data *config;
1300 int enumval;
1302 config = talloc_zero(handle->conn, struct fruit_config_data);
1303 if (!config) {
1304 DEBUG(1, ("talloc_zero() failed\n"));
1305 errno = ENOMEM;
1306 return -1;
1309 enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1310 "ressource", fruit_rsrc, FRUIT_RSRC_ADFILE);
1311 if (enumval == -1) {
1312 DEBUG(1, ("value for %s: ressource type unknown\n",
1313 FRUIT_PARAM_TYPE_NAME));
1314 return -1;
1316 config->rsrc = (enum fruit_rsrc)enumval;
1318 enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1319 "metadata", fruit_meta, FRUIT_META_NETATALK);
1320 if (enumval == -1) {
1321 DEBUG(1, ("value for %s: metadata type unknown\n",
1322 FRUIT_PARAM_TYPE_NAME));
1323 return -1;
1325 config->meta = (enum fruit_meta)enumval;
1327 enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1328 "locking", fruit_locking, FRUIT_LOCKING_NONE);
1329 if (enumval == -1) {
1330 DEBUG(1, ("value for %s: locking type unknown\n",
1331 FRUIT_PARAM_TYPE_NAME));
1332 return -1;
1334 config->locking = (enum fruit_locking)enumval;
1336 enumval = lp_parm_enum(SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1337 "encoding", fruit_encoding, FRUIT_ENC_PRIVATE);
1338 if (enumval == -1) {
1339 DEBUG(1, ("value for %s: encoding type unknown\n",
1340 FRUIT_PARAM_TYPE_NAME));
1341 return -1;
1343 config->encoding = (enum fruit_encoding)enumval;
1345 config->veto_appledouble = lp_parm_bool(
1346 SNUM(handle->conn), FRUIT_PARAM_TYPE_NAME,
1347 "veto_appledouble", true);
1349 config->use_aapl = lp_parm_bool(
1350 -1, FRUIT_PARAM_TYPE_NAME, "aapl", true);
1352 config->unix_info_enabled = lp_parm_bool(
1353 -1, FRUIT_PARAM_TYPE_NAME, "nfs_aces", true);
1355 config->use_copyfile = lp_parm_bool(-1, FRUIT_PARAM_TYPE_NAME,
1356 "copyfile", false);
1358 config->readdir_attr_rsize = lp_parm_bool(
1359 SNUM(handle->conn), "readdir_attr", "aapl_rsize", true);
1361 config->readdir_attr_finder_info = lp_parm_bool(
1362 SNUM(handle->conn), "readdir_attr", "aapl_finder_info", true);
1364 config->readdir_attr_max_access = lp_parm_bool(
1365 SNUM(handle->conn), "readdir_attr", "aapl_max_access", true);
1367 SMB_VFS_HANDLE_SET_DATA(handle, config,
1368 NULL, struct fruit_config_data,
1369 return -1);
1371 return 0;
1375 * Prepend "._" to a basename
1377 static int adouble_path(TALLOC_CTX *ctx, const char *path_in, char **path_out)
1379 char *parent;
1380 const char *base;
1382 if (!parent_dirname(ctx, path_in, &parent, &base)) {
1383 return -1;
1386 *path_out = talloc_asprintf(ctx, "%s/._%s", parent, base);
1387 if (*path_out == NULL) {
1388 return -1;
1391 return 0;
1395 * Allocate and initialize an AfpInfo struct
1397 static AfpInfo *afpinfo_new(TALLOC_CTX *ctx)
1399 AfpInfo *ai = talloc_zero(ctx, AfpInfo);
1400 if (ai == NULL) {
1401 return NULL;
1403 ai->afpi_Signature = AFP_Signature;
1404 ai->afpi_Version = AFP_Version;
1405 ai->afpi_BackupTime = AD_DATE_START;
1406 return ai;
1410 * Pack an AfpInfo struct into a buffer
1412 * Buffer size must be at least AFP_INFO_SIZE
1413 * Returns size of packed buffer
1415 static ssize_t afpinfo_pack(const AfpInfo *ai, char *buf)
1417 memset(buf, 0, AFP_INFO_SIZE);
1419 RSIVAL(buf, 0, ai->afpi_Signature);
1420 RSIVAL(buf, 4, ai->afpi_Version);
1421 RSIVAL(buf, 12, ai->afpi_BackupTime);
1422 memcpy(buf + 16, ai->afpi_FinderInfo, sizeof(ai->afpi_FinderInfo));
1424 return AFP_INFO_SIZE;
1428 * Unpack a buffer into a AfpInfo structure
1430 * Buffer size must be at least AFP_INFO_SIZE
1431 * Returns allocated AfpInfo struct
1433 static AfpInfo *afpinfo_unpack(TALLOC_CTX *ctx, const void *data)
1435 AfpInfo *ai = talloc_zero(ctx, AfpInfo);
1436 if (ai == NULL) {
1437 return NULL;
1440 ai->afpi_Signature = RIVAL(data, 0);
1441 ai->afpi_Version = RIVAL(data, 4);
1442 ai->afpi_BackupTime = RIVAL(data, 12);
1443 memcpy(ai->afpi_FinderInfo, (const char *)data + 16,
1444 sizeof(ai->afpi_FinderInfo));
1446 if (ai->afpi_Signature != AFP_Signature
1447 || ai->afpi_Version != AFP_Version) {
1448 DEBUG(1, ("Bad AfpInfo signature or version\n"));
1449 TALLOC_FREE(ai);
1452 return ai;
1456 * Fake an inode number from the md5 hash of the (xattr) name
1458 static SMB_INO_T fruit_inode(const SMB_STRUCT_STAT *sbuf, const char *sname)
1460 MD5_CTX ctx;
1461 unsigned char hash[16];
1462 SMB_INO_T result;
1463 char *upper_sname;
1465 upper_sname = talloc_strdup_upper(talloc_tos(), sname);
1466 SMB_ASSERT(upper_sname != NULL);
1468 MD5Init(&ctx);
1469 MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_dev),
1470 sizeof(sbuf->st_ex_dev));
1471 MD5Update(&ctx, (const unsigned char *)&(sbuf->st_ex_ino),
1472 sizeof(sbuf->st_ex_ino));
1473 MD5Update(&ctx, (unsigned char *)upper_sname,
1474 talloc_get_size(upper_sname)-1);
1475 MD5Final(hash, &ctx);
1477 TALLOC_FREE(upper_sname);
1479 /* Hopefully all the variation is in the lower 4 (or 8) bytes! */
1480 memcpy(&result, hash, sizeof(result));
1482 DEBUG(10, ("fruit_inode \"%s\": ino=0x%llu\n",
1483 sname, (unsigned long long)result));
1485 return result;
1489 * Ensure ad_fsp is still valid
1491 static bool fruit_fsp_recheck(struct adouble *ad, files_struct *fsp)
1493 if (ad->ad_fsp == fsp) {
1494 return true;
1496 ad->ad_fsp = fsp;
1498 return true;
1501 static bool add_fruit_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
1502 struct stream_struct **streams,
1503 const char *name, off_t size,
1504 off_t alloc_size)
1506 struct stream_struct *tmp;
1508 tmp = talloc_realloc(mem_ctx, *streams, struct stream_struct,
1509 (*num_streams)+1);
1510 if (tmp == NULL) {
1511 return false;
1514 tmp[*num_streams].name = talloc_asprintf(tmp, "%s:$DATA", name);
1515 if (tmp[*num_streams].name == NULL) {
1516 return false;
1519 tmp[*num_streams].size = size;
1520 tmp[*num_streams].alloc_size = alloc_size;
1522 *streams = tmp;
1523 *num_streams += 1;
1524 return true;
1527 static bool del_fruit_stream(TALLOC_CTX *mem_ctx, unsigned int *num_streams,
1528 struct stream_struct **streams,
1529 const char *name)
1531 struct stream_struct *tmp = *streams;
1532 int i;
1534 if (*num_streams == 0) {
1535 return true;
1538 for (i = 0; i < *num_streams; i++) {
1539 if (strequal_m(tmp[i].name, name)) {
1540 break;
1544 if (i == *num_streams) {
1545 return true;
1548 TALLOC_FREE(tmp[i].name);
1549 if (*num_streams - 1 > i) {
1550 memmove(&tmp[i], &tmp[i+1],
1551 (*num_streams - i - 1) * sizeof(struct stream_struct));
1554 *num_streams -= 1;
1555 return true;
1558 static bool empty_finderinfo(const struct adouble *ad)
1561 char emptybuf[ADEDLEN_FINDERI] = {0};
1562 if (memcmp(emptybuf,
1563 ad_entry(ad, ADEID_FINDERI),
1564 ADEDLEN_FINDERI) == 0) {
1565 return true;
1567 return false;
1571 * Update btime with btime from Netatalk
1573 static void update_btime(vfs_handle_struct *handle,
1574 struct smb_filename *smb_fname)
1576 uint32_t t;
1577 struct timespec creation_time = {0};
1578 struct adouble *ad;
1580 ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
1581 if (ad == NULL) {
1582 return;
1584 if (ad_getdate(ad, AD_DATE_UNIX | AD_DATE_CREATE, &t) != 0) {
1585 TALLOC_FREE(ad);
1586 return;
1588 TALLOC_FREE(ad);
1590 creation_time.tv_sec = convert_uint32_t_to_time_t(t);
1591 update_stat_ex_create_time(&smb_fname->st, creation_time);
1593 return;
1597 * Map an access mask to a Netatalk single byte byte range lock
1599 static off_t access_to_netatalk_brl(enum apple_fork fork_type,
1600 uint32_t access_mask)
1602 off_t offset;
1604 switch (access_mask) {
1605 case FILE_READ_DATA:
1606 offset = AD_FILELOCK_OPEN_RD;
1607 break;
1609 case FILE_WRITE_DATA:
1610 case FILE_APPEND_DATA:
1611 offset = AD_FILELOCK_OPEN_WR;
1612 break;
1614 default:
1615 offset = AD_FILELOCK_OPEN_NONE;
1616 break;
1619 if (fork_type == APPLE_FORK_RSRC) {
1620 if (offset == AD_FILELOCK_OPEN_NONE) {
1621 offset = AD_FILELOCK_RSRC_OPEN_NONE;
1622 } else {
1623 offset += 2;
1627 return offset;
1631 * Map a deny mode to a Netatalk brl
1633 static off_t denymode_to_netatalk_brl(enum apple_fork fork_type,
1634 uint32_t deny_mode)
1636 off_t offset;
1638 switch (deny_mode) {
1639 case DENY_READ:
1640 offset = AD_FILELOCK_DENY_RD;
1641 break;
1643 case DENY_WRITE:
1644 offset = AD_FILELOCK_DENY_WR;
1645 break;
1647 default:
1648 smb_panic("denymode_to_netatalk_brl: bad deny mode\n");
1651 if (fork_type == APPLE_FORK_RSRC) {
1652 offset += 2;
1655 return offset;
1659 * Call fcntl() with an exclusive F_GETLK request in order to
1660 * determine if there's an exisiting shared lock
1662 * @return true if the requested lock was found or any error occured
1663 * false if the lock was not found
1665 static bool test_netatalk_lock(files_struct *fsp, off_t in_offset)
1667 bool result;
1668 off_t offset = in_offset;
1669 off_t len = 1;
1670 int type = F_WRLCK;
1671 pid_t pid;
1673 result = SMB_VFS_GETLOCK(fsp, &offset, &len, &type, &pid);
1674 if (result == false) {
1675 return true;
1678 if (type != F_UNLCK) {
1679 return true;
1682 return false;
1685 static NTSTATUS fruit_check_access(vfs_handle_struct *handle,
1686 files_struct *fsp,
1687 uint32_t access_mask,
1688 uint32_t deny_mode)
1690 NTSTATUS status = NT_STATUS_OK;
1691 struct byte_range_lock *br_lck = NULL;
1692 bool open_for_reading, open_for_writing, deny_read, deny_write;
1693 off_t off;
1695 /* FIXME: hardcoded data fork, add resource fork */
1696 enum apple_fork fork_type = APPLE_FORK_DATA;
1698 DEBUG(10, ("fruit_check_access: %s, am: %s/%s, dm: %s/%s\n",
1699 fsp_str_dbg(fsp),
1700 access_mask & FILE_READ_DATA ? "READ" :"-",
1701 access_mask & FILE_WRITE_DATA ? "WRITE" : "-",
1702 deny_mode & DENY_READ ? "DENY_READ" : "-",
1703 deny_mode & DENY_WRITE ? "DENY_WRITE" : "-"));
1706 * Check read access and deny read mode
1708 if ((access_mask & FILE_READ_DATA) || (deny_mode & DENY_READ)) {
1709 /* Check access */
1710 open_for_reading = test_netatalk_lock(
1711 fsp, access_to_netatalk_brl(fork_type, FILE_READ_DATA));
1713 deny_read = test_netatalk_lock(
1714 fsp, denymode_to_netatalk_brl(fork_type, DENY_READ));
1716 DEBUG(10, ("read: %s, deny_write: %s\n",
1717 open_for_reading == true ? "yes" : "no",
1718 deny_read == true ? "yes" : "no"));
1720 if (((access_mask & FILE_READ_DATA) && deny_read)
1721 || ((deny_mode & DENY_READ) && open_for_reading)) {
1722 return NT_STATUS_SHARING_VIOLATION;
1725 /* Set locks */
1726 if (access_mask & FILE_READ_DATA) {
1727 off = access_to_netatalk_brl(fork_type, FILE_READ_DATA);
1728 br_lck = do_lock(
1729 handle->conn->sconn->msg_ctx, fsp,
1730 fsp->op->global->open_persistent_id, 1, off,
1731 READ_LOCK, POSIX_LOCK, false,
1732 &status, NULL);
1734 if (!NT_STATUS_IS_OK(status)) {
1735 return status;
1737 TALLOC_FREE(br_lck);
1740 if (deny_mode & DENY_READ) {
1741 off = denymode_to_netatalk_brl(fork_type, DENY_READ);
1742 br_lck = do_lock(
1743 handle->conn->sconn->msg_ctx, fsp,
1744 fsp->op->global->open_persistent_id, 1, off,
1745 READ_LOCK, POSIX_LOCK, false,
1746 &status, NULL);
1748 if (!NT_STATUS_IS_OK(status)) {
1749 return status;
1751 TALLOC_FREE(br_lck);
1756 * Check write access and deny write mode
1758 if ((access_mask & FILE_WRITE_DATA) || (deny_mode & DENY_WRITE)) {
1759 /* Check access */
1760 open_for_writing = test_netatalk_lock(
1761 fsp, access_to_netatalk_brl(fork_type, FILE_WRITE_DATA));
1763 deny_write = test_netatalk_lock(
1764 fsp, denymode_to_netatalk_brl(fork_type, DENY_WRITE));
1766 DEBUG(10, ("write: %s, deny_write: %s\n",
1767 open_for_writing == true ? "yes" : "no",
1768 deny_write == true ? "yes" : "no"));
1770 if (((access_mask & FILE_WRITE_DATA) && deny_write)
1771 || ((deny_mode & DENY_WRITE) && open_for_writing)) {
1772 return NT_STATUS_SHARING_VIOLATION;
1775 /* Set locks */
1776 if (access_mask & FILE_WRITE_DATA) {
1777 off = access_to_netatalk_brl(fork_type, FILE_WRITE_DATA);
1778 br_lck = do_lock(
1779 handle->conn->sconn->msg_ctx, fsp,
1780 fsp->op->global->open_persistent_id, 1, off,
1781 READ_LOCK, POSIX_LOCK, false,
1782 &status, NULL);
1784 if (!NT_STATUS_IS_OK(status)) {
1785 return status;
1787 TALLOC_FREE(br_lck);
1790 if (deny_mode & DENY_WRITE) {
1791 off = denymode_to_netatalk_brl(fork_type, DENY_WRITE);
1792 br_lck = do_lock(
1793 handle->conn->sconn->msg_ctx, fsp,
1794 fsp->op->global->open_persistent_id, 1, off,
1795 READ_LOCK, POSIX_LOCK, false,
1796 &status, NULL);
1798 if (!NT_STATUS_IS_OK(status)) {
1799 return status;
1801 TALLOC_FREE(br_lck);
1805 TALLOC_FREE(br_lck);
1807 return status;
1810 static NTSTATUS check_aapl(vfs_handle_struct *handle,
1811 struct smb_request *req,
1812 const struct smb2_create_blobs *in_context_blobs,
1813 struct smb2_create_blobs *out_context_blobs)
1815 struct fruit_config_data *config;
1816 NTSTATUS status;
1817 struct smb2_create_blob *aapl = NULL;
1818 uint32_t cmd;
1819 bool ok;
1820 uint8_t p[16];
1821 DATA_BLOB blob = data_blob_talloc(req, NULL, 0);
1822 uint64_t req_bitmap, client_caps;
1823 uint64_t server_caps = SMB2_CRTCTX_AAPL_UNIX_BASED;
1824 smb_ucs2_t *model;
1825 size_t modellen;
1827 SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
1828 return NT_STATUS_UNSUCCESSFUL);
1830 if (!config->use_aapl
1831 || in_context_blobs == NULL
1832 || out_context_blobs == NULL) {
1833 return NT_STATUS_OK;
1836 aapl = smb2_create_blob_find(in_context_blobs,
1837 SMB2_CREATE_TAG_AAPL);
1838 if (aapl == NULL) {
1839 return NT_STATUS_OK;
1842 if (aapl->data.length != 24) {
1843 DEBUG(1, ("unexpected AAPL ctxt length: %ju\n",
1844 (uintmax_t)aapl->data.length));
1845 return NT_STATUS_INVALID_PARAMETER;
1848 cmd = IVAL(aapl->data.data, 0);
1849 if (cmd != SMB2_CRTCTX_AAPL_SERVER_QUERY) {
1850 DEBUG(1, ("unsupported AAPL cmd: %d\n", cmd));
1851 return NT_STATUS_INVALID_PARAMETER;
1854 req_bitmap = BVAL(aapl->data.data, 8);
1855 client_caps = BVAL(aapl->data.data, 16);
1857 SIVAL(p, 0, SMB2_CRTCTX_AAPL_SERVER_QUERY);
1858 SIVAL(p, 4, 0);
1859 SBVAL(p, 8, req_bitmap);
1860 ok = data_blob_append(req, &blob, p, 16);
1861 if (!ok) {
1862 return NT_STATUS_UNSUCCESSFUL;
1865 if (req_bitmap & SMB2_CRTCTX_AAPL_SERVER_CAPS) {
1866 if ((client_caps & SMB2_CRTCTX_AAPL_SUPPORTS_READ_DIR_ATTR) &&
1867 (handle->conn->tcon->compat->fs_capabilities & FILE_NAMED_STREAMS)) {
1868 server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_READ_DIR_ATTR;
1869 config->readdir_attr_enabled = true;
1872 if (config->use_copyfile) {
1873 server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_OSX_COPYFILE;
1874 config->copyfile_enabled = true;
1878 * The client doesn't set the flag, so we can't check
1879 * for it and just set it unconditionally
1881 if (config->unix_info_enabled) {
1882 server_caps |= SMB2_CRTCTX_AAPL_SUPPORTS_NFS_ACE;
1885 SBVAL(p, 0, server_caps);
1886 ok = data_blob_append(req, &blob, p, 8);
1887 if (!ok) {
1888 return NT_STATUS_UNSUCCESSFUL;
1892 if (req_bitmap & SMB2_CRTCTX_AAPL_VOLUME_CAPS) {
1893 SBVAL(p, 0,
1894 lp_case_sensitive(SNUM(handle->conn->tcon->compat)) ?
1895 SMB2_CRTCTX_AAPL_CASE_SENSITIVE : 0);
1896 ok = data_blob_append(req, &blob, p, 8);
1897 if (!ok) {
1898 return NT_STATUS_UNSUCCESSFUL;
1902 if (req_bitmap & SMB2_CRTCTX_AAPL_MODEL_INFO) {
1903 ok = convert_string_talloc(req,
1904 CH_UNIX, CH_UTF16LE,
1905 "Samba", strlen("Samba"),
1906 &model, &modellen);
1907 if (!ok) {
1908 return NT_STATUS_UNSUCCESSFUL;
1911 SIVAL(p, 0, 0);
1912 SIVAL(p + 4, 0, modellen);
1913 ok = data_blob_append(req, &blob, p, 8);
1914 if (!ok) {
1915 talloc_free(model);
1916 return NT_STATUS_UNSUCCESSFUL;
1919 ok = data_blob_append(req, &blob, model, modellen);
1920 talloc_free(model);
1921 if (!ok) {
1922 return NT_STATUS_UNSUCCESSFUL;
1926 status = smb2_create_blob_add(out_context_blobs,
1927 out_context_blobs,
1928 SMB2_CREATE_TAG_AAPL,
1929 blob);
1930 if (NT_STATUS_IS_OK(status)) {
1931 config->nego_aapl = true;
1934 return status;
1937 static NTSTATUS readdir_attr_macmeta(struct vfs_handle_struct *handle,
1938 const struct smb_filename *smb_fname,
1939 struct readdir_attr_data *attr_data)
1941 NTSTATUS status = NT_STATUS_OK;
1942 uint32_t date_added;
1943 struct adouble *ad = NULL;
1944 struct fruit_config_data *config = NULL;
1946 SMB_VFS_HANDLE_GET_DATA(handle, config,
1947 struct fruit_config_data,
1948 return NT_STATUS_UNSUCCESSFUL);
1951 /* Ensure we return a default value in the creation_date field */
1952 RSIVAL(&attr_data->attr_data.aapl.finder_info, 12, AD_DATE_START);
1955 * Resource fork length
1958 if (config->readdir_attr_rsize) {
1959 ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
1960 ADOUBLE_RSRC);
1961 if (ad) {
1962 attr_data->attr_data.aapl.rfork_size = ad_getentrylen(
1963 ad, ADEID_RFORK);
1964 TALLOC_FREE(ad);
1969 * FinderInfo
1972 if (config->readdir_attr_finder_info) {
1973 ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
1974 ADOUBLE_META);
1975 if (ad) {
1976 if (S_ISREG(smb_fname->st.st_ex_mode)) {
1977 /* finder_type */
1978 memcpy(&attr_data->attr_data.aapl.finder_info[0],
1979 ad_entry(ad, ADEID_FINDERI), 4);
1981 /* finder_creator */
1982 memcpy(&attr_data->attr_data.aapl.finder_info[0] + 4,
1983 ad_entry(ad, ADEID_FINDERI) + 4, 4);
1986 /* finder_flags */
1987 memcpy(&attr_data->attr_data.aapl.finder_info[0] + 8,
1988 ad_entry(ad, ADEID_FINDERI) + 8, 2);
1990 /* finder_ext_flags */
1991 memcpy(&attr_data->attr_data.aapl.finder_info[0] + 10,
1992 ad_entry(ad, ADEID_FINDERI) + 24, 2);
1994 /* creation date */
1995 date_added = convert_time_t_to_uint32_t(
1996 smb_fname->st.st_ex_btime.tv_sec - AD_DATE_DELTA);
1997 RSIVAL(&attr_data->attr_data.aapl.finder_info[0], 12, date_added);
1999 TALLOC_FREE(ad);
2003 TALLOC_FREE(ad);
2004 return status;
2007 /* Search MS NFS style ACE with UNIX mode */
2008 static NTSTATUS check_ms_nfs(vfs_handle_struct *handle,
2009 files_struct *fsp,
2010 const struct security_descriptor *psd,
2011 mode_t *pmode,
2012 bool *pdo_chmod)
2014 int i;
2015 struct fruit_config_data *config = NULL;
2017 *pdo_chmod = false;
2019 SMB_VFS_HANDLE_GET_DATA(handle, config,
2020 struct fruit_config_data,
2021 return NT_STATUS_UNSUCCESSFUL);
2023 if (psd->dacl == NULL || !config->unix_info_enabled) {
2024 return NT_STATUS_OK;
2027 for (i = 0; i < psd->dacl->num_aces; i++) {
2028 if (dom_sid_compare_domain(
2029 &global_sid_Unix_NFS_Mode,
2030 &psd->dacl->aces[i].trustee) == 0) {
2031 *pmode = (mode_t)psd->dacl->aces[i].trustee.sub_auths[2];
2032 *pmode &= (S_IRWXU | S_IRWXG | S_IRWXO);
2033 *pdo_chmod = true;
2035 DEBUG(10, ("MS NFS chmod request %s, %04o\n",
2036 fsp_str_dbg(fsp), (unsigned)(*pmode)));
2037 break;
2041 return NT_STATUS_OK;
2044 /****************************************************************************
2045 * VFS ops
2046 ****************************************************************************/
2048 static int fruit_connect(vfs_handle_struct *handle,
2049 const char *service,
2050 const char *user)
2052 int rc;
2053 char *list = NULL, *newlist = NULL;
2054 struct fruit_config_data *config;
2056 DEBUG(10, ("fruit_connect\n"));
2058 rc = SMB_VFS_NEXT_CONNECT(handle, service, user);
2059 if (rc < 0) {
2060 return rc;
2063 rc = init_fruit_config(handle);
2064 if (rc != 0) {
2065 return rc;
2068 SMB_VFS_HANDLE_GET_DATA(handle, config,
2069 struct fruit_config_data, return -1);
2071 if (config->veto_appledouble) {
2072 list = lp_veto_files(talloc_tos(), SNUM(handle->conn));
2074 if (list) {
2075 if (strstr(list, "/" ADOUBLE_NAME_PREFIX "*/") == NULL) {
2076 newlist = talloc_asprintf(
2077 list,
2078 "%s/" ADOUBLE_NAME_PREFIX "*/",
2079 list);
2080 lp_do_parameter(SNUM(handle->conn),
2081 "veto files",
2082 newlist);
2084 } else {
2085 lp_do_parameter(SNUM(handle->conn),
2086 "veto files",
2087 "/" ADOUBLE_NAME_PREFIX "*/");
2090 TALLOC_FREE(list);
2093 if (config->encoding == FRUIT_ENC_NATIVE) {
2094 lp_do_parameter(
2095 SNUM(handle->conn),
2096 "catia:mappings",
2097 "0x01:0xf001,0x02:0xf002,0x03:0xf003,0x04:0xf004,"
2098 "0x05:0xf005,0x06:0xf006,0x07:0xf007,0x08:0xf008,"
2099 "0x09:0xf009,0x0a:0xf00a,0x0b:0xf00b,0x0c:0xf00c,"
2100 "0x0d:0xf00d,0x0e:0xf00e,0x0f:0xf00f,0x10:0xf010,"
2101 "0x11:0xf011,0x12:0xf012,0x13:0xf013,0x14:0xf014,"
2102 "0x15:0xf015,0x16:0xf016,0x17:0xf017,0x18:0xf018,"
2103 "0x19:0xf019,0x1a:0xf01a,0x1b:0xf01b,0x1c:0xf01c,"
2104 "0x1d:0xf01d,0x1e:0xf01e,0x1f:0xf01f,"
2105 "0x22:0xf020,0x2a:0xf021,0x3a:0xf022,0x3c:0xf023,"
2106 "0x3e:0xf024,0x3f:0xf025,0x5c:0xf026,0x7c:0xf027,"
2107 "0x0d:0xf00d");
2110 return rc;
2113 static int fruit_open_meta(vfs_handle_struct *handle,
2114 struct smb_filename *smb_fname,
2115 files_struct *fsp, int flags, mode_t mode)
2117 int rc = 0;
2118 struct fruit_config_data *config = NULL;
2119 struct smb_filename *smb_fname_base = NULL;
2120 int baseflags;
2121 int hostfd = -1;
2122 struct adouble *ad = NULL;
2124 DEBUG(10, ("fruit_open_meta for %s\n", smb_fname_str_dbg(smb_fname)));
2126 SMB_VFS_HANDLE_GET_DATA(handle, config,
2127 struct fruit_config_data, return -1);
2129 if (config->meta == FRUIT_META_STREAM) {
2130 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2133 /* Create an smb_filename with stream_name == NULL. */
2134 smb_fname_base = synthetic_smb_fname(talloc_tos(),
2135 smb_fname->base_name, NULL, NULL);
2137 if (smb_fname_base == NULL) {
2138 errno = ENOMEM;
2139 rc = -1;
2140 goto exit;
2144 * We use baseflags to turn off nasty side-effects when opening the
2145 * underlying file.
2147 baseflags = flags;
2148 baseflags &= ~O_TRUNC;
2149 baseflags &= ~O_EXCL;
2150 baseflags &= ~O_CREAT;
2152 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname_base, fsp,
2153 baseflags, mode);
2156 * It is legit to open a stream on a directory, but the base
2157 * fd has to be read-only.
2159 if ((hostfd == -1) && (errno == EISDIR)) {
2160 baseflags &= ~O_ACCMODE;
2161 baseflags |= O_RDONLY;
2162 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname_base, fsp,
2163 baseflags, mode);
2166 TALLOC_FREE(smb_fname_base);
2168 if (hostfd == -1) {
2169 rc = -1;
2170 goto exit;
2173 if (flags & (O_CREAT | O_TRUNC)) {
2175 * The attribute does not exist or needs to be truncated,
2176 * create an AppleDouble EA
2178 ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2179 handle, ADOUBLE_META, fsp);
2180 if (ad == NULL) {
2181 rc = -1;
2182 goto exit;
2185 rc = ad_write(ad, smb_fname->base_name);
2186 if (rc != 0) {
2187 rc = -1;
2188 goto exit;
2190 } else {
2191 ad = ad_alloc(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2192 handle, ADOUBLE_META, fsp);
2193 if (ad == NULL) {
2194 rc = -1;
2195 goto exit;
2197 if (ad_read(ad, smb_fname->base_name) == -1) {
2198 rc = -1;
2199 goto exit;
2203 exit:
2204 DEBUG(10, ("fruit_open meta rc=%d, fd=%d\n", rc, hostfd));
2205 if (rc != 0) {
2206 int saved_errno = errno;
2207 if (hostfd >= 0) {
2209 * BUGBUGBUG -- we would need to call
2210 * fd_close_posix here, but we don't have a
2211 * full fsp yet
2213 fsp->fh->fd = hostfd;
2214 SMB_VFS_CLOSE(fsp);
2216 hostfd = -1;
2217 errno = saved_errno;
2219 return hostfd;
2222 static int fruit_open_rsrc(vfs_handle_struct *handle,
2223 struct smb_filename *smb_fname,
2224 files_struct *fsp, int flags, mode_t mode)
2226 int rc = 0;
2227 struct fruit_config_data *config = NULL;
2228 struct adouble *ad = NULL;
2229 struct smb_filename *smb_fname_base = NULL;
2230 char *adpath = NULL;
2231 int hostfd = -1;
2233 DEBUG(10, ("fruit_open_rsrc for %s\n", smb_fname_str_dbg(smb_fname)));
2235 SMB_VFS_HANDLE_GET_DATA(handle, config,
2236 struct fruit_config_data, return -1);
2238 switch (config->rsrc) {
2239 case FRUIT_RSRC_STREAM:
2240 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2241 case FRUIT_RSRC_XATTR:
2242 #ifdef HAVE_ATTROPEN
2243 hostfd = attropen(smb_fname->base_name,
2244 AFPRESOURCE_EA_NETATALK, flags, mode);
2245 if (hostfd == -1) {
2246 return -1;
2248 ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2249 handle, ADOUBLE_RSRC, fsp);
2250 if (ad == NULL) {
2251 rc = -1;
2252 goto exit;
2254 goto exit;
2255 #else
2256 errno = ENOTSUP;
2257 return -1;
2258 #endif
2259 default:
2260 break;
2263 if (!(flags & O_CREAT) && !VALID_STAT(smb_fname->st)) {
2264 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
2265 if (rc != 0) {
2266 rc = -1;
2267 goto exit;
2271 if (VALID_STAT(smb_fname->st) && S_ISDIR(smb_fname->st.st_ex_mode)) {
2272 /* sorry, but directories don't habe a resource fork */
2273 rc = -1;
2274 goto exit;
2277 rc = adouble_path(talloc_tos(), smb_fname->base_name, &adpath);
2278 if (rc != 0) {
2279 goto exit;
2282 /* Create an smb_filename with stream_name == NULL. */
2283 smb_fname_base = synthetic_smb_fname(talloc_tos(),
2284 adpath, NULL, NULL);
2285 if (smb_fname_base == NULL) {
2286 errno = ENOMEM;
2287 rc = -1;
2288 goto exit;
2291 /* Sanitize flags */
2292 if (flags & O_WRONLY) {
2293 /* We always need read access for the metadata header too */
2294 flags &= ~O_WRONLY;
2295 flags |= O_RDWR;
2298 hostfd = SMB_VFS_OPEN(handle->conn, smb_fname_base, fsp,
2299 flags, mode);
2300 if (hostfd == -1) {
2301 rc = -1;
2302 goto exit;
2305 /* REVIEW: we need this in ad_write() */
2306 fsp->fh->fd = hostfd;
2308 if (flags & (O_CREAT | O_TRUNC)) {
2309 ad = ad_init(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2310 handle, ADOUBLE_RSRC, fsp);
2311 if (ad == NULL) {
2312 rc = -1;
2313 goto exit;
2315 rc = ad_write(ad, smb_fname->base_name);
2316 if (rc != 0) {
2317 rc = -1;
2318 goto exit;
2320 } else {
2321 ad = ad_alloc(VFS_MEMCTX_FSP_EXTENSION(handle, fsp),
2322 handle, ADOUBLE_RSRC, fsp);
2323 if (ad == NULL) {
2324 rc = -1;
2325 goto exit;
2327 if (ad_read(ad, smb_fname->base_name) == -1) {
2328 rc = -1;
2329 goto exit;
2333 exit:
2335 TALLOC_FREE(adpath);
2336 TALLOC_FREE(smb_fname_base);
2338 DEBUG(10, ("fruit_open resource fork: rc=%d, fd=%d\n", rc, hostfd));
2339 if (rc != 0) {
2340 int saved_errno = errno;
2341 if (hostfd >= 0) {
2343 * BUGBUGBUG -- we would need to call
2344 * fd_close_posix here, but we don't have a
2345 * full fsp yet
2347 fsp->fh->fd = hostfd;
2348 SMB_VFS_CLOSE(fsp);
2350 hostfd = -1;
2351 errno = saved_errno;
2353 return hostfd;
2356 static int fruit_open(vfs_handle_struct *handle,
2357 struct smb_filename *smb_fname,
2358 files_struct *fsp, int flags, mode_t mode)
2360 DEBUG(10, ("fruit_open called for %s\n",
2361 smb_fname_str_dbg(smb_fname)));
2363 if (!is_ntfs_stream_smb_fname(smb_fname)) {
2364 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2367 if (is_afpinfo_stream(smb_fname)) {
2368 return fruit_open_meta(handle, smb_fname, fsp, flags, mode);
2369 } else if (is_afpresource_stream(smb_fname)) {
2370 return fruit_open_rsrc(handle, smb_fname, fsp, flags, mode);
2373 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
2376 static int fruit_rename(struct vfs_handle_struct *handle,
2377 const struct smb_filename *smb_fname_src,
2378 const struct smb_filename *smb_fname_dst)
2380 int rc = -1;
2381 char *src_adouble_path = NULL;
2382 char *dst_adouble_path = NULL;
2383 struct fruit_config_data *config = NULL;
2385 rc = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
2387 if (!VALID_STAT(smb_fname_src->st)
2388 || !S_ISREG(smb_fname_src->st.st_ex_mode)) {
2389 return rc;
2392 SMB_VFS_HANDLE_GET_DATA(handle, config,
2393 struct fruit_config_data, return -1);
2395 if (config->rsrc == FRUIT_RSRC_XATTR) {
2396 return rc;
2399 rc = adouble_path(talloc_tos(), smb_fname_src->base_name,
2400 &src_adouble_path);
2401 if (rc != 0) {
2402 goto done;
2404 rc = adouble_path(talloc_tos(), smb_fname_dst->base_name,
2405 &dst_adouble_path);
2406 if (rc != 0) {
2407 goto done;
2410 DEBUG(10, ("fruit_rename: %s -> %s\n",
2411 src_adouble_path, dst_adouble_path));
2413 rc = rename(src_adouble_path, dst_adouble_path);
2414 if (errno == ENOENT) {
2415 rc = 0;
2418 TALLOC_FREE(src_adouble_path);
2419 TALLOC_FREE(dst_adouble_path);
2421 done:
2422 return rc;
2425 static int fruit_unlink(vfs_handle_struct *handle,
2426 const struct smb_filename *smb_fname)
2428 int rc = -1;
2429 struct fruit_config_data *config = NULL;
2431 SMB_VFS_HANDLE_GET_DATA(handle, config,
2432 struct fruit_config_data, return -1);
2434 if (!is_ntfs_stream_smb_fname(smb_fname)) {
2435 char *adp = NULL;
2437 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
2438 if (rc != 0) {
2439 return -1;
2442 if (config->rsrc != FRUIT_RSRC_ADFILE) {
2443 return 0;
2447 * 0 byte resource fork streams are not listed by
2448 * vfs_streaminfo, as a result stream cleanup/deletion of file
2449 * deletion doesn't remove the resourcefork stream.
2451 rc = adouble_path(talloc_tos(),
2452 smb_fname->base_name, &adp);
2453 if (rc != 0) {
2454 return -1;
2457 /* FIXME: direct unlink(), missing smb_fname */
2458 DBG_DEBUG("fruit_unlink: %s\n", adp);
2459 rc = unlink(adp);
2460 if ((rc == -1) && (errno == ENOENT)) {
2461 rc = 0;
2464 TALLOC_FREE(adp);
2465 return 0;
2468 if (is_afpinfo_stream(smb_fname)) {
2469 if (config->meta == FRUIT_META_STREAM) {
2470 rc = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
2471 } else {
2472 rc = SMB_VFS_REMOVEXATTR(handle->conn,
2473 smb_fname->base_name,
2474 AFPINFO_EA_NETATALK);
2477 return rc;
2480 if (is_afpresource_stream(smb_fname)) {
2481 /* OS X ignores deletes on the AFP_Resource stream */
2482 return 0;
2485 return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
2488 return 0;
2491 static int fruit_chmod(vfs_handle_struct *handle,
2492 const char *path,
2493 mode_t mode)
2495 int rc = -1;
2496 char *adp = NULL;
2497 struct fruit_config_data *config = NULL;
2498 SMB_STRUCT_STAT sb;
2500 rc = SMB_VFS_NEXT_CHMOD(handle, path, mode);
2501 if (rc != 0) {
2502 return rc;
2505 SMB_VFS_HANDLE_GET_DATA(handle, config,
2506 struct fruit_config_data, return -1);
2508 if (config->rsrc == FRUIT_RSRC_XATTR) {
2509 return 0;
2512 /* FIXME: direct sys_lstat(), missing smb_fname */
2513 rc = sys_lstat(path, &sb, false);
2514 if (rc != 0 || !S_ISREG(sb.st_ex_mode)) {
2515 return rc;
2518 rc = adouble_path(talloc_tos(), path, &adp);
2519 if (rc != 0) {
2520 return -1;
2523 DEBUG(10, ("fruit_chmod: %s\n", adp));
2525 rc = SMB_VFS_NEXT_CHMOD(handle, adp, mode);
2526 if (errno == ENOENT) {
2527 rc = 0;
2530 TALLOC_FREE(adp);
2531 return rc;
2534 static int fruit_chown(vfs_handle_struct *handle,
2535 const char *path,
2536 uid_t uid,
2537 gid_t gid)
2539 int rc = -1;
2540 char *adp = NULL;
2541 struct fruit_config_data *config = NULL;
2542 SMB_STRUCT_STAT sb;
2544 rc = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
2545 if (rc != 0) {
2546 return rc;
2549 SMB_VFS_HANDLE_GET_DATA(handle, config,
2550 struct fruit_config_data, return -1);
2552 if (config->rsrc == FRUIT_RSRC_XATTR) {
2553 return rc;
2556 /* FIXME: direct sys_lstat(), missing smb_fname */
2557 rc = sys_lstat(path, &sb, false);
2558 if (rc != 0 || !S_ISREG(sb.st_ex_mode)) {
2559 return rc;
2562 rc = adouble_path(talloc_tos(), path, &adp);
2563 if (rc != 0) {
2564 goto done;
2567 DEBUG(10, ("fruit_chown: %s\n", adp));
2569 rc = SMB_VFS_NEXT_CHOWN(handle, adp, uid, gid);
2570 if (errno == ENOENT) {
2571 rc = 0;
2574 done:
2575 TALLOC_FREE(adp);
2576 return rc;
2579 static int fruit_rmdir(struct vfs_handle_struct *handle, const char *path)
2581 DIR *dh = NULL;
2582 struct dirent *de;
2583 struct fruit_config_data *config;
2585 SMB_VFS_HANDLE_GET_DATA(handle, config,
2586 struct fruit_config_data, return -1);
2588 if (!handle->conn->cwd || !path || (config->rsrc == FRUIT_RSRC_XATTR)) {
2589 goto exit_rmdir;
2593 * Due to there is no way to change bDeleteVetoFiles variable
2594 * from this module, need to clean up ourselves
2596 dh = opendir(path);
2597 if (dh == NULL) {
2598 goto exit_rmdir;
2601 while ((de = readdir(dh)) != NULL) {
2602 if ((strncmp(de->d_name,
2603 ADOUBLE_NAME_PREFIX,
2604 strlen(ADOUBLE_NAME_PREFIX))) == 0) {
2605 char *p = talloc_asprintf(talloc_tos(),
2606 "%s/%s",
2607 path, de->d_name);
2608 if (p == NULL) {
2609 goto exit_rmdir;
2611 DEBUG(10, ("fruit_rmdir: delete %s\n", p));
2612 (void)unlink(p);
2613 TALLOC_FREE(p);
2617 exit_rmdir:
2618 if (dh) {
2619 closedir(dh);
2621 return SMB_VFS_NEXT_RMDIR(handle, path);
2624 static ssize_t fruit_pread(vfs_handle_struct *handle,
2625 files_struct *fsp, void *data,
2626 size_t n, off_t offset)
2628 int rc = 0;
2629 struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
2630 handle, fsp);
2631 struct fruit_config_data *config = NULL;
2632 AfpInfo *ai = NULL;
2633 ssize_t len;
2634 char *name = NULL;
2635 char *tmp_base_name = NULL;
2636 NTSTATUS status;
2638 DEBUG(10, ("fruit_pread: offset=%d, size=%d\n", (int)offset, (int)n));
2640 if (!fsp->base_fsp) {
2641 return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
2644 SMB_VFS_HANDLE_GET_DATA(handle, config,
2645 struct fruit_config_data, return -1);
2647 /* fsp_name is not converted with vfs_catia */
2648 tmp_base_name = fsp->base_fsp->fsp_name->base_name;
2649 status = SMB_VFS_TRANSLATE_NAME(handle->conn,
2650 fsp->base_fsp->fsp_name->base_name,
2651 vfs_translate_to_unix,
2652 talloc_tos(), &name);
2653 if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) {
2654 name = talloc_strdup(talloc_tos(), tmp_base_name);
2655 if (name == NULL) {
2656 rc = -1;
2657 goto exit;
2659 } else if (!NT_STATUS_IS_OK(status)) {
2660 errno = map_errno_from_nt_status(status);
2661 rc = -1;
2662 goto exit;
2664 fsp->base_fsp->fsp_name->base_name = name;
2666 if (ad == NULL) {
2667 len = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
2668 if (len == -1) {
2669 rc = -1;
2670 goto exit;
2672 goto exit;
2675 if (!fruit_fsp_recheck(ad, fsp)) {
2676 rc = -1;
2677 goto exit;
2680 if (ad->ad_type == ADOUBLE_META) {
2681 char afpinfo_buf[AFP_INFO_SIZE];
2682 size_t to_return;
2685 * OS X has a off-by-1 error in the offset calculation, so we're
2686 * bug compatible here. It won't hurt, as any relevant real
2687 * world read requests from the AFP_AfpInfo stream will be
2688 * offset=0 n=60. offset is ignored anyway, see below.
2690 if ((offset < 0) || (offset >= AFP_INFO_SIZE + 1)) {
2691 len = 0;
2692 rc = 0;
2693 goto exit;
2696 to_return = MIN(n, AFP_INFO_SIZE);
2698 ai = afpinfo_new(talloc_tos());
2699 if (ai == NULL) {
2700 rc = -1;
2701 goto exit;
2704 len = ad_read(ad, fsp->base_fsp->fsp_name->base_name);
2705 if (len == -1) {
2706 rc = -1;
2707 goto exit;
2710 memcpy(&ai->afpi_FinderInfo[0],
2711 ad_entry(ad, ADEID_FINDERI),
2712 ADEDLEN_FINDERI);
2713 len = afpinfo_pack(ai, afpinfo_buf);
2714 if (len != AFP_INFO_SIZE) {
2715 rc = -1;
2716 goto exit;
2720 * OS X ignores offset when reading from AFP_AfpInfo stream!
2722 memcpy(data, afpinfo_buf, to_return);
2723 len = to_return;
2724 } else {
2725 len = SMB_VFS_NEXT_PREAD(
2726 handle, fsp, data, n,
2727 offset + ad_getentryoff(ad, ADEID_RFORK));
2728 if (len == -1) {
2729 rc = -1;
2730 goto exit;
2733 exit:
2734 fsp->base_fsp->fsp_name->base_name = tmp_base_name;
2735 TALLOC_FREE(name);
2736 TALLOC_FREE(ai);
2737 if (rc != 0) {
2738 len = -1;
2740 DEBUG(10, ("fruit_pread: rc=%d, len=%zd\n", rc, len));
2741 return len;
2744 static ssize_t fruit_pwrite(vfs_handle_struct *handle,
2745 files_struct *fsp, const void *data,
2746 size_t n, off_t offset)
2748 int rc = 0;
2749 struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
2750 handle, fsp);
2751 struct fruit_config_data *config = NULL;
2752 AfpInfo *ai = NULL;
2753 ssize_t len;
2754 char *name = NULL;
2755 char *tmp_base_name = NULL;
2756 NTSTATUS status;
2758 DEBUG(10, ("fruit_pwrite: offset=%d, size=%d\n", (int)offset, (int)n));
2760 if (!fsp->base_fsp) {
2761 return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
2764 SMB_VFS_HANDLE_GET_DATA(handle, config,
2765 struct fruit_config_data, return -1);
2767 tmp_base_name = fsp->base_fsp->fsp_name->base_name;
2768 status = SMB_VFS_TRANSLATE_NAME(handle->conn,
2769 fsp->base_fsp->fsp_name->base_name,
2770 vfs_translate_to_unix,
2771 talloc_tos(), &name);
2772 if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) {
2773 name = talloc_strdup(talloc_tos(), tmp_base_name);
2774 if (name == NULL) {
2775 rc = -1;
2776 goto exit;
2778 } else if (!NT_STATUS_IS_OK(status)) {
2779 errno = map_errno_from_nt_status(status);
2780 rc = -1;
2781 goto exit;
2783 fsp->base_fsp->fsp_name->base_name = name;
2785 if (ad == NULL) {
2786 len = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
2787 if (len != n) {
2788 rc = -1;
2789 goto exit;
2791 goto exit;
2794 if (!fruit_fsp_recheck(ad, fsp)) {
2795 rc = -1;
2796 goto exit;
2799 if (ad->ad_type == ADOUBLE_META) {
2800 if (n != AFP_INFO_SIZE || offset != 0) {
2801 DEBUG(1, ("unexpected offset=%jd or size=%jd\n",
2802 (intmax_t)offset, (intmax_t)n));
2803 rc = -1;
2804 goto exit;
2806 ai = afpinfo_unpack(talloc_tos(), data);
2807 if (ai == NULL) {
2808 rc = -1;
2809 goto exit;
2811 memcpy(ad_entry(ad, ADEID_FINDERI),
2812 &ai->afpi_FinderInfo[0], ADEDLEN_FINDERI);
2813 if (empty_finderinfo(ad)) {
2814 /* Discard metadata */
2815 if (config->meta == FRUIT_META_STREAM) {
2816 rc = SMB_VFS_FTRUNCATE(fsp, 0);
2817 } else {
2818 rc = SMB_VFS_REMOVEXATTR(handle->conn,
2819 fsp->fsp_name->base_name,
2820 AFPINFO_EA_NETATALK);
2822 if (rc != 0 && errno != ENOENT && errno != ENOATTR) {
2823 DBG_WARNING("Can't delete metadata for %s: %s\n",
2824 fsp->fsp_name->base_name, strerror(errno));
2825 goto exit;
2827 rc = 0;
2828 goto exit;
2830 rc = ad_write(ad, name);
2831 } else {
2832 len = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n,
2833 offset + ad_getentryoff(ad, ADEID_RFORK));
2834 if (len != n) {
2835 rc = -1;
2836 goto exit;
2839 if (config->rsrc == FRUIT_RSRC_ADFILE) {
2840 rc = ad_read(ad, name);
2841 if (rc == -1) {
2842 goto exit;
2844 rc = 0;
2846 if ((len + offset) > ad_getentrylen(ad, ADEID_RFORK)) {
2847 ad_setentrylen(ad, ADEID_RFORK, len + offset);
2848 rc = ad_write(ad, name);
2853 exit:
2854 fsp->base_fsp->fsp_name->base_name = tmp_base_name;
2855 TALLOC_FREE(name);
2856 TALLOC_FREE(ai);
2857 if (rc != 0) {
2858 return -1;
2860 return n;
2864 * Helper to stat/lstat the base file of an smb_fname.
2866 static int fruit_stat_base(vfs_handle_struct *handle,
2867 struct smb_filename *smb_fname,
2868 bool follow_links)
2870 char *tmp_stream_name;
2871 int rc;
2873 tmp_stream_name = smb_fname->stream_name;
2874 smb_fname->stream_name = NULL;
2875 if (follow_links) {
2876 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
2877 } else {
2878 rc = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
2880 smb_fname->stream_name = tmp_stream_name;
2881 return rc;
2884 static int fruit_stat_meta(vfs_handle_struct *handle,
2885 struct smb_filename *smb_fname,
2886 bool follow_links)
2888 struct adouble *ad = NULL;
2890 ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
2891 if (ad == NULL) {
2892 DBG_INFO("fruit_stat_meta %s: %s\n",
2893 smb_fname_str_dbg(smb_fname), strerror(errno));
2894 errno = ENOENT;
2895 return -1;
2897 TALLOC_FREE(ad);
2899 /* Populate the stat struct with info from the base file. */
2900 if (fruit_stat_base(handle, smb_fname, follow_links) == -1) {
2901 return -1;
2903 smb_fname->st.st_ex_size = AFP_INFO_SIZE;
2904 smb_fname->st.st_ex_ino = fruit_inode(&smb_fname->st,
2905 smb_fname->stream_name);
2906 return 0;
2909 static int fruit_stat_rsrc(vfs_handle_struct *handle,
2910 struct smb_filename *smb_fname,
2911 bool follow_links)
2914 struct adouble *ad = NULL;
2916 DEBUG(10, ("fruit_stat_rsrc called for %s\n",
2917 smb_fname_str_dbg(smb_fname)));
2919 ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_RSRC);
2920 if (ad == NULL) {
2921 errno = ENOENT;
2922 return -1;
2925 /* Populate the stat struct with info from the base file. */
2926 if (fruit_stat_base(handle, smb_fname, follow_links) == -1) {
2927 TALLOC_FREE(ad);
2928 return -1;
2931 smb_fname->st.st_ex_size = ad_getentrylen(ad, ADEID_RFORK);
2932 smb_fname->st.st_ex_ino = fruit_inode(&smb_fname->st,
2933 smb_fname->stream_name);
2934 TALLOC_FREE(ad);
2935 return 0;
2938 static int fruit_stat(vfs_handle_struct *handle,
2939 struct smb_filename *smb_fname)
2941 int rc = -1;
2943 DEBUG(10, ("fruit_stat called for %s\n",
2944 smb_fname_str_dbg(smb_fname)));
2946 if (!is_ntfs_stream_smb_fname(smb_fname)
2947 || is_ntfs_default_stream_smb_fname(smb_fname)) {
2948 rc = SMB_VFS_NEXT_STAT(handle, smb_fname);
2949 if (rc == 0) {
2950 update_btime(handle, smb_fname);
2952 return rc;
2956 * Note if lp_posix_paths() is true, we can never
2957 * get here as is_ntfs_stream_smb_fname() is
2958 * always false. So we never need worry about
2959 * not following links here.
2962 if (is_afpinfo_stream(smb_fname)) {
2963 rc = fruit_stat_meta(handle, smb_fname, true);
2964 } else if (is_afpresource_stream(smb_fname)) {
2965 rc = fruit_stat_rsrc(handle, smb_fname, true);
2966 } else {
2967 return SMB_VFS_NEXT_STAT(handle, smb_fname);
2970 if (rc == 0) {
2971 update_btime(handle, smb_fname);
2972 smb_fname->st.st_ex_mode &= ~S_IFMT;
2973 smb_fname->st.st_ex_mode |= S_IFREG;
2974 smb_fname->st.st_ex_blocks =
2975 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
2977 return rc;
2980 static int fruit_lstat(vfs_handle_struct *handle,
2981 struct smb_filename *smb_fname)
2983 int rc = -1;
2985 DEBUG(10, ("fruit_lstat called for %s\n",
2986 smb_fname_str_dbg(smb_fname)));
2988 if (!is_ntfs_stream_smb_fname(smb_fname)
2989 || is_ntfs_default_stream_smb_fname(smb_fname)) {
2990 rc = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
2991 if (rc == 0) {
2992 update_btime(handle, smb_fname);
2994 return rc;
2997 if (is_afpinfo_stream(smb_fname)) {
2998 rc = fruit_stat_meta(handle, smb_fname, false);
2999 } else if (is_afpresource_stream(smb_fname)) {
3000 rc = fruit_stat_rsrc(handle, smb_fname, false);
3001 } else {
3002 return SMB_VFS_NEXT_LSTAT(handle, smb_fname);
3005 if (rc == 0) {
3006 update_btime(handle, smb_fname);
3007 smb_fname->st.st_ex_mode &= ~S_IFMT;
3008 smb_fname->st.st_ex_mode |= S_IFREG;
3009 smb_fname->st.st_ex_blocks =
3010 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1;
3012 return rc;
3015 static int fruit_fstat_meta(vfs_handle_struct *handle,
3016 files_struct *fsp,
3017 SMB_STRUCT_STAT *sbuf)
3019 DEBUG(10, ("fruit_fstat_meta called for %s\n",
3020 smb_fname_str_dbg(fsp->base_fsp->fsp_name)));
3022 /* Populate the stat struct with info from the base file. */
3023 if (fruit_stat_base(handle, fsp->base_fsp->fsp_name, false) == -1) {
3024 return -1;
3026 *sbuf = fsp->base_fsp->fsp_name->st;
3027 sbuf->st_ex_size = AFP_INFO_SIZE;
3028 sbuf->st_ex_ino = fruit_inode(sbuf, fsp->fsp_name->stream_name);
3030 return 0;
3033 static int fruit_fstat_rsrc(vfs_handle_struct *handle, files_struct *fsp,
3034 SMB_STRUCT_STAT *sbuf)
3036 struct fruit_config_data *config;
3037 struct adouble *ad = (struct adouble *)VFS_FETCH_FSP_EXTENSION(
3038 handle, fsp);
3040 DEBUG(10, ("fruit_fstat_rsrc called for %s\n",
3041 smb_fname_str_dbg(fsp->base_fsp->fsp_name)));
3043 SMB_VFS_HANDLE_GET_DATA(handle, config,
3044 struct fruit_config_data, return -1);
3046 if (config->rsrc == FRUIT_RSRC_STREAM) {
3047 return SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
3050 /* Populate the stat struct with info from the base file. */
3051 if (fruit_stat_base(handle, fsp->base_fsp->fsp_name, false) == -1) {
3052 return -1;
3054 *sbuf = fsp->base_fsp->fsp_name->st;
3055 sbuf->st_ex_size = ad_getentrylen(ad, ADEID_RFORK);
3056 sbuf->st_ex_ino = fruit_inode(sbuf, fsp->fsp_name->stream_name);
3058 DEBUG(10, ("fruit_fstat_rsrc %s, size: %zd\n",
3059 smb_fname_str_dbg(fsp->fsp_name),
3060 (ssize_t)sbuf->st_ex_size));
3062 return 0;
3065 static int fruit_fstat(vfs_handle_struct *handle, files_struct *fsp,
3066 SMB_STRUCT_STAT *sbuf)
3068 int rc;
3069 char *name = NULL;
3070 char *tmp_base_name = NULL;
3071 NTSTATUS status;
3072 struct adouble *ad = (struct adouble *)
3073 VFS_FETCH_FSP_EXTENSION(handle, fsp);
3075 DEBUG(10, ("fruit_fstat called for %s\n",
3076 smb_fname_str_dbg(fsp->fsp_name)));
3078 if (fsp->base_fsp) {
3079 tmp_base_name = fsp->base_fsp->fsp_name->base_name;
3080 /* fsp_name is not converted with vfs_catia */
3081 status = SMB_VFS_TRANSLATE_NAME(
3082 handle->conn,
3083 fsp->base_fsp->fsp_name->base_name,
3084 vfs_translate_to_unix,
3085 talloc_tos(), &name);
3087 if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) {
3088 name = talloc_strdup(talloc_tos(), tmp_base_name);
3089 if (name == NULL) {
3090 rc = -1;
3091 goto exit;
3093 } else if (!NT_STATUS_IS_OK(status)) {
3094 errno = map_errno_from_nt_status(status);
3095 rc = -1;
3096 goto exit;
3098 fsp->base_fsp->fsp_name->base_name = name;
3101 if (ad == NULL || fsp->base_fsp == NULL) {
3102 rc = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
3103 goto exit;
3106 if (!fruit_fsp_recheck(ad, fsp)) {
3107 rc = -1;
3108 goto exit;
3111 switch (ad->ad_type) {
3112 case ADOUBLE_META:
3113 rc = fruit_fstat_meta(handle, fsp, sbuf);
3114 break;
3115 case ADOUBLE_RSRC:
3116 rc = fruit_fstat_rsrc(handle, fsp, sbuf);
3117 break;
3118 default:
3119 DEBUG(10, ("fruit_fstat %s: bad type\n",
3120 smb_fname_str_dbg(fsp->fsp_name)));
3121 rc = -1;
3122 goto exit;
3125 if (rc == 0) {
3126 sbuf->st_ex_mode &= ~S_IFMT;
3127 sbuf->st_ex_mode |= S_IFREG;
3128 sbuf->st_ex_blocks = sbuf->st_ex_size / STAT_ST_BLOCKSIZE + 1;
3131 exit:
3132 DEBUG(10, ("fruit_fstat %s, size: %zd\n",
3133 smb_fname_str_dbg(fsp->fsp_name),
3134 (ssize_t)sbuf->st_ex_size));
3135 if (tmp_base_name) {
3136 fsp->base_fsp->fsp_name->base_name = tmp_base_name;
3138 TALLOC_FREE(name);
3139 return rc;
3142 static NTSTATUS fruit_streaminfo(vfs_handle_struct *handle,
3143 struct files_struct *fsp,
3144 const char *fname,
3145 TALLOC_CTX *mem_ctx,
3146 unsigned int *pnum_streams,
3147 struct stream_struct **pstreams)
3149 struct fruit_config_data *config = NULL;
3150 struct smb_filename *smb_fname = NULL;
3151 struct adouble *ad = NULL;
3152 NTSTATUS status;
3154 SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
3155 return NT_STATUS_UNSUCCESSFUL);
3156 DEBUG(10, ("fruit_streaminfo called for %s\n", fname));
3158 smb_fname = synthetic_smb_fname(talloc_tos(), fname, NULL, NULL);
3159 if (smb_fname == NULL) {
3160 return NT_STATUS_NO_MEMORY;
3163 if (config->meta == FRUIT_META_NETATALK) {
3164 ad = ad_get(talloc_tos(), handle,
3165 smb_fname->base_name, ADOUBLE_META);
3166 if (ad && !empty_finderinfo(ad)) {
3167 if (!add_fruit_stream(
3168 mem_ctx, pnum_streams, pstreams,
3169 AFPINFO_STREAM_NAME, AFP_INFO_SIZE,
3170 smb_roundup(handle->conn,
3171 AFP_INFO_SIZE))) {
3172 TALLOC_FREE(ad);
3173 TALLOC_FREE(smb_fname);
3174 return NT_STATUS_NO_MEMORY;
3177 TALLOC_FREE(ad);
3180 if (config->rsrc != FRUIT_RSRC_STREAM) {
3181 ad = ad_get(talloc_tos(), handle, smb_fname->base_name,
3182 ADOUBLE_RSRC);
3183 if (ad && (ad_getentrylen(ad, ADEID_RFORK) > 0)) {
3184 if (!add_fruit_stream(
3185 mem_ctx, pnum_streams, pstreams,
3186 AFPRESOURCE_STREAM_NAME,
3187 ad_getentrylen(ad, ADEID_RFORK),
3188 smb_roundup(handle->conn,
3189 ad_getentrylen(
3190 ad, ADEID_RFORK)))) {
3191 TALLOC_FREE(ad);
3192 TALLOC_FREE(smb_fname);
3193 return NT_STATUS_NO_MEMORY;
3196 TALLOC_FREE(ad);
3199 TALLOC_FREE(smb_fname);
3201 status = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
3202 pnum_streams, pstreams);
3203 if (!NT_STATUS_IS_OK(status)) {
3204 return status;
3207 if (config->meta == FRUIT_META_NETATALK) {
3208 /* Remove the Netatalk xattr from the list */
3209 if (!del_fruit_stream(mem_ctx, pnum_streams, pstreams,
3210 ":" NETATALK_META_XATTR ":$DATA")) {
3211 TALLOC_FREE(ad);
3212 TALLOC_FREE(smb_fname);
3213 return NT_STATUS_NO_MEMORY;
3217 return NT_STATUS_OK;
3220 static int fruit_ntimes(vfs_handle_struct *handle,
3221 const struct smb_filename *smb_fname,
3222 struct smb_file_time *ft)
3224 int rc = 0;
3225 struct adouble *ad = NULL;
3227 if (null_timespec(ft->create_time)) {
3228 goto exit;
3231 DEBUG(10,("set btime for %s to %s\n", smb_fname_str_dbg(smb_fname),
3232 time_to_asc(convert_timespec_to_time_t(ft->create_time))));
3234 ad = ad_get(talloc_tos(), handle, smb_fname->base_name, ADOUBLE_META);
3235 if (ad == NULL) {
3236 goto exit;
3239 ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX,
3240 convert_time_t_to_uint32_t(ft->create_time.tv_sec));
3242 rc = ad_write(ad, smb_fname->base_name);
3244 exit:
3246 TALLOC_FREE(ad);
3247 if (rc != 0) {
3248 DEBUG(1, ("fruit_ntimes: %s\n", smb_fname_str_dbg(smb_fname)));
3249 return -1;
3251 return SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
3254 static int fruit_fallocate(struct vfs_handle_struct *handle,
3255 struct files_struct *fsp,
3256 uint32_t mode,
3257 off_t offset,
3258 off_t len)
3260 struct adouble *ad =
3261 (struct adouble *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
3263 if (ad == NULL) {
3264 return SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
3267 if (!fruit_fsp_recheck(ad, fsp)) {
3268 return -1;
3271 /* Let the pwrite code path handle it. */
3272 errno = ENOSYS;
3273 return -1;
3276 static int fruit_ftruncate_meta(struct vfs_handle_struct *handle,
3277 struct files_struct *fsp,
3278 off_t offset,
3279 struct adouble *ad)
3281 struct fruit_config_data *config;
3283 SMB_VFS_HANDLE_GET_DATA(handle, config,
3284 struct fruit_config_data, return -1);
3286 if (offset > 60) {
3287 DBG_WARNING("ftruncate %s to %jd",
3288 fsp_str_dbg(fsp), (intmax_t)offset);
3289 /* OS X returns NT_STATUS_ALLOTTED_SPACE_EXCEEDED */
3290 errno = EOVERFLOW;
3291 return -1;
3294 DBG_WARNING("ignoring ftruncate %s to %jd",
3295 fsp_str_dbg(fsp), (intmax_t)offset);
3296 /* OS X returns success but does nothing */
3297 return 0;
3300 static int fruit_ftruncate_rsrc(struct vfs_handle_struct *handle,
3301 struct files_struct *fsp,
3302 off_t offset,
3303 struct adouble *ad)
3305 int rc;
3306 struct fruit_config_data *config;
3308 SMB_VFS_HANDLE_GET_DATA(handle, config,
3309 struct fruit_config_data, return -1);
3311 if (config->rsrc == FRUIT_RSRC_XATTR && offset == 0) {
3312 return SMB_VFS_FREMOVEXATTR(fsp,
3313 AFPRESOURCE_EA_NETATALK);
3316 rc = SMB_VFS_NEXT_FTRUNCATE(
3317 handle, fsp,
3318 offset + ad_getentryoff(ad, ADEID_RFORK));
3319 if (rc != 0) {
3320 return -1;
3323 if (config->rsrc == FRUIT_RSRC_ADFILE) {
3324 ad_setentrylen(ad, ADEID_RFORK, offset);
3325 rc = ad_write(ad, NULL);
3326 if (rc != 0) {
3327 return -1;
3329 DEBUG(10, ("fruit_ftruncate_rsrc file %s offset %jd\n",
3330 fsp_str_dbg(fsp), (intmax_t)offset));
3333 return 0;
3336 static int fruit_ftruncate(struct vfs_handle_struct *handle,
3337 struct files_struct *fsp,
3338 off_t offset)
3340 int rc = 0;
3341 struct adouble *ad =
3342 (struct adouble *)VFS_FETCH_FSP_EXTENSION(handle, fsp);
3344 DBG_DEBUG("fruit_ftruncate called for file %s offset %.0f\n",
3345 fsp_str_dbg(fsp), (double)offset);
3347 if (ad == NULL) {
3348 return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
3351 if (!fruit_fsp_recheck(ad, fsp)) {
3352 return -1;
3355 switch (ad->ad_type) {
3356 case ADOUBLE_META:
3357 rc = fruit_ftruncate_meta(handle, fsp, offset, ad);
3358 break;
3360 case ADOUBLE_RSRC:
3361 rc = fruit_ftruncate_rsrc(handle, fsp, offset, ad);
3362 break;
3364 default:
3365 return -1;
3368 return rc;
3371 static NTSTATUS fruit_create_file(vfs_handle_struct *handle,
3372 struct smb_request *req,
3373 uint16_t root_dir_fid,
3374 struct smb_filename *smb_fname,
3375 uint32_t access_mask,
3376 uint32_t share_access,
3377 uint32_t create_disposition,
3378 uint32_t create_options,
3379 uint32_t file_attributes,
3380 uint32_t oplock_request,
3381 struct smb2_lease *lease,
3382 uint64_t allocation_size,
3383 uint32_t private_flags,
3384 struct security_descriptor *sd,
3385 struct ea_list *ea_list,
3386 files_struct **result,
3387 int *pinfo,
3388 const struct smb2_create_blobs *in_context_blobs,
3389 struct smb2_create_blobs *out_context_blobs)
3391 NTSTATUS status;
3392 struct fruit_config_data *config = NULL;
3393 files_struct *fsp = NULL;
3395 status = check_aapl(handle, req, in_context_blobs, out_context_blobs);
3396 if (!NT_STATUS_IS_OK(status)) {
3397 goto fail;
3400 SMB_VFS_HANDLE_GET_DATA(handle, config, struct fruit_config_data,
3401 return NT_STATUS_UNSUCCESSFUL);
3403 status = SMB_VFS_NEXT_CREATE_FILE(
3404 handle, req, root_dir_fid, smb_fname,
3405 access_mask, share_access,
3406 create_disposition, create_options,
3407 file_attributes, oplock_request,
3408 lease,
3409 allocation_size, private_flags,
3410 sd, ea_list, result,
3411 pinfo, in_context_blobs, out_context_blobs);
3412 if (!NT_STATUS_IS_OK(status)) {
3413 return status;
3416 fsp = *result;
3418 if (config->nego_aapl) {
3419 if (config->copyfile_enabled) {
3421 * Set a flag in the fsp. Gets used in
3422 * copychunk to check whether the special
3423 * Apple copyfile semantics for copychunk
3424 * should be allowed in a copychunk request
3425 * with a count of 0.
3427 fsp->aapl_copyfile_supported = true;
3430 if (fsp->is_directory) {
3432 * Enable POSIX directory rename behaviour
3434 fsp->posix_flags |= FSP_POSIX_FLAGS_RENAME;
3439 * If this is a plain open for existing files, opening an 0
3440 * byte size resource fork MUST fail with
3441 * NT_STATUS_OBJECT_NAME_NOT_FOUND.
3443 * Cf the vfs_fruit torture tests in test_rfork_create().
3445 if (is_afpresource_stream(fsp->fsp_name) &&
3446 create_disposition == FILE_OPEN)
3448 if (fsp->fsp_name->st.st_ex_size == 0) {
3449 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
3450 goto fail;
3454 if (is_ntfs_stream_smb_fname(smb_fname)
3455 || fsp->is_directory) {
3456 return status;
3459 if (config->locking == FRUIT_LOCKING_NETATALK) {
3460 status = fruit_check_access(
3461 handle, *result,
3462 access_mask,
3463 map_share_mode_to_deny_mode(share_access, 0));
3464 if (!NT_STATUS_IS_OK(status)) {
3465 goto fail;
3469 return status;
3471 fail:
3472 DEBUG(10, ("fruit_create_file: %s\n", nt_errstr(status)));
3474 if (fsp) {
3475 close_file(req, fsp, ERROR_CLOSE);
3476 *result = fsp = NULL;
3479 return status;
3482 static NTSTATUS fruit_readdir_attr(struct vfs_handle_struct *handle,
3483 const struct smb_filename *fname,
3484 TALLOC_CTX *mem_ctx,
3485 struct readdir_attr_data **pattr_data)
3487 struct fruit_config_data *config = NULL;
3488 struct readdir_attr_data *attr_data;
3489 NTSTATUS status;
3491 SMB_VFS_HANDLE_GET_DATA(handle, config,
3492 struct fruit_config_data,
3493 return NT_STATUS_UNSUCCESSFUL);
3495 if (!config->use_aapl) {
3496 return SMB_VFS_NEXT_READDIR_ATTR(handle, fname, mem_ctx, pattr_data);
3499 DEBUG(10, ("fruit_readdir_attr %s\n", fname->base_name));
3501 *pattr_data = talloc_zero(mem_ctx, struct readdir_attr_data);
3502 if (*pattr_data == NULL) {
3503 return NT_STATUS_UNSUCCESSFUL;
3505 attr_data = *pattr_data;
3506 attr_data->type = RDATTR_AAPL;
3509 * Mac metadata: compressed FinderInfo, resource fork length
3510 * and creation date
3512 status = readdir_attr_macmeta(handle, fname, attr_data);
3513 if (!NT_STATUS_IS_OK(status)) {
3515 * Error handling is tricky: if we return failure from
3516 * this function, the corresponding directory entry
3517 * will to be passed to the client, so we really just
3518 * want to error out on fatal errors.
3520 if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
3521 goto fail;
3526 * UNIX mode
3528 if (config->unix_info_enabled) {
3529 attr_data->attr_data.aapl.unix_mode = fname->st.st_ex_mode;
3533 * max_access
3535 if (!config->readdir_attr_max_access) {
3536 attr_data->attr_data.aapl.max_access = FILE_GENERIC_ALL;
3537 } else {
3538 status = smbd_calculate_access_mask(
3539 handle->conn,
3540 fname,
3541 false,
3542 SEC_FLAG_MAXIMUM_ALLOWED,
3543 &attr_data->attr_data.aapl.max_access);
3544 if (!NT_STATUS_IS_OK(status)) {
3545 goto fail;
3549 return NT_STATUS_OK;
3551 fail:
3552 DEBUG(1, ("fruit_readdir_attr %s, error: %s\n",
3553 fname->base_name, nt_errstr(status)));
3554 TALLOC_FREE(*pattr_data);
3555 return status;
3558 static NTSTATUS fruit_fget_nt_acl(vfs_handle_struct *handle,
3559 files_struct *fsp,
3560 uint32_t security_info,
3561 TALLOC_CTX *mem_ctx,
3562 struct security_descriptor **ppdesc)
3564 NTSTATUS status;
3565 struct security_ace ace;
3566 struct dom_sid sid;
3567 struct fruit_config_data *config;
3569 SMB_VFS_HANDLE_GET_DATA(handle, config,
3570 struct fruit_config_data,
3571 return NT_STATUS_UNSUCCESSFUL);
3573 status = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info,
3574 mem_ctx, ppdesc);
3575 if (!NT_STATUS_IS_OK(status)) {
3576 return status;
3580 * Add MS NFS style ACEs with uid, gid and mode
3582 if (!config->unix_info_enabled) {
3583 return NT_STATUS_OK;
3586 /* MS NFS style mode */
3587 sid_compose(&sid, &global_sid_Unix_NFS_Mode, fsp->fsp_name->st.st_ex_mode);
3588 init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
3589 status = security_descriptor_dacl_add(*ppdesc, &ace);
3590 if (!NT_STATUS_IS_OK(status)) {
3591 DEBUG(1,("failed to add MS NFS style ACE\n"));
3592 return status;
3595 /* MS NFS style uid */
3596 sid_compose(&sid, &global_sid_Unix_NFS_Users, fsp->fsp_name->st.st_ex_uid);
3597 init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
3598 status = security_descriptor_dacl_add(*ppdesc, &ace);
3599 if (!NT_STATUS_IS_OK(status)) {
3600 DEBUG(1,("failed to add MS NFS style ACE\n"));
3601 return status;
3604 /* MS NFS style gid */
3605 sid_compose(&sid, &global_sid_Unix_NFS_Groups, fsp->fsp_name->st.st_ex_gid);
3606 init_sec_ace(&ace, &sid, SEC_ACE_TYPE_ACCESS_DENIED, 0, 0);
3607 status = security_descriptor_dacl_add(*ppdesc, &ace);
3608 if (!NT_STATUS_IS_OK(status)) {
3609 DEBUG(1,("failed to add MS NFS style ACE\n"));
3610 return status;
3613 return NT_STATUS_OK;
3616 static NTSTATUS fruit_fset_nt_acl(vfs_handle_struct *handle,
3617 files_struct *fsp,
3618 uint32_t security_info_sent,
3619 const struct security_descriptor *psd)
3621 NTSTATUS status;
3622 bool do_chmod;
3623 mode_t ms_nfs_mode;
3624 int result;
3626 DBG_DEBUG("fruit_fset_nt_acl: %s\n", fsp_str_dbg(fsp));
3628 status = check_ms_nfs(handle, fsp, psd, &ms_nfs_mode, &do_chmod);
3629 if (!NT_STATUS_IS_OK(status)) {
3630 DEBUG(1, ("fruit_fset_nt_acl: check_ms_nfs failed%s\n", fsp_str_dbg(fsp)));
3631 return status;
3634 status = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
3635 if (!NT_STATUS_IS_OK(status)) {
3636 DEBUG(1, ("fruit_fset_nt_acl: SMB_VFS_NEXT_FSET_NT_ACL failed%s\n", fsp_str_dbg(fsp)));
3637 return status;
3640 if (do_chmod) {
3641 if (fsp->fh->fd != -1) {
3642 result = SMB_VFS_FCHMOD(fsp, ms_nfs_mode);
3643 } else {
3644 result = SMB_VFS_CHMOD(fsp->conn,
3645 fsp->fsp_name->base_name,
3646 ms_nfs_mode);
3649 if (result != 0) {
3650 DEBUG(1, ("chmod: %s, result: %d, %04o error %s\n", fsp_str_dbg(fsp),
3651 result, (unsigned)ms_nfs_mode,
3652 strerror(errno)));
3653 status = map_nt_error_from_unix(errno);
3654 return status;
3658 return NT_STATUS_OK;
3661 struct fruit_copy_chunk_state {
3662 struct vfs_handle_struct *handle;
3663 off_t copied;
3664 struct files_struct *src_fsp;
3665 struct files_struct *dst_fsp;
3666 bool is_copyfile;
3669 static void fruit_copy_chunk_done(struct tevent_req *subreq);
3670 static struct tevent_req *fruit_copy_chunk_send(struct vfs_handle_struct *handle,
3671 TALLOC_CTX *mem_ctx,
3672 struct tevent_context *ev,
3673 struct files_struct *src_fsp,
3674 off_t src_off,
3675 struct files_struct *dest_fsp,
3676 off_t dest_off,
3677 off_t num)
3679 struct tevent_req *req, *subreq;
3680 struct fruit_copy_chunk_state *fruit_copy_chunk_state;
3681 NTSTATUS status;
3682 struct fruit_config_data *config;
3683 off_t to_copy = num;
3685 DEBUG(10,("soff: %ju, doff: %ju, len: %ju\n",
3686 (uintmax_t)src_off, (uintmax_t)dest_off, (uintmax_t)num));
3688 SMB_VFS_HANDLE_GET_DATA(handle, config,
3689 struct fruit_config_data,
3690 return NULL);
3692 req = tevent_req_create(mem_ctx, &fruit_copy_chunk_state,
3693 struct fruit_copy_chunk_state);
3694 if (req == NULL) {
3695 return NULL;
3697 fruit_copy_chunk_state->handle = handle;
3698 fruit_copy_chunk_state->src_fsp = src_fsp;
3699 fruit_copy_chunk_state->dst_fsp = dest_fsp;
3702 * Check if this a OS X copyfile style copychunk request with
3703 * a requested chunk count of 0 that was translated to a
3704 * copy_chunk_send VFS call overloading the parameters src_off
3705 * = dest_off = num = 0.
3707 if ((src_off == 0) && (dest_off == 0) && (num == 0) &&
3708 src_fsp->aapl_copyfile_supported &&
3709 dest_fsp->aapl_copyfile_supported)
3711 status = vfs_stat_fsp(src_fsp);
3712 if (tevent_req_nterror(req, status)) {
3713 return tevent_req_post(req, ev);
3716 to_copy = src_fsp->fsp_name->st.st_ex_size;
3717 fruit_copy_chunk_state->is_copyfile = true;
3720 subreq = SMB_VFS_NEXT_COPY_CHUNK_SEND(handle,
3721 mem_ctx,
3723 src_fsp,
3724 src_off,
3725 dest_fsp,
3726 dest_off,
3727 to_copy);
3728 if (tevent_req_nomem(subreq, req)) {
3729 return tevent_req_post(req, ev);
3732 tevent_req_set_callback(subreq, fruit_copy_chunk_done, req);
3733 return req;
3736 static void fruit_copy_chunk_done(struct tevent_req *subreq)
3738 struct tevent_req *req = tevent_req_callback_data(
3739 subreq, struct tevent_req);
3740 struct fruit_copy_chunk_state *state = tevent_req_data(
3741 req, struct fruit_copy_chunk_state);
3742 NTSTATUS status;
3743 unsigned int num_streams = 0;
3744 struct stream_struct *streams = NULL;
3745 int i;
3746 struct smb_filename *src_fname_tmp = NULL;
3747 struct smb_filename *dst_fname_tmp = NULL;
3749 status = SMB_VFS_NEXT_COPY_CHUNK_RECV(state->handle,
3750 subreq,
3751 &state->copied);
3752 TALLOC_FREE(subreq);
3753 if (tevent_req_nterror(req, status)) {
3754 return;
3757 if (!state->is_copyfile) {
3758 tevent_req_done(req);
3759 return;
3763 * Now copy all reamining streams. We know the share supports
3764 * streams, because we're in vfs_fruit. We don't do this async
3765 * because streams are few and small.
3767 status = vfs_streaminfo(state->handle->conn, NULL,
3768 state->src_fsp->fsp_name->base_name,
3769 req, &num_streams, &streams);
3770 if (tevent_req_nterror(req, status)) {
3771 return;
3774 if (num_streams == 1) {
3775 /* There is always one stream, ::$DATA. */
3776 tevent_req_done(req);
3777 return;
3780 for (i = 0; i < num_streams; i++) {
3781 DEBUG(10, ("%s: stream: '%s'/%ju\n",
3782 __func__, streams[i].name,
3783 (uintmax_t)streams[i].size));
3785 src_fname_tmp = synthetic_smb_fname(
3786 req,
3787 state->src_fsp->fsp_name->base_name,
3788 streams[i].name,
3789 NULL);
3790 if (tevent_req_nomem(src_fname_tmp, req)) {
3791 return;
3794 if (is_ntfs_default_stream_smb_fname(src_fname_tmp)) {
3795 TALLOC_FREE(src_fname_tmp);
3796 continue;
3799 dst_fname_tmp = synthetic_smb_fname(
3800 req,
3801 state->dst_fsp->fsp_name->base_name,
3802 streams[i].name,
3803 NULL);
3804 if (tevent_req_nomem(dst_fname_tmp, req)) {
3805 TALLOC_FREE(src_fname_tmp);
3806 return;
3809 status = copy_file(req,
3810 state->handle->conn,
3811 src_fname_tmp,
3812 dst_fname_tmp,
3813 OPENX_FILE_CREATE_IF_NOT_EXIST,
3814 0, false);
3815 if (!NT_STATUS_IS_OK(status)) {
3816 DEBUG(1, ("%s: copy %s to %s failed: %s\n", __func__,
3817 smb_fname_str_dbg(src_fname_tmp),
3818 smb_fname_str_dbg(dst_fname_tmp),
3819 nt_errstr(status)));
3820 TALLOC_FREE(src_fname_tmp);
3821 TALLOC_FREE(dst_fname_tmp);
3822 tevent_req_nterror(req, status);
3823 return;
3826 TALLOC_FREE(src_fname_tmp);
3827 TALLOC_FREE(dst_fname_tmp);
3830 TALLOC_FREE(streams);
3831 TALLOC_FREE(src_fname_tmp);
3832 TALLOC_FREE(dst_fname_tmp);
3833 tevent_req_done(req);
3836 static NTSTATUS fruit_copy_chunk_recv(struct vfs_handle_struct *handle,
3837 struct tevent_req *req,
3838 off_t *copied)
3840 struct fruit_copy_chunk_state *fruit_copy_chunk_state = tevent_req_data(
3841 req, struct fruit_copy_chunk_state);
3842 NTSTATUS status;
3844 if (tevent_req_is_nterror(req, &status)) {
3845 DEBUG(1, ("server side copy chunk failed: %s\n",
3846 nt_errstr(status)));
3847 *copied = 0;
3848 tevent_req_received(req);
3849 return status;
3852 *copied = fruit_copy_chunk_state->copied;
3853 tevent_req_received(req);
3855 return NT_STATUS_OK;
3858 static struct vfs_fn_pointers vfs_fruit_fns = {
3859 .connect_fn = fruit_connect,
3861 /* File operations */
3862 .chmod_fn = fruit_chmod,
3863 .chown_fn = fruit_chown,
3864 .unlink_fn = fruit_unlink,
3865 .rename_fn = fruit_rename,
3866 .rmdir_fn = fruit_rmdir,
3867 .open_fn = fruit_open,
3868 .pread_fn = fruit_pread,
3869 .pwrite_fn = fruit_pwrite,
3870 .stat_fn = fruit_stat,
3871 .lstat_fn = fruit_lstat,
3872 .fstat_fn = fruit_fstat,
3873 .streaminfo_fn = fruit_streaminfo,
3874 .ntimes_fn = fruit_ntimes,
3875 .ftruncate_fn = fruit_ftruncate,
3876 .fallocate_fn = fruit_fallocate,
3877 .create_file_fn = fruit_create_file,
3878 .readdir_attr_fn = fruit_readdir_attr,
3879 .copy_chunk_send_fn = fruit_copy_chunk_send,
3880 .copy_chunk_recv_fn = fruit_copy_chunk_recv,
3882 /* NT ACL operations */
3883 .fget_nt_acl_fn = fruit_fget_nt_acl,
3884 .fset_nt_acl_fn = fruit_fset_nt_acl,
3887 NTSTATUS vfs_fruit_init(void);
3888 NTSTATUS vfs_fruit_init(void)
3890 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "fruit",
3891 &vfs_fruit_fns);
3892 if (!NT_STATUS_IS_OK(ret)) {
3893 return ret;
3896 vfs_fruit_debug_level = debug_add_class("fruit");
3897 if (vfs_fruit_debug_level == -1) {
3898 vfs_fruit_debug_level = DBGC_VFS;
3899 DEBUG(0, ("%s: Couldn't register custom debugging class!\n",
3900 "vfs_fruit_init"));
3901 } else {
3902 DEBUG(10, ("%s: Debug class number of '%s': %d\n",
3903 "vfs_fruit_init","fruit",vfs_fruit_debug_level));
3906 return ret;