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