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