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