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