]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
5aca77c0834d15dd092301d31888b979877a3f7f
[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 static int 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     uint16_t nentries;
620     int      len;
621     ssize_t  header_len;
622     char     *buf = ad->ad_data;
623
624     if (ad_meta_fileno(ad) != -1)
625         header_len = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_META, ad->ad_data, AD_DATASZ_EA);
626     else
627         header_len = sys_lgetxattr(path, AD_EA_META, ad->ad_data, AD_DATASZ_EA);
628      if (header_len < 1) {
629         LOG(log_debug, logtype_ad, "ad_header_read_ea: %s", strerror(errno));
630         return -1;
631     }
632
633     if (header_len < AD_HEADER_LEN) {
634         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): bogus AppleDouble header.", fullpathname(path));
635         errno = EIO;
636         return -1;
637     }
638
639     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
640     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
641
642     ad->ad_magic = ntohl( ad->ad_magic );
643     ad->ad_version = ntohl( ad->ad_version );
644
645     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
646         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): wrong magic or version", fullpathname(path));
647         errno = EIO;
648         return -1;
649     }
650
651     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
652     nentries = ntohs( nentries );
653
654     /* Protect against bogus nentries */
655     len = nentries * AD_ENTRY_LEN;
656     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
657         len = sizeof(ad->ad_data) - AD_HEADER_LEN;
658     if (len > header_len - AD_HEADER_LEN) {
659         LOG(log_error, logtype_ad, "ad_header_read_ea(\"%s\"): can't read entry info.", fullpathname(path));
660         errno = EIO;
661         return -1;
662     }
663     nentries = len / AD_ENTRY_LEN;
664
665     /* Now parse entries */
666     parse_entries(ad, buf + AD_HEADER_LEN, nentries);
667
668     return 0;
669 }
670
671 /*!
672  * Takes a path to an AppleDouble file and creates the parrent .AppleDouble directory
673  *
674  * Example:
675  * path: "/path/.AppleDouble/file"
676  * => mkdir("/path/.AppleDouble/") (in ad_mkdir())
677  */
678 static int ad_mkrf(const char *path)
679 {
680     char *slash;
681     /*
682      * Probably .AppleDouble doesn't exist, try to mkdir it.
683      */
684     if (NULL == ( slash = strrchr( path, '/' )) ) {
685         return -1;
686     }
687     *slash = '\0';
688     errno = 0;
689     if ( ad_mkdir( path, 0777 ) < 0 ) {
690         return -1;
691     }
692     *slash = '/';
693     return 0;
694 }
695
696 #ifdef HAVE_EAFD
697 static int ad_mkrf_ea(const char *path _U_)
698 {
699     AFP_PANIC("ad_mkrf_ea: dont use");
700     return 0;
701 }
702 #endif
703
704 static int ad_mkrf_osx(const char *path _U_)
705 {
706     return 0;
707 }
708
709 /* ----------------
710    if we are root change path user/ group
711    It can be a native function for BSD cf. FAQ.Q10
712    path:  pathname to chown
713    stbuf: parent directory inode
714
715    use fstat and fchown or lchown with linux?
716 */
717 #define EMULATE_SUIDDIR
718
719 static int ad_chown(const char *path, struct stat *stbuf)
720 {
721     int ret = 0;
722 #ifdef EMULATE_SUIDDIR
723     uid_t id;
724
725     if (default_uid != (uid_t)-1) {
726         /* we are root (admin) */
727         id = (default_uid)?default_uid:stbuf->st_uid;
728         ret = lchown( path, id, stbuf->st_gid );
729     }
730 #endif
731     return ret;
732 }
733
734 #define DEFMASK 07700   /* be conservative */
735
736 /* ----------------
737    return access right and inode of path parent directory
738 */
739 static int ad_mode_st(const char *path, mode_t *mode, struct stat *stbuf)
740 {
741     if (*mode == 0) {
742         return -1;
743     }
744     if (ad_stat(path, stbuf) != 0) {
745         *mode &= DEFMASK;
746         return -1;
747     }
748     *mode &= stbuf->st_mode;
749     return 0;
750 }
751
752 /* --------------------------- */
753 static int ad_header_upgrade(struct adouble *ad _U_, const char *name _U_)
754 {
755     return 0;
756 }
757
758 static int ad_header_upgrade_ea(struct adouble *ad _U_, const char *name _U_)
759 {
760     AFP_PANIC("ad_header_upgrade_ea: dont use");
761     return 0;
762 }
763
764 /*!
765  * Error handling for adouble header(=metadata) file open error
766  *
767  * We're called because opening ADFLAGS_HF caused an error.
768  * 1. In case ad_open is called with ADFLAGS_NOHF the error is suppressed.
769  * 2. If ad_open was called with ADFLAGS_DF we may have opened the datafork and thus
770  *    ought to close it before returning with an error condition.
771  */
772 static int ad_error(struct adouble *ad, int adflags)
773 {
774     int err = errno;
775     if (adflags & ADFLAGS_NOHF) { /* 1 */
776         return 0;
777     }
778     if (adflags & (ADFLAGS_DF | ADFLAGS_SETSHRMD | ADFLAGS_CHECK_OF)) { /* 2 */
779         ad_close( ad, ADFLAGS_DF );
780         err = errno;
781     }
782     return -1 ;
783 }
784
785 /*!
786  * Map ADFLAGS to open() flags
787  *
788  * @param adfile   (r) the file you really want to open: ADFLAGS_DF or ADFLAGS_HF
789  * @param adflags  (r) flags from ad_open(..., adflags, ...)
790  * @returns            mapped flags suitable for calling open()
791  */
792 static int ad2openflags(const struct adouble *ad, int adfile, int adflags)
793 {
794     int oflags = 0;
795
796     if (adflags & ADFLAGS_RDWR)
797         oflags |= O_RDWR;
798     if (adflags & ADFLAGS_RDONLY) {
799         if (((adfile == ADFLAGS_DF || adfile == ADFLAGS_RF) && (adflags & ADFLAGS_SETSHRMD))
800             /* need rw access for locks */
801             || ((adfile == ADFLAGS_HF) && (ad->ad_vers == AD_VERSION2)))
802             /* need rw access for adouble file for the case:
803              1) openfork(data+meta:O_RDONLY), 2) openfork(reso(=meta):O_RDWR) */
804             oflags |= O_RDWR;
805         else
806             oflags |= O_RDONLY;
807     }
808     if (adflags & ADFLAGS_CREATE)
809         oflags |= O_CREAT;
810     if (adflags & ADFLAGS_EXCL)
811         oflags |= O_EXCL;
812     if (adflags & ADFLAGS_TRUNC)
813         oflags |= O_TRUNC;
814
815     if (!(ad->ad_options & ADVOL_FOLLO_SYML))
816         oflags |= O_NOFOLLOW;
817
818     return oflags;
819 }
820
821 static int ad_open_df(const char *path, int adflags, mode_t mode, struct adouble *ad)
822 {
823     EC_INIT;
824     struct stat st_dir;
825     int         oflags;
826     mode_t      admode;
827     int         st_invalid = -1;
828     ssize_t     lsz;
829
830     LOG(log_debug, logtype_ad,
831         "ad_open_df(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
832         fullpathname(path), adflags2logstr(adflags),
833         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
834         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
835         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
836
837     if (ad_data_fileno(ad) != -1) {
838         /* the file is already open, but we want write access: */
839         if ((adflags & ADFLAGS_RDWR)
840             /* and it was denied the first time: */
841             && (ad->ad_data_fork.adf_flags & O_RDONLY)) {
842                 errno = EACCES;
843                 return -1;
844             }
845         /* it's not new anymore */
846         ad->ad_data_fork.adf_flags &= ~( O_TRUNC | O_CREAT );
847         ad->ad_data_fork.adf_refcount++;
848         goto EC_CLEANUP;
849     }
850
851     oflags = ad2openflags(ad, ADFLAGS_DF, adflags);
852
853     admode = mode;
854     if ((adflags & ADFLAGS_CREATE)) {
855         st_invalid = ad_mode_st(path, &admode, &st_dir);
856         if ((ad->ad_options & ADVOL_UNIXPRIV))
857             admode = mode;
858     }
859
860     ad->ad_data_fork.adf_fd = open(path, oflags, admode);
861
862     if (ad->ad_data_fork.adf_fd == -1) {
863         switch (errno) {
864         case EACCES:
865         case EPERM:
866         case EROFS:
867             if ((adflags & ADFLAGS_SETSHRMD) && (adflags & ADFLAGS_RDONLY)) {
868                 oflags &= ~O_RDWR;
869                 oflags |= O_RDONLY;
870                 EC_NEG1( ad->ad_data_fork.adf_fd = open(path, oflags, admode) );
871                 break;
872             }
873             return -1;
874         case OPEN_NOFOLLOW_ERRNO:
875             ad->ad_data_fork.adf_syml = malloc(MAXPATHLEN+1);
876             if ((lsz = readlink(path, ad->ad_data_fork.adf_syml, MAXPATHLEN)) <= 0) {
877                 free(ad->ad_data_fork.adf_syml);
878                 EC_FAIL;
879             }
880             ad->ad_data_fork.adf_syml[lsz] = 0;
881             ad->ad_data_fork.adf_fd = AD_SYMLINK;
882             break;
883         default:
884             EC_FAIL;
885         }
886     }
887
888     if (!st_invalid)
889         ad_chown(path, &st_dir); /* just created, set owner if admin (root) */
890
891     ad->ad_data_fork.adf_flags = oflags;
892     adf_lock_init(&ad->ad_data_fork);
893     ad->ad_data_fork.adf_refcount++;
894
895 EC_CLEANUP:
896     LOG(log_debug, logtype_ad,
897         "ad_open_df(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
898         fullpathname(path), adflags2logstr(adflags), ret,
899         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
900         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
901         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
902     EC_EXIT;
903 }
904
905 static int ad_open_hf_v2(const char *path, int adflags, mode_t mode, struct adouble *ad)
906 {
907     EC_INIT;
908     struct stat st_dir;
909     struct stat st_meta;
910     struct stat *pst = NULL;
911     const char  *ad_p;
912     int         oflags, nocreatflags, opened = 0;
913     mode_t      admode;
914     int         st_invalid = -1;
915
916     LOG(log_debug, logtype_ad,
917         "ad_open_hf_v2(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
918         fullpathname(path), adflags2logstr(adflags),
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
923     if (ad_meta_fileno(ad) != -1) {
924         /* the file is already open, but we want write access: */
925         if ((adflags & ADFLAGS_RDWR) &&
926             /* and it was already denied: */
927             (ad->ad_mdp->adf_flags & O_RDONLY)) {
928             errno = EACCES;
929             EC_FAIL;
930         }
931         ad_refresh(path, ad);
932         /* it's not new anymore */
933         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
934         ad->ad_mdp->adf_refcount++;
935         goto EC_CLEANUP;
936     }
937
938     ad_p = ad->ad_ops->ad_path(path, adflags);
939     oflags = ad2openflags(ad, ADFLAGS_HF, adflags);
940     LOG(log_debug, logtype_ad,"ad_open_hf_v2(\"%s\"): open flags: %s",
941         fullpathname(path), openflags2logstr(oflags));
942     nocreatflags = oflags & ~(O_CREAT | O_EXCL);
943
944     ad_meta_fileno(ad) = open(ad_p, nocreatflags);
945
946     if (ad_meta_fileno(ad) != -1) {
947         ad->ad_mdp->adf_flags = nocreatflags;
948     } else {
949         switch (errno) {
950         case EACCES:
951         case EPERM:
952         case EROFS:
953             if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_SETSHRMD)) {
954                 nocreatflags &= ~O_RDWR;
955                 nocreatflags |= O_RDONLY;
956                 EC_NEG1( ad_meta_fileno(ad) = open(ad_p, nocreatflags) );
957                 ad->ad_mdp->adf_flags = nocreatflags;
958                 break;
959             }
960             EC_FAIL;
961         case ENOENT:
962             if (!(oflags & O_CREAT))
963                 EC_FAIL;
964             /*
965              * We're expecting to create a new adouble header file here
966              */
967             LOG(log_debug, logtype_ad, "ad_open(\"%s\"): creating adouble file",
968                 fullpathname(path));
969             admode = mode;
970             errno = 0;
971             st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
972             if ((ad->ad_options & ADVOL_UNIXPRIV))
973                 admode = mode;
974             admode = ad_hf_mode(admode);
975             if (errno == ENOENT) {
976                 EC_NEG1_LOG( ad->ad_ops->ad_mkrf(ad_p) );
977                 admode = mode;
978                 st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
979                 if ((ad->ad_options & ADVOL_UNIXPRIV))
980                     admode = mode;
981                 admode = ad_hf_mode(admode);
982             }
983
984             /* retry with O_CREAT */
985             EC_NEG1( ad_meta_fileno(ad) = open(ad_p, oflags, admode) );
986             ad->ad_mdp->adf_flags = oflags;
987             /* just created, set owner if admin owner (root) */
988             if (!st_invalid)
989                 ad_chown(ad_p, &st_dir);
990             break;
991         default:
992             EC_FAIL;
993         }
994     }
995
996     /* Now we've got a new opened fd, we need to check that in the error case */
997     opened = 1;
998
999     if (!(ad->ad_mdp->adf_flags & O_CREAT)) {
1000         /* check for 0 length files, treat them as new. */
1001         if (fstat(ad->ad_mdp->adf_fd, &st_meta) == 0) {
1002             if (st_meta.st_size == 0)
1003                 ad->ad_mdp->adf_flags |= O_TRUNC;
1004             else
1005                 /* we have valid data in st_meta stat structure, reused it in ad_header_read */
1006                 pst = &st_meta;
1007         }
1008     }
1009
1010     adf_lock_init(ad->ad_mdp);
1011     ad->ad_mdp->adf_refcount = 1;
1012
1013     if ((ad->ad_mdp->adf_flags & ( O_TRUNC | O_CREAT ))) {
1014         /* This is a new adouble header file, create it */
1015         EC_NEG1_LOG( new_ad_header(ad, path, pst, adflags) );
1016         ad_flush(ad);
1017     } else {
1018         /* Read the adouble header in and parse it.*/
1019         EC_NEG1_LOG( ad->ad_ops->ad_header_read(path, ad, pst) );
1020     }
1021
1022 EC_CLEANUP:
1023     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1024         close(ad_meta_fileno(ad));
1025         ad_meta_fileno(ad) = -1;
1026         ad->ad_mdp->adf_refcount = 0;
1027     }
1028     LOG(log_debug, logtype_ad,
1029         "ad_open_hf_v2(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1030         fullpathname(path), adflags2logstr(adflags), ret,
1031         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1032         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1033         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1034     EC_EXIT;
1035 }
1036
1037 static int ad_open_hf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1038 {
1039     EC_INIT;
1040     int oflags;
1041     int opened = 0;
1042
1043     LOG(log_debug, logtype_ad,
1044         "ad_open_hf_ea(\"%s\", %s): BEGIN [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1045         fullpathname(path), adflags2logstr(adflags),
1046         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1047         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1048         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1049
1050     oflags = ad2openflags(ad, ADFLAGS_DF, adflags) & ~(O_CREAT | O_TRUNC);
1051
1052     if (ad_meta_fileno(ad) == AD_SYMLINK)
1053         goto EC_CLEANUP;
1054
1055     if (ad_meta_fileno(ad) != -1) {
1056         /* the file is already open, but we want write access: */
1057         if ((oflags & O_RDWR) &&
1058             /* and it was already denied: */
1059             (ad->ad_mdp->adf_flags & O_RDONLY)) {
1060             LOG(log_error, logtype_ad, "ad_open_hf_ea(%s): rw request for ro file: %s",
1061                 fullpathname(path), strerror(errno));
1062             errno = EACCES;
1063             EC_FAIL;
1064         }
1065         /* it's not new anymore */
1066         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
1067     } else {
1068         if (oflags & O_RDWR) {
1069             /* Fo a RDONLY adouble we just use sys_lgetxattr instead if sys_fgetxattr */
1070             if (adflags & ADFLAGS_DIR)
1071                 /* For directories we open the directory RDONYL so we can later fchdir()  */
1072                 oflags = (oflags & ~O_RDWR) | O_RDONLY;
1073             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): opening base file for meta adouble EA", path);
1074             EC_NEG1(ad_meta_fileno(ad) = open(path, oflags));
1075             opened = 1;
1076             ad->ad_mdp->adf_flags = oflags;
1077         }
1078     }
1079
1080     /* Read the adouble header in and parse it.*/
1081     if (ad->ad_ops->ad_header_read(path, ad, NULL) != 0) {
1082         if (!(adflags & ADFLAGS_CREATE)) {
1083             LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
1084             errno = ENOENT;
1085             EC_FAIL;
1086         }
1087
1088         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): creating metadata EA", path);
1089
1090         /* It doesnt exist, EPERM or another error */
1091         if (!(errno == ENOATTR || errno == ENOENT)) {
1092             LOG(log_error, logtype_ad, "ad_open_hf_ea: unexpected: %s", strerror(errno));
1093             EC_FAIL;
1094         }
1095
1096         /* Create one */
1097         EC_NEG1_LOG(new_ad_header(ad, path, NULL, adflags));
1098         ad->ad_mdp->adf_flags |= O_CREAT; /* mark as just created */
1099         ad_flush(ad);
1100         LOG(log_debug, logtype_ad, "ad_open_hf_ea(\"%s\"): created metadata EA", path);
1101     }
1102
1103     if (ad_meta_fileno(ad) != -1)
1104         ad->ad_mdp->adf_refcount++;
1105     (void)ad_reso_size(path, adflags, ad);
1106
1107 EC_CLEANUP:
1108     if (ret != 0 && opened && ad_meta_fileno(ad) != -1) {
1109         close(ad_meta_fileno(ad));
1110         ad_meta_fileno(ad) = -1;
1111         ad->ad_mdp->adf_refcount = 0;
1112     }
1113     LOG(log_debug, logtype_ad,
1114         "ad_open_hf_ea(\"%s\", %s): END: %d [dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1115         fullpathname(path), adflags2logstr(adflags), ret,
1116         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1117         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1118         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1119         
1120     EC_EXIT;
1121 }
1122
1123 static int ad_open_hf(const char *path, int adflags, int mode, struct adouble *ad)
1124 {
1125     int ret = 0;
1126
1127     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
1128     ad->ad_rlen = 0;
1129
1130     switch (ad->ad_vers) {
1131     case AD_VERSION2:
1132         ret = ad_open_hf_v2(path, adflags, mode, ad);
1133         break;
1134     case AD_VERSION_EA:
1135         ret = ad_open_hf_ea(path, adflags, mode, ad);
1136         break;
1137     default:
1138         ret = -1;
1139         break;
1140     }
1141
1142     if (ret == 0)
1143         ad->ad_meta_refcount++;
1144     else
1145         ret = ad_error(ad, adflags);
1146
1147     return ret;
1148 }
1149
1150 /*!
1151  * Get resofork length for adouble:ea
1152  */
1153 static int ad_reso_size(const char *path, int adflags, struct adouble *ad)
1154 {
1155     EC_INIT;
1156     struct stat st;
1157
1158     if (adflags & ADFLAGS_DIR) {
1159         ad->ad_rlen = 0;
1160         goto EC_CLEANUP;
1161     }
1162
1163     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): BEGIN", path);
1164
1165 #ifdef HAVE_EAFD
1166     ssize_t easz;
1167
1168     if (ad_reso_fileno(ad) != -1) {
1169         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
1170         ad->ad_rlen = st.st_size;
1171     } else if (ad_meta_fileno(ad) != -1) {
1172         EC_NEG1( (ad->ad_rlen = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_RESO, NULL, 0)) );
1173     } else {
1174         EC_NEG1( (ad->ad_rlen = sys_lgetxattr(path, AD_EA_RESO, NULL, 0)) );
1175     }
1176
1177 #else
1178     const char *rfpath;
1179     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags));
1180     EC_ZERO( lstat(rfpath, &st));
1181     if (st.st_size > ADEDOFF_RFORK_OSX)
1182         ad->ad_rlen = st.st_size - ADEDOFF_RFORK_OSX;
1183     else
1184         ad->ad_rlen = 0;
1185 #endif
1186
1187     LOG(log_debug, logtype_ad, "ad_reso_size(\"%s\"): size: %zd", path, ad->ad_rlen);
1188
1189 EC_CLEANUP:
1190     if (ret != 0)
1191         ad->ad_rlen = 0;
1192     EC_EXIT;
1193 }
1194
1195 static int ad_open_rf_v2(const char *path, int adflags, int mode, struct adouble *ad)
1196 {
1197     EC_INIT;
1198
1199     /*
1200      * ad_open_hf_v2() does the work, but if it failed and adflags are ADFLAGS_NOHF | ADFLAGS_RF
1201      * ad_open_hf_v2() didn't give an error, but we're supposed to return a reso fork fd
1202      */
1203
1204     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): BEGIN", fullpathname(path));
1205
1206     if (!AD_META_OPEN(ad) && !(adflags & ADFLAGS_NORF))
1207         EC_FAIL;
1208     if (AD_META_OPEN(ad))
1209         ad->ad_reso_refcount++;
1210
1211 EC_CLEANUP:
1212     LOG(log_debug, logtype_ad, "ad_open_rf_v2(\"%s\"): END: %d", fullpathname(path), ret);
1213     EC_EXIT;
1214 }
1215
1216 static int ad_open_rf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1217 {
1218     EC_INIT;
1219     int oflags;
1220     int opened = 0;
1221     int closeflags = adflags & (ADFLAGS_DF | ADFLAGS_HF);
1222 #ifndef HAVE_EAFD
1223     const char *rfpath;
1224     struct stat st;
1225 #endif
1226
1227     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): BEGIN", fullpathname(path));
1228
1229     oflags = ad2openflags(ad, ADFLAGS_RF, adflags) & ~O_CREAT;
1230
1231     if (ad_reso_fileno(ad) != -1) {
1232         /* the file is already open, but we want write access: */
1233         if ((oflags & O_RDWR)
1234             /* and it was already denied: */
1235             && (ad->ad_rfp->adf_flags & O_RDONLY)) {
1236             errno = EACCES;
1237             EC_FAIL;
1238         }
1239         ad->ad_rfp->adf_flags &= ~( O_TRUNC | O_CREAT );
1240         ad->ad_rfp->adf_refcount++;
1241         EC_NEG1_LOG( ad_reso_size(path, adflags, ad));
1242         goto EC_CLEANUP;
1243     }
1244 #ifdef HAVE_EAFD
1245     if (ad_meta_fileno(ad) < 0)
1246         EC_FAIL;
1247     if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1248         if (!(adflags & ADFLAGS_CREATE)) {
1249             errno = ENOENT;
1250             EC_FAIL;
1251         }
1252         oflags |= O_CREAT;
1253         EC_NEG1_LOG( ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad),
1254                                                          AD_EA_RESO, oflags, 0666) ); 
1255     }
1256 #else
1257     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags) );
1258     if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1259         if (!(adflags & ADFLAGS_CREATE))
1260             EC_FAIL;
1261         oflags |= O_CREAT;
1262         EC_NEG1_LOG( ad_reso_fileno(ad) = open(rfpath, oflags, mode) );
1263         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork: \"%s\"",
1264             path, rfpath);
1265     }
1266 #endif
1267     opened = 1;
1268     ad->ad_rfp->adf_refcount = 1;
1269     ad->ad_rfp->adf_flags = oflags;
1270     ad->ad_reso_refcount++;
1271
1272 #ifndef HAVE_EAFD
1273     EC_ZERO_LOG( fstat(ad_reso_fileno(ad), &st) );
1274     if (ad->ad_rfp->adf_flags & O_CREAT) {
1275         /* This is a new adouble header file, create it */
1276         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, initializing: \"%s\"",
1277             path, rfpath);
1278         EC_NEG1_LOG( new_ad_header(ad, path, NULL, adflags) );
1279         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): created adouble rfork, flushing: \"%s\"",
1280             path, rfpath);
1281         ad_flush(ad);
1282     } else {
1283         /* Read the adouble header */
1284         LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): reading adouble rfork: \"%s\"",
1285             path, rfpath);
1286         EC_NEG1_LOG( ad_header_read_osx(NULL, ad, &st) );
1287     }
1288 #endif
1289
1290     (void)ad_reso_size(path, adflags, ad);
1291
1292 EC_CLEANUP:
1293     if (ret != 0) {
1294         if (opened && (ad_reso_fileno(ad) != -1)) {
1295             close(ad_reso_fileno(ad));
1296             ad_reso_fileno(ad) = -1;
1297             ad->ad_reso_refcount--;
1298             ad->ad_rfp->adf_refcount = 0;
1299         }
1300         if (adflags & ADFLAGS_NORF) {
1301             ret = 0;
1302         } else {
1303             int err = errno;
1304             (void)ad_close(ad, closeflags);
1305             errno = err;
1306         }
1307         ad->ad_rlen = 0;
1308     }
1309
1310     LOG(log_debug, logtype_ad, "ad_open_rf(\"%s\"): END: %d", fullpathname(path), ret);
1311
1312     EC_EXIT;
1313 }
1314
1315 /*!
1316  * Open ressource fork
1317  */
1318 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
1319 {
1320     int ret = 0;
1321
1322     switch (ad->ad_vers) {
1323     case AD_VERSION2:
1324         ret = ad_open_rf_v2(path, adflags, mode, ad);
1325         break;
1326     case AD_VERSION_EA:
1327         ret = ad_open_rf_ea(path, adflags, mode, ad);
1328         break;
1329     default:
1330         ret = -1;
1331         break;
1332     }
1333
1334     return ret;
1335 }
1336
1337 /***********************************************************************************
1338  * API functions
1339  ********************************************************************************* */
1340
1341 off_t ad_getentryoff(const struct adouble *ad, int eid)
1342 {
1343     if (ad->ad_vers == AD_VERSION2)
1344         return ad->ad_eid[eid].ade_off;
1345
1346     switch (eid) {
1347     case ADEID_DFORK:
1348         return 0;
1349     case ADEID_RFORK:
1350 #ifdef HAVE_EAFD
1351         return 0;
1352 #else
1353         return ADEDOFF_RFORK_OSX;
1354 #endif
1355     default:
1356         return ad->ad_eid[eid].ade_off;
1357     }
1358     /* deadc0de */
1359     AFP_PANIC("What am I doing here?");
1360 }
1361
1362 const char *ad_path_ea( const char *path, int adflags _U_)
1363 {
1364     return path;
1365 }
1366
1367 const char *ad_path_osx(const char *path, int adflags _U_)
1368 {
1369     static char pathbuf[ MAXPATHLEN + 1];
1370     char    c, *slash, buf[MAXPATHLEN + 1];
1371
1372     if (!strcmp(path,".")) {
1373         /* fixme */
1374         getcwd(buf, MAXPATHLEN);
1375     }
1376     else {
1377         strlcpy(buf, path, MAXPATHLEN +1);
1378     }
1379     if (NULL != ( slash = strrchr( buf, '/' )) ) {
1380         c = *++slash;
1381         *slash = '\0';
1382         strlcpy( pathbuf, buf, MAXPATHLEN +1);
1383         *slash = c;
1384     } else {
1385         pathbuf[ 0 ] = '\0';
1386         slash = buf;
1387     }
1388     strlcat( pathbuf, "._", MAXPATHLEN  +1);
1389     strlcat( pathbuf, slash, MAXPATHLEN +1);
1390     return pathbuf;
1391 }
1392
1393 /*
1394  * Put the .AppleDouble where it needs to be:
1395  *
1396  *      /   a/.AppleDouble/b
1397  *  a/b
1398  *      \   b/.AppleDouble/.Parent
1399  *
1400  * FIXME: should do something for pathname > MAXPATHLEN
1401  */
1402 const char *ad_path( const char *path, int adflags)
1403 {
1404     static char pathbuf[ MAXPATHLEN + 1];
1405     const char *slash;
1406     size_t  l ;
1407
1408     if ( adflags & ADFLAGS_DIR ) {
1409         l = strlcpy( pathbuf, path, sizeof(pathbuf));
1410
1411         if ( l && l < MAXPATHLEN) {
1412             pathbuf[l++] = '/';
1413         }
1414         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
1415     } else {
1416         if (NULL != ( slash = strrchr( path, '/' )) ) {
1417             slash++;
1418             l = slash - path;
1419             /* XXX we must return NULL here and test in the caller */
1420             if (l > MAXPATHLEN)
1421                 l = MAXPATHLEN;
1422             memcpy( pathbuf, path, l);
1423         } else {
1424             l = 0;
1425             slash = path;
1426         }
1427         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
1428         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
1429     }
1430
1431     return( pathbuf );
1432 }
1433
1434 /* -------------------------
1435  * Support inherited protection modes for AppleDouble files.  The supplied
1436  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1437  * and that value is returned.
1438  */
1439 char *ad_dir(const char *path)
1440 {
1441     static char     modebuf[ MAXPATHLEN + 1];
1442     char        *slash;
1443     /*
1444      * For a path with directories in it, remove the final component
1445      * (path or subdirectory name) to get the name we want to stat.
1446      * For a path which is just a filename, use "." instead.
1447      */
1448     slash = strrchr( path, '/' );
1449     if (slash) {
1450         size_t len;
1451
1452         len = slash - path;
1453         if (len >= MAXPATHLEN) {
1454             errno = ENAMETOOLONG;
1455             return NULL;  /* can't do it */
1456         }
1457         memcpy( modebuf, path, len );
1458         modebuf[len] = '\0';
1459         /* is last char a '/' ? */
1460         if (slash[1] == 0) {
1461             slash = modebuf+ len;
1462             /* remove them */
1463             while (modebuf < slash && slash[-1] == '/') {
1464                 --slash;
1465             }
1466             if (modebuf == slash) {
1467                 goto use_cur;
1468             }
1469             *slash = '\0';
1470             while (modebuf < slash && *slash != '/') {
1471                 --slash;
1472             }
1473             if (modebuf == slash) {
1474                 goto use_cur;
1475             }
1476             *slash = '\0';      /* remove pathname component */
1477         }
1478         return modebuf;
1479     }
1480 use_cur:
1481     modebuf[0] = '.';   /* use current directory */
1482     modebuf[1] = '\0';
1483     return modebuf;
1484 }
1485
1486 int ad_setfuid(const uid_t id)
1487 {
1488     default_uid = id;
1489     return 0;
1490 }
1491
1492 /* ---------------- */
1493 uid_t ad_getfuid(void)
1494 {
1495     return default_uid;
1496 }
1497
1498 /* ----------------
1499    stat path parent directory
1500 */
1501 int ad_stat(const char *path, struct stat *stbuf)
1502 {
1503     char *p;
1504
1505     p = ad_dir(path);
1506     if (!p)
1507         return -1;
1508     return stat( p, stbuf );
1509 }
1510
1511 /* ----------------
1512    return access right of path parent directory
1513 */
1514 int ad_mode( const char *path, mode_t mode)
1515 {
1516     struct stat     stbuf;
1517     ad_mode_st(path, &mode, &stbuf);
1518     return mode;
1519 }
1520
1521 /*
1522  * Use mkdir() with mode bits taken from ad_mode().
1523  */
1524 int ad_mkdir( const char *path, mode_t mode)
1525 {
1526     int ret;
1527     int st_invalid;
1528     struct stat stbuf;
1529
1530     LOG(log_debug, logtype_ad, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1531         path, mode, getcwdpath());
1532
1533     st_invalid = ad_mode_st(path, &mode, &stbuf);
1534     ret = mkdir( path, mode );
1535     if (ret || st_invalid)
1536         return ret;
1537     ad_chown(path, &stbuf);
1538
1539     return ret;
1540 }
1541
1542 static void ad_init_func(struct adouble *ad)
1543 {
1544     switch (ad->ad_vers) {
1545     case AD_VERSION2:
1546         ad->ad_ops = &ad_adouble;
1547         ad->ad_rfp = &ad->ad_resource_fork;
1548         ad->ad_mdp = &ad->ad_resource_fork;
1549         break;
1550     case AD_VERSION_EA:
1551         ad->ad_ops = &ad_adouble_ea;
1552         ad->ad_rfp = &ad->ad_resource_fork;
1553         ad->ad_mdp = &ad->ad_data_fork;
1554         break;
1555     default:
1556         AFP_PANIC("ad_init: unknown AD version");
1557     }
1558
1559
1560     ad_data_fileno(ad) = -1;
1561     ad_reso_fileno(ad) = -1;
1562     ad_meta_fileno(ad) = -1;
1563     ad->ad_refcount = 1;
1564     return;
1565 }
1566
1567 void ad_init_old(struct adouble *ad, int flags, int options)
1568 {
1569     memset(ad, 0, sizeof(struct adouble));
1570     ad->ad_vers = flags;
1571     ad->ad_options = options;
1572     ad_init_func(ad);
1573 }
1574
1575 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1576 {
1577     memset(ad, 0, sizeof(struct adouble));
1578     ad->ad_vers = vol->v_adouble;
1579     ad->ad_options = vol->v_ad_options;
1580     ad_init_func(ad);
1581 }
1582
1583 /*!
1584  * Open data-, metadata(header)- or ressource fork
1585  *
1586  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1587  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1588  *
1589  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1590  * @code
1591  *      struct adoube ad;
1592  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1593  * @endcode
1594  *
1595  * Open a files data fork, metadata fork or ressource fork.
1596  *
1597  * @param ad        (rw) pointer to struct adouble
1598  * @param path      (r)  Path to file or directory
1599  * @param adflags   (r)  Flags specifying which fork to open, can be or'd:
1600  *                         ADFLAGS_DF:        open data fork
1601  *                         ADFLAGS_RF:        open ressource fork
1602  *                         ADFLAGS_HF:        open header (metadata) file
1603  *                         ADFLAGS_NOHF:      it's not an error if header file couldn't be opened
1604  *                         ADFLAGS_NORF:      it's not an error if reso fork couldn't be opened
1605  *                         ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags
1606  *
1607  *                       Access mode for the forks:
1608  *                         ADFLAGS_RDONLY:    open read only
1609  *                         ADFLAGS_RDWR:      open read write
1610  *
1611  *                       Creation flags:
1612  *                         ADFLAGS_CREATE:    create if not existing
1613  *                         ADFLAGS_TRUNC:     truncate
1614  *
1615  *                       Special flags:
1616  *                         ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1617  *                         ADFLAGS_SETSHRMD:  this adouble struct will be used to set sharemode locks.
1618  *                                            This basically results in the files being opened RW instead of RDONLY.
1619  * @param mode      (r)  mode used with O_CREATE
1620  *
1621  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1622  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1623  *   fds of the same file
1624  *
1625  * @returns 0 on success, any other value indicates an error
1626  */
1627 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1628 {
1629     EC_INIT;
1630     va_list args;
1631     mode_t mode = 0;
1632
1633     LOG(log_debug, logtype_ad,
1634         "ad_open(\"%s\", %s): BEGIN {d: %d, m: %d, r: %d}"
1635         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1636         fullpathname(path), adflags2logstr(adflags),
1637         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1638         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1639         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1640         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1641
1642     if (adflags & ADFLAGS_CHECK_OF)
1643         /* Checking for open forks requires sharemode lock support (ie RDWR instead of RDONLY) */
1644         adflags |= ADFLAGS_SETSHRMD;
1645
1646     if (adflags & ADFLAGS_SETSHRMD)
1647         /* sharemode locks are stored in the data fork */
1648         adflags |= ADFLAGS_DF;
1649
1650     if (ad->ad_vers == AD_VERSION2) {
1651         if (adflags & ADFLAGS_RF)
1652             adflags |= ADFLAGS_HF;
1653         if (adflags & ADFLAGS_NORF)
1654             adflags |= ADFLAGS_NOHF;
1655     }
1656
1657     if (ad->ad_inited != AD_INITED) {
1658         ad->ad_adflags = adflags;
1659         ad->ad_inited = AD_INITED;
1660     } else {
1661         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1662         if (ad->ad_resource_fork.adf_refcount > 0)
1663             ad->ad_open_forks |= ATTRBIT_ROPEN;
1664     }
1665
1666     va_start(args, adflags);
1667     if (adflags & ADFLAGS_CREATE)
1668         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1669     va_end(args);
1670
1671     if (adflags & ADFLAGS_DF) {
1672         ad->ad_data_refcount++;
1673         if (ad_open_df(path, adflags, mode, ad) != 0) {
1674             ad->ad_data_refcount--;
1675             EC_FAIL;
1676         }
1677     }
1678
1679     if (adflags & ADFLAGS_HF) {
1680         if (ad_open_hf(path, adflags, mode, ad) != 0) {
1681             EC_FAIL;
1682         }
1683     }
1684
1685     if (adflags & ADFLAGS_RF) {
1686         if (ad_open_rf(path, adflags, mode, ad) != 0) {
1687             EC_FAIL;
1688         }
1689     }
1690
1691     if (adflags & ADFLAGS_CHECK_OF) {
1692         ad->ad_open_forks |= ad_openforks(ad, ad->ad_open_forks);
1693     }
1694
1695 EC_CLEANUP:
1696     LOG(log_debug, logtype_ad,
1697         "ad_open(\"%s\"): END: %d {d: %d, m: %d, r: %d}"
1698         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1699         fullpathname(path), ret,
1700         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1701         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1702         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1703         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1704
1705     EC_EXIT;
1706 }
1707
1708 /*!
1709  * @brief open metadata, possibly as root
1710  *
1711  * Return only metadata but try very hard ie at first try as user, then try as root.
1712  *
1713  * @param name  name of file/dir
1714  * @param flags ADFLAGS_DIR: name is a directory \n
1715  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1716  *
1717  * @param adp   pointer to struct adouble
1718  */
1719 int ad_metadata(const char *name, int flags, struct adouble *adp)
1720 {
1721     int   ret, err, oflags;
1722
1723     /* Sanitize flags */
1724     oflags = (flags & (ADFLAGS_CHECK_OF | ADFLAGS_DIR)) | ADFLAGS_HF | ADFLAGS_RDONLY;    
1725
1726     if ((ret = ad_open(adp, name, oflags)) < 0 && errno == EACCES) {
1727         become_root();
1728         ret = ad_open(adp, name, oflags);
1729         unbecome_root();
1730         err = errno;
1731         errno = err;
1732     }
1733
1734     return ret;
1735 }
1736
1737 /*
1738  * @brief openat like wrapper for ad_metadata
1739  */
1740 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1741 {
1742     int ret = 0;
1743     int cwdfd = -1;
1744
1745     if (dirfd != -1) {
1746         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0)) {
1747             ret = -1;
1748             goto exit;
1749         }
1750     }
1751
1752     if (ad_metadata(name, flags, adp) < 0) {
1753         ret = -1;
1754         goto exit;
1755     }
1756
1757     if (dirfd != -1) {
1758
1759         if (fchdir(cwdfd) != 0) {
1760             LOG(log_error, logtype_ad, "ad_openat: cant chdir back, exiting");
1761             exit(EXITERR_SYS);
1762         }
1763     }
1764
1765 exit:
1766     if (cwdfd != -1)
1767         close(cwdfd);
1768
1769     return ret;
1770
1771 }
1772
1773 int ad_refresh(const char *path, struct adouble *ad)
1774 {
1775     switch (ad->ad_vers) {
1776     case AD_VERSION2:
1777         if (ad_meta_fileno(ad) == -1)
1778             return -1;
1779         return ad->ad_ops->ad_header_read(NULL, ad, NULL);
1780         break;
1781     case AD_VERSION_EA:
1782 #ifdef HAVE_EAFD
1783         if (AD_META_OPEN(ad)) {
1784             if (ad_data_fileno(ad) == -1)
1785                 return -1;
1786             // TODO: read meta EA
1787         }
1788
1789         if (AD_RSRC_OPEN(ad)) {
1790             if (ad_reso_fileno(ad) == -1)
1791                 return -1;
1792             struct stat st;
1793             if (fstat(ad_reso_fileno(ad), &st) == -1)
1794                 return -1;
1795             ad->ad_rlen = st.st_size;
1796         }
1797 #else
1798         if (AD_META_OPEN(ad)) {
1799             if (ad_data_fileno(ad) == -1)
1800                 return -1;
1801             // TODO: read meta EA
1802         }
1803         if (AD_RSRC_OPEN(ad)) {
1804             if (ad_reso_fileno(ad) == -1)
1805                 return -1;
1806             if (ad_header_read_osx(path, ad, NULL) < 0)
1807                 return -1;
1808         }
1809 #endif
1810         return ad->ad_ops->ad_header_read(path, ad, NULL);
1811         break;
1812     default:
1813         return -1;
1814         break;
1815     }
1816
1817 }
1818
1819 int ad_openat(struct adouble  *ad,
1820               int dirfd,  /* dir fd openat like */
1821               const char *path,
1822               int adflags, ...)
1823 {
1824     EC_INIT;
1825     int cwdfd = -1;
1826     va_list args;
1827     mode_t mode;
1828
1829     if (dirfd != -1) {
1830         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0))
1831             EC_FAIL;
1832     }
1833
1834     va_start(args, adflags);
1835     if (adflags & ADFLAGS_CREATE)
1836         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1837     va_end(args);
1838
1839     EC_NEG1( ad_open(ad, path, adflags, mode) );
1840
1841     if (dirfd != -1) {
1842         if (fchdir(cwdfd) != 0) {
1843             AFP_PANIC("ad_openat: cant chdir back");
1844         }
1845     }
1846
1847 EC_CLEANUP:
1848     if (cwdfd != -1)
1849         close(cwdfd);
1850
1851     return ret;
1852 }
1853
1854 /* build a resource fork mode from the data fork mode:
1855  * remove X mode and extend header to RW if R or W (W if R for locking),
1856  */
1857 mode_t ad_hf_mode(mode_t mode)
1858 {
1859     mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH);
1860     /* fnctl lock need write access */
1861     if ((mode & S_IRUSR))
1862         mode |= S_IWUSR;
1863     if ((mode & S_IRGRP))
1864         mode |= S_IWGRP;
1865     if ((mode & S_IROTH))
1866         mode |= S_IWOTH;
1867
1868     /* if write mode set add read mode */
1869     if ((mode & S_IWUSR))
1870         mode |= S_IRUSR;
1871     if ((mode & S_IWGRP))
1872         mode |= S_IRGRP;
1873     if ((mode & S_IWOTH))
1874         mode |= S_IROTH;
1875
1876     return mode;
1877 }