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