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