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