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