]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
14f2caa4b87721ec02f34e47765b9e22e466bec9
[netatalk.git] / libatalk / adouble / ad_open.c
1 /*
2  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu)
3  * Copyright (c) 1990,1991 Regents of The University of Michigan.
4  * Copyright (c) 2010 Frank Lahm
5  *
6  * All Rights Reserved.
7  *
8  * Permission to use, copy, modify, and distribute this software and
9  * its documentation for any purpose and without fee is hereby granted,
10  * provided that the above copyright notice appears in all copies and
11  * that both that copyright notice and this permission notice appear
12  * in supporting documentation, and that the name of The University
13  * of Michigan not be used in advertising or publicity pertaining to
14  * distribution of the software without specific, written prior
15  * permission. This software is supplied as is without expressed or
16  * implied warranties of any kind.
17  *
18  *  Research Systems Unix Group
19  *  The University of Michigan
20  *  c/o Mike Clark
21  *  535 W. William Street
22  *  Ann Arbor, Michigan
23  *  +1-313-763-0525
24  *  netatalk@itd.umich.edu
25  *
26  */
27
28 /*!
29  * @file
30  * Part of Netatalk's AppleDouble implementatation
31  * @sa include/atalk/adouble.h
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif /* HAVE_CONFIG_H */
37
38 #include <errno.h>
39 #include <sys/param.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <stdarg.h>
43 #include <arpa/inet.h>
44
45 #include <atalk/logger.h>
46 #include <atalk/adouble.h>
47 #include <atalk/util.h>
48 #include <atalk/unix.h>
49 #include <atalk/ea.h>
50 #include <atalk/bstrlib.h>
51 #include <atalk/bstradd.h>
52 #include <atalk/compat.h>
53 #include <atalk/errchk.h>
54 #include <atalk/volume.h>
55
56 #include "ad_lock.h"
57
58 #define ADEDOFF_MAGIC        (0)
59 #define ADEDOFF_VERSION      (ADEDOFF_MAGIC + ADEDLEN_MAGIC)
60 #define ADEDOFF_FILLER       (ADEDOFF_VERSION + ADEDLEN_VERSION)
61 #define ADEDOFF_NENTRIES     (ADEDOFF_FILLER + ADEDLEN_FILLER)
62
63 /* initial lengths of some of the fields */
64 #define ADEDLEN_INIT     0
65
66 /* i stick things in a slightly different order than their eid order in
67  * case i ever want to separate RootInfo behaviour from the rest of the
68  * stuff. */
69
70 /* ad:v2 */
71 #define ADEDOFF_NAME_V2      (AD_HEADER_LEN + ADEID_NUM_V2*AD_ENTRY_LEN)
72 #define ADEDOFF_COMMENT_V2   (ADEDOFF_NAME_V2 + ADEDLEN_NAME)
73 #define ADEDOFF_FILEDATESI   (ADEDOFF_COMMENT_V2 + ADEDLEN_COMMENT)
74 #define ADEDOFF_FINDERI_V2   (ADEDOFF_FILEDATESI + ADEDLEN_FILEDATESI)
75 #define ADEDOFF_DID          (ADEDOFF_FINDERI_V2 + ADEDLEN_FINDERI)
76 #define ADEDOFF_AFPFILEI     (ADEDOFF_DID + ADEDLEN_DID)
77 #define ADEDOFF_SHORTNAME    (ADEDOFF_AFPFILEI + ADEDLEN_AFPFILEI)
78 #define ADEDOFF_PRODOSFILEI  (ADEDOFF_SHORTNAME + ADEDLEN_SHORTNAME)
79 #define ADEDOFF_PRIVDEV      (ADEDOFF_PRODOSFILEI + ADEDLEN_PRODOSFILEI)
80 #define ADEDOFF_PRIVINO      (ADEDOFF_PRIVDEV + ADEDLEN_PRIVDEV)
81 #define ADEDOFF_PRIVSYN      (ADEDOFF_PRIVINO + ADEDLEN_PRIVINO)
82 #define ADEDOFF_PRIVID       (ADEDOFF_PRIVSYN + ADEDLEN_PRIVSYN)
83 #define ADEDOFF_RFORK_V2     (ADEDOFF_PRIVID + ADEDLEN_PRIVID)
84
85 /* ad:ea */
86 #define ADEDOFF_FINDERI_EA    (AD_HEADER_LEN + ADEID_NUM_EA * AD_ENTRY_LEN)
87 #define ADEDOFF_COMMENT_EA    (ADEDOFF_FINDERI_EA    + ADEDLEN_FINDERI)
88 #define ADEDOFF_FILEDATESI_EA (ADEDOFF_COMMENT_EA    + ADEDLEN_COMMENT)
89 #define ADEDOFF_AFPFILEI_EA   (ADEDOFF_FILEDATESI_EA + ADEDLEN_FILEDATESI)
90 #define ADEDOFF_PRIVDEV_EA    (ADEDOFF_AFPFILEI_EA   + ADEDLEN_AFPFILEI)
91 #define ADEDOFF_PRIVINO_EA    (ADEDOFF_PRIVDEV_EA    + ADEDLEN_PRIVDEV)
92 #define ADEDOFF_PRIVSYN_EA    (ADEDOFF_PRIVINO_EA    + ADEDLEN_PRIVINO)
93 #define ADEDOFF_PRIVID_EA     (ADEDOFF_PRIVSYN_EA    + ADEDLEN_PRIVSYN)
94
95 /* this is to prevent changing timezones from causing problems with
96    localtime volumes. the screw-up is 30 years. we use a delta of 5 years */
97 #define TIMEWARP_DELTA 157680000
98
99 struct entry {
100     uint32_t id, offset, len;
101 };
102
103 /* --------------------------- */
104 static uid_t default_uid = -1;
105
106 /* Forward declarations */
107 static int ad_mkrf(const char *path);
108 static int ad_header_read(const char *path, struct adouble *ad, const struct stat *hst);
109 static int ad_header_upgrade(struct adouble *ad, const char *name);
110
111 #ifdef HAVE_EAFD
112 static int ad_mkrf_ea(const char *path);
113 #endif
114 static int ad_header_read_ea(const char *path, struct adouble *ad, const struct stat *hst);
115 static int ad_header_upgrade_ea(struct adouble *ad, const char *name);
116 off_t ad_reso_size(const char *path, int adflags, struct adouble *ad);
117 static int ad_mkrf_osx(const char *path);
118
119
120 static struct adouble_fops ad_adouble = {
121     &ad_path,
122     &ad_mkrf,
123     &ad_rebuild_adouble_header_v2,
124     &ad_header_read,
125     &ad_header_upgrade,
126 };
127
128 static struct adouble_fops ad_adouble_ea = {
129 #ifdef HAVE_EAFD
130     &ad_path_ea,
131     &ad_mkrf_ea,
132 #else
133     &ad_path_osx,
134     &ad_mkrf_osx,
135 #endif
136     &ad_rebuild_adouble_header_ea,
137     &ad_header_read_ea,
138     &ad_header_upgrade_ea,
139 };
140
141 static const struct entry entry_order2[ADEID_NUM_V2 + 1] = {
142     {ADEID_NAME,        ADEDOFF_NAME_V2,     ADEDLEN_INIT},
143     {ADEID_COMMENT,     ADEDOFF_COMMENT_V2,  ADEDLEN_INIT},
144     {ADEID_FILEDATESI,  ADEDOFF_FILEDATESI,  ADEDLEN_FILEDATESI},
145     {ADEID_FINDERI,     ADEDOFF_FINDERI_V2,  ADEDLEN_FINDERI},
146     {ADEID_DID,         ADEDOFF_DID,         ADEDLEN_DID},
147     {ADEID_AFPFILEI,    ADEDOFF_AFPFILEI,    ADEDLEN_AFPFILEI},
148     {ADEID_SHORTNAME,   ADEDOFF_SHORTNAME,   ADEDLEN_INIT},
149     {ADEID_PRODOSFILEI, ADEDOFF_PRODOSFILEI, ADEDLEN_PRODOSFILEI},
150     {ADEID_PRIVDEV,     ADEDOFF_PRIVDEV,     ADEDLEN_INIT},
151     {ADEID_PRIVINO,     ADEDOFF_PRIVINO,     ADEDLEN_INIT},
152     {ADEID_PRIVSYN,     ADEDOFF_PRIVSYN,     ADEDLEN_INIT},
153     {ADEID_PRIVID,      ADEDOFF_PRIVID,      ADEDLEN_INIT},
154     {ADEID_RFORK,       ADEDOFF_RFORK_V2,    ADEDLEN_INIT},
155     {0, 0, 0}
156 };
157
158 /* Using Extended Attributes */
159 static const struct entry entry_order_ea[ADEID_NUM_EA + 1] = {
160     {ADEID_FINDERI,    ADEDOFF_FINDERI_EA,    ADEDLEN_FINDERI},
161     {ADEID_COMMENT,    ADEDOFF_COMMENT_EA,    ADEDLEN_INIT},
162     {ADEID_FILEDATESI, ADEDOFF_FILEDATESI_EA, ADEDLEN_FILEDATESI},
163     {ADEID_AFPFILEI,   ADEDOFF_AFPFILEI_EA,   ADEDLEN_AFPFILEI},
164     {ADEID_PRIVDEV,    ADEDOFF_PRIVDEV_EA,    ADEDLEN_INIT},
165     {ADEID_PRIVINO,    ADEDOFF_PRIVINO_EA,    ADEDLEN_INIT},
166     {ADEID_PRIVSYN,    ADEDOFF_PRIVSYN_EA,    ADEDLEN_INIT},
167     {ADEID_PRIVID,     ADEDOFF_PRIVID_EA,     ADEDLEN_INIT},
168     {0, 0, 0}
169 };
170
171 #define ADFLAGS2LOGSTRBUFSIZ 128
172 const char *adflags2logstr(int adflags)
173 {
174     int first = 1;
175     static char buf[ADFLAGS2LOGSTRBUFSIZ];
176
177     buf[0] = 0;
178
179     if (adflags & ADFLAGS_DF) {
180         strlcat(buf, "DF", ADFLAGS2LOGSTRBUFSIZ);
181         first = 0;
182     }
183     if (adflags & ADFLAGS_RF) {
184         if (!first)
185             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
186         strlcat(buf, "RF", ADFLAGS2LOGSTRBUFSIZ);
187         first = 0;
188     }
189     if (adflags & ADFLAGS_NORF) {
190         if (!first)
191             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
192         strlcat(buf, "NORF", ADFLAGS2LOGSTRBUFSIZ);
193         first = 0;
194     }
195     if (adflags & ADFLAGS_HF) {
196         if (!first)
197             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
198         strlcat(buf, "HF", ADFLAGS2LOGSTRBUFSIZ);
199         first = 0;
200     }
201     if (adflags & ADFLAGS_NOHF) {
202         if (!first)
203             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
204         strlcat(buf, "NOHF", ADFLAGS2LOGSTRBUFSIZ);
205         first = 0;
206     }
207     if (adflags & ADFLAGS_DIR) {
208         if (!first)
209             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
210         strlcat(buf, "DIR", ADFLAGS2LOGSTRBUFSIZ);
211         first = 0;
212     }
213     if (adflags & ADFLAGS_CHECK_OF) {
214         if (!first)
215             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
216         strlcat(buf, "OF", ADFLAGS2LOGSTRBUFSIZ);
217         first = 0;
218     }
219     if (adflags & ADFLAGS_SETSHRMD) {
220         if (!first)
221             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
222         strlcat(buf, "SHRMD", ADFLAGS2LOGSTRBUFSIZ);
223         first = 0;
224     }
225     if (adflags & ADFLAGS_RDWR) {
226         if (!first)
227             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
228         strlcat(buf, "O_RDWR", ADFLAGS2LOGSTRBUFSIZ);
229         first = 0;
230     }
231     if (adflags & ADFLAGS_RDONLY) {
232         if (!first)
233             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
234         strlcat(buf, "O_RDONLY", ADFLAGS2LOGSTRBUFSIZ);
235         first = 0;
236     }
237     if (adflags & ADFLAGS_CREATE) {
238         if (!first)
239             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
240         strlcat(buf, "O_CREAT", ADFLAGS2LOGSTRBUFSIZ);
241         first = 0;
242     }
243     if (adflags & ADFLAGS_EXCL) {
244         if (!first)
245             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
246         strlcat(buf, "O_EXCL", ADFLAGS2LOGSTRBUFSIZ);
247         first = 0;
248     }
249     if (adflags & ADFLAGS_TRUNC) {
250         if (!first)
251             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
252         strlcat(buf, "O_TRUNC", ADFLAGS2LOGSTRBUFSIZ);
253         first = 0;
254     }
255
256     return buf;
257 }
258
259 #define OPENFLAGS2LOGSTRBUFSIZ 128
260 const char *openflags2logstr(int oflags)
261 {
262     int first = 1;
263     static char buf[OPENFLAGS2LOGSTRBUFSIZ];
264
265     buf[0] = 0;
266
267     if ((oflags & O_RDONLY) || (oflags == O_RDONLY)) {
268         strlcat(buf, "O_RDONLY", OPENFLAGS2LOGSTRBUFSIZ);
269         first = 0;
270     }
271     if (oflags & O_RDWR) {
272         if (!first)
273             strlcat(buf, "|", OPENFLAGS2LOGSTRBUFSIZ);
274         strlcat(buf, "O_RDWR", OPENFLAGS2LOGSTRBUFSIZ);
275         first = 0;
276     }
277     if (oflags & O_CREAT) {
278         if (!first)
279             strlcat(buf, "|", OPENFLAGS2LOGSTRBUFSIZ);
280         strlcat(buf, "O_CREAT", OPENFLAGS2LOGSTRBUFSIZ);
281         first = 0;
282     }
283     if (oflags & O_TRUNC) {
284         if (!first)
285             strlcat(buf, "|", OPENFLAGS2LOGSTRBUFSIZ);
286         strlcat(buf, "O_TRUNC", OPENFLAGS2LOGSTRBUFSIZ);
287         first = 0;
288     }
289     if (oflags & O_EXCL) {
290         if (!first)
291             strlcat(buf, "|", OPENFLAGS2LOGSTRBUFSIZ);
292         strlcat(buf, "O_EXCL", OPENFLAGS2LOGSTRBUFSIZ);
293         first = 0;
294     }
295     return buf;
296 }    
297
298 static uint32_t get_eid(uint32_t eid)
299 {
300     if (eid <= 15)
301         return eid;
302     if (eid == AD_DEV)
303         return ADEID_PRIVDEV;
304     if (eid == AD_INO)
305         return ADEID_PRIVINO;
306     if (eid == AD_SYN)
307         return ADEID_PRIVSYN;
308     if (eid == AD_ID)
309         return ADEID_PRIVID;
310
311     return 0;
312 }
313
314
315 /**
316  * Initialize offset pointers
317  */
318 int ad_init_offsets(struct adouble *ad)
319 {
320     const struct entry  *eid;
321
322     if (ad->ad_magic == AD_MAGIC)
323         return 0;
324
325     ad->ad_magic = AD_MAGIC;
326     ad->ad_version = ad->ad_vers & 0x0f0000;
327     if (!ad->ad_version) {
328         ad->ad_version = AD_VERSION;
329     }
330
331     memset(ad->ad_data, 0, sizeof(ad->ad_data));
332
333     if (ad->ad_vers == AD_VERSION2)
334         eid = entry_order2;
335     else if (ad->ad_vers == AD_VERSION_EA)
336         eid = entry_order_ea;
337     else
338         return -1;
339
340     while (eid->id) {
341         ad->ad_eid[eid->id].ade_off = eid->offset;
342         ad->ad_eid[eid->id].ade_len = eid->len;
343         eid++;
344     }
345
346     return 0;
347 }
348
349 /* ----------------------------------- */
350 static int new_ad_header(struct adouble *ad, const char *path, struct stat *stp, int adflags)
351 {
352     const struct entry  *eid;
353     uint16_t            ashort;
354     struct stat         st;
355
356     LOG(log_debug, logtype_ad, "new_ad_header(\"%s\")", path);
357
358     if (ad_init_offsets(ad) != 0)
359         return -1;
360
361     /* set default creator/type fields */
362     memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRTYPEOFF,"\0\0\0\0", 4);
363     memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRCREATOFF,"\0\0\0\0", 4);
364
365     /* make things invisible */
366     if ((ad->ad_options & ADVOL_INVDOTS)
367         && (*path == '.')
368         && !((adflags & ADFLAGS_DIR) && (path[1] == 0))
369         ) {
370         ashort = htons(ATTRBIT_INVISIBLE);
371         ad_setattr(ad, ashort);
372         ashort = htons(FINDERINFO_INVISIBLE);
373         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF, &ashort, sizeof(ashort));
374     }
375
376     /* put something sane in the date fields */
377     if (stp == NULL) {
378         stp = &st;
379         if (lstat(path, &st) != 0)
380             return -1;
381     }
382     ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, stp->st_mtime);
383     ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, stp->st_mtime);
384     ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, stp->st_mtime);
385     ad_setdate(ad, AD_DATE_BACKUP, AD_DATE_START);
386
387     return 0;
388 }
389
390 /**
391  * Read an AppleDouble buffer, returns 0 on success, -1 if an entry was malformatted
392  **/
393 static int parse_entries(struct adouble *ad, char *buf, uint16_t nentries)
394 {
395     uint32_t   eid, len, off;
396     int        ret = 0;
397
398     /* now, read in the entry bits */
399     for (; nentries > 0; nentries-- ) {
400         memcpy(&eid, buf, sizeof( eid ));
401         eid = get_eid(ntohl(eid));
402         buf += sizeof( eid );
403         memcpy(&off, buf, sizeof( off ));
404         off = ntohl( off );
405         buf += sizeof( off );
406         memcpy(&len, buf, sizeof( len ));
407         len = ntohl( len );
408         buf += sizeof( len );
409
410         ad->ad_eid[eid].ade_off = off;
411         ad->ad_eid[eid].ade_len = len;
412
413         if (!eid
414             || eid > ADEID_MAX
415             || off >= sizeof(ad->ad_data)
416             || ((eid != ADEID_RFORK) && (off + len >  sizeof(ad->ad_data))))
417         {
418             ret = -1;
419             LOG(log_warning, logtype_ad, "parse_entries: bogus eid: %u, off: %u, len: %u",
420                 (uint)eid, (uint)off, (uint)len);
421         }
422     }
423
424     return ret;
425 }
426
427 /* this reads enough of the header so that we can figure out all of
428  * the entry lengths and offsets. once that's done, we just read/mmap
429  * the rest of the header in.
430  *
431  * NOTE: we're assuming that the resource fork is kept at the end of
432  *       the file. also, mmapping won't work for the hfs fs until it
433  *       understands how to mmap header files. */
434 static int ad_header_read(const char *path, struct adouble *ad, const struct stat *hst)
435 {
436     char                *buf = ad->ad_data;
437     uint16_t            nentries;
438     int                 len;
439     ssize_t             header_len;
440     struct stat         st;
441
442     /* read the header */
443     if ((header_len = adf_pread( ad->ad_mdp, buf, AD_DATASZ2, 0)) < 0) {
444         return -1;
445     }
446     if (header_len < AD_HEADER_LEN) {
447         errno = EIO;
448         return -1;
449     }
450
451     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
452     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
453     ad->ad_magic = ntohl( ad->ad_magic );
454     ad->ad_version = ntohl( ad->ad_version );
455
456     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
457         LOG(log_error, logtype_ad, "ad_open: can't parse AppleDouble header.");
458         errno = EIO;
459         return -1;
460     }
461
462     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
463     nentries = ntohs( nentries );
464
465     /* read in all the entry headers. if we have more than the
466      * maximum, just hope that the rfork is specified early on. */
467     len = nentries*AD_ENTRY_LEN;
468
469     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
470         len = sizeof(ad->ad_data) - AD_HEADER_LEN;
471
472     buf += AD_HEADER_LEN;
473     if (len > header_len - AD_HEADER_LEN) {
474         LOG(log_error, logtype_ad, "ad_header_read: can't read entry info.");
475         errno = EIO;
476         return -1;
477     }
478
479     /* figure out all of the entry offsets and lengths. if we aren't
480      * able to read a resource fork entry, bail. */
481     nentries = len / AD_ENTRY_LEN;
482     if (parse_entries(ad, buf, nentries) != 0) {
483         LOG(log_warning, logtype_ad, "ad_header_read(%s): malformed AppleDouble",
484             path ? fullpathname(path) : "");
485         errno = EIO;
486         return -1;
487     }
488     if (!ad_getentryoff(ad, ADEID_RFORK)
489         || (ad_getentryoff(ad, ADEID_RFORK) > sizeof(ad->ad_data))
490         ) {
491         LOG(log_error, logtype_ad, "ad_header_read: problem with rfork entry offset.");
492         errno = EIO;
493         return -1;
494     }
495
496     if (ad_getentryoff(ad, ADEID_RFORK) > header_len) {
497         LOG(log_error, logtype_ad, "ad_header_read: can't read in entries.");
498         errno = EIO;
499         return -1;
500     }
501
502     if (hst == NULL) {
503         hst = &st;
504         if (fstat(ad->ad_mdp->adf_fd, &st) < 0) {
505             return 1; /* fail silently */
506         }
507     }
508
509     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
510
511     return 0;
512 }
513
514 /* error here means it's not ad ._ adouble:osx file and thus we return 1 */
515 int ad_valid_header_osx(const char *path)
516 {
517     EC_INIT;
518     int fd = -1;
519     struct adouble      adosx;
520     char                *buf = &adosx.ad_data[0];
521     ssize_t             header_len;
522
523     LOG(log_debug, logtype_ad, "ad_valid_header_osx(\"%s\"): BEGIN", fullpathname(path));
524
525     EC_NEG1( fd = open(path, O_RDONLY) );
526
527     /* read the header */
528     EC_NEG1( header_len = read(fd, buf, AD_DATASZ_OSX) );
529
530     if (header_len < AD_HEADER_LEN)
531         EC_FAIL;
532
533     memcpy(&adosx.ad_magic, buf, sizeof(adosx.ad_magic));
534     memcpy(&adosx.ad_version, buf + ADEDOFF_VERSION, sizeof(adosx.ad_version));
535     adosx.ad_magic = ntohl(adosx.ad_magic);
536     adosx.ad_version = ntohl(adosx.ad_version);
537
538     if ((adosx.ad_magic != AD_MAGIC) || (adosx.ad_version != AD_VERSION2)) {
539         LOG(log_warning, logtype_ad, "ad_valid_header_osx(\"%s\"): not an adouble:osx file", fullpathname(path));
540         EC_FAIL;
541     }
542
543     if (strncmp(buf + ADEDOFF_FILLER,
544                 AD_FILLER_NETATALK,
545                 strlen(AD_FILLER_NETATALK)) != 0)
546         /*
547          * It's a split fork created by OS X, it's not our "own" ._ file
548          * and thus not a valid header in this context.
549          * We allow enumeration and access.
550          */
551         EC_FAIL;
552
553 EC_CLEANUP:
554     LOG(log_debug, logtype_ad, "ad_valid_header_osx(\"%s\"): END: %d", fullpathname(path), ret);
555     if (fd != -1)
556         close(fd);
557     if (ret != 0)
558         return 1;
559     return 0;
560 }
561
562 /**
563  * Convert from Apple's ._ file to Netatalk
564  *
565  * Apple's AppleDouble may contain a FinderInfo entry longer then 32 bytes
566  * containing packed xattrs. Netatalk can't deal with that, so we
567  * simply discard the packed xattrs.
568  *
569  * As we call ad_open() which might result in a recursion, just to be sure
570  * use static variable in_conversion to check for that.
571  *
572  * Returns -1 in case an error occured, 0 if no conversion was done, 1 otherwise
573  **/
574 static int ad_convert_osx(const char *path, struct adouble *ad)
575 {
576     EC_INIT;
577     static bool in_conversion = false;
578     char *map;
579     int finderlen = ad_getentrylen(ad, ADEID_FINDERI);
580     ssize_t origlen;
581
582     if (in_conversion || finderlen == ADEDLEN_FINDERI)
583         return 0;
584     in_conversion = true;
585
586     LOG(log_debug, logtype_ad, "Converting OS X AppleDouble %s, FinderInfo length: %d",
587         fullpathname(path), finderlen);
588
589     origlen = ad_getentryoff(ad, ADEID_RFORK) + ad_getentrylen(ad, ADEID_RFORK);
590
591     map = mmap(NULL, origlen, PROT_READ | PROT_WRITE, MAP_SHARED, ad_reso_fileno(ad), 0);
592     if (map == MAP_FAILED) {
593         LOG(log_error, logtype_ad, "mmap AppleDouble: %s\n", strerror(errno));
594         EC_FAIL;
595     }
596
597     memmove(map + ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI,
598             map + ad_getentryoff(ad, ADEID_RFORK),
599             ad_getentrylen(ad, ADEID_RFORK));
600
601     ad_setentrylen(ad, ADEID_FINDERI, ADEDLEN_FINDERI);
602     ad->ad_rlen = ad_getentrylen(ad, ADEID_RFORK);
603     ad_setentryoff(ad, ADEID_RFORK, ad_getentryoff(ad, ADEID_FINDERI) + ADEDLEN_FINDERI);
604
605     EC_ZERO_LOG( ftruncate(ad_reso_fileno(ad),
606                            ad_getentryoff(ad, ADEID_RFORK)
607                            + ad_getentrylen(ad, ADEID_RFORK)) );
608
609     (void)ad_rebuild_adouble_header_osx(ad, map);
610     munmap(map, origlen);
611
612     /* Create a metadata EA if one doesn't exit */
613     if (strlen(path) < 3)
614         EC_EXIT_STATUS(0);
615     struct adouble adea;
616     ad_init_old(&adea, AD_VERSION_EA, ad->ad_options);
617
618     if (ad_open(&adea, path + 2, ADFLAGS_HF | ADFLAGS_RDWR | ADFLAGS_CREATE, 0666) < 0) {
619         LOG(log_error, logtype_ad, "create metadata: %s\n", strerror(errno));
620         EC_FAIL;
621     }
622     if (adea.ad_mdp->adf_flags & O_CREAT) {
623         memcpy(ad_entry(&adea, ADEID_FINDERI),
624                ad_entry(ad, ADEID_FINDERI),
625                ADEDLEN_FINDERI);
626         ad_flush(&adea);
627     }
628     ad_close(&adea, ADFLAGS_HF);
629
630 EC_CLEANUP:
631     in_conversion = false;
632     if (ret != 0)
633         return -1;
634     return 1;
635 }
636
637 /* Read an ._ file, only uses the resofork, finderinfo is taken from EA */
638 static int ad_header_read_osx(const char *path, struct adouble *ad, const struct stat *hst)
639 {
640     EC_INIT;
641     struct adouble      adosx;
642     char                *buf;
643     uint16_t            nentries;
644     int                 len;
645     ssize_t             header_len;
646     struct stat         st;
647     int                 retry_read = 0;
648
649 reread:
650     LOG(log_debug, logtype_ad, "ad_header_read_osx: %s", path ? fullpathname(path) : "");
651     ad_init_old(&adosx, AD_VERSION_EA, ad->ad_options);
652     buf = &adosx.ad_data[0];
653     memset(buf, 0, sizeof(adosx.ad_data));
654     adosx.ad_rfp->adf_fd = ad_reso_fileno(ad);
655
656     /* read the header */
657     EC_NEG1( header_len = adf_pread(ad->ad_rfp, buf, AD_DATASZ_OSX, 0) );
658
659     if (header_len < AD_HEADER_LEN) {
660         errno = EIO;
661         return -1;
662     }
663
664     memcpy(&adosx.ad_magic, buf, sizeof(adosx.ad_magic));
665     memcpy(&adosx.ad_version, buf + ADEDOFF_VERSION, sizeof(adosx.ad_version));
666     adosx.ad_magic = ntohl(adosx.ad_magic);
667     adosx.ad_version = ntohl(adosx.ad_version);
668
669     if ((adosx.ad_magic != AD_MAGIC) || (adosx.ad_version != AD_VERSION2)) {
670         LOG(log_error, logtype_ad, "ad_header_read_osx: can't parse AppleDouble header");
671         errno = EIO;
672         return -1;
673     }
674
675     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
676     nentries = ntohs(nentries);
677     len = nentries * AD_ENTRY_LEN;
678
679     if (len + AD_HEADER_LEN > sizeof(adosx.ad_data))
680         len = sizeof(adosx.ad_data) - AD_HEADER_LEN;
681
682     buf += AD_HEADER_LEN;
683     if (len > header_len - AD_HEADER_LEN) {
684         LOG(log_error, logtype_ad, "ad_header_read_osx: can't read entry info.");
685         errno = EIO;
686         return -1;
687     }
688
689     nentries = len / AD_ENTRY_LEN;
690     if (parse_entries(&adosx, buf, nentries) != 0) {
691         LOG(log_warning, logtype_ad, "ad_header_read(%s): malformed AppleDouble",
692             path ? fullpathname(path) : "");
693     }
694
695     if (ad_getentrylen(&adosx, ADEID_FINDERI) != ADEDLEN_FINDERI) {
696         LOG(log_warning, logtype_ad, "Convert OS X to Netatalk AppleDouble: %s",
697             path ? fullpathname(path) : "");
698
699         if (retry_read > 0) {
700             LOG(log_error, logtype_ad, "ad_header_read_osx: %s, giving up", path ? fullpathname(path) : "");
701             errno = EIO;
702             EC_FAIL;
703         }
704         retry_read++;
705         if (ad_convert_osx(path, &adosx) == 1) {
706             goto reread;
707         }
708         errno = EIO;
709         EC_FAIL;
710     }
711
712     if (ad_getentryoff(&adosx, ADEID_RFORK) == 0
713         || ad_getentryoff(&adosx, ADEID_RFORK) > sizeof(ad->ad_data)
714         || ad_getentryoff(&adosx, ADEID_RFORK) > header_len
715         ) {
716         LOG(log_error, logtype_ad, "ad_header_read_osx: problem with rfork entry offset.");
717         errno = EIO;
718         return -1;
719     }
720
721     if (hst == NULL) {
722         hst = &st;
723         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
724     }
725
726     ad_setentryoff(ad, ADEID_RFORK, ad_getentryoff(&adosx, ADEID_RFORK));
727     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
728
729 EC_CLEANUP:
730     EC_EXIT;
731 }
732
733 static int ad_header_read_ea(const char *path, struct adouble *ad, const struct stat *hst _U_)
734 {
735     EC_INIT;
736     uint16_t nentries;
737     int      len;
738     ssize_t  header_len;
739     char     *buf = ad->ad_data;
740
741     if (ad_meta_fileno(ad) != -1)
742         header_len = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_META, ad->ad_data, AD_DATASZ_EA);
743     else
744         header_len = sys_getxattr(path, AD_EA_META, ad->ad_data, AD_DATASZ_EA);
745     if (header_len < 1) {
746         LOG(log_debug, logtype_ad, "ad_header_read_ea: %s", strerror(errno));
747         EC_FAIL;
748     }
749
750     if (header_len < AD_DATASZ_EA) {
751         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): short metadata EA", fullpathname(path));
752         errno = EINVAL;
753         EC_FAIL;
754     }
755
756     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
757     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
758
759     ad->ad_magic = ntohl( ad->ad_magic );
760     ad->ad_version = ntohl( ad->ad_version );
761
762     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
763         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): wrong magic or version", fullpathname(path));
764         errno = EINVAL;
765         EC_FAIL;
766     }
767
768     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
769     nentries = ntohs( nentries );
770     if (nentries != ADEID_NUM_EA) {
771         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): invalid number of entries: %d", fullpathname(path), nentries);
772         errno = EINVAL;
773         EC_FAIL;
774     }
775
776     /* Now parse entries */
777     if (parse_entries(ad, buf + AD_HEADER_LEN, nentries)) {
778         LOG(log_warning, logtype_ad, "ad_header_read(%s): malformed AppleDouble",
779             path ? fullpathname(path) : "");
780         errno = EINVAL;
781         EC_FAIL;
782     }
783
784     if (nentries != ADEID_NUM_EA
785         || !ad_entry(ad, ADEID_FINDERI)
786         || !ad_entry(ad, ADEID_COMMENT)
787         || !ad_entry(ad, ADEID_FILEDATESI)
788         || !ad_entry(ad, ADEID_AFPFILEI)
789         || !ad_entry(ad, ADEID_PRIVDEV)
790         || !ad_entry(ad, ADEID_PRIVINO)
791         || !ad_entry(ad, ADEID_PRIVSYN)
792         || !ad_entry(ad, ADEID_PRIVID)) {
793         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): invalid metadata EA", fullpathname(path));
794         errno = EINVAL;
795         EC_FAIL;
796     }
797
798 EC_CLEANUP:
799     if (ret != 0 && errno == EINVAL) {
800         become_root();
801         (void)sys_removexattr(path, AD_EA_META);
802         unbecome_root();
803         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): deleted invalid metadata EA", fullpathname(path), nentries);
804         errno = ENOENT;
805     }
806     EC_EXIT;
807 }
808
809 /*!
810  * Takes a path to an AppleDouble file and creates the parrent .AppleDouble directory
811  *
812  * Example:
813  * path: "/path/.AppleDouble/file"
814  * => mkdir("/path/.AppleDouble/") (in ad_mkdir())
815  */
816 static int ad_mkrf(const char *path)
817 {
818     char *slash;
819     /*
820      * Probably .AppleDouble doesn't exist, try to mkdir it.
821      */
822     if (NULL == ( slash = strrchr( path, '/' )) ) {
823         return -1;
824     }
825     *slash = '\0';
826     errno = 0;
827     if ( ad_mkdir( path, 0777 ) < 0 ) {
828         return -1;
829     }
830     *slash = '/';
831     return 0;
832 }
833
834 #ifdef HAVE_EAFD
835 static int ad_mkrf_ea(const char *path _U_)
836 {
837     AFP_PANIC("ad_mkrf_ea: dont use");
838     return 0;
839 }
840 #endif
841
842 static int ad_mkrf_osx(const char *path _U_)
843 {
844     return 0;
845 }
846
847 /* ----------------
848    if we are root change path user/ group
849    It can be a native function for BSD cf. FAQ.Q10
850    path:  pathname to chown
851    stbuf: parent directory inode
852
853    use fstat and fchown or lchown with linux?
854 */
855 #define EMULATE_SUIDDIR
856
857 static int ad_chown(const char *path, struct stat *stbuf)
858 {
859     int ret = 0;
860 #ifdef EMULATE_SUIDDIR
861     uid_t id;
862
863     if (default_uid != (uid_t)-1) {
864         /* we are root (admin) */
865         id = (default_uid)?default_uid:stbuf->st_uid;
866         ret = lchown( path, id, stbuf->st_gid );
867     }
868 #endif
869     return ret;
870 }
871
872 #define DEFMASK 07700   /* be conservative */
873
874 /* ----------------
875    return access right and inode of path parent directory
876 */
877 static int ad_mode_st(const char *path, mode_t *mode, struct stat *stbuf)
878 {
879     if (*mode == 0) {
880         return -1;
881     }
882     if (ad_stat(path, stbuf) != 0) {
883         *mode &= DEFMASK;
884         return -1;
885     }
886     *mode &= stbuf->st_mode;
887     return 0;
888 }
889
890 /* --------------------------- */
891 static int ad_header_upgrade(struct adouble *ad _U_, const char *name _U_)
892 {
893     return 0;
894 }
895
896 static int ad_header_upgrade_ea(struct adouble *ad _U_, const char *name _U_)
897 {
898     AFP_PANIC("ad_header_upgrade_ea: dont use");
899     return 0;
900 }
901
902 /*!
903  * Error handling for adouble header(=metadata) file open error
904  *
905  * We're called because opening ADFLAGS_HF caused an error.
906  * 1. In case ad_open is called with ADFLAGS_NOHF the error is suppressed.
907  * 2. Open non-existent ressource fork, this will just result in first read return EOF
908  * 3. If ad_open was called with ADFLAGS_DF we may have opened the datafork and thus
909  *    ought to close it before returning with an error condition.
910  */
911 static int ad_error(struct adouble *ad, int adflags)
912 {
913     int err = errno;
914     if (adflags & ADFLAGS_NOHF) { /* 1 */
915         return 0;
916     }
917     if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_RF) && (errno == ENOENT)) /* 2 */
918         return 0;
919     if (adflags & (ADFLAGS_DF | ADFLAGS_SETSHRMD | ADFLAGS_CHECK_OF)) { /* 3 */
920         ad_close( ad, ADFLAGS_DF );
921         err = errno;
922     }
923     return -1 ;
924 }
925
926 /*!
927  * Map ADFLAGS to open() flags
928  *
929  * @param adfile   (r) the file you really want to open: ADFLAGS_DF or ADFLAGS_HF
930  * @param adflags  (r) flags from ad_open(..., adflags, ...)
931  * @returns            mapped flags suitable for calling open()
932  */
933 static int ad2openflags(const struct adouble *ad, int adfile, int adflags)
934 {
935     int oflags = 0;
936
937     if (adflags & ADFLAGS_RDWR)
938         oflags |= O_RDWR;
939     if (adflags & ADFLAGS_RDONLY) {
940         if (((adfile == ADFLAGS_DF || adfile == ADFLAGS_RF) && (adflags & ADFLAGS_SETSHRMD))
941             /* need rw access for locks */
942             || ((adfile == ADFLAGS_HF) && (ad->ad_vers == AD_VERSION2)))
943             /* need rw access for adouble file for the case:
944              1) openfork(data+meta:O_RDONLY), 2) openfork(reso(=meta):O_RDWR) */
945             oflags |= O_RDWR;
946         else
947             oflags |= O_RDONLY;
948     }
949     if (adflags & ADFLAGS_CREATE)
950         oflags |= O_CREAT;
951     if (adflags & ADFLAGS_EXCL)
952         oflags |= O_EXCL;
953     if (adflags & ADFLAGS_TRUNC)
954         oflags |= O_TRUNC;
955
956     if (!(ad->ad_options & ADVOL_FOLLO_SYML))
957         oflags |= O_NOFOLLOW;
958
959     return oflags;
960 }
961
962 static int ad_open_df(const char *path, int adflags, mode_t mode, struct adouble *ad)
963 {
964     EC_INIT;
965     struct stat st_dir;
966     int         oflags;
967     mode_t      admode;
968     int         st_invalid = -1;
969     ssize_t     lsz;
970
971     LOG(log_debug, logtype_ad,
972         "ad_open_df(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
973         fullpathname(path), adflags2logstr(adflags),
974         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
975         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
976         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
977
978     if (ad_data_fileno(ad) != -1) {
979         /* the file is already open, but we want write access: */
980         if ((adflags & ADFLAGS_RDWR)
981             /* and it was denied the first time: */
982             && (ad->ad_data_fork.adf_flags & O_RDONLY)) {
983                 errno = EACCES;
984                 return -1;
985             }
986         /* it's not new anymore */
987         ad->ad_data_fork.adf_flags &= ~( O_TRUNC | O_CREAT );
988         ad->ad_data_fork.adf_refcount++;
989         goto EC_CLEANUP;
990     }
991
992     oflags = ad2openflags(ad, ADFLAGS_DF, adflags);
993
994     admode = mode;
995     if ((adflags & ADFLAGS_CREATE)) {
996         st_invalid = ad_mode_st(path, &admode, &st_dir);
997         if ((ad->ad_options & ADVOL_UNIXPRIV))
998             admode = mode;
999     }
1000
1001     ad->ad_data_fork.adf_fd = open(path, oflags, admode);
1002
1003     if (ad->ad_data_fork.adf_fd == -1) {
1004         switch (errno) {
1005         case EACCES:
1006         case EPERM:
1007         case EROFS:
1008             if ((adflags & ADFLAGS_SETSHRMD) && (adflags & ADFLAGS_RDONLY)) {
1009                 oflags &= ~O_RDWR;
1010                 oflags |= O_RDONLY;
1011                 EC_NEG1( ad->ad_data_fork.adf_fd = open(path, oflags, admode) );
1012                 break;
1013             }
1014             return -1;
1015         case OPEN_NOFOLLOW_ERRNO:
1016             ad->ad_data_fork.adf_syml = malloc(MAXPATHLEN+1);
1017             if ((lsz = readlink(path, ad->ad_data_fork.adf_syml, MAXPATHLEN)) <= 0) {
1018                 free(ad->ad_data_fork.adf_syml);
1019                 EC_FAIL;
1020             }
1021             ad->ad_data_fork.adf_syml[lsz] = 0;
1022             ad->ad_data_fork.adf_fd = AD_SYMLINK;
1023             break;
1024         default:
1025             EC_FAIL;
1026         }
1027     }
1028
1029     if (!st_invalid)
1030         ad_chown(path, &st_dir); /* just created, set owner if admin (root) */
1031
1032     ad->ad_data_fork.adf_flags = oflags;
1033     adf_lock_init(&ad->ad_data_fork);
1034     ad->ad_data_fork.adf_refcount++;
1035
1036 EC_CLEANUP:
1037     LOG(log_debug, logtype_ad,
1038         "ad_open_df(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1039         fullpathname(path), adflags2logstr(adflags), ret,
1040         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1041         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1042         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1043     EC_EXIT;
1044 }
1045
1046 static int ad_open_hf_v2(const char *path, int adflags, mode_t mode, struct adouble *ad)
1047 {
1048     EC_INIT;
1049     struct stat st_dir;
1050     struct stat st_meta;
1051     struct stat *pst = NULL;
1052     const char  *ad_p;
1053     int         oflags, nocreatflags, opened = 0;
1054     mode_t      admode;
1055     int         st_invalid = -1;
1056
1057     LOG(log_debug, logtype_ad,
1058         "ad_open_hf_v2(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1059         fullpathname(path), adflags2logstr(adflags),
1060         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1061         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1062         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1063
1064     if (ad_meta_fileno(ad) != -1) {
1065         /* the file is already open, but we want write access: */
1066         if ((adflags & ADFLAGS_RDWR) &&
1067             /* and it was already denied: */
1068             (ad->ad_mdp->adf_flags & O_RDONLY)) {
1069             errno = EACCES;
1070             EC_FAIL;
1071         }
1072         ad_refresh(path, ad);
1073         /* it's not new anymore */
1074         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
1075         ad->ad_mdp->adf_refcount++;
1076         goto EC_CLEANUP;
1077     }
1078
1079     ad_p = ad->ad_ops->ad_path(path, adflags);
1080     oflags = ad2openflags(ad, ADFLAGS_HF, adflags);
1081     LOG(log_debug, logtype_ad,"ad_open_hf_v2(\"%s\"): open flags: %s",
1082         fullpathname(path), openflags2logstr(oflags));
1083     nocreatflags = oflags & ~(O_CREAT | O_EXCL);
1084
1085     ad_meta_fileno(ad) = open(ad_p, nocreatflags);
1086
1087     if (ad_meta_fileno(ad) != -1) {
1088         ad->ad_mdp->adf_flags = nocreatflags;
1089     } else {
1090         switch (errno) {
1091         case EACCES:
1092         case EPERM:
1093         case EROFS:
1094             if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_SETSHRMD)) {
1095                 nocreatflags &= ~O_RDWR;
1096                 nocreatflags |= O_RDONLY;
1097                 EC_NEG1( ad_meta_fileno(ad) = open(ad_p, nocreatflags) );
1098                 ad->ad_mdp->adf_flags = nocreatflags;
1099                 break;
1100             }
1101             EC_FAIL;
1102         case ENOENT:
1103             if (!(oflags & O_CREAT))
1104                 EC_FAIL;
1105             /*
1106              * We're expecting to create a new adouble header file here
1107              */
1108             LOG(log_debug, logtype_ad, "ad_open(\"%s\"): creating adouble file",
1109                 fullpathname(path));
1110             admode = mode;
1111             errno = 0;
1112             st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
1113             if ((ad->ad_options & ADVOL_UNIXPRIV))
1114                 admode = mode;
1115             admode = ad_hf_mode(admode);
1116             if (errno == ENOENT) {
1117                 EC_NEG1_LOG( ad->ad_ops->ad_mkrf(ad_p) );
1118                 admode = mode;
1119                 st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
1120                 if ((ad->ad_options & ADVOL_UNIXPRIV))
1121                     admode = mode;
1122                 admode = ad_hf_mode(admode);
1123             }
1124
1125             /* retry with O_CREAT */
1126             EC_NEG1( ad_meta_fileno(ad) = open(ad_p, oflags, admode) );
1127             ad->ad_mdp->adf_flags = oflags;
1128             /* just created, set owner if admin owner (root) */
1129             if (!st_invalid)
1130                 ad_chown(ad_p, &st_dir);
1131             break;
1132         default:
1133             EC_FAIL;
1134         }
1135     }
1136
1137     /* Now we've got a new opened fd, we need to check that in the error case */
1138     opened = 1;
1139
1140     if (!(ad->ad_mdp->adf_flags & O_CREAT)) {
1141         /* check for 0 length files, treat them as new. */
1142         if (fstat(ad->ad_mdp->adf_fd, &st_meta) == 0) {
1143             if (st_meta.st_size == 0)
1144                 ad->ad_mdp->adf_flags |= O_TRUNC;
1145             else
1146                 /* we have valid data in st_meta stat structure, reused it in ad_header_read */
1147                 pst = &st_meta;
1148         }
1149     }
1150
1151     adf_lock_init(ad->ad_mdp);
1152     ad->ad_mdp->adf_refcount = 1;
1153
1154     if ((ad->ad_mdp->adf_flags & ( O_TRUNC | O_CREAT ))) {
1155         /* This is a new adouble header file, create it */
1156         EC_NEG1_LOG( new_ad_header(ad, path, pst, adflags) );
1157         ad_flush(ad);
1158     } else {
1159         /* Read the adouble header in and parse it.*/
1160         EC_NEG1_LOG( ad->ad_ops->ad_header_read(path, ad, pst) );
1161     }
1162
1163 EC_CLEANUP:
1164     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1165         close(ad_meta_fileno(ad));
1166         ad_meta_fileno(ad) = -1;
1167         ad->ad_mdp->adf_refcount = 0;
1168     }
1169     LOG(log_debug, logtype_ad,
1170         "ad_open_hf_v2(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1171         fullpathname(path), adflags2logstr(adflags), ret,
1172         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1173         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1174         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1175     EC_EXIT;
1176 }
1177
1178 static int ad_open_hf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1179 {
1180     EC_INIT;
1181     int oflags;
1182     int opened = 0;
1183
1184     LOG(log_debug, logtype_ad,
1185         "ad_open_hf_ea(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1186         fullpathname(path), adflags2logstr(adflags),
1187         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1188         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1189         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1190
1191     oflags = ad2openflags(ad, ADFLAGS_DF, adflags) & ~(O_CREAT | O_TRUNC);
1192
1193     if (ad_meta_fileno(ad) == AD_SYMLINK)
1194         goto EC_CLEANUP;
1195
1196     if (ad_meta_fileno(ad) != -1) {
1197         /* the file is already open, but we want write access: */
1198         if ((oflags & O_RDWR) &&
1199             /* and it was already denied: */
1200             (ad->ad_mdp->adf_flags & O_RDONLY)) {
1201             LOG(log_error, logtype_ad, "ad_open_hf_ea(%s): rw request for ro file: %s",
1202                 fullpathname(path), strerror(errno));
1203             errno = EACCES;
1204             EC_FAIL;
1205         }
1206         /* it's not new anymore */
1207         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
1208     } else {
1209         if (oflags & O_RDWR) {
1210             /* Fo a RDONLY adouble we just use sys_lgetxattr instead if sys_fgetxattr */
1211             if (adflags & ADFLAGS_DIR)
1212                 /* For directories we open the directory RDONYL so we can later fchdir()  */
1213                 oflags = (oflags & ~O_RDWR) | O_RDONLY;
1214             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): opening base file for meta adouble EA", path);
1215             EC_NEG1(ad_meta_fileno(ad) = open(path, oflags));
1216             opened = 1;
1217             ad->ad_mdp->adf_flags = oflags;
1218         }
1219     }
1220
1221     /* Read the adouble header in and parse it.*/
1222     if (ad->ad_ops->ad_header_read(path, ad, NULL) != 0) {
1223         if (!(adflags & ADFLAGS_CREATE)) {
1224             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
1225             errno = ENOENT;
1226             EC_FAIL;
1227         }
1228         if ((adflags & ADFLAGS_CREATE) && (ad->ad_options & ADVOL_RO)) {
1229             errno = EROFS;
1230             EC_FAIL;
1231         }
1232
1233         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): creating metadata EA", path);
1234
1235         /* It doesnt exist, EPERM or another error */
1236         if (!(errno == ENOATTR || errno == ENOENT)) {
1237             LOG(log_error, logtype_ad, "ad_open_hf_ea: unexpected: %s", strerror(errno));
1238             EC_FAIL;
1239         }
1240
1241         /* Create one */
1242         EC_NEG1_LOG(new_ad_header(ad, path, NULL, adflags));
1243         ad->ad_mdp->adf_flags |= O_CREAT; /* mark as just created */
1244         ad_flush(ad);
1245         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): created metadata EA", path);
1246     }
1247
1248     if (ad_meta_fileno(ad) != -1)
1249         ad->ad_mdp->adf_refcount++;
1250     ad->ad_rlen = ad_reso_size(path, adflags, ad);
1251
1252 EC_CLEANUP:
1253     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1254         close(ad_meta_fileno(ad));
1255         ad_meta_fileno(ad) = -1;
1256         ad->ad_mdp->adf_refcount = 0;
1257     }
1258     LOG(log_debug, logtype_ad,
1259         "ad_open_hf_ea(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1260         fullpathname(path), adflags2logstr(adflags), ret,
1261         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1262         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1263         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1264         
1265     EC_EXIT;
1266 }
1267
1268 static int ad_open_hf(const char *path, int adflags, int mode, struct adouble *ad)
1269 {
1270     int ret = 0;
1271
1272     ad->ad_meta_refcount++;
1273
1274     switch (ad->ad_vers) {
1275     case AD_VERSION2:
1276         ret = ad_open_hf_v2(path, adflags, mode, ad);
1277         break;
1278     case AD_VERSION_EA:
1279         ret = ad_open_hf_ea(path, adflags, mode, ad);
1280         break;
1281     default:
1282         ret = -1;
1283         break;
1284     }
1285
1286     if (ret != 0) {
1287         ad->ad_meta_refcount--;
1288         ret = ad_error(ad, adflags);
1289     }
1290
1291     return ret;
1292 }
1293
1294 /*!
1295  * Get resofork length for adouble:ea, parameter 'ad' may be NULL
1296  */
1297 off_t ad_reso_size(const char *path, int adflags, struct adouble *ad)
1298 {
1299     EC_INIT;
1300     struct stat st;
1301     off_t rlen;
1302
1303     if (adflags & ADFLAGS_DIR)
1304         EC_FAIL;
1305
1306     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): BEGIN", path);
1307
1308 #ifdef HAVE_EAFD
1309     ssize_t easz;
1310
1311     if (ad && ad_reso_fileno(ad) != -1) {
1312         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
1313         rlen = st.st_size;
1314     } else if (ad && ad_meta_fileno(ad) != -1) {
1315         EC_NEG1( (rlen = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_RESO, NULL, 0)) );
1316     } else {
1317         EC_NEG1( (rlen = sys_lgetxattr(path, AD_EA_RESO, NULL, 0)) );
1318     }
1319
1320 #else
1321     const char *rfpath;
1322     EC_NULL_LOG( rfpath = ad_path_osx(path, adflags));
1323     EC_ZERO( lstat(rfpath, &st));
1324     if (st.st_size > ADEDOFF_RFORK_OSX)
1325         rlen = st.st_size - ADEDOFF_RFORK_OSX;
1326     else
1327         rlen = 0;
1328 #endif
1329
1330     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): size: %zd", path, rlen);
1331
1332 EC_CLEANUP:
1333     if (ret != 0)
1334         rlen = 0;
1335     return rlen;
1336 }
1337
1338 static int ad_open_rf_v2(const char *path, int adflags, int mode, struct adouble *ad)
1339 {
1340     EC_INIT;
1341
1342     /*
1343      * ad_open_hf_v2() does the work, but if it failed and adflags are ADFLAGS_NOHF | ADFLAGS_RF
1344      * ad_open_hf_v2() didn't give an error, but we're supposed to return a reso fork fd
1345      */
1346
1347     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): BEGIN", fullpathname(path));
1348
1349     if (!AD_META_OPEN(ad) && !(adflags & (ADFLAGS_NORF | ADFLAGS_RDONLY)))
1350         EC_FAIL;
1351     if (AD_META_OPEN(ad))
1352         ad->ad_reso_refcount++;
1353
1354 EC_CLEANUP:
1355     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): END: %d", fullpathname(path), ret);
1356     EC_EXIT;
1357 }
1358
1359 static int ad_open_rf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1360 {
1361     EC_INIT;
1362     int oflags;
1363     int opened = 0;
1364     int closeflags = adflags & (ADFLAGS_DF | ADFLAGS_HF);
1365 #ifndef HAVE_EAFD
1366     const char *rfpath;
1367     struct stat st;
1368 #endif
1369
1370     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): BEGIN", fullpathname(path));
1371
1372     oflags = ad2openflags(ad, ADFLAGS_RF, adflags) & ~O_CREAT;
1373
1374     if (ad_reso_fileno(ad) != -1) {
1375         /* the file is already open, but we want write access: */
1376         if ((oflags & O_RDWR)
1377             /* and it was already denied: */
1378             && (ad->ad_rfp->adf_flags & O_RDONLY)) {
1379             errno = EACCES;
1380             EC_FAIL;
1381         }
1382         ad->ad_rfp->adf_flags &= ~( O_TRUNC | O_CREAT );
1383         ad->ad_reso_refcount++;
1384         ad->ad_rfp->adf_refcount++;
1385         EC_NEG1_LOG( ad->ad_rlen = ad_reso_size(path, adflags, ad));
1386         goto EC_CLEANUP;
1387     }
1388 #ifdef HAVE_EAFD
1389     if (ad_meta_fileno(ad) < 0)
1390         EC_FAIL;
1391     if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1392         if (!(adflags & ADFLAGS_CREATE)) {
1393             switch (errno) {
1394             case EACCES:
1395             case EPERM:
1396             case EROFS:
1397                 if (!(adflags & ADFLAGS_RDONLY)) {
1398                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1399                     EC_FAIL;
1400                 }
1401                 oflags &= ~O_RDWR;
1402                 oflags |= O_RDONLY;
1403                 if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1404                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1405                     EC_FAIL;
1406                 }
1407                 break;
1408             case ENOENT:
1409                 EC_EXIT_STATUS(0);
1410             default:
1411                 LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1412                 EC_FAIL;
1413             }
1414         } else {
1415             oflags |= O_CREAT;
1416             EC_NEG1_LOG( ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad),
1417                                                              AD_EA_RESO, oflags, 0666) );
1418         }
1419     }
1420 #else
1421     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags) );
1422     if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1423         if (!(adflags & ADFLAGS_CREATE)) {
1424             switch (errno) {
1425             case EACCES:
1426             case EPERM:
1427             case EROFS:
1428                 if (!(adflags & ADFLAGS_RDONLY)) {
1429                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1430                     EC_FAIL;
1431                 }
1432                 oflags &= ~O_RDWR;
1433                 oflags |= O_RDONLY;
1434                 if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1435                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1436                     EC_FAIL;
1437                 }
1438                 break;
1439             case ENOENT:
1440                 EC_EXIT_STATUS(0);
1441             default:
1442                 LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1443                 EC_FAIL;
1444             }
1445         } else {
1446             oflags |= O_CREAT;
1447             EC_NEG1_LOG( ad_reso_fileno(ad) = open(rfpath, oflags, mode) );
1448             LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork: \"%s\"",
1449                 path, rfpath);
1450         }
1451     }
1452 #endif
1453     opened = 1;
1454     ad->ad_rfp->adf_refcount = 1;
1455     ad->ad_rfp->adf_flags = oflags;
1456     ad->ad_reso_refcount++;
1457
1458 #ifndef HAVE_EAFD
1459     EC_ZERO_LOG( fstat(ad_reso_fileno(ad), &st) );
1460     if (ad->ad_rfp->adf_flags & O_CREAT) {
1461         /* This is a new adouble header file, create it */
1462         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, initializing: \"%s\"",
1463             path, rfpath);
1464         EC_NEG1_LOG( new_ad_header(ad, path, NULL, adflags) );
1465         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, flushing: \"%s\"",
1466             path, rfpath);
1467         ad_flush(ad);
1468     } else {
1469         /* Read the adouble header */
1470         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): reading adouble rfork: \"%s\"",
1471             path, rfpath);
1472         EC_NEG1_LOG( ad_header_read_osx(rfpath, ad, &st) );
1473     }
1474 #endif
1475
1476     ad->ad_rlen = ad_reso_size(path, adflags, ad);
1477
1478 EC_CLEANUP:
1479     if (ret != 0) {
1480         if (opened && (ad_reso_fileno(ad) != -1)) {
1481             close(ad_reso_fileno(ad));
1482             ad_reso_fileno(ad) = -1;
1483             ad->ad_reso_refcount--;
1484             ad->ad_rfp->adf_refcount = 0;
1485         }
1486         if (adflags & ADFLAGS_NORF) {
1487             ret = 0;
1488         } else {
1489             int err = errno;
1490             (void)ad_close(ad, closeflags);
1491             errno = err;
1492         }
1493         ad->ad_rlen = 0;
1494     }
1495
1496     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): END: %d", fullpathname(path), ret);
1497
1498     EC_EXIT;
1499 }
1500
1501 /*!
1502  * Open ressource fork
1503  */
1504 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
1505 {
1506     int ret = 0;
1507
1508     switch (ad->ad_vers) {
1509     case AD_VERSION2:
1510         ret = ad_open_rf_v2(path, adflags, mode, ad);
1511         break;
1512     case AD_VERSION_EA:
1513         ret = ad_open_rf_ea(path, adflags, mode, ad);
1514         break;
1515     default:
1516         ret = -1;
1517         break;
1518     }
1519
1520     return ret;
1521 }
1522
1523 /***********************************************************************************
1524  * API functions
1525  ********************************************************************************* */
1526
1527 off_t ad_getentryoff(const struct adouble *ad, int eid)
1528 {
1529     if (ad->ad_vers == AD_VERSION2)
1530         return ad->ad_eid[eid].ade_off;
1531
1532     switch (eid) {
1533     case ADEID_DFORK:
1534         return 0;
1535     case ADEID_RFORK:
1536 #ifdef HAVE_EAFD
1537         return 0;
1538 #else
1539         return ad->ad_eid[eid].ade_off;
1540 #endif
1541     default:
1542         return ad->ad_eid[eid].ade_off;
1543     }
1544     /* deadc0de */
1545     AFP_PANIC("What am I doing here?");
1546 }
1547
1548 const char *ad_path_ea( const char *path, int adflags _U_)
1549 {
1550     return path;
1551 }
1552
1553 const char *ad_path_osx(const char *path, int adflags _U_)
1554 {
1555     static char pathbuf[ MAXPATHLEN + 1];
1556     char    c, *slash, buf[MAXPATHLEN + 1];
1557
1558     if (!strcmp(path,".")) {
1559         /* fixme */
1560         getcwd(buf, MAXPATHLEN);
1561     }
1562     else {
1563         strlcpy(buf, path, MAXPATHLEN +1);
1564     }
1565     if (NULL != ( slash = strrchr( buf, '/' )) ) {
1566         c = *++slash;
1567         *slash = '\0';
1568         strlcpy( pathbuf, buf, MAXPATHLEN +1);
1569         *slash = c;
1570     } else {
1571         pathbuf[ 0 ] = '\0';
1572         slash = buf;
1573     }
1574     strlcat( pathbuf, "._", MAXPATHLEN  +1);
1575     strlcat( pathbuf, slash, MAXPATHLEN +1);
1576     return pathbuf;
1577 }
1578
1579 /*
1580  * Put the .AppleDouble where it needs to be:
1581  *
1582  *      /   a/.AppleDouble/b
1583  *  a/b
1584  *      \   b/.AppleDouble/.Parent
1585  *
1586  * FIXME: should do something for pathname > MAXPATHLEN
1587  */
1588 const char *ad_path( const char *path, int adflags)
1589 {
1590     static char pathbuf[ MAXPATHLEN + 1];
1591     const char *slash;
1592     size_t  l ;
1593
1594     if ( adflags & ADFLAGS_DIR ) {
1595         l = strlcpy( pathbuf, path, sizeof(pathbuf));
1596
1597         if ( l && l < MAXPATHLEN) {
1598             pathbuf[l++] = '/';
1599         }
1600         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
1601     } else {
1602         if (NULL != ( slash = strrchr( path, '/' )) ) {
1603             slash++;
1604             l = slash - path;
1605             /* XXX we must return NULL here and test in the caller */
1606             if (l > MAXPATHLEN)
1607                 l = MAXPATHLEN;
1608             memcpy( pathbuf, path, l);
1609         } else {
1610             l = 0;
1611             slash = path;
1612         }
1613         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
1614         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
1615     }
1616
1617     return( pathbuf );
1618 }
1619
1620 /* -------------------------
1621  * Support inherited protection modes for AppleDouble files.  The supplied
1622  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1623  * and that value is returned.
1624  */
1625 char *ad_dir(const char *path)
1626 {
1627     static char     modebuf[ MAXPATHLEN + 1];
1628     char        *slash;
1629     /*
1630      * For a path with directories in it, remove the final component
1631      * (path or subdirectory name) to get the name we want to stat.
1632      * For a path which is just a filename, use "." instead.
1633      */
1634     slash = strrchr( path, '/' );
1635     if (slash) {
1636         size_t len;
1637
1638         len = slash - path;
1639         if (len >= MAXPATHLEN) {
1640             errno = ENAMETOOLONG;
1641             return NULL;  /* can't do it */
1642         }
1643         memcpy( modebuf, path, len );
1644         modebuf[len] = '\0';
1645         /* is last char a '/' ? */
1646         if (slash[1] == 0) {
1647             slash = modebuf+ len;
1648             /* remove them */
1649             while (modebuf < slash && slash[-1] == '/') {
1650                 --slash;
1651             }
1652             if (modebuf == slash) {
1653                 goto use_cur;
1654             }
1655             *slash = '\0';
1656             while (modebuf < slash && *slash != '/') {
1657                 --slash;
1658             }
1659             if (modebuf == slash) {
1660                 goto use_cur;
1661             }
1662             *slash = '\0';      /* remove pathname component */
1663         }
1664         return modebuf;
1665     }
1666 use_cur:
1667     modebuf[0] = '.';   /* use current directory */
1668     modebuf[1] = '\0';
1669     return modebuf;
1670 }
1671
1672 int ad_setfuid(const uid_t id)
1673 {
1674     default_uid = id;
1675     return 0;
1676 }
1677
1678 /* ---------------- */
1679 uid_t ad_getfuid(void)
1680 {
1681     return default_uid;
1682 }
1683
1684 /* ----------------
1685    stat path parent directory
1686 */
1687 int ad_stat(const char *path, struct stat *stbuf)
1688 {
1689     char *p;
1690
1691     p = ad_dir(path);
1692     if (!p)
1693         return -1;
1694     return stat( p, stbuf );
1695 }
1696
1697 /* ----------------
1698    return access right of path parent directory
1699 */
1700 int ad_mode( const char *path, mode_t mode)
1701 {
1702     struct stat     stbuf;
1703     ad_mode_st(path, &mode, &stbuf);
1704     return mode;
1705 }
1706
1707 /*
1708  * Use mkdir() with mode bits taken from ad_mode().
1709  */
1710 int ad_mkdir( const char *path, mode_t mode)
1711 {
1712     int ret;
1713     int st_invalid;
1714     struct stat stbuf;
1715
1716     LOG(log_debug, logtype_ad, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1717         path, mode, getcwdpath());
1718
1719     st_invalid = ad_mode_st(path, &mode, &stbuf);
1720     ret = mkdir( path, mode );
1721     if (ret || st_invalid)
1722         return ret;
1723     ad_chown(path, &stbuf);
1724
1725     return ret;
1726 }
1727
1728 static void ad_init_func(struct adouble *ad)
1729 {
1730     switch (ad->ad_vers) {
1731     case AD_VERSION2:
1732         ad->ad_ops = &ad_adouble;
1733         ad->ad_rfp = &ad->ad_resource_fork;
1734         ad->ad_mdp = &ad->ad_resource_fork;
1735         break;
1736     case AD_VERSION_EA:
1737         ad->ad_ops = &ad_adouble_ea;
1738         ad->ad_rfp = &ad->ad_resource_fork;
1739         ad->ad_mdp = &ad->ad_data_fork;
1740         break;
1741     default:
1742         AFP_PANIC("ad_init: unknown AD version");
1743     }
1744
1745
1746     ad_data_fileno(ad) = -1;
1747     ad_reso_fileno(ad) = -1;
1748     ad_meta_fileno(ad) = -1;
1749     ad->ad_refcount = 1;
1750     ad->ad_rlen = 0;
1751     return;
1752 }
1753
1754 void ad_init_old(struct adouble *ad, int flags, int options)
1755 {
1756     memset(ad, 0, sizeof(struct adouble));
1757     ad->ad_vers = flags;
1758     ad->ad_options = options;
1759     ad_init_func(ad);
1760 }
1761
1762 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1763 {
1764     memset(ad, 0, sizeof(struct adouble));
1765     ad->ad_vers = vol->v_adouble;
1766     ad->ad_options = vol->v_ad_options;
1767     ad_init_func(ad);
1768 }
1769
1770 /*!
1771  * Open data-, metadata(header)- or ressource fork
1772  *
1773  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1774  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1775  *
1776  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1777  * @code
1778  *      struct adoube ad;
1779  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1780  * @endcode
1781  *
1782  * Open a files data fork, metadata fork or ressource fork.
1783  *
1784  * @param ad        (rw) pointer to struct adouble
1785  * @param path      (r)  Path to file or directory
1786  * @param adflags   (r)  Flags specifying which fork to open, can be or'd:
1787  *                         ADFLAGS_DF:        open data fork
1788  *                         ADFLAGS_RF:        open ressource fork
1789  *                         ADFLAGS_HF:        open header (metadata) file
1790  *                         ADFLAGS_NOHF:      it's not an error if header file couldn't be opened
1791  *                         ADFLAGS_NORF:      it's not an error if reso fork couldn't be opened
1792  *                         ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags
1793  *
1794  *                       Access mode for the forks:
1795  *                         ADFLAGS_RDONLY:    open read only
1796  *                         ADFLAGS_RDWR:      open read write
1797  *
1798  *                       Creation flags:
1799  *                         ADFLAGS_CREATE:    create if not existing
1800  *                         ADFLAGS_TRUNC:     truncate
1801  *
1802  *                       Special flags:
1803  *                         ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1804  *                         ADFLAGS_SETSHRMD:  this adouble struct will be used to set sharemode locks.
1805  *                                            This basically results in the files being opened RW instead of RDONLY.
1806  * @param mode      (r)  mode used with O_CREATE
1807  *
1808  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1809  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1810  *   fds of the same file
1811  *
1812  * @returns 0 on success, any other value indicates an error
1813  */
1814 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1815 {
1816     EC_INIT;
1817     va_list args;
1818     mode_t mode = 0;
1819
1820     LOG(log_debug, logtype_ad,
1821         "ad_open(\"%s\", %s): BEGIN {d: %d, m: %d, r: %d}"
1822         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1823         fullpathname(path), adflags2logstr(adflags),
1824         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1825         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1826         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1827         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1828
1829     if (adflags & ADFLAGS_CHECK_OF)
1830         /* Checking for open forks requires sharemode lock support (ie RDWR instead of RDONLY) */
1831         adflags |= ADFLAGS_SETSHRMD;
1832
1833     if (adflags & ADFLAGS_SETSHRMD)
1834         /* sharemode locks are stored in the data fork */
1835         adflags |= ADFLAGS_DF;
1836
1837     if (ad->ad_vers == AD_VERSION2) {
1838         if (adflags & ADFLAGS_RF)
1839             adflags |= ADFLAGS_HF;
1840         if (adflags & ADFLAGS_NORF)
1841             adflags |= ADFLAGS_NOHF;
1842     }
1843
1844     if (ad->ad_inited != AD_INITED) {
1845         ad->ad_adflags = adflags;
1846         ad->ad_inited = AD_INITED;
1847     } else {
1848         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1849         if (ad->ad_resource_fork.adf_refcount > 0)
1850             ad->ad_open_forks |= ATTRBIT_ROPEN;
1851     }
1852
1853     va_start(args, adflags);
1854     if (adflags & ADFLAGS_CREATE)
1855         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1856     va_end(args);
1857
1858     if (adflags & ADFLAGS_DF) {
1859         ad->ad_data_refcount++;
1860         if (ad_open_df(path, adflags, mode, ad) != 0) {
1861             ad->ad_data_refcount--;
1862             EC_FAIL;
1863         }
1864     }
1865
1866     if (adflags & ADFLAGS_HF) {
1867         if (ad_open_hf(path, adflags, mode, ad) != 0) {
1868             EC_FAIL;
1869         }
1870     }
1871
1872     if (adflags & ADFLAGS_RF) {
1873         if (ad_open_rf(path, adflags, mode, ad) != 0) {
1874             EC_FAIL;
1875         }
1876     }
1877
1878     if (adflags & ADFLAGS_CHECK_OF) {
1879         ad->ad_open_forks |= ad_openforks(ad, ad->ad_open_forks);
1880     }
1881
1882 EC_CLEANUP:
1883     LOG(log_debug, logtype_ad,
1884         "ad_open(\"%s\"): END: %d {d: %d, m: %d, r: %d}"
1885         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1886         fullpathname(path), ret,
1887         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1888         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1889         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1890         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1891
1892     EC_EXIT;
1893 }
1894
1895 /*!
1896  * @brief open metadata, possibly as root
1897  *
1898  * Return only metadata but try very hard ie at first try as user, then try as root.
1899  *
1900  * @param name  name of file/dir
1901  * @param flags ADFLAGS_DIR: name is a directory \n
1902  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1903  *
1904  * @param adp   pointer to struct adouble
1905  */
1906 int ad_metadata(const char *name, int flags, struct adouble *adp)
1907 {
1908     int   ret, err, oflags;
1909
1910     /* Sanitize flags */
1911     oflags = (flags & (ADFLAGS_CHECK_OF | ADFLAGS_DIR)) | ADFLAGS_HF | ADFLAGS_RDONLY;    
1912
1913     if ((ret = ad_open(adp, name, oflags)) < 0 && errno == EACCES) {
1914         become_root();
1915         ret = ad_open(adp, name, oflags);
1916         unbecome_root();
1917         err = errno;
1918         errno = err;
1919     }
1920
1921     return ret;
1922 }
1923
1924 /*
1925  * @brief openat like wrapper for ad_metadata
1926  */
1927 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1928 {
1929     int ret = 0;
1930     int cwdfd = -1;
1931
1932     if (dirfd != -1) {
1933         if (((cwdfd = open(".", O_RDONLY)) == -1) || (fchdir(dirfd) != 0)) {
1934             ret = -1;
1935             goto exit;
1936         }
1937     }
1938
1939     if (ad_metadata(name, flags, adp) < 0) {
1940         ret = -1;
1941         goto exit;
1942     }
1943
1944     if (dirfd != -1) {
1945
1946         if (fchdir(cwdfd) != 0) {
1947             LOG(log_error, logtype_ad, "ad_openat: cant chdir back, exiting");
1948             exit(EXITERR_SYS);
1949         }
1950     }
1951
1952 exit:
1953     if (cwdfd != -1)
1954         close(cwdfd);
1955
1956     return ret;
1957
1958 }
1959
1960 int ad_refresh(const char *path, struct adouble *ad)
1961 {
1962     switch (ad->ad_vers) {
1963     case AD_VERSION2:
1964         if (ad_meta_fileno(ad) == -1)
1965             return -1;
1966         return ad->ad_ops->ad_header_read(NULL, ad, NULL);
1967         break;
1968     case AD_VERSION_EA:
1969 #ifdef HAVE_EAFD
1970         if (AD_META_OPEN(ad)) {
1971             if (ad_data_fileno(ad) == -1)
1972                 return -1;
1973             // TODO: read meta EA
1974         }
1975
1976         if (AD_RSRC_OPEN(ad)) {
1977             if (ad_reso_fileno(ad) == -1)
1978                 return -1;
1979             struct stat st;
1980             if (fstat(ad_reso_fileno(ad), &st) == -1)
1981                 return -1;
1982             ad->ad_rlen = st.st_size;
1983         }
1984 #else
1985         if (AD_META_OPEN(ad)) {
1986             if (ad_data_fileno(ad) == -1)
1987                 return -1;
1988             // TODO: read meta EA
1989         }
1990         if (AD_RSRC_OPEN(ad)) {
1991             if (ad_reso_fileno(ad) == -1)
1992                 return -1;
1993             if (ad_header_read_osx(path, ad, NULL) < 0)
1994                 return -1;
1995         }
1996 #endif
1997         return ad->ad_ops->ad_header_read(path, ad, NULL);
1998         break;
1999     default:
2000         return -1;
2001         break;
2002     }
2003
2004 }
2005
2006 int ad_openat(struct adouble  *ad,
2007               int dirfd,  /* dir fd openat like */
2008               const char *path,
2009               int adflags, ...)
2010 {
2011     EC_INIT;
2012     int cwdfd = -1;
2013     va_list args;
2014     mode_t mode = 0;
2015
2016     if (dirfd != -1) {
2017         if (((cwdfd = open(".", O_RDONLY)) == -1) || (fchdir(dirfd) != 0))
2018             EC_FAIL;
2019     }
2020
2021     va_start(args, adflags);
2022     if (adflags & ADFLAGS_CREATE)
2023         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
2024     va_end(args);
2025
2026     EC_NEG1( ad_open(ad, path, adflags, mode) );
2027
2028     if (dirfd != -1) {
2029         if (fchdir(cwdfd) != 0) {
2030             AFP_PANIC("ad_openat: cant chdir back");
2031         }
2032     }
2033
2034 EC_CLEANUP:
2035     if (cwdfd != -1)
2036         close(cwdfd);
2037
2038     return ret;
2039 }
2040
2041 /* build a resource fork mode from the data fork mode:
2042  * remove X mode and extend header to RW if R or W (W if R for locking),
2043  */
2044 mode_t ad_hf_mode(mode_t mode)
2045 {
2046     mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH);
2047     /* fnctl lock need write access */
2048     if ((mode & S_IRUSR))
2049         mode |= S_IWUSR;
2050     if ((mode & S_IRGRP))
2051         mode |= S_IWGRP;
2052     if ((mode & S_IROTH))
2053         mode |= S_IWOTH;
2054
2055     /* if write mode set add read mode */
2056     if ((mode & S_IWUSR))
2057         mode |= S_IRUSR;
2058     if ((mode & S_IWGRP))
2059         mode |= S_IRGRP;
2060     if ((mode & S_IWOTH))
2061         mode |= S_IROTH;
2062
2063     return mode;
2064 }