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