]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
Import manpage from XML
[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_default, "new_ad_header(\"%s\")", path);
320
321     if (ad->ad_magic == AD_MAGIC) {
322         LOG(log_debug, logtype_default, "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_default, "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_default, "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_default, "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_default, "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_default, "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_afpd, "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_afpd, "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_afpd, "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_afpd, "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_afpd, "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_afpd, "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_default, "ad_header_read_ea: %s", strerror(errno));
628         return -1;
629     }
630
631     if (header_len < AD_HEADER_LEN) {
632         LOG(log_error, logtype_default, "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_default, "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_default, "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_default,
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_default,
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_default,
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_default,"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_default, "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_default,
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_default,
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_default, "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_default, "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_default, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
1078             errno = ENOENT;
1079             EC_FAIL;
1080         }
1081
1082         LOG(log_debug, logtype_default, "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_default, "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_default, "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_default,
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         ret = ad_error(ad, adflags);
1138
1139     return ret;
1140 }
1141
1142 /*!
1143  * Get resofork length for adouble:ea
1144  */
1145 static int ad_reso_size(const char *path, int adflags, struct adouble *ad)
1146 {
1147     EC_INIT;
1148     struct stat st;
1149
1150     if (adflags & ADFLAGS_DIR) {
1151         ad->ad_rlen = 0;
1152         goto EC_CLEANUP;
1153     }
1154
1155     LOG(log_debug, logtype_default, "ad_reso_size(\"%s\"): BEGIN", path);
1156
1157 #ifdef HAVE_EAFD
1158     ssize_t easz;
1159
1160     if (ad_reso_fileno(ad) != -1) {
1161         EC_NEG1( fstat(ad_reso_fileno(ad), &st) );
1162         ad->ad_rlen = st.st_size;
1163     } else if (ad_meta_fileno(ad) != -1) {
1164         EC_NEG1( (ad->ad_rlen = sys_fgetxattr(ad_meta_fileno(ad), AD_EA_RESO, NULL, 0)) );
1165     } else {
1166         EC_NEG1( (ad->ad_rlen = sys_lgetxattr(path, AD_EA_RESO, NULL, 0)) );
1167     }
1168
1169 #else
1170     const char *rfpath;
1171     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags));
1172     EC_ZERO( lstat(rfpath, &st));
1173     if (st.st_size > ADEDOFF_RFORK_OSX)
1174         ad->ad_rlen = st.st_size - ADEDOFF_RFORK_OSX;
1175     else
1176         ad->ad_rlen = 0;
1177 #endif
1178
1179     LOG(log_debug, logtype_default, "ad_reso_size(\"%s\"): size: %zd", path, ad->ad_rlen);
1180
1181 EC_CLEANUP:
1182     if (ret != 0)
1183         ad->ad_rlen = 0;
1184     EC_EXIT;
1185 }
1186
1187 static int ad_open_rf_v2(const char *path, int adflags, int mode, struct adouble *ad)
1188 {
1189     /*
1190      * ad_open_hf_v2() does the work, but if it failed and adflags are ADFLAGS_NOHF | ADFLAGS_RF
1191      * ad_open_hf_v2() didn't give an error, but we're supposed to return a reso fork fd
1192      */
1193     if (!AD_RSRC_OPEN(ad) && !(adflags & ADFLAGS_NORF))
1194         return -1;
1195     return 0;
1196 }
1197
1198 static int ad_open_rf_ea(const char *path, int adflags, int mode, struct adouble *ad)
1199 {
1200     EC_INIT;
1201     int oflags;
1202     int opened = 0;
1203     int closeflags = adflags & (ADFLAGS_DF | ADFLAGS_HF);
1204     ssize_t rlen;
1205 #ifndef HAVE_EAFD
1206     const char *rfpath;
1207     struct stat st;
1208 #endif
1209
1210     LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): BEGIN", fullpathname(path));
1211
1212     oflags = O_NOFOLLOW | (ad2openflags(ad, ADFLAGS_RF, adflags) & ~O_CREAT);
1213
1214     if (ad_reso_fileno(ad) != -1) {
1215         /* the file is already open, but we want write access: */
1216         if ((oflags & O_RDWR)
1217             /* and it was already denied: */
1218             && (ad->ad_rfp->adf_flags & O_RDONLY)) {
1219             errno = EACCES;
1220             EC_FAIL;
1221         }
1222         ad->ad_rfp->adf_flags &= ~( O_TRUNC | O_CREAT );
1223         ad->ad_rfp->adf_refcount++;
1224         EC_NEG1_LOG( ad_reso_size(path, adflags, ad));
1225         goto EC_CLEANUP;
1226     }
1227 #ifdef HAVE_EAFD
1228     if (ad_meta_fileno(ad) < 0)
1229         EC_FAIL;
1230     if ((ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad), AD_EA_RESO, oflags)) == -1) {
1231         if (!(adflags & ADFLAGS_CREATE)) {
1232             errno = ENOENT;
1233             EC_FAIL;
1234         }
1235         oflags |= O_CREAT;
1236         EC_NEG1_LOG( ad_reso_fileno(ad) = sys_getxattrfd(ad_meta_fileno(ad),
1237                                                          AD_EA_RESO, oflags, 0666) ); 
1238     }
1239 #else
1240     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags) );
1241     if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1242         if (!(adflags & ADFLAGS_CREATE))
1243             EC_FAIL;
1244         oflags |= O_CREAT;
1245         EC_NEG1_LOG( ad_reso_fileno(ad) = open(rfpath, oflags, mode) );
1246         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork: \"%s\"",
1247             path, rfpath);
1248     }
1249 #endif
1250     opened = 1;
1251     ad->ad_rfp->adf_refcount = 1;
1252     ad->ad_rfp->adf_flags = oflags;
1253
1254 #ifndef HAVE_EAFD
1255     EC_ZERO_LOG( fstat(ad_reso_fileno(ad), &st) );
1256     if (ad->ad_rfp->adf_flags & O_CREAT) {
1257         /* This is a new adouble header file, create it */
1258         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork, initializing: \"%s\"",
1259             path, rfpath);
1260         EC_NEG1_LOG( new_ad_header(ad, path, NULL, adflags) );
1261         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork, flushing: \"%s\"",
1262             path, rfpath);
1263         ad_flush(ad);
1264     } else {
1265         /* Read the adouble header */
1266         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): reading adouble rfork: \"%s\"",
1267             path, rfpath);
1268         EC_NEG1_LOG( ad_header_read_osx(NULL, ad, &st) );
1269     }
1270 #endif
1271
1272     (void)ad_reso_size(path, adflags, ad);
1273
1274 EC_CLEANUP:
1275     if (ret != 0) {
1276         if (opened && (ad_reso_fileno(ad) != -1)) {
1277             close(ad_reso_fileno(ad));
1278             ad_reso_fileno(ad) = -1;
1279             ad->ad_rfp->adf_refcount = 0;
1280         }
1281         if (adflags & ADFLAGS_NORF) {
1282             ret = 0;
1283         } else {
1284             int err = errno;
1285             (void)ad_close(ad, closeflags);
1286             errno = err;
1287         }
1288         ad->ad_rlen = 0;
1289     }
1290
1291     LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): END: %d", fullpathname(path), ret);
1292
1293     EC_EXIT;
1294 }
1295
1296 /*!
1297  * Open ressource fork
1298  */
1299 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
1300 {
1301     int ret = 0;
1302
1303     switch (ad->ad_vers) {
1304     case AD_VERSION2:
1305         ret = ad_open_rf_v2(path, adflags, mode, ad);
1306         break;
1307     case AD_VERSION_EA:
1308         ret = ad_open_rf_ea(path, adflags, mode, ad);
1309         break;
1310     default:
1311         ret = -1;
1312         break;
1313     }
1314
1315     return ret;
1316 }
1317
1318 /***********************************************************************************
1319  * API functions
1320  ********************************************************************************* */
1321
1322 off_t ad_getentryoff(const struct adouble *ad, int eid)
1323 {
1324     if (ad->ad_vers == AD_VERSION2)
1325         return ad->ad_eid[eid].ade_off;
1326
1327     switch (eid) {
1328     case ADEID_DFORK:
1329         return 0;
1330     case ADEID_RFORK:
1331 #ifdef HAVE_EAFD
1332         return 0;
1333 #else
1334         return ADEDOFF_RFORK_OSX;
1335 #endif
1336     default:
1337         return ad->ad_eid[eid].ade_off;
1338     }
1339     /* deadc0de */
1340     AFP_PANIC("What am I doing here?");
1341 }
1342
1343 const char *ad_path_ea( const char *path, int adflags _U_)
1344 {
1345     return path;
1346 }
1347
1348 const char *ad_path_osx(const char *path, int adflags _U_)
1349 {
1350     static char pathbuf[ MAXPATHLEN + 1];
1351     char    c, *slash, buf[MAXPATHLEN + 1];
1352
1353     if (!strcmp(path,".")) {
1354         /* fixme */
1355         getcwd(buf, MAXPATHLEN);
1356     }
1357     else {
1358         strlcpy(buf, path, MAXPATHLEN +1);
1359     }
1360     if (NULL != ( slash = strrchr( buf, '/' )) ) {
1361         c = *++slash;
1362         *slash = '\0';
1363         strlcpy( pathbuf, buf, MAXPATHLEN +1);
1364         *slash = c;
1365     } else {
1366         pathbuf[ 0 ] = '\0';
1367         slash = buf;
1368     }
1369     strlcat( pathbuf, "._", MAXPATHLEN  +1);
1370     strlcat( pathbuf, slash, MAXPATHLEN +1);
1371     return pathbuf;
1372 }
1373
1374 /*
1375  * Put the .AppleDouble where it needs to be:
1376  *
1377  *      /   a/.AppleDouble/b
1378  *  a/b
1379  *      \   b/.AppleDouble/.Parent
1380  *
1381  * FIXME: should do something for pathname > MAXPATHLEN
1382  */
1383 const char *ad_path( const char *path, int adflags)
1384 {
1385     static char pathbuf[ MAXPATHLEN + 1];
1386     const char *slash;
1387     size_t  l ;
1388
1389     if ( adflags & ADFLAGS_DIR ) {
1390         l = strlcpy( pathbuf, path, sizeof(pathbuf));
1391
1392         if ( l && l < MAXPATHLEN) {
1393             pathbuf[l++] = '/';
1394         }
1395         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
1396     } else {
1397         if (NULL != ( slash = strrchr( path, '/' )) ) {
1398             slash++;
1399             l = slash - path;
1400             /* XXX we must return NULL here and test in the caller */
1401             if (l > MAXPATHLEN)
1402                 l = MAXPATHLEN;
1403             memcpy( pathbuf, path, l);
1404         } else {
1405             l = 0;
1406             slash = path;
1407         }
1408         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
1409         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
1410     }
1411
1412     return( pathbuf );
1413 }
1414
1415 /* -------------------------
1416  * Support inherited protection modes for AppleDouble files.  The supplied
1417  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1418  * and that value is returned.
1419  */
1420 char *ad_dir(const char *path)
1421 {
1422     static char     modebuf[ MAXPATHLEN + 1];
1423     char        *slash;
1424     /*
1425      * For a path with directories in it, remove the final component
1426      * (path or subdirectory name) to get the name we want to stat.
1427      * For a path which is just a filename, use "." instead.
1428      */
1429     slash = strrchr( path, '/' );
1430     if (slash) {
1431         size_t len;
1432
1433         len = slash - path;
1434         if (len >= MAXPATHLEN) {
1435             errno = ENAMETOOLONG;
1436             return NULL;  /* can't do it */
1437         }
1438         memcpy( modebuf, path, len );
1439         modebuf[len] = '\0';
1440         /* is last char a '/' ? */
1441         if (slash[1] == 0) {
1442             slash = modebuf+ len;
1443             /* remove them */
1444             while (modebuf < slash && slash[-1] == '/') {
1445                 --slash;
1446             }
1447             if (modebuf == slash) {
1448                 goto use_cur;
1449             }
1450             *slash = '\0';
1451             while (modebuf < slash && *slash != '/') {
1452                 --slash;
1453             }
1454             if (modebuf == slash) {
1455                 goto use_cur;
1456             }
1457             *slash = '\0';      /* remove pathname component */
1458         }
1459         return modebuf;
1460     }
1461 use_cur:
1462     modebuf[0] = '.';   /* use current directory */
1463     modebuf[1] = '\0';
1464     return modebuf;
1465 }
1466
1467 int ad_setfuid(const uid_t id)
1468 {
1469     default_uid = id;
1470     return 0;
1471 }
1472
1473 /* ---------------- */
1474 uid_t ad_getfuid(void)
1475 {
1476     return default_uid;
1477 }
1478
1479 /* ----------------
1480    stat path parent directory
1481 */
1482 int ad_stat(const char *path, struct stat *stbuf)
1483 {
1484     char *p;
1485
1486     p = ad_dir(path);
1487     if (!p)
1488         return -1;
1489     return lstat( p, stbuf );
1490 }
1491
1492 /* ----------------
1493    return access right of path parent directory
1494 */
1495 int ad_mode( const char *path, mode_t mode)
1496 {
1497     struct stat     stbuf;
1498     ad_mode_st(path, &mode, &stbuf);
1499     return mode;
1500 }
1501
1502 /*
1503  * Use mkdir() with mode bits taken from ad_mode().
1504  */
1505 int ad_mkdir( const char *path, mode_t mode)
1506 {
1507     int ret;
1508     int st_invalid;
1509     struct stat stbuf;
1510
1511     LOG(log_debug, logtype_default, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1512         path, mode, getcwdpath());
1513
1514     st_invalid = ad_mode_st(path, &mode, &stbuf);
1515     ret = mkdir( path, mode );
1516     if (ret || st_invalid)
1517         return ret;
1518     ad_chown(path, &stbuf);
1519
1520     return ret;
1521 }
1522
1523 static void ad_init_func(struct adouble *ad)
1524 {
1525     switch (ad->ad_vers) {
1526     case AD_VERSION2:
1527         ad->ad_ops = &ad_adouble;
1528         ad->ad_rfp = &ad->ad_resource_fork;
1529         ad->ad_mdp = &ad->ad_resource_fork;
1530         break;
1531     case AD_VERSION_EA:
1532         ad->ad_ops = &ad_adouble_ea;
1533         ad->ad_rfp = &ad->ad_resource_fork;
1534         ad->ad_mdp = &ad->ad_data_fork;
1535         break;
1536     default:
1537         AFP_PANIC("ad_init: unknown AD version");
1538     }
1539
1540
1541     ad_data_fileno(ad) = -1;
1542     ad_reso_fileno(ad) = -1;
1543     ad_meta_fileno(ad) = -1;
1544     ad->ad_refcount = 1;
1545     return;
1546 }
1547
1548 void ad_init_old(struct adouble *ad, int flags, int options)
1549 {
1550     memset(ad, 0, sizeof(struct adouble));
1551     ad->ad_vers = flags;
1552     ad->ad_options = options;
1553     ad_init_func(ad);
1554 }
1555
1556 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1557 {
1558     memset(ad, 0, sizeof(struct adouble));
1559     ad->ad_vers = vol->v_adouble;
1560     ad->ad_options = vol->v_ad_options;
1561     ad_init_func(ad);
1562 }
1563
1564 /*!
1565  * Open data-, metadata(header)- or ressource fork
1566  *
1567  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1568  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1569  *
1570  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1571  * @code
1572  *      struct adoube ad;
1573  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1574  * @endcode
1575  *
1576  * Open a files data fork, metadata fork or ressource fork.
1577  *
1578  * @param ad        (rw) pointer to struct adouble
1579  * @param path      (r)  Path to file or directory
1580  * @param adflags   (r)  Flags specifying which fork to open, can be or'd:
1581  *                         ADFLAGS_DF:        open data fork
1582  *                         ADFLAGS_RF:        open ressource fork
1583  *                         ADFLAGS_HF:        open header (metadata) file
1584  *                         ADFLAGS_NOHF:      it's not an error if header file couldn't be opened
1585  *                         ADFLAGS_NORF:      it's not an error if reso fork couldn't be opened
1586  *                         ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags
1587  *
1588  *                       Access mode for the forks:
1589  *                         ADFLAGS_RDONLY:    open read only
1590  *                         ADFLAGS_RDWR:      open read write
1591  *
1592  *                       Creation flags:
1593  *                         ADFLAGS_CREATE:    create if not existing
1594  *                         ADFLAGS_TRUNC:     truncate
1595  *
1596  *                       Special flags:
1597  *                         ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1598  *                         ADFLAGS_SETSHRMD:  this adouble struct will be used to set sharemode locks.
1599  *                                            This basically results in the files being opened RW instead of RDONLY.
1600  * @param mode      (r)  mode used with O_CREATE
1601  *
1602  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1603  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1604  *   fds of the same file
1605  *
1606  * @returns 0 on success, any other value indicates an error
1607  */
1608 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1609 {
1610     EC_INIT;
1611     va_list args;
1612     mode_t mode = 0;
1613
1614     LOG(log_debug, logtype_default,
1615         "ad_open(\"%s\", %s): BEGIN {d: %d, m: %d, r: %d}"
1616         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1617         fullpathname(path), adflags2logstr(adflags),
1618         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1619         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1620         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1621         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1622
1623     if (adflags & ADFLAGS_CHECK_OF)
1624         /* Checking for open forks requires sharemode lock support (ie RDWR instead of RDONLY) */
1625         adflags |= ADFLAGS_SETSHRMD;
1626
1627     if (adflags & ADFLAGS_SETSHRMD)
1628         /* sharemode locks are stored in the data fork */
1629         adflags |= ADFLAGS_DF;
1630
1631     if (ad->ad_vers == AD_VERSION2) {
1632         if (adflags & ADFLAGS_RF)
1633             adflags |= ADFLAGS_HF;
1634         if (adflags & ADFLAGS_NORF)
1635             adflags |= ADFLAGS_NOHF;
1636     }
1637
1638     if (ad->ad_inited != AD_INITED) {
1639         ad->ad_adflags = adflags;
1640         ad->ad_inited = AD_INITED;
1641     } else {
1642         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1643         if (ad->ad_resource_fork.adf_refcount > 0)
1644             ad->ad_open_forks |= ATTRBIT_ROPEN;
1645     }
1646
1647     va_start(args, adflags);
1648     if (adflags & ADFLAGS_CREATE)
1649         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1650     va_end(args);
1651
1652     if (adflags & ADFLAGS_DF) {
1653         ad->ad_data_refcount++;
1654         if (ad_open_df(path, adflags, mode, ad) != 0) {
1655             ad->ad_data_refcount--;
1656             EC_FAIL;
1657         }
1658     }
1659
1660     if (adflags & ADFLAGS_HF) {
1661         ad->ad_meta_refcount++;
1662         if (ad_open_hf(path, adflags, mode, ad) != 0) {
1663             ad->ad_meta_refcount--;
1664             EC_FAIL;
1665         }
1666     }
1667
1668     if (adflags & ADFLAGS_RF) {
1669         ad->ad_reso_refcount++;
1670         if (ad_open_rf(path, adflags, mode, ad) != 0) {
1671             ad->ad_reso_refcount--;
1672             EC_FAIL;
1673         }
1674     }
1675
1676     if (adflags & ADFLAGS_CHECK_OF) {
1677         ad->ad_open_forks |= ad_openforks(ad, ad->ad_open_forks);
1678     }
1679
1680 EC_CLEANUP:
1681     LOG(log_debug, logtype_default,
1682         "ad_open(\"%s\"): END: %d {d: %d, m: %d, r: %d}"
1683         "[dfd: %d (ref: %d), mfd: %d (ref: %d), rfd: %d (ref: %d)]",
1684         fullpathname(path), ret,
1685         ad->ad_data_refcount, ad->ad_meta_refcount, ad->ad_reso_refcount,
1686         ad_data_fileno(ad), ad->ad_data_fork.adf_refcount,
1687         ad_meta_fileno(ad), ad->ad_mdp->adf_refcount,
1688         ad_reso_fileno(ad), ad->ad_rfp->adf_refcount);
1689
1690     EC_EXIT;
1691 }
1692
1693 /*!
1694  * @brief open metadata, possibly as root
1695  *
1696  * Return only metadata but try very hard ie at first try as user, then try as root.
1697  *
1698  * @param name  name of file/dir
1699  * @param flags ADFLAGS_DIR: name is a directory \n
1700  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1701  *
1702  * @param adp   pointer to struct adouble
1703  */
1704 int ad_metadata(const char *name, int flags, struct adouble *adp)
1705 {
1706     int   ret, err, oflags;
1707
1708     /* Sanitize flags */
1709     oflags = (flags & (ADFLAGS_CHECK_OF | ADFLAGS_DIR)) | ADFLAGS_HF | ADFLAGS_RDONLY;    
1710
1711     if ((ret = ad_open(adp, name, oflags)) < 0 && errno == EACCES) {
1712         become_root();
1713         ret = ad_open(adp, name, oflags);
1714         unbecome_root();
1715         err = errno;
1716         errno = err;
1717     }
1718
1719     return ret;
1720 }
1721
1722 /*
1723  * @brief openat like wrapper for ad_metadata
1724  */
1725 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1726 {
1727     int ret = 0;
1728     int cwdfd = -1;
1729
1730     if (dirfd != -1) {
1731         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0)) {
1732             ret = -1;
1733             goto exit;
1734         }
1735     }
1736
1737     if (ad_metadata(name, flags, adp) < 0) {
1738         ret = -1;
1739         goto exit;
1740     }
1741
1742     if (dirfd != -1) {
1743
1744         if (fchdir(cwdfd) != 0) {
1745             LOG(log_error, logtype_afpd, "ad_openat: cant chdir back, exiting");
1746             exit(EXITERR_SYS);
1747         }
1748     }
1749
1750 exit:
1751     if (cwdfd != -1)
1752         close(cwdfd);
1753
1754     return ret;
1755
1756 }
1757
1758 int ad_refresh(const char *path, struct adouble *ad)
1759 {
1760     switch (ad->ad_vers) {
1761     case AD_VERSION2:
1762         if (ad_meta_fileno(ad) == -1)
1763             return -1;
1764         return ad->ad_ops->ad_header_read(NULL, ad, NULL);
1765         break;
1766     case AD_VERSION_EA:
1767 #ifdef HAVE_EAFD
1768         if (AD_META_OPEN(ad)) {
1769             if (ad_data_fileno(ad) == -1)
1770                 return -1;
1771             // TODO: read meta EA
1772         }
1773
1774         if (AD_RSRC_OPEN(ad)) {
1775             if (ad_reso_fileno(ad) == -1)
1776                 return -1;
1777             struct stat st;
1778             if (fstat(ad_reso_fileno(ad), &st) == -1)
1779                 return -1;
1780             ad->ad_rlen = st.st_size;
1781         }
1782 #else
1783         if (AD_META_OPEN(ad)) {
1784             if (ad_data_fileno(ad) == -1)
1785                 return -1;
1786             // TODO: read meta EA
1787         }
1788         if (AD_RSRC_OPEN(ad)) {
1789             if (ad_reso_fileno(ad) == -1)
1790                 return -1;
1791             if (ad_header_read_osx(path, ad, NULL) < 0)
1792                 return -1;
1793         }
1794 #endif
1795         return ad->ad_ops->ad_header_read(path, ad, NULL);
1796         break;
1797     default:
1798         return -1;
1799         break;
1800     }
1801
1802 }
1803
1804 int ad_openat(struct adouble  *ad,
1805               int dirfd,  /* dir fd openat like */
1806               const char *path,
1807               int adflags, ...)
1808 {
1809     EC_INIT;
1810     int cwdfd = -1;
1811     va_list args;
1812     mode_t mode;
1813
1814     if (dirfd != -1) {
1815         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0))
1816             EC_FAIL;
1817     }
1818
1819     va_start(args, adflags);
1820     if (adflags & ADFLAGS_CREATE)
1821         mode = (sizeof(mode_t) < sizeof(int) ? va_arg (args, int) : va_arg (args, mode_t));
1822     va_end(args);
1823
1824     EC_NEG1( ad_open(ad, path, adflags, mode) );
1825
1826     if (dirfd != -1) {
1827         if (fchdir(cwdfd) != 0) {
1828             AFP_PANIC("ad_openat: cant chdir back");
1829         }
1830     }
1831
1832 EC_CLEANUP:
1833     if (cwdfd != -1)
1834         close(cwdfd);
1835
1836     return ret;
1837 }
1838
1839 /* build a resource fork mode from the data fork mode:
1840  * remove X mode and extend header to RW if R or W (W if R for locking),
1841  */
1842 mode_t ad_hf_mode(mode_t mode)
1843 {
1844     mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH);
1845     /* fnctl lock need write access */
1846     if ((mode & S_IRUSR))
1847         mode |= S_IWUSR;
1848     if ((mode & S_IRGRP))
1849         mode |= S_IWGRP;
1850     if ((mode & S_IROTH))
1851         mode |= S_IWOTH;
1852
1853     /* if write mode set add read mode */
1854     if ((mode & S_IWUSR))
1855         mode |= S_IRUSR;
1856     if ((mode & S_IWGRP))
1857         mode |= S_IRGRP;
1858     if ((mode & S_IWOTH))
1859         mode |= S_IROTH;
1860
1861     return mode;
1862 }