]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
Merge remote-tracking branch 'origin/develop' into spotlight
[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 static int new_ad_header(struct adouble *ad, const char *path, struct stat *stp, int adflags)
316 {
317     const struct entry  *eid;
318     uint16_t            ashort;
319     struct stat         st;
320
321     LOG(log_debug, logtype_ad, "new_ad_header(\"%s\")", path);
322
323     if (ad->ad_magic == AD_MAGIC) {
324         LOG(log_debug, logtype_ad, "new_ad_header(\"%s\"): already initialized", path);
325         return 0;
326     }
327
328     ad->ad_magic = AD_MAGIC;
329     ad->ad_version = ad->ad_vers & 0x0f0000;
330     if (!ad->ad_version) {
331         ad->ad_version = AD_VERSION;
332     }
333
334     memset(ad->ad_data, 0, sizeof(ad->ad_data));
335
336     if (ad->ad_vers == AD_VERSION2)
337         eid = entry_order2;
338     else if (ad->ad_vers == AD_VERSION_EA)
339         eid = entry_order_ea;
340     else
341         return -1;
342
343     while (eid->id) {
344         ad->ad_eid[eid->id].ade_off = eid->offset;
345         ad->ad_eid[eid->id].ade_len = eid->len;
346         eid++;
347     }
348
349     /* put something sane in the directory finderinfo */
350     if (stp == NULL) {
351         stp = &st;
352         if (lstat(path, &st) != 0)
353             return -1;
354     }
355
356     if ((adflags & ADFLAGS_DIR)) {
357         /* set default view */
358         ashort = htons(FINDERINFO_CLOSEDVIEW);
359         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRVIEWOFF, &ashort, sizeof(ashort));
360     } else {
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
366     /* make things invisible */
367     if ((ad->ad_options & ADVOL_INVDOTS)
368         && (*path == '.')
369         && !((adflags & ADFLAGS_DIR) && (path[1] == 0))
370         ) {
371         ashort = htons(ATTRBIT_INVISIBLE);
372         ad_setattr(ad, ashort);
373         ashort = htons(FINDERINFO_INVISIBLE);
374         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF, &ashort, sizeof(ashort));
375     }
376
377     /* put something sane in the date fields */
378     ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, stp->st_mtime);
379     ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, stp->st_mtime);
380     ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, stp->st_mtime);
381     ad_setdate(ad, AD_DATE_BACKUP, AD_DATE_START);
382
383     return 0;
384 }
385
386 /* -------------------------------------
387    read in the entries
388 */
389 static void parse_entries(struct adouble *ad, char *buf, uint16_t nentries)
390 {
391     uint32_t   eid, len, off;
392     int        warning = 0;
393
394     /* now, read in the entry bits */
395     for (; nentries > 0; nentries-- ) {
396         memcpy(&eid, buf, sizeof( eid ));
397         eid = get_eid(ntohl(eid));
398         buf += sizeof( eid );
399         memcpy(&off, buf, sizeof( off ));
400         off = ntohl( off );
401         buf += sizeof( off );
402         memcpy(&len, buf, sizeof( len ));
403         len = ntohl( len );
404         buf += sizeof( len );
405
406         if (eid
407             && eid < ADEID_MAX
408             && off < sizeof(ad->ad_data)
409             && (off + len <= sizeof(ad->ad_data) || eid == ADEID_RFORK)) {
410             ad->ad_eid[ eid ].ade_off = off;
411             ad->ad_eid[ eid ].ade_len = len;
412         } else if (!warning) {
413             warning = 1;
414             LOG(log_warning, logtype_ad, "parse_entries: bogus eid: %d", eid);
415         }
416     }
417 }
418
419 /* this reads enough of the header so that we can figure out all of
420  * the entry lengths and offsets. once that's done, we just read/mmap
421  * the rest of the header in.
422  *
423  * NOTE: we're assuming that the resource fork is kept at the end of
424  *       the file. also, mmapping won't work for the hfs fs until it
425  *       understands how to mmap header files. */
426 static int ad_header_read(const char *path _U_, struct adouble *ad, const struct stat *hst)
427 {
428     char                *buf = ad->ad_data;
429     uint16_t            nentries;
430     int                 len;
431     ssize_t             header_len;
432     struct stat         st;
433
434     /* read the header */
435     if ((header_len = adf_pread( ad->ad_mdp, buf, AD_DATASZ2, 0)) < 0) {
436         return -1;
437     }
438     if (header_len < AD_HEADER_LEN) {
439         errno = EIO;
440         return -1;
441     }
442
443     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
444     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
445     ad->ad_magic = ntohl( ad->ad_magic );
446     ad->ad_version = ntohl( ad->ad_version );
447
448     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
449         LOG(log_error, logtype_ad, "ad_open: can't parse AppleDouble header.");
450         errno = EIO;
451         return -1;
452     }
453
454     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
455     nentries = ntohs( nentries );
456
457     /* read in all the entry headers. if we have more than the
458      * maximum, just hope that the rfork is specified early on. */
459     len = nentries*AD_ENTRY_LEN;
460
461     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
462         len = sizeof(ad->ad_data) - AD_HEADER_LEN;
463
464     buf += AD_HEADER_LEN;
465     if (len > header_len - AD_HEADER_LEN) {
466         LOG(log_error, logtype_ad, "ad_header_read: can't read entry info.");
467         errno = EIO;
468         return -1;
469     }
470
471     /* figure out all of the entry offsets and lengths. if we aren't
472      * able to read a resource fork entry, bail. */
473     nentries = len / AD_ENTRY_LEN;
474     parse_entries(ad, buf, nentries);
475     if (!ad_getentryoff(ad, ADEID_RFORK)
476         || (ad_getentryoff(ad, ADEID_RFORK) > sizeof(ad->ad_data))
477         ) {
478         LOG(log_error, logtype_ad, "ad_header_read: problem with rfork entry offset.");
479         errno = EIO;
480         return -1;
481     }
482
483     if (ad_getentryoff(ad, ADEID_RFORK) > header_len) {
484         LOG(log_error, logtype_ad, "ad_header_read: can't read in entries.");
485         errno = EIO;
486         return -1;
487     }
488
489     if (hst == NULL) {
490         hst = &st;
491         if (fstat(ad->ad_mdp->adf_fd, &st) < 0) {
492             return 1; /* fail silently */
493         }
494     }
495
496     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
497
498     return 0;
499 }
500
501 /* error here means it's not ad ._ adouble:osx file and thus we return 1 */
502 int ad_valid_header_osx(const char *path)
503 {
504     EC_INIT;
505     int fd = -1;
506     struct adouble      adosx;
507     char                *buf = &adosx.ad_data[0];
508     ssize_t             header_len;
509
510     LOG(log_debug, logtype_ad, "ad_valid_header_osx(\"%s\"): BEGIN", fullpathname(path));
511
512     EC_NEG1( fd = open(path, O_RDONLY) );
513
514     /* read the header */
515     EC_NEG1( header_len = read(fd, buf, AD_DATASZ_OSX) );
516
517     if (header_len < AD_HEADER_LEN)
518         EC_FAIL;
519
520     memcpy(&adosx.ad_magic, buf, sizeof(adosx.ad_magic));
521     memcpy(&adosx.ad_version, buf + ADEDOFF_VERSION, sizeof(adosx.ad_version));
522     adosx.ad_magic = ntohl(adosx.ad_magic);
523     adosx.ad_version = ntohl(adosx.ad_version);
524
525     if ((adosx.ad_magic != AD_MAGIC) || (adosx.ad_version != AD_VERSION2)) {
526         LOG(log_warning, logtype_ad, "ad_valid_header_osx(\"%s\"): not an adouble:osx file", fullpathname(path));
527         EC_FAIL;
528     }
529
530     if (strncmp(buf + ADEDOFF_FILLER, "Mac OS X", strlen("Mac OS X")) == 0)
531         /*
532          * It's a split fork created by OS X, it's not our "own" ._ file
533          * and thus not a valid header in this context.
534          * We allow enumeration and access.
535          */
536         EC_FAIL;
537
538 EC_CLEANUP:
539     LOG(log_debug, logtype_ad, "ad_valid_header_osx(\"%s\"): END: %d", fullpathname(path), ret);
540     if (fd != -1)
541         close(fd);
542     if (ret != 0)
543         return 1;
544     return 0;
545 }
546
547 /* Read an ._ file, only uses the resofork, finderinfo is taken from EA */
548 static int ad_header_read_osx(const char *path _U_, struct adouble *ad, const struct stat *hst)
549 {
550     EC_INIT;
551     struct adouble      adosx;
552     char                *buf = &adosx.ad_data[0];
553     uint16_t            nentries;
554     int                 len;
555     ssize_t             header_len;
556     struct stat         st;
557
558     memset(buf, 0, sizeof(adosx.ad_data));
559
560     /* read the header */
561     EC_NEG1( header_len = adf_pread(ad->ad_rfp, buf, AD_DATASZ_OSX, 0) );
562
563     if (header_len < AD_HEADER_LEN) {
564         errno = EIO;
565         return -1;
566     }
567
568     memcpy(&adosx.ad_magic, buf, sizeof(adosx.ad_magic));
569     memcpy(&adosx.ad_version, buf + ADEDOFF_VERSION, sizeof(adosx.ad_version));
570     adosx.ad_magic = ntohl(adosx.ad_magic);
571     adosx.ad_version = ntohl(adosx.ad_version);
572
573     if ((adosx.ad_magic != AD_MAGIC) || (adosx.ad_version != AD_VERSION2)) {
574         LOG(log_error, logtype_ad, "ad_header_read_osx: can't parse AppleDouble header");
575         errno = EIO;
576         return -1;
577     }
578
579     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
580     nentries = ntohs(nentries);
581     len = nentries * AD_ENTRY_LEN;
582
583     if (len + AD_HEADER_LEN > sizeof(adosx.ad_data))
584         len = sizeof(adosx.ad_data) - AD_HEADER_LEN;
585
586     buf += AD_HEADER_LEN;
587     if (len > header_len - AD_HEADER_LEN) {
588         LOG(log_error, logtype_ad, "ad_header_read_osx: can't read entry info.");
589         errno = EIO;
590         return -1;
591     }
592
593     nentries = len / AD_ENTRY_LEN;
594     parse_entries(&adosx, buf, nentries);
595
596     if (ad_getentryoff(&adosx, ADEID_RFORK) == 0
597         || ad_getentryoff(&adosx, ADEID_RFORK) > sizeof(ad->ad_data)
598         || ad_getentryoff(&adosx, ADEID_RFORK) > header_len
599         ) {
600         LOG(log_error, logtype_ad, "ad_header_read_osx: problem with rfork entry offset.");
601         errno = EIO;
602         return -1;
603     }
604
605     if (hst == NULL) {
606         hst = &st;
607         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
608     }
609
610     ad_setentryoff(ad, ADEID_RFORK, ad_getentryoff(&adosx, ADEID_RFORK));
611     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
612
613 EC_CLEANUP:
614     EC_EXIT;
615 }
616
617 static int ad_header_read_ea(const char *path, struct adouble *ad, const struct stat *hst _U_)
618 {
619     EC_INIT;
620     uint16_t nentries;
621     int      len;
622     ssize_t  header_len;
623     char     *buf = ad->ad_data;
624
625     if (ad_meta_fileno(ad) != -1)
626         header_len = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_META, ad->ad_data, AD_DATASZ_EA);
627     else
628         header_len = sys_getxattr(path, AD_EA_META, ad->ad_data, AD_DATASZ_EA);
629     if (header_len < 1) {
630         LOG(log_debug, logtype_ad, "ad_header_read_ea: %s", strerror(errno));
631         EC_FAIL;
632     }
633
634     if (header_len < AD_DATASZ_EA) {
635         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): short metadata EA", fullpathname(path));
636         errno = EINVAL;
637         EC_FAIL;
638     }
639
640     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
641     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
642
643     ad->ad_magic = ntohl( ad->ad_magic );
644     ad->ad_version = ntohl( ad->ad_version );
645
646     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
647         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): wrong magic or version", fullpathname(path));
648         errno = EINVAL;
649         EC_FAIL;
650     }
651
652     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
653     nentries = ntohs( nentries );
654     if (nentries != ADEID_NUM_EA) {
655         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): invalid number of entries: %d", fullpathname(path), nentries);
656         errno = EINVAL;
657         EC_FAIL;
658     }
659
660     /* Now parse entries */
661     parse_entries(ad, buf + AD_HEADER_LEN, nentries);
662
663     if (nentries != ADEID_NUM_EA
664         || !ad_entry(ad, ADEID_FINDERI)
665         || !ad_entry(ad, ADEID_COMMENT)
666         || !ad_entry(ad, ADEID_FILEDATESI)
667         || !ad_entry(ad, ADEID_AFPFILEI)
668         || !ad_entry(ad, ADEID_PRIVDEV)
669         || !ad_entry(ad, ADEID_PRIVINO)
670         || !ad_entry(ad, ADEID_PRIVSYN)
671         || !ad_entry(ad, ADEID_PRIVID)) {
672         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): invalid metadata EA", fullpathname(path));
673         errno = EINVAL;
674         EC_FAIL;
675     }
676
677 EC_CLEANUP:
678     if (ret != 0 && errno == EINVAL) {
679         become_root();
680         (void)sys_removexattr(path, AD_EA_META);
681         unbecome_root();
682         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): deleted invalid metadata EA", fullpathname(path), nentries);
683         errno = ENOENT;
684     }
685     EC_EXIT;
686 }
687
688 /*!
689  * Takes a path to an AppleDouble file and creates the parrent .AppleDouble directory
690  *
691  * Example:
692  * path: "/path/.AppleDouble/file"
693  * => mkdir("/path/.AppleDouble/") (in ad_mkdir())
694  */
695 static int ad_mkrf(const char *path)
696 {
697     char *slash;
698     /*
699      * Probably .AppleDouble doesn't exist, try to mkdir it.
700      */
701     if (NULL == ( slash = strrchr( path, '/' )) ) {
702         return -1;
703     }
704     *slash = '\0';
705     errno = 0;
706     if ( ad_mkdir( path, 0777 ) < 0 ) {
707         return -1;
708     }
709     *slash = '/';
710     return 0;
711 }
712
713 #ifdef HAVE_EAFD
714 static int ad_mkrf_ea(const char *path _U_)
715 {
716     AFP_PANIC("ad_mkrf_ea: dont use");
717     return 0;
718 }
719 #endif
720
721 static int ad_mkrf_osx(const char *path _U_)
722 {
723     return 0;
724 }
725
726 /* ----------------
727    if we are root change path user/ group
728    It can be a native function for BSD cf. FAQ.Q10
729    path:  pathname to chown
730    stbuf: parent directory inode
731
732    use fstat and fchown or lchown with linux?
733 */
734 #define EMULATE_SUIDDIR
735
736 static int ad_chown(const char *path, struct stat *stbuf)
737 {
738     int ret = 0;
739 #ifdef EMULATE_SUIDDIR
740     uid_t id;
741
742     if (default_uid != (uid_t)-1) {
743         /* we are root (admin) */
744         id = (default_uid)?default_uid:stbuf->st_uid;
745         ret = lchown( path, id, stbuf->st_gid );
746     }
747 #endif
748     return ret;
749 }
750
751 #define DEFMASK 07700   /* be conservative */
752
753 /* ----------------
754    return access right and inode of path parent directory
755 */
756 static int ad_mode_st(const char *path, mode_t *mode, struct stat *stbuf)
757 {
758     if (*mode == 0) {
759         return -1;
760     }
761     if (ad_stat(path, stbuf) != 0) {
762         *mode &= DEFMASK;
763         return -1;
764     }
765     *mode &= stbuf->st_mode;
766     return 0;
767 }
768
769 /* --------------------------- */
770 static int ad_header_upgrade(struct adouble *ad _U_, const char *name _U_)
771 {
772     return 0;
773 }
774
775 static int ad_header_upgrade_ea(struct adouble *ad _U_, const char *name _U_)
776 {
777     AFP_PANIC("ad_header_upgrade_ea: dont use");
778     return 0;
779 }
780
781 /*!
782  * Error handling for adouble header(=metadata) file open error
783  *
784  * We're called because opening ADFLAGS_HF caused an error.
785  * 1. In case ad_open is called with ADFLAGS_NOHF the error is suppressed.
786  * 2. Open non-existent ressource fork, this will just result in first read return EOF
787  * 3. If ad_open was called with ADFLAGS_DF we may have opened the datafork and thus
788  *    ought to close it before returning with an error condition.
789  */
790 static int ad_error(struct adouble *ad, int adflags)
791 {
792     int err = errno;
793     if (adflags & ADFLAGS_NOHF) { /* 1 */
794         return 0;
795     }
796     if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_RF) && (errno == ENOENT)) /* 2 */
797         return 0;
798     if (adflags & (ADFLAGS_DF | ADFLAGS_SETSHRMD | ADFLAGS_CHECK_OF)) { /* 3 */
799         ad_close( ad, ADFLAGS_DF );
800         err = errno;
801     }
802     return -1 ;
803 }
804
805 /*!
806  * Map ADFLAGS to open() flags
807  *
808  * @param adfile   (r) the file you really want to open: ADFLAGS_DF or ADFLAGS_HF
809  * @param adflags  (r) flags from ad_open(..., adflags, ...)
810  * @returns            mapped flags suitable for calling open()
811  */
812 static int ad2openflags(const struct adouble *ad, int adfile, int adflags)
813 {
814     int oflags = 0;
815
816     if (adflags & ADFLAGS_RDWR)
817         oflags |= O_RDWR;
818     if (adflags & ADFLAGS_RDONLY) {
819         if (((adfile == ADFLAGS_DF || adfile == ADFLAGS_RF) && (adflags & ADFLAGS_SETSHRMD))
820             /* need rw access for locks */
821             || ((adfile == ADFLAGS_HF) && (ad->ad_vers == AD_VERSION2)))
822             /* need rw access for adouble file for the case:
823              1) openfork(data+meta:O_RDONLY), 2) openfork(reso(=meta):O_RDWR) */
824             oflags |= O_RDWR;
825         else
826             oflags |= O_RDONLY;
827     }
828     if (adflags & ADFLAGS_CREATE)
829         oflags |= O_CREAT;
830     if (adflags & ADFLAGS_EXCL)
831         oflags |= O_EXCL;
832     if (adflags & ADFLAGS_TRUNC)
833         oflags |= O_TRUNC;
834
835     if (!(ad->ad_options & ADVOL_FOLLO_SYML))
836         oflags |= O_NOFOLLOW;
837
838     return oflags;
839 }
840
841 static int ad_open_df(const char *path, int adflags, mode_t mode, struct adouble *ad)
842 {
843     EC_INIT;
844     struct stat st_dir;
845     int         oflags;
846     mode_t      admode;
847     int         st_invalid = -1;
848     ssize_t     lsz;
849
850     LOG(log_debug, logtype_ad,
851         "ad_open_df(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
852         fullpathname(path), adflags2logstr(adflags),
853         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
854         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
855         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
856
857     if (ad_data_fileno(ad) != -1) {
858         /* the file is already open, but we want write access: */
859         if ((adflags & ADFLAGS_RDWR)
860             /* and it was denied the first time: */
861             && (ad->ad_data_fork.adf_flags & O_RDONLY)) {
862                 errno = EACCES;
863                 return -1;
864             }
865         /* it's not new anymore */
866         ad->ad_data_fork.adf_flags &= ~( O_TRUNC | O_CREAT );
867         ad->ad_data_fork.adf_refcount++;
868         goto EC_CLEANUP;
869     }
870
871     oflags = ad2openflags(ad, ADFLAGS_DF, adflags);
872
873     admode = mode;
874     if ((adflags & ADFLAGS_CREATE)) {
875         st_invalid = ad_mode_st(path, &admode, &st_dir);
876         if ((ad->ad_options & ADVOL_UNIXPRIV))
877             admode = mode;
878     }
879
880     ad->ad_data_fork.adf_fd = open(path, oflags, admode);
881
882     if (ad->ad_data_fork.adf_fd == -1) {
883         switch (errno) {
884         case EACCES:
885         case EPERM:
886         case EROFS:
887             if ((adflags & ADFLAGS_SETSHRMD) && (adflags & ADFLAGS_RDONLY)) {
888                 oflags &= ~O_RDWR;
889                 oflags |= O_RDONLY;
890                 EC_NEG1( ad->ad_data_fork.adf_fd = open(path, oflags, admode) );
891                 break;
892             }
893             return -1;
894         case OPEN_NOFOLLOW_ERRNO:
895             ad->ad_data_fork.adf_syml = malloc(MAXPATHLEN+1);
896             if ((lsz = readlink(path, ad->ad_data_fork.adf_syml, MAXPATHLEN)) <= 0) {
897                 free(ad->ad_data_fork.adf_syml);
898                 EC_FAIL;
899             }
900             ad->ad_data_fork.adf_syml[lsz] = 0;
901             ad->ad_data_fork.adf_fd = AD_SYMLINK;
902             break;
903         default:
904             EC_FAIL;
905         }
906     }
907
908     if (!st_invalid)
909         ad_chown(path, &st_dir); /* just created, set owner if admin (root) */
910
911     ad->ad_data_fork.adf_flags = oflags;
912     adf_lock_init(&ad->ad_data_fork);
913     ad->ad_data_fork.adf_refcount++;
914
915 EC_CLEANUP:
916     LOG(log_debug, logtype_ad,
917         "ad_open_df(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
918         fullpathname(path), adflags2logstr(adflags), ret,
919         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
920         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
921         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
922     EC_EXIT;
923 }
924
925 static int ad_open_hf_v2(const char *path, int adflags, mode_t mode, struct adouble *ad)
926 {
927     EC_INIT;
928     struct stat st_dir;
929     struct stat st_meta;
930     struct stat *pst = NULL;
931     const char  *ad_p;
932     int         oflags, nocreatflags, opened = 0;
933     mode_t      admode;
934     int         st_invalid = -1;
935
936     LOG(log_debug, logtype_ad,
937         "ad_open_hf_v2(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
938         fullpathname(path), adflags2logstr(adflags),
939         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
940         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
941         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
942
943     if (ad_meta_fileno(ad) != -1) {
944         /* the file is already open, but we want write access: */
945         if ((adflags & ADFLAGS_RDWR) &&
946             /* and it was already denied: */
947             (ad->ad_mdp->adf_flags & O_RDONLY)) {
948             errno = EACCES;
949             EC_FAIL;
950         }
951         ad_refresh(path, ad);
952         /* it's not new anymore */
953         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
954         ad->ad_mdp->adf_refcount++;
955         goto EC_CLEANUP;
956     }
957
958     ad_p = ad->ad_ops->ad_path(path, adflags);
959     oflags = ad2openflags(ad, ADFLAGS_HF, adflags);
960     LOG(log_debug, logtype_ad,"ad_open_hf_v2(\"%s\"): open flags: %s",
961         fullpathname(path), openflags2logstr(oflags));
962     nocreatflags = oflags & ~(O_CREAT | O_EXCL);
963
964     ad_meta_fileno(ad) = open(ad_p, nocreatflags);
965
966     if (ad_meta_fileno(ad) != -1) {
967         ad->ad_mdp->adf_flags = nocreatflags;
968     } else {
969         switch (errno) {
970         case EACCES:
971         case EPERM:
972         case EROFS:
973             if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_SETSHRMD)) {
974                 nocreatflags &= ~O_RDWR;
975                 nocreatflags |= O_RDONLY;
976                 EC_NEG1( ad_meta_fileno(ad) = open(ad_p, nocreatflags) );
977                 ad->ad_mdp->adf_flags = nocreatflags;
978                 break;
979             }
980             EC_FAIL;
981         case ENOENT:
982             if (!(oflags & O_CREAT))
983                 EC_FAIL;
984             /*
985              * We're expecting to create a new adouble header file here
986              */
987             LOG(log_debug, logtype_ad, "ad_open(\"%s\"): creating adouble file",
988                 fullpathname(path));
989             admode = mode;
990             errno = 0;
991             st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
992             if ((ad->ad_options & ADVOL_UNIXPRIV))
993                 admode = mode;
994             admode = ad_hf_mode(admode);
995             if (errno == ENOENT) {
996                 EC_NEG1_LOG( ad->ad_ops->ad_mkrf(ad_p) );
997                 admode = mode;
998                 st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
999                 if ((ad->ad_options & ADVOL_UNIXPRIV))
1000                     admode = mode;
1001                 admode = ad_hf_mode(admode);
1002             }
1003
1004             /* retry with O_CREAT */
1005             EC_NEG1( ad_meta_fileno(ad) = open(ad_p, oflags, admode) );
1006             ad->ad_mdp->adf_flags = oflags;
1007             /* just created, set owner if admin owner (root) */
1008             if (!st_invalid)
1009                 ad_chown(ad_p, &st_dir);
1010             break;
1011         default:
1012             EC_FAIL;
1013         }
1014     }
1015
1016     /* Now we've got a new opened fd, we need to check that in the error case */
1017     opened = 1;
1018
1019     if (!(ad->ad_mdp->adf_flags & O_CREAT)) {
1020         /* check for 0 length files, treat them as new. */
1021         if (fstat(ad->ad_mdp->adf_fd, &st_meta) == 0) {
1022             if (st_meta.st_size == 0)
1023                 ad->ad_mdp->adf_flags |= O_TRUNC;
1024             else
1025                 /* we have valid data in st_meta stat structure, reused it in ad_header_read */
1026                 pst = &st_meta;
1027         }
1028     }
1029
1030     adf_lock_init(ad->ad_mdp);
1031     ad->ad_mdp->adf_refcount = 1;
1032
1033     if ((ad->ad_mdp->adf_flags & ( O_TRUNC | O_CREAT ))) {
1034         /* This is a new adouble header file, create it */
1035         EC_NEG1_LOG( new_ad_header(ad, path, pst, adflags) );
1036         ad_flush(ad);
1037     } else {
1038         /* Read the adouble header in and parse it.*/
1039         EC_NEG1_LOG( ad->ad_ops->ad_header_read(path, ad, pst) );
1040     }
1041
1042 EC_CLEANUP:
1043     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1044         close(ad_meta_fileno(ad));
1045         ad_meta_fileno(ad) = -1;
1046         ad->ad_mdp->adf_refcount = 0;
1047     }
1048     LOG(log_debug, logtype_ad,
1049         "ad_open_hf_v2(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1050         fullpathname(path), adflags2logstr(adflags), ret,
1051         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1052         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1053         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1054     EC_EXIT;
1055 }
1056
1057 static int ad_open_hf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1058 {
1059     EC_INIT;
1060     int oflags;
1061     int opened = 0;
1062
1063     LOG(log_debug, logtype_ad,
1064         "ad_open_hf_ea(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1065         fullpathname(path), adflags2logstr(adflags),
1066         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1067         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1068         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1069
1070     oflags = ad2openflags(ad, ADFLAGS_DF, adflags) & ~(O_CREAT | O_TRUNC);
1071
1072     if (ad_meta_fileno(ad) == AD_SYMLINK)
1073         goto EC_CLEANUP;
1074
1075     if (ad_meta_fileno(ad) != -1) {
1076         /* the file is already open, but we want write access: */
1077         if ((oflags & O_RDWR) &&
1078             /* and it was already denied: */
1079             (ad->ad_mdp->adf_flags & O_RDONLY)) {
1080             LOG(log_error, logtype_ad, "ad_open_hf_ea(%s): rw request for ro file: %s",
1081                 fullpathname(path), strerror(errno));
1082             errno = EACCES;
1083             EC_FAIL;
1084         }
1085         /* it's not new anymore */
1086         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
1087     } else {
1088         if (oflags & O_RDWR) {
1089             /* Fo a RDONLY adouble we just use sys_lgetxattr instead if sys_fgetxattr */
1090             if (adflags & ADFLAGS_DIR)
1091                 /* For directories we open the directory RDONYL so we can later fchdir()  */
1092                 oflags = (oflags & ~O_RDWR) | O_RDONLY;
1093             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): opening base file for meta adouble EA", path);
1094             EC_NEG1(ad_meta_fileno(ad) = open(path, oflags));
1095             opened = 1;
1096             ad->ad_mdp->adf_flags = oflags;
1097         }
1098     }
1099
1100     /* Read the adouble header in and parse it.*/
1101     if (ad->ad_ops->ad_header_read(path, ad, NULL) != 0) {
1102         if (!(adflags & ADFLAGS_CREATE)) {
1103             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
1104             errno = ENOENT;
1105             EC_FAIL;
1106         }
1107         if ((adflags & ADFLAGS_CREATE) && (ad->ad_options & ADVOL_RO)) {
1108             errno = EROFS;
1109             EC_FAIL;
1110         }
1111
1112         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): creating metadata EA", path);
1113
1114         /* It doesnt exist, EPERM or another error */
1115         if (!(errno == ENOATTR || errno == ENOENT)) {
1116             LOG(log_error, logtype_ad, "ad_open_hf_ea: unexpected: %s", strerror(errno));
1117             EC_FAIL;
1118         }
1119
1120         /* Create one */
1121         EC_NEG1_LOG(new_ad_header(ad, path, NULL, adflags));
1122         ad->ad_mdp->adf_flags |= O_CREAT; /* mark as just created */
1123         ad_flush(ad);
1124         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): created metadata EA", path);
1125     }
1126
1127     if (ad_meta_fileno(ad) != -1)
1128         ad->ad_mdp->adf_refcount++;
1129     ad->ad_rlen = ad_reso_size(path, adflags, ad);
1130
1131 EC_CLEANUP:
1132     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1133         close(ad_meta_fileno(ad));
1134         ad_meta_fileno(ad) = -1;
1135         ad->ad_mdp->adf_refcount = 0;
1136     }
1137     LOG(log_debug, logtype_ad,
1138         "ad_open_hf_ea(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1139         fullpathname(path), adflags2logstr(adflags), ret,
1140         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1141         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1142         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1143         
1144     EC_EXIT;
1145 }
1146
1147 static int ad_open_hf(const char *path, int adflags, int mode, struct adouble *ad)
1148 {
1149     int ret = 0;
1150
1151     ad->ad_meta_refcount++;
1152
1153     switch (ad->ad_vers) {
1154     case AD_VERSION2:
1155         ret = ad_open_hf_v2(path, adflags, mode, ad);
1156         break;
1157     case AD_VERSION_EA:
1158         ret = ad_open_hf_ea(path, adflags, mode, ad);
1159         break;
1160     default:
1161         ret = -1;
1162         break;
1163     }
1164
1165     if (ret != 0) {
1166         ad->ad_meta_refcount--;
1167         ret = ad_error(ad, adflags);
1168     }
1169
1170     return ret;
1171 }
1172
1173 /*!
1174  * Get resofork length for adouble:ea, parameter 'ad' may be NULL
1175  */
1176 off_t ad_reso_size(const char *path, int adflags, struct adouble *ad)
1177 {
1178     EC_INIT;
1179     struct stat st;
1180     off_t rlen;
1181
1182     if (adflags & ADFLAGS_DIR)
1183         EC_FAIL;
1184
1185     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): BEGIN", path);
1186
1187 #ifdef HAVE_EAFD
1188     ssize_t easz;
1189
1190     if (ad && ad_reso_fileno(ad) != -1) {
1191         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
1192         rlen = st.st_size;
1193     } else if (ad && ad_meta_fileno(ad) != -1) {
1194         EC_NEG1( (rlen = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_RESO, NULL, 0)) );
1195     } else {
1196         EC_NEG1( (rlen = sys_lgetxattr(path, AD_EA_RESO, NULL, 0)) );
1197     }
1198
1199 #else
1200     const char *rfpath;
1201     EC_NULL_LOG( rfpath = ad_path_osx(path, adflags));
1202     EC_ZERO( lstat(rfpath, &st));
1203     if (st.st_size > ADEDOFF_RFORK_OSX)
1204         rlen = st.st_size - ADEDOFF_RFORK_OSX;
1205     else
1206         rlen = 0;
1207 #endif
1208
1209     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): size: %zd", path, rlen);
1210
1211 EC_CLEANUP:
1212     if (ret != 0)
1213         rlen = 0;
1214     return rlen;
1215 }
1216
1217 static int ad_open_rf_v2(const char *path, int adflags, int mode, struct adouble *ad)
1218 {
1219     EC_INIT;
1220
1221     /*
1222      * ad_open_hf_v2() does the work, but if it failed and adflags are ADFLAGS_NOHF | ADFLAGS_RF
1223      * ad_open_hf_v2() didn't give an error, but we're supposed to return a reso fork fd
1224      */
1225
1226     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): BEGIN", fullpathname(path));
1227
1228     if (!AD_META_OPEN(ad) && !(adflags & (ADFLAGS_NORF | ADFLAGS_RDONLY)))
1229         EC_FAIL;
1230     if (AD_META_OPEN(ad))
1231         ad->ad_reso_refcount++;
1232
1233 EC_CLEANUP:
1234     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): END: %d", fullpathname(path), ret);
1235     EC_EXIT;
1236 }
1237
1238 static int ad_open_rf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1239 {
1240     EC_INIT;
1241     int oflags;
1242     int opened = 0;
1243     int closeflags = adflags & (ADFLAGS_DF | ADFLAGS_HF);
1244 #ifndef HAVE_EAFD
1245     const char *rfpath;
1246     struct stat st;
1247 #endif
1248
1249     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): BEGIN", fullpathname(path));
1250
1251     oflags = ad2openflags(ad, ADFLAGS_RF, adflags) & ~O_CREAT;
1252
1253     if (ad_reso_fileno(ad) != -1) {
1254         /* the file is already open, but we want write access: */
1255         if ((oflags & O_RDWR)
1256             /* and it was already denied: */
1257             && (ad->ad_rfp->adf_flags & O_RDONLY)) {
1258             errno = EACCES;
1259             EC_FAIL;
1260         }
1261         ad->ad_rfp->adf_flags &= ~( O_TRUNC | O_CREAT );
1262         ad->ad_reso_refcount++;
1263         ad->ad_rfp->adf_refcount++;
1264         EC_NEG1_LOG( ad->ad_rlen = ad_reso_size(path, adflags, ad));
1265         goto EC_CLEANUP;
1266     }
1267 #ifdef HAVE_EAFD
1268     if (ad_meta_fileno(ad) < 0)
1269         EC_FAIL;
1270     if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1271         if (!(adflags & ADFLAGS_CREATE)) {
1272             switch (errno) {
1273             case EACCES:
1274             case EPERM:
1275             case EROFS:
1276                 if (!(adflags & ADFLAGS_RDONLY)) {
1277                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1278                     EC_FAIL;
1279                 }
1280                 oflags &= ~O_RDWR;
1281                 oflags |= O_RDONLY;
1282                 if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1283                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1284                     EC_FAIL;
1285                 }
1286                 break;
1287             case ENOENT:
1288                 EC_EXIT_STATUS(0);
1289             default:
1290                 LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(path), strerror(errno));
1291                 EC_FAIL;
1292             }
1293         } else {
1294             oflags |= O_CREAT;
1295             EC_NEG1_LOG( ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad),
1296                                                              AD_EA_RESO, oflags, 0666) );
1297         }
1298     }
1299 #else
1300     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags) );
1301     if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1302         if (!(adflags & ADFLAGS_CREATE)) {
1303             switch (errno) {
1304             case EACCES:
1305             case EPERM:
1306             case EROFS:
1307                 if (!(adflags & ADFLAGS_RDONLY)) {
1308                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1309                     EC_FAIL;
1310                 }
1311                 oflags &= ~O_RDWR;
1312                 oflags |= O_RDONLY;
1313                 if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1314                     LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1315                     EC_FAIL;
1316                 }
1317                 break;
1318             case ENOENT:
1319                 EC_EXIT_STATUS(0);
1320             default:
1321                 LOG(log_error, logtype_ad, "ad_open_rf_ea(\"%s\"): \"%s\"", fullpathname(rfpath), strerror(errno));
1322                 EC_FAIL;
1323             }
1324         } else {
1325             oflags |= O_CREAT;
1326             EC_NEG1_LOG( ad_reso_fileno(ad) = open(rfpath, oflags, mode) );
1327             LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork: \"%s\"",
1328                 path, rfpath);
1329         }
1330     }
1331 #endif
1332     opened = 1;
1333     ad->ad_rfp->adf_refcount = 1;
1334     ad->ad_rfp->adf_flags = oflags;
1335     ad->ad_reso_refcount++;
1336
1337 #ifndef HAVE_EAFD
1338     EC_ZERO_LOG( fstat(ad_reso_fileno(ad), &st) );
1339     if (ad->ad_rfp->adf_flags & O_CREAT) {
1340         /* This is a new adouble header file, create it */
1341         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, initializing: \"%s\"",
1342             path, rfpath);
1343         EC_NEG1_LOG( new_ad_header(ad, path, NULL, adflags) );
1344         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, flushing: \"%s\"",
1345             path, rfpath);
1346         ad_flush(ad);
1347     } else {
1348         /* Read the adouble header */
1349         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): reading adouble rfork: \"%s\"",
1350             path, rfpath);
1351         EC_NEG1_LOG( ad_header_read_osx(NULL, ad, &st) );
1352     }
1353 #endif
1354
1355     ad->ad_rlen = ad_reso_size(path, adflags, ad);
1356
1357 EC_CLEANUP:
1358     if (ret != 0) {
1359         if (opened && (ad_reso_fileno(ad) != -1)) {
1360             close(ad_reso_fileno(ad));
1361             ad_reso_fileno(ad) = -1;
1362             ad->ad_reso_refcount--;
1363             ad->ad_rfp->adf_refcount = 0;
1364         }
1365         if (adflags & ADFLAGS_NORF) {
1366             ret = 0;
1367         } else {
1368             int err = errno;
1369             (void)ad_close(ad, closeflags);
1370             errno = err;
1371         }
1372         ad->ad_rlen = 0;
1373     }
1374
1375     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): END: %d", fullpathname(path), ret);
1376
1377     EC_EXIT;
1378 }
1379
1380 /*!
1381  * Open ressource fork
1382  */
1383 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
1384 {
1385     int ret = 0;
1386
1387     switch (ad->ad_vers) {
1388     case AD_VERSION2:
1389         ret = ad_open_rf_v2(path, adflags, mode, ad);
1390         break;
1391     case AD_VERSION_EA:
1392         ret = ad_open_rf_ea(path, adflags, mode, ad);
1393         break;
1394     default:
1395         ret = -1;
1396         break;
1397     }
1398
1399     return ret;
1400 }
1401
1402 /***********************************************************************************
1403  * API functions
1404  ********************************************************************************* */
1405
1406 off_t ad_getentryoff(const struct adouble *ad, int eid)
1407 {
1408     if (ad->ad_vers == AD_VERSION2)
1409         return ad->ad_eid[eid].ade_off;
1410
1411     switch (eid) {
1412     case ADEID_DFORK:
1413         return 0;
1414     case ADEID_RFORK:
1415 #ifdef HAVE_EAFD
1416         return 0;
1417 #else
1418         return ADEDOFF_RFORK_OSX;
1419 #endif
1420     default:
1421         return ad->ad_eid[eid].ade_off;
1422     }
1423     /* deadc0de */
1424     AFP_PANIC("What am I doing here?");
1425 }
1426
1427 const char *ad_path_ea( const char *path, int adflags _U_)
1428 {
1429     return path;
1430 }
1431
1432 const char *ad_path_osx(const char *path, int adflags _U_)
1433 {
1434     static char pathbuf[ MAXPATHLEN + 1];
1435     char    c, *slash, buf[MAXPATHLEN + 1];
1436
1437     if (!strcmp(path,".")) {
1438         /* fixme */
1439         getcwd(buf, MAXPATHLEN);
1440     }
1441     else {
1442         strlcpy(buf, path, MAXPATHLEN +1);
1443     }
1444     if (NULL != ( slash = strrchr( buf, '/' )) ) {
1445         c = *++slash;
1446         *slash = '\0';
1447         strlcpy( pathbuf, buf, MAXPATHLEN +1);
1448         *slash = c;
1449     } else {
1450         pathbuf[ 0 ] = '\0';
1451         slash = buf;
1452     }
1453     strlcat( pathbuf, "._", MAXPATHLEN  +1);
1454     strlcat( pathbuf, slash, MAXPATHLEN +1);
1455     return pathbuf;
1456 }
1457
1458 /*
1459  * Put the .AppleDouble where it needs to be:
1460  *
1461  *      /   a/.AppleDouble/b
1462  *  a/b
1463  *      \   b/.AppleDouble/.Parent
1464  *
1465  * FIXME: should do something for pathname > MAXPATHLEN
1466  */
1467 const char *ad_path( const char *path, int adflags)
1468 {
1469     static char pathbuf[ MAXPATHLEN + 1];
1470     const char *slash;
1471     size_t  l ;
1472
1473     if ( adflags & ADFLAGS_DIR ) {
1474         l = strlcpy( pathbuf, path, sizeof(pathbuf));
1475
1476         if ( l && l < MAXPATHLEN) {
1477             pathbuf[l++] = '/';
1478         }
1479         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
1480     } else {
1481         if (NULL != ( slash = strrchr( path, '/' )) ) {
1482             slash++;
1483             l = slash - path;
1484             /* XXX we must return NULL here and test in the caller */
1485             if (l > MAXPATHLEN)
1486                 l = MAXPATHLEN;
1487             memcpy( pathbuf, path, l);
1488         } else {
1489             l = 0;
1490             slash = path;
1491         }
1492         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
1493         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
1494     }
1495
1496     return( pathbuf );
1497 }
1498
1499 /* -------------------------
1500  * Support inherited protection modes for AppleDouble files.  The supplied
1501  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1502  * and that value is returned.
1503  */
1504 char *ad_dir(const char *path)
1505 {
1506     static char     modebuf[ MAXPATHLEN + 1];
1507     char        *slash;
1508     /*
1509      * For a path with directories in it, remove the final component
1510      * (path or subdirectory name) to get the name we want to stat.
1511      * For a path which is just a filename, use "." instead.
1512      */
1513     slash = strrchr( path, '/' );
1514     if (slash) {
1515         size_t len;
1516
1517         len = slash - path;
1518         if (len >= MAXPATHLEN) {
1519             errno = ENAMETOOLONG;
1520             return NULL;  /* can't do it */
1521         }
1522         memcpy( modebuf, path, len );
1523         modebuf[len] = '\0';
1524         /* is last char a '/' ? */
1525         if (slash[1] == 0) {
1526             slash = modebuf+ len;
1527             /* remove them */
1528             while (modebuf < slash && slash[-1] == '/') {
1529                 --slash;
1530             }
1531             if (modebuf == slash) {
1532                 goto use_cur;
1533             }
1534             *slash = '\0';
1535             while (modebuf < slash && *slash != '/') {
1536                 --slash;
1537             }
1538             if (modebuf == slash) {
1539                 goto use_cur;
1540             }
1541             *slash = '\0';      /* remove pathname component */
1542         }
1543         return modebuf;
1544     }
1545 use_cur:
1546     modebuf[0] = '.';   /* use current directory */
1547     modebuf[1] = '\0';
1548     return modebuf;
1549 }
1550
1551 int ad_setfuid(const uid_t id)
1552 {
1553     default_uid = id;
1554     return 0;
1555 }
1556
1557 /* ---------------- */
1558 uid_t ad_getfuid(void)
1559 {
1560     return default_uid;
1561 }
1562
1563 /* ----------------
1564    stat path parent directory
1565 */
1566 int ad_stat(const char *path, struct stat *stbuf)
1567 {
1568     char *p;
1569
1570     p = ad_dir(path);
1571     if (!p)
1572         return -1;
1573     return stat( p, stbuf );
1574 }
1575
1576 /* ----------------
1577    return access right of path parent directory
1578 */
1579 int ad_mode( const char *path, mode_t mode)
1580 {
1581     struct stat     stbuf;
1582     ad_mode_st(path, &mode, &stbuf);
1583     return mode;
1584 }
1585
1586 /*
1587  * Use mkdir() with mode bits taken from ad_mode().
1588  */
1589 int ad_mkdir( const char *path, mode_t mode)
1590 {
1591     int ret;
1592     int st_invalid;
1593     struct stat stbuf;
1594
1595     LOG(log_debug, logtype_ad, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1596         path, mode, getcwdpath());
1597
1598     st_invalid = ad_mode_st(path, &mode, &stbuf);
1599     ret = mkdir( path, mode );
1600     if (ret || st_invalid)
1601         return ret;
1602     ad_chown(path, &stbuf);
1603
1604     return ret;
1605 }
1606
1607 static void ad_init_func(struct adouble *ad)
1608 {
1609     switch (ad->ad_vers) {
1610     case AD_VERSION2:
1611         ad->ad_ops = &ad_adouble;
1612         ad->ad_rfp = &ad->ad_resource_fork;
1613         ad->ad_mdp = &ad->ad_resource_fork;
1614         break;
1615     case AD_VERSION_EA:
1616         ad->ad_ops = &ad_adouble_ea;
1617         ad->ad_rfp = &ad->ad_resource_fork;
1618         ad->ad_mdp = &ad->ad_data_fork;
1619         break;
1620     default:
1621         AFP_PANIC("ad_init: unknown AD version");
1622     }
1623
1624
1625     ad_data_fileno(ad) = -1;
1626     ad_reso_fileno(ad) = -1;
1627     ad_meta_fileno(ad) = -1;
1628     ad->ad_refcount = 1;
1629     ad->ad_rlen = 0;
1630     return;
1631 }
1632
1633 void ad_init_old(struct adouble *ad, int flags, int options)
1634 {
1635     memset(ad, 0, sizeof(struct adouble));
1636     ad->ad_vers = flags;
1637     ad->ad_options = options;
1638     ad_init_func(ad);
1639 }
1640
1641 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1642 {
1643     memset(ad, 0, sizeof(struct adouble));
1644     ad->ad_vers = vol->v_adouble;
1645     ad->ad_options = vol->v_ad_options;
1646     ad_init_func(ad);
1647 }
1648
1649 /*!
1650  * Open data-, metadata(header)- or ressource fork
1651  *
1652  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1653  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1654  *
1655  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1656  * @code
1657  *      struct adoube ad;
1658  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1659  * @endcode
1660  *
1661  * Open a files data fork, metadata fork or ressource fork.
1662  *
1663  * @param ad        (rw) pointer to struct adouble
1664  * @param path      (r)  Path to file or directory
1665  * @param adflags   (r)  Flags specifying which fork to open, can be or'd:
1666  *                         ADFLAGS_DF:        open data fork
1667  *                         ADFLAGS_RF:        open ressource fork
1668  *                         ADFLAGS_HF:        open header (metadata) file
1669  *                         ADFLAGS_NOHF:      it's not an error if header file couldn't be opened
1670  *                         ADFLAGS_NORF:      it's not an error if reso fork couldn't be opened
1671  *                         ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags
1672  *
1673  *                       Access mode for the forks:
1674  *                         ADFLAGS_RDONLY:    open read only
1675  *                         ADFLAGS_RDWR:      open read write
1676  *
1677  *                       Creation flags:
1678  *                         ADFLAGS_CREATE:    create if not existing
1679  *                         ADFLAGS_TRUNC:     truncate
1680  *
1681  *                       Special flags:
1682  *                         ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1683  *                         ADFLAGS_SETSHRMD:  this adouble struct will be used to set sharemode locks.
1684  *                                            This basically results in the files being opened RW instead of RDONLY.
1685  * @param mode      (r)  mode used with O_CREATE
1686  *
1687  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1688  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1689  *   fds of the same file
1690  *
1691  * @returns 0 on success, any other value indicates an error
1692  */
1693 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1694 {
1695     EC_INIT;
1696     va_list args;
1697     mode_t mode = 0;
1698
1699     LOG(log_debug, logtype_ad,
1700         "ad_open(\"%s\", %s): BEGIN {d: %d, m: %d, r: %d}"
1701         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1702         fullpathname(path), adflags2logstr(adflags),
1703         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1704         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1705         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1706         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1707
1708     if (adflags & ADFLAGS_CHECK_OF)
1709         /* Checking for open forks requires sharemode lock support (ie RDWR instead of RDONLY) */
1710         adflags |= ADFLAGS_SETSHRMD;
1711
1712     if (adflags & ADFLAGS_SETSHRMD)
1713         /* sharemode locks are stored in the data fork */
1714         adflags |= ADFLAGS_DF;
1715
1716     if (ad->ad_vers == AD_VERSION2) {
1717         if (adflags & ADFLAGS_RF)
1718             adflags |= ADFLAGS_HF;
1719         if (adflags & ADFLAGS_NORF)
1720             adflags |= ADFLAGS_NOHF;
1721     }
1722
1723     if (ad->ad_inited != AD_INITED) {
1724         ad->ad_adflags = adflags;
1725         ad->ad_inited = AD_INITED;
1726     } else {
1727         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1728         if (ad->ad_resource_fork.adf_refcount > 0)
1729             ad->ad_open_forks |= ATTRBIT_ROPEN;
1730     }
1731
1732     va_start(args, adflags);
1733     if (adflags & ADFLAGS_CREATE)
1734         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1735     va_end(args);
1736
1737     if (adflags & ADFLAGS_DF) {
1738         ad->ad_data_refcount++;
1739         if (ad_open_df(path, adflags, mode, ad) != 0) {
1740             ad->ad_data_refcount--;
1741             EC_FAIL;
1742         }
1743     }
1744
1745     if (adflags & ADFLAGS_HF) {
1746         if (ad_open_hf(path, adflags, mode, ad) != 0) {
1747             EC_FAIL;
1748         }
1749     }
1750
1751     if (adflags & ADFLAGS_RF) {
1752         if (ad_open_rf(path, adflags, mode, ad) != 0) {
1753             EC_FAIL;
1754         }
1755     }
1756
1757     if (adflags & ADFLAGS_CHECK_OF) {
1758         ad->ad_open_forks |= ad_openforks(ad, ad->ad_open_forks);
1759     }
1760
1761 EC_CLEANUP:
1762     LOG(log_debug, logtype_ad,
1763         "ad_open(\"%s\"): END: %d {d: %d, m: %d, r: %d}"
1764         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1765         fullpathname(path), ret,
1766         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1767         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1768         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1769         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1770
1771     EC_EXIT;
1772 }
1773
1774 /*!
1775  * @brief open metadata, possibly as root
1776  *
1777  * Return only metadata but try very hard ie at first try as user, then try as root.
1778  *
1779  * @param name  name of file/dir
1780  * @param flags ADFLAGS_DIR: name is a directory \n
1781  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1782  *
1783  * @param adp   pointer to struct adouble
1784  */
1785 int ad_metadata(const char *name, int flags, struct adouble *adp)
1786 {
1787     int   ret, err, oflags;
1788
1789     /* Sanitize flags */
1790     oflags = (flags & (ADFLAGS_CHECK_OF | ADFLAGS_DIR)) | ADFLAGS_HF | ADFLAGS_RDONLY;    
1791
1792     if ((ret = ad_open(adp, name, oflags)) < 0 && errno == EACCES) {
1793         become_root();
1794         ret = ad_open(adp, name, oflags);
1795         unbecome_root();
1796         err = errno;
1797         errno = err;
1798     }
1799
1800     return ret;
1801 }
1802
1803 /*
1804  * @brief openat like wrapper for ad_metadata
1805  */
1806 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1807 {
1808     int ret = 0;
1809     int cwdfd = -1;
1810
1811     if (dirfd != -1) {
1812         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0)) {
1813             ret = -1;
1814             goto exit;
1815         }
1816     }
1817
1818     if (ad_metadata(name, flags, adp) < 0) {
1819         ret = -1;
1820         goto exit;
1821     }
1822
1823     if (dirfd != -1) {
1824
1825         if (fchdir(cwdfd) != 0) {
1826             LOG(log_error, logtype_ad, "ad_openat: cant chdir back, exiting");
1827             exit(EXITERR_SYS);
1828         }
1829     }
1830
1831 exit:
1832     if (cwdfd != -1)
1833         close(cwdfd);
1834
1835     return ret;
1836
1837 }
1838
1839 int ad_refresh(const char *path, struct adouble *ad)
1840 {
1841     switch (ad->ad_vers) {
1842     case AD_VERSION2:
1843         if (ad_meta_fileno(ad) == -1)
1844             return -1;
1845         return ad->ad_ops->ad_header_read(NULL, ad, NULL);
1846         break;
1847     case AD_VERSION_EA:
1848 #ifdef HAVE_EAFD
1849         if (AD_META_OPEN(ad)) {
1850             if (ad_data_fileno(ad) == -1)
1851                 return -1;
1852             // TODO: read meta EA
1853         }
1854
1855         if (AD_RSRC_OPEN(ad)) {
1856             if (ad_reso_fileno(ad) == -1)
1857                 return -1;
1858             struct stat st;
1859             if (fstat(ad_reso_fileno(ad), &st) == -1)
1860                 return -1;
1861             ad->ad_rlen = st.st_size;
1862         }
1863 #else
1864         if (AD_META_OPEN(ad)) {
1865             if (ad_data_fileno(ad) == -1)
1866                 return -1;
1867             // TODO: read meta EA
1868         }
1869         if (AD_RSRC_OPEN(ad)) {
1870             if (ad_reso_fileno(ad) == -1)
1871                 return -1;
1872             if (ad_header_read_osx(path, ad, NULL) < 0)
1873                 return -1;
1874         }
1875 #endif
1876         return ad->ad_ops->ad_header_read(path, ad, NULL);
1877         break;
1878     default:
1879         return -1;
1880         break;
1881     }
1882
1883 }
1884
1885 int ad_openat(struct adouble  *ad,
1886               int dirfd,  /* dir fd openat like */
1887               const char *path,
1888               int adflags, ...)
1889 {
1890     EC_INIT;
1891     int cwdfd = -1;
1892     va_list args;
1893     mode_t mode = 0;
1894
1895     if (dirfd != -1) {
1896         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0))
1897             EC_FAIL;
1898     }
1899
1900     va_start(args, adflags);
1901     if (adflags & ADFLAGS_CREATE)
1902         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1903     va_end(args);
1904
1905     EC_NEG1( ad_open(ad, path, adflags, mode) );
1906
1907     if (dirfd != -1) {
1908         if (fchdir(cwdfd) != 0) {
1909             AFP_PANIC("ad_openat: cant chdir back");
1910         }
1911     }
1912
1913 EC_CLEANUP:
1914     if (cwdfd != -1)
1915         close(cwdfd);
1916
1917     return ret;
1918 }
1919
1920 /* build a resource fork mode from the data fork mode:
1921  * remove X mode and extend header to RW if R or W (W if R for locking),
1922  */
1923 mode_t ad_hf_mode(mode_t mode)
1924 {
1925     mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH);
1926     /* fnctl lock need write access */
1927     if ((mode & S_IRUSR))
1928         mode |= S_IWUSR;
1929     if ((mode & S_IRGRP))
1930         mode |= S_IWGRP;
1931     if ((mode & S_IROTH))
1932         mode |= S_IWOTH;
1933
1934     /* if write mode set add read mode */
1935     if ((mode & S_IWUSR))
1936         mode |= S_IRUSR;
1937     if ((mode & S_IWGRP))
1938         mode |= S_IRGRP;
1939     if ((mode & S_IWOTH))
1940         mode |= S_IROTH;
1941
1942     return mode;
1943 }