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