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