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