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