]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
Fixes
[netatalk.git] / libatalk / adouble / ad_open.c
1 /*
2  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu)
3  * Copyright (c) 1990,1991 Regents of The University of Michigan.
4  * Copyright (c) 2010 Frank Lahm
5  *
6  * All Rights Reserved.
7  *
8  * Permission to use, copy, modify, and distribute this software and
9  * its documentation for any purpose and without fee is hereby granted,
10  * provided that the above copyright notice appears in all copies and
11  * that both that copyright notice and this permission notice appear
12  * in supporting documentation, and that the name of The University
13  * of Michigan not be used in advertising or publicity pertaining to
14  * distribution of the software without specific, written prior
15  * permission. This software is supplied as is without expressed or
16  * implied warranties of any kind.
17  *
18  *  Research Systems Unix Group
19  *  The University of Michigan
20  *  c/o Mike Clark
21  *  535 W. William Street
22  *  Ann Arbor, Michigan
23  *  +1-313-763-0525
24  *  netatalk@itd.umich.edu
25  *
26  */
27
28 /*!
29  * @file
30  * Part of Netatalk's AppleDouble implementatation
31  * @sa include/atalk/adouble.h
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif /* HAVE_CONFIG_H */
37
38 #include <errno.h>
39 #include <sys/param.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <stdarg.h>
43 #include <arpa/inet.h>
44
45 #include <atalk/logger.h>
46 #include <atalk/adouble.h>
47 #include <atalk/util.h>
48 #include <atalk/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 #ifndef MAX
58 #define MAX(a, b)  ((a) < (b) ? (b) : (a))
59 #endif /* ! MAX */
60
61 #define ADEDOFF_MAGIC        (0)
62 #define ADEDOFF_VERSION      (ADEDOFF_MAGIC + ADEDLEN_MAGIC)
63 #define ADEDOFF_FILLER       (ADEDOFF_VERSION + ADEDLEN_VERSION)
64 #define ADEDOFF_NENTRIES     (ADEDOFF_FILLER + ADEDLEN_FILLER)
65
66 /* initial lengths of some of the fields */
67 #define ADEDLEN_INIT     0
68
69 /* i stick things in a slightly different order than their eid order in
70  * case i ever want to separate RootInfo behaviour from the rest of the
71  * stuff. */
72
73 /* ad:v2 */
74 #define ADEDOFF_NAME_V2      (AD_HEADER_LEN + ADEID_NUM_V2*AD_ENTRY_LEN)
75 #define ADEDOFF_COMMENT_V2   (ADEDOFF_NAME_V2 + ADEDLEN_NAME)
76 #define ADEDOFF_FILEDATESI   (ADEDOFF_COMMENT_V2 + ADEDLEN_COMMENT)
77 #define ADEDOFF_FINDERI_V2   (ADEDOFF_FILEDATESI + ADEDLEN_FILEDATESI)
78 #define ADEDOFF_DID          (ADEDOFF_FINDERI_V2 + ADEDLEN_FINDERI)
79 #define ADEDOFF_AFPFILEI     (ADEDOFF_DID + ADEDLEN_DID)
80 #define ADEDOFF_SHORTNAME    (ADEDOFF_AFPFILEI + ADEDLEN_AFPFILEI)
81 #define ADEDOFF_PRODOSFILEI  (ADEDOFF_SHORTNAME + ADEDLEN_SHORTNAME)
82 #define ADEDOFF_PRIVDEV      (ADEDOFF_PRODOSFILEI + ADEDLEN_PRODOSFILEI)
83 #define ADEDOFF_PRIVINO      (ADEDOFF_PRIVDEV + ADEDLEN_PRIVDEV)
84 #define ADEDOFF_PRIVSYN      (ADEDOFF_PRIVINO + ADEDLEN_PRIVINO)
85 #define ADEDOFF_PRIVID       (ADEDOFF_PRIVSYN + ADEDLEN_PRIVSYN)
86 #define ADEDOFF_RFORK_V2     (ADEDOFF_PRIVID + ADEDLEN_PRIVID)
87
88 /* ad:ea */
89 #define ADEDOFF_FINDERI_EA   (AD_HEADER_LEN + ADEID_NUM_EA * AD_ENTRY_LEN)
90 #define ADEDOFF_COMMENT_EA   (ADEDOFF_FINDERI_EA + ADEDLEN_FINDERI)
91 #define ADEDOFF_FILEDATESI_EA (ADEDOFF_COMMENT_EA + ADEDLEN_COMMENT)
92 #define ADEDOFF_AFPFILEI_EA  (ADEDOFF_FILEDATESI_EA + ADEDLEN_FILEDATESI)
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(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(struct adouble *ad, struct stat *hst);
112 static int ad_header_upgrade_ea(struct adouble *ad, const char *name);
113
114 static struct adouble_fops ad_adouble = {
115     &ad_path,
116     &ad_mkrf,
117     &ad_rebuild_adouble_header,
118     &ad_header_read,
119     &ad_header_upgrade,
120 };
121
122 static struct adouble_fops ad_adouble_ea = {
123     &ad_path_ea,
124     &ad_mkrf_ea,
125     &ad_rebuild_adouble_header,
126     &ad_header_read_ea,
127     &ad_header_upgrade_ea,
128 };
129
130 static const struct entry entry_order2[ADEID_NUM_V2 + 1] = {
131     {ADEID_NAME,        ADEDOFF_NAME_V2,     ADEDLEN_INIT},
132     {ADEID_COMMENT,     ADEDOFF_COMMENT_V2,  ADEDLEN_INIT},
133     {ADEID_FILEDATESI,  ADEDOFF_FILEDATESI,  ADEDLEN_FILEDATESI},
134     {ADEID_FINDERI,     ADEDOFF_FINDERI_V2,  ADEDLEN_FINDERI},
135     {ADEID_DID,         ADEDOFF_DID,         ADEDLEN_DID},
136     {ADEID_AFPFILEI,    ADEDOFF_AFPFILEI,    ADEDLEN_AFPFILEI},
137     {ADEID_SHORTNAME,   ADEDOFF_SHORTNAME,   ADEDLEN_INIT},
138     {ADEID_PRODOSFILEI, ADEDOFF_PRODOSFILEI, ADEDLEN_PRODOSFILEI},
139     {ADEID_PRIVDEV,     ADEDOFF_PRIVDEV,     ADEDLEN_INIT},
140     {ADEID_PRIVINO,     ADEDOFF_PRIVINO,     ADEDLEN_INIT},
141     {ADEID_PRIVSYN,     ADEDOFF_PRIVSYN,     ADEDLEN_INIT},
142     {ADEID_PRIVID,      ADEDOFF_PRIVID,      ADEDLEN_INIT},
143     {ADEID_RFORK,       ADEDOFF_RFORK_V2,    ADEDLEN_INIT},
144     {0, 0, 0}
145 };
146
147 /* Using Extended Attributes */
148 static const struct entry entry_order_ea[ADEID_NUM_EA + 1] = {
149     {ADEID_FINDERI,    ADEDOFF_FINDERI_EA,    ADEDLEN_FINDERI},
150     {ADEID_COMMENT,    ADEDOFF_COMMENT_EA,    ADEDLEN_INIT},
151     {ADEID_FILEDATESI, ADEDOFF_FILEDATESI_EA, ADEDLEN_FILEDATESI},
152     {ADEID_AFPFILEI,   ADEDOFF_AFPFILEI_EA,   ADEDLEN_AFPFILEI},
153     {0, 0, 0}
154 };
155
156 #define ADFLAGS2LOGSTRBUFSIZ 128
157 const char *adflags2logstr(int adflags)
158 {
159     int first = 1;
160     static char buf[ADFLAGS2LOGSTRBUFSIZ];
161
162     buf[0] = 0;
163
164     if (adflags & ADFLAGS_DF) {
165         strlcat(buf, "DF", ADFLAGS2LOGSTRBUFSIZ);
166         first = 0;
167     }
168     if (adflags & ADFLAGS_RF) {
169         if (!first)
170             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
171         strlcat(buf, "RF", ADFLAGS2LOGSTRBUFSIZ);
172         first = 0;
173     }
174     if (adflags & ADFLAGS_HF) {
175         if (!first)
176             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
177         strlcat(buf, "HF", ADFLAGS2LOGSTRBUFSIZ);
178         first = 0;
179     }
180     if (adflags & ADFLAGS_NOHF) {
181         if (!first)
182             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
183         strlcat(buf, "NOHF", ADFLAGS2LOGSTRBUFSIZ);
184         first = 0;
185     }
186     if (adflags & ADFLAGS_DIR) {
187         if (!first)
188             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
189         strlcat(buf, "DIR", ADFLAGS2LOGSTRBUFSIZ);
190         first = 0;
191     }
192     if (adflags & ADFLAGS_CHECK_OF) {
193         if (!first)
194             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
195         strlcat(buf, "OF", ADFLAGS2LOGSTRBUFSIZ);
196         first = 0;
197     }
198     if (adflags & ADFLAGS_RDWR) {
199         if (!first)
200             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
201         strlcat(buf, "O_RDWR", ADFLAGS2LOGSTRBUFSIZ);
202         first = 0;
203     }
204     if (adflags & ADFLAGS_RDONLY) {
205         if (!first)
206             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
207         strlcat(buf, "O_RDONLY", ADFLAGS2LOGSTRBUFSIZ);
208         first = 0;
209     }
210     if (adflags & ADFLAGS_CREATE) {
211         if (!first)
212             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
213         strlcat(buf, "O_CREAT", ADFLAGS2LOGSTRBUFSIZ);
214         first = 0;
215     }
216     if (adflags & ADFLAGS_EXCL) {
217         if (!first)
218             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
219         strlcat(buf, "O_EXCL", ADFLAGS2LOGSTRBUFSIZ);
220         first = 0;
221     }
222     if (adflags & ADFLAGS_TRUNC) {
223         if (!first)
224             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
225         strlcat(buf, "O_TRUNC", ADFLAGS2LOGSTRBUFSIZ);
226         first = 0;
227     }
228
229     return buf;
230 }
231
232 static uint32_t get_eid(uint32_t eid)
233 {
234     if (eid <= 15)
235         return eid;
236     if (eid == AD_DEV)
237         return ADEID_PRIVDEV;
238     if (eid == AD_INO)
239         return ADEID_PRIVINO;
240     if (eid == AD_SYN)
241         return ADEID_PRIVSYN;
242     if (eid == AD_ID)
243         return ADEID_PRIVID;
244
245     return 0;
246 }
247
248 /* ----------------------------------- */
249 static int new_ad_header(const char *path, struct adouble *ad, int adflags)
250 {
251     const struct entry  *eid;
252     uint16_t            ashort;
253     struct stat         st;
254
255     ad->ad_magic = AD_MAGIC;
256     ad->ad_version = ad->ad_vers & 0x0f0000;
257     if (!ad->ad_version) {
258         ad->ad_version = AD_VERSION;
259     }
260
261
262     memset(ad->ad_data, 0, sizeof(ad->ad_data));
263
264     if (ad->ad_vers == AD_VERSION2)
265         eid = entry_order2;
266     else if (ad->ad_vers == AD_VERSION_EA)
267         eid = entry_order_ea;
268     else {
269         return -1;
270     }
271
272     while (eid->id) {
273         ad->ad_eid[eid->id].ade_off = eid->offset;
274         ad->ad_eid[eid->id].ade_len = eid->len;
275         eid++;
276     }
277
278     /* put something sane in the directory finderinfo */
279     if ((adflags & ADFLAGS_DIR)) {
280         /* set default view */
281         ashort = htons(FINDERINFO_CLOSEDVIEW);
282         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRVIEWOFF, &ashort, sizeof(ashort));
283     } else {
284         /* set default creator/type fields */
285         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRTYPEOFF,"\0\0\0\0", 4);
286         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRCREATOFF,"\0\0\0\0", 4);
287     }
288
289     /* make things invisible */
290     if ((ad->ad_options & ADVOL_INVDOTS) && (*path == '.')) {
291         ashort = htons(ATTRBIT_INVISIBLE);
292         ad_setattr(ad, ashort);
293         ashort = htons(FINDERINFO_INVISIBLE);
294         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF, &ashort, sizeof(ashort));
295     }
296
297     if (lstat(path, &st) < 0)
298         return -1;
299
300     /* put something sane in the date fields */
301     ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, st.st_mtime);
302     ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, st.st_mtime);
303     ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, st.st_mtime);
304     ad_setdate(ad, AD_DATE_BACKUP, AD_DATE_START);
305     return 0;
306 }
307
308 /* -------------------------------------
309    read in the entries
310 */
311 static void parse_entries(struct adouble *ad, char *buf, uint16_t nentries)
312 {
313     uint32_t   eid, len, off;
314     int        warning = 0;
315
316     /* now, read in the entry bits */
317     for (; nentries > 0; nentries-- ) {
318         memcpy(&eid, buf, sizeof( eid ));
319         eid = get_eid(ntohl(eid));
320         buf += sizeof( eid );
321         memcpy(&off, buf, sizeof( off ));
322         off = ntohl( off );
323         buf += sizeof( off );
324         memcpy(&len, buf, sizeof( len ));
325         len = ntohl( len );
326         buf += sizeof( len );
327
328         if (eid && eid < ADEID_MAX && off < sizeof(ad->ad_data) &&
329             (off + len <= sizeof(ad->ad_data) || eid == ADEID_RFORK)) {
330             ad->ad_eid[ eid ].ade_off = off;
331             ad->ad_eid[ eid ].ade_len = len;
332         } else if (!warning) {
333             warning = 1;
334             LOG(log_warning, logtype_default, "parse_entries: bogus eid: %d", eid);
335         }
336     }
337 }
338
339 /* this reads enough of the header so that we can figure out all of
340  * the entry lengths and offsets. once that's done, we just read/mmap
341  * the rest of the header in.
342  *
343  * NOTE: we're assuming that the resource fork is kept at the end of
344  *       the file. also, mmapping won't work for the hfs fs until it
345  *       understands how to mmap header files. */
346 static int ad_header_read(struct adouble *ad, struct stat *hst)
347 {
348     char                *buf = ad->ad_data;
349     uint16_t            nentries;
350     int                 len;
351     ssize_t             header_len;
352     struct stat         st;
353
354     /* read the header */
355     if ((header_len = adf_pread( ad->ad_mdp, buf, sizeof(ad->ad_data), 0)) < 0) {
356         return -1;
357     }
358     if (header_len < AD_HEADER_LEN) {
359         errno = EIO;
360         return -1;
361     }
362
363     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
364     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
365     ad->ad_magic = ntohl( ad->ad_magic );
366     ad->ad_version = ntohl( ad->ad_version );
367
368     if ((ad->ad_magic != AD_MAGIC) || (ad->ad_version != AD_VERSION2)) {
369         LOG(log_error, logtype_default, "ad_open: can't parse AppleDouble header.");
370         errno = EIO;
371         return -1;
372     }
373
374     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
375     nentries = ntohs( nentries );
376
377     /* read in all the entry headers. if we have more than the
378      * maximum, just hope that the rfork is specified early on. */
379     len = nentries*AD_ENTRY_LEN;
380
381     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
382         len = sizeof(ad->ad_data) - AD_HEADER_LEN;
383
384     buf += AD_HEADER_LEN;
385     if (len > header_len - AD_HEADER_LEN) {
386         LOG(log_error, logtype_default, "ad_header_read: can't read entry info.");
387         errno = EIO;
388         return -1;
389     }
390
391     /* figure out all of the entry offsets and lengths. if we aren't
392      * able to read a resource fork entry, bail. */
393     nentries = len / AD_ENTRY_LEN;
394     parse_entries(ad, buf, nentries);
395     if (!ad_getentryoff(ad, ADEID_RFORK)
396         || (ad_getentryoff(ad, ADEID_RFORK) > sizeof(ad->ad_data))
397         ) {
398         LOG(log_error, logtype_default, "ad_header_read: problem with rfork entry offset.");
399         errno = EIO;
400         return -1;
401     }
402
403     if (ad_getentryoff(ad, ADEID_RFORK) > header_len) {
404         LOG(log_error, logtype_default, "ad_header_read: can't read in entries.");
405         errno = EIO;
406         return -1;
407     }
408
409     if (hst == NULL) {
410         hst = &st;
411         if (fstat(ad->ad_mdp->adf_fd, &st) < 0) {
412             return 1; /* fail silently */
413         }
414     }
415
416     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
417
418     return 0;
419 }
420
421 static int ad_header_read_ea(struct adouble *ad, struct stat *hst _U_)
422 {
423     uint16_t nentries;
424     int      len;
425     ssize_t  header_len;
426     char     *buf = ad->ad_data;
427
428     /* read the header */
429     if ((header_len = sys_fgetxattr(ad_data_fileno(ad), AD_EA_META, ad->ad_data, AD_DATASZ_EA)) < 1) {
430         LOG(log_debug, logtype_default, "ad_header_read_ea: %s (%u)", strerror(errno), errno);
431         return -1;
432     }
433
434     if (header_len < AD_HEADER_LEN) {
435         LOG(log_error, logtype_default, "ad_header_read_ea: bogus AppleDouble header.");
436         errno = EIO;
437         return -1;
438     }
439
440     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
441     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
442
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_header_read_ea: wrong magic or version");
448         errno = EIO;
449         return -1;
450     }
451
452     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
453     nentries = ntohs( nentries );
454
455     /* Protect against bogus nentries */
456     len = nentries * AD_ENTRY_LEN;
457     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
458         len = sizeof(ad->ad_data) - AD_HEADER_LEN;
459     if (len > header_len - AD_HEADER_LEN) {
460         LOG(log_error, logtype_default, "ad_header_read_ea: can't read entry info.");
461         errno = EIO;
462         return -1;
463     }
464     nentries = len / AD_ENTRY_LEN;
465
466     /* Now parse entries */
467     parse_entries(ad, buf + AD_HEADER_LEN, nentries);
468
469     return 0;
470 }
471
472 static int ad_rsrc_len_ea(struct adouble *ad)
473 {
474     ssize_t rlen;
475
476     if ((rlen = sys_fgetxattr(ad_data_fileno(ad), AD_EA_RESO, NULL, 0)) <= 0) {
477         switch (errno) {
478         case ENOATTR:
479         case ENOENT:
480             ad->ad_rlen = 0;
481             break;
482         default:
483             LOG(log_error, logtype_default, "ad_refresh_rsrc_len_ea: %s", strerror(errno));
484             ad->ad_rlen = 0;
485             return -1;
486         }
487     }
488     ad->ad_rlen = rlen;
489     return 0;
490 }
491
492 static int ad_mkrf(const char *path)
493 {
494     char *slash;
495     /*
496      * Probably .AppleDouble doesn't exist, try to mkdir it.
497      */
498     if (NULL == ( slash = strrchr( path, '/' )) ) {
499         return -1;
500     }
501     *slash = '\0';
502     errno = 0;
503     if ( ad_mkdir( path, 0777 ) < 0 ) {
504         return -1;
505     }
506     *slash = '/';
507     return 0;
508 }
509
510 static int ad_mkrf_ea(const char *path _U_)
511 {
512     AFP_PANIC("ad_mkrf_ea: dont use");
513     return 0;
514 }
515
516 /* ----------------
517    if we are root change path user/ group
518    It can be a native function for BSD cf. FAQ.Q10
519    path:  pathname to chown
520    stbuf: parent directory inode
521
522    use fstat and fchown or lchown with linux?
523 */
524 #define EMULATE_SUIDDIR
525
526 static int ad_chown(const char *path, struct stat *stbuf)
527 {
528     int ret = 0;
529 #ifdef EMULATE_SUIDDIR
530     uid_t id;
531
532     if (default_uid != (uid_t)-1) {
533         /* we are root (admin) */
534         id = (default_uid)?default_uid:stbuf->st_uid;
535         ret = lchown( path, id, stbuf->st_gid );
536     }
537 #endif
538     return ret;
539 }
540
541 #define DEFMASK 07700   /* be conservative */
542
543 /* ----------------
544    return access right and inode of path parent directory
545 */
546 static int ad_mode_st(const char *path, mode_t *mode, struct stat *stbuf)
547 {
548     if (*mode == 0) {
549         return -1;
550     }
551     if (ad_stat(path, stbuf) != 0) {
552         *mode &= DEFMASK;
553         return -1;
554     }
555     *mode &= stbuf->st_mode;
556     return 0;
557 }
558
559 /* --------------------------- */
560 static int ad_header_upgrade(struct adouble *ad _U_, const char *name _U_)
561 {
562     return 0;
563 }
564
565 static int ad_header_upgrade_ea(struct adouble *ad _U_, const char *name _U_)
566 {
567     AFP_PANIC("ad_header_upgrade_ea: dont use");
568     return 0;
569 }
570
571 /*!
572  * Error handling for adouble header(=metadata) file open error
573  *
574  * We're called because opening ADFLAGS_HF caused an error.
575  * 1. In case ad_open is called with ADFLAGS_NOHF the error is suppressed.
576  * 2. If ad_open was called with ADFLAGS_DF we may have opened the datafork and thus
577  *    ought to close it before returning with an error condition.
578  */
579 static int ad_error(struct adouble *ad, int adflags)
580 {
581     int err = errno;
582     if (adflags & ADFLAGS_NOHF) { /* 1 */
583         ad->ad_adflags &= ~ADFLAGS_HF;
584         return 0;
585     }
586     if (adflags & ADFLAGS_DF) { /* 2 */
587         ad_close( ad, ADFLAGS_DF );
588         err = errno;
589     }
590     return -1 ;
591 }
592
593 /* Map ADFLAGS to open() flags */
594 static int ad2openflags(int adflags)
595 {
596     int oflags = 0;
597
598     if (adflags & ADFLAGS_RDWR)
599         oflags |= O_RDWR;
600     if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_SETSHRMD))
601         oflags |= O_RDWR;
602     else
603         oflags |= O_RDONLY;
604     if (adflags & ADFLAGS_CREATE)
605         oflags |= O_CREAT;
606     if (adflags & ADFLAGS_EXCL)
607         oflags |= O_EXCL;
608     if (adflags & ADFLAGS_TRUNC)
609         oflags |= O_TRUNC;
610
611     return oflags;
612 }
613
614 static int ad_open_df(const char *path, int adflags, mode_t mode, struct adouble *ad)
615 {
616     struct stat st_dir;
617     int         oflags;
618     mode_t      admode;
619     int         st_invalid = -1;
620     ssize_t     lsz;
621
622     LOG(log_debug, logtype_default, "ad_open_df(\"%s\", %04o)",
623         fullpathname(path), mode);
624
625     if (ad_data_fileno(ad) != -1) {
626         /* the file is already open, but we want write access: */
627         if ((adflags & ADFLAGS_RDWR)
628             /* and it was denied the first time: */
629             && (ad->ad_data_fork.adf_flags & O_RDONLY)) {
630                 errno = EACCES;
631                 return -1;
632             }
633         /* it's not new anymore */
634         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
635         ad->ad_data_fork.adf_refcount++;
636         return 0;
637     }
638
639     oflags = O_NOFOLLOW | ad2openflags(adflags);
640
641     admode = mode;
642     if ((adflags & ADFLAGS_CREATE)) {
643         st_invalid = ad_mode_st(path, &admode, &st_dir);
644         if ((ad->ad_options & ADVOL_UNIXPRIV))
645             admode = mode;
646     }
647
648     ad->ad_data_fork.adf_fd = open(path, oflags, admode);
649
650     if (ad->ad_data_fork.adf_fd == -1) {
651         switch (errno) {
652         case EACCES:
653         case EPERM:
654         case EROFS:
655             if ((adflags & ADFLAGS_SETSHRMD) && (adflags & ADFLAGS_RDONLY)) {
656                 oflags &= ~O_RDWR;
657                 oflags |= O_RDONLY;
658                 if ((ad->ad_data_fork.adf_fd = open(path, oflags, admode)) == -1)
659                     return -1;
660                 break;
661             }
662             return -1;
663         case OPEN_NOFOLLOW_ERRNO:
664             ad->ad_data_fork.adf_syml = malloc(MAXPATHLEN+1);
665             if ((lsz = readlink(path, ad->ad_data_fork.adf_syml, MAXPATHLEN)) <= 0) {
666                 free(ad->ad_data_fork.adf_syml);
667                 return -1;
668             }
669             ad->ad_data_fork.adf_syml[lsz] = 0;
670             ad->ad_data_fork.adf_fd = -2; /* -2 means its a symlink */
671             break;
672         default:
673             return -1;
674         }
675     }
676
677     if (!st_invalid)
678         ad_chown(path, &st_dir); /* just created, set owner if admin (root) */
679
680     ad->ad_data_fork.adf_flags = oflags;
681     adf_lock_init(&ad->ad_data_fork);
682     ad->ad_data_fork.adf_refcount++;
683
684     return 0;
685 }
686
687 static int ad_open_hf_v2(const char *path, int adflags, mode_t mode, struct adouble *ad)
688 {
689     struct stat st_dir;
690     struct stat st_meta;
691     struct stat *pst = NULL;
692     const char  *ad_p;
693     int         oflags, nocreatflags;
694     mode_t      admode;
695     int         st_invalid = -1;
696
697     if (ad_meta_fileno(ad) != -1) {
698         /* the file is already open, but we want write access: */
699         if ((adflags & ADFLAGS_RDWR) &&
700             /* and it was already denied: */
701             (ad->ad_mdp->adf_flags & O_RDONLY)) {
702             errno = EACCES;
703             return -1;
704         }
705         ad_refresh(ad);
706         /* it's not new anymore */
707         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
708         ad->ad_mdp->adf_refcount++;
709         return 0;
710     }
711
712     ad_p = ad->ad_ops->ad_path(path, adflags);
713     oflags = O_NOFOLLOW | ad2openflags(adflags);
714     nocreatflags = oflags & ~(O_CREAT | O_EXCL);
715
716     ad->ad_mdp->adf_fd = open(ad_p, nocreatflags);
717
718     if (ad->ad_mdp->adf_fd != -1) {
719         ad->ad_mdp->adf_flags = nocreatflags;
720     } else {
721         switch (errno) {
722         case EACCES:
723         case EPERM:
724         case EROFS:
725             if ((adflags & ADFLAGS_RDONLY) && (adflags & ADFLAGS_SETSHRMD)) {
726                 nocreatflags &= ~O_RDWR;
727                 nocreatflags |= O_RDONLY;
728                 if ((ad->ad_mdp->adf_fd = open(ad_p, nocreatflags)) == -1)
729                     return -1;
730                 ad->ad_mdp->adf_flags = nocreatflags;
731                 break;
732             }
733             return -1;
734         case ENOENT:
735             if (!(oflags & O_CREAT))
736                 return ad_error(ad, adflags);
737             /*
738              * We're expecting to create a new adouble header file here
739              * if ((oflags & O_CREAT) ==> (oflags & O_RDWR)
740              */
741             LOG(log_debug, logtype_default, "ad_open(\"%s\"): creating adouble file",
742                 fullpathname(path));
743             admode = mode;
744             errno = 0;
745             st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
746             if ((ad->ad_options & ADVOL_UNIXPRIV))
747                 admode = mode;
748             admode = ad_hf_mode(admode);
749             if (errno == ENOENT) {
750                 if (ad->ad_ops->ad_mkrf( ad_p) < 0) {
751                     return ad_error(ad, adflags);
752                 }
753                 admode = mode;
754                 st_invalid = ad_mode_st(ad_p, &admode, &st_dir);
755                 if ((ad->ad_options & ADVOL_UNIXPRIV))
756                     admode = mode;
757                 admode = ad_hf_mode(admode);
758             }
759
760             /* retry with O_CREAT */
761             ad->ad_mdp->adf_fd = open(ad_p, oflags, admode);
762             if ( ad->ad_mdp->adf_fd < 0 )
763                 return ad_error(ad, adflags);
764
765             ad->ad_mdp->adf_flags = oflags;
766             /* just created, set owner if admin owner (root) */
767             if (!st_invalid)
768                 ad_chown(ad_p, &st_dir);
769             break;
770         default:
771             return -1;
772         }
773     }
774
775     if (!(ad->ad_mdp->adf_flags & O_CREAT)) {
776         /* check for 0 length files, treat them as new. */
777         if (fstat(ad->ad_mdp->adf_fd, &st_meta) == 0) {
778             if (st_meta.st_size == 0)
779                 ad->ad_mdp->adf_flags |= O_TRUNC;
780             else
781                 /* we have valid data in st_meta stat structure, reused it in ad_header_read */
782                 pst = &st_meta;
783         }
784     }
785
786     ad->ad_mdp->adf_refcount = 1;
787     adf_lock_init(ad->ad_mdp);
788
789     if ((ad->ad_mdp->adf_flags & ( O_TRUNC | O_CREAT ))) {
790         /* This is a new adouble header file, create it */
791         if (new_ad_header(path, ad, adflags) < 0) {
792             int err = errno;
793             /* the file is already deleted, perm, whatever, so return an error */
794             ad_close(ad, adflags);
795             errno = err;
796             return -1;
797         }
798         ad_flush(ad);
799     } else {
800         /* Read the adouble header in and parse it.*/
801         if (ad->ad_ops->ad_header_read( ad , pst) < 0
802             || ad->ad_ops->ad_header_upgrade(ad, ad_p) < 0) {
803             int err = errno;
804             ad_close(ad, adflags);
805             errno = err;
806             return -1;
807         }
808     }
809
810     return 0;
811 }
812
813 static int ad_open_hf_ea(const char *path, int adflags, int mode, struct adouble *ad)
814 {
815     ssize_t rforklen;
816     int oflags = O_NOFOLLOW;
817
818     LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\", %04o)", path, mode);
819
820     oflags |= ad2openflags(adflags) & ~(O_CREAT | O_TRUNC);
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 already denied: */
826             (ad->ad_data_fork.adf_flags & O_RDONLY)) {
827             LOG(log_error, logtype_default, "ad_open_hf_ea(%s): rw request for ro file: %s",
828                 fullpathname(path), strerror(errno));
829             errno = EACCES;
830             return -1;
831         }
832
833         /* it's not new anymore */
834         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
835     } else {
836         if ((ad_data_fileno(ad) = open(path, oflags)) == -1)
837             goto error;
838         ad->ad_data_fork.adf_flags = oflags;
839         adf_lock_init(&ad->ad_data_fork);
840     }
841
842     /* Read the adouble header in and parse it.*/
843     if (ad->ad_ops->ad_header_read(ad, NULL) != 0) {
844         if (!(adflags & ADFLAGS_CREATE))
845             goto error;
846
847         /* It doesnt exist, EPERM or another error */
848         if (!(errno == ENOATTR || errno == ENOENT)) {
849             LOG(log_error, logtype_default, "ad_open_hf_ea: unexpected: %s", strerror(errno));
850             goto error;
851         }
852
853         /* Create one */
854         if (new_ad_header(path, ad, adflags) < 0) {
855             LOG(log_error, logtype_default, "ad_open_hf_ea: can't create new header: %s",
856                 fullpathname(path));
857             goto error;
858         }
859         ad->ad_mdp->adf_flags |= O_CREAT; /* mark as just created */
860         ad_flush(ad);
861         LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\"): created metadata EA", path);
862     }
863
864     ad->ad_data_fork.adf_refcount++;
865
866     if ((rforklen = sys_fgetxattr(ad_data_fileno(ad), AD_EA_RESO, NULL, 0)) > 0)
867         ad->ad_rlen = rforklen;
868
869     return 0;
870
871 error:
872     if (ad_data_fileno(ad) != -1) {
873         close(ad_data_fileno(ad));
874         ad_data_fileno(ad) = -1;
875     }
876     return ad_error(ad, adflags);
877 }
878
879 static int ad_open_hf(const char *path, int adflags, int mode, struct adouble *ad)
880 {
881     int ret = 0;
882
883     LOG(log_debug, logtype_default, "ad_open_hf(\"%s\", %04o)", path, mode);
884
885     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
886     ad->ad_rlen = 0;
887
888     switch (ad->ad_vers) {
889     case AD_VERSION2:
890         ret = ad_open_hf_v2(path, adflags, mode, ad);
891         break;
892     case AD_VERSION_EA:
893         ret = ad_open_hf_ea(path, adflags, mode, ad);
894         break;
895     default:
896         ret = -1;
897         break;
898     }
899
900     return ret;
901 }
902
903
904 /*!
905  * Open ressource fork
906  *
907  * Only for adouble:ea, a nullop otherwise because adouble:v2 has the ressource fork as part
908  * of the adouble file which is openend by ADFLAGS_HF.
909  */
910 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
911 {
912     int ret = 0;
913     int oflags;
914     ssize_t rlen;
915
916     if (ad->ad_vers != AD_VERSION_EA)
917         return 0;
918
919     LOG(log_debug, logtype_default, "ad_open_rf(\"%s\", %04o)", path, mode);
920
921     oflags |= ad2openflags(adflags) & ~(O_CREAT | O_TRUNC);
922
923     if (ad_data_fileno(ad) != -1) {
924         /* the file is already open, but we want write access: */
925         if ((adflags & ADFLAGS_RDWR) &&
926             /* and it was already denied: */
927             (ad->ad_data_fork.adf_flags & O_RDONLY)) {
928             LOG(log_error, logtype_default, "ad_open_rf(%s): rw request for ro file: %s",
929                 fullpathname(path), strerror(errno));
930             errno = EACCES;
931             return -1;
932         }
933     } else {
934         if ((ad_data_fileno(ad) = open(path, oflags)) == -1)
935             goto exit;
936         ad->ad_data_fork.adf_flags = oflags;
937         adf_lock_init(&ad->ad_data_fork);
938     }
939
940     if ((ret = ad_rsrc_len_ea(ad)) != 0)
941         goto exit;
942
943     ad->ad_data_fork.adf_refcount++;
944
945 exit:
946     return ret;
947 }
948
949 /***********************************************************************************
950  * API functions
951  ********************************************************************************* */
952
953 const char *ad_path_ea( const char *path, int adflags _U_)
954 {
955     return path;
956 }
957
958 /*
959  * Put the .AppleDouble where it needs to be:
960  *
961  *      /   a/.AppleDouble/b
962  *  a/b
963  *      \   b/.AppleDouble/.Parent
964  *
965  * FIXME: should do something for pathname > MAXPATHLEN
966  */
967 const char *ad_path( const char *path, int adflags)
968 {
969     static char pathbuf[ MAXPATHLEN + 1];
970     const char *slash;
971     size_t  l ;
972
973     if ( adflags & ADFLAGS_DIR ) {
974         l = strlcpy( pathbuf, path, sizeof(pathbuf));
975
976         if ( l && l < MAXPATHLEN) {
977             pathbuf[l++] = '/';
978         }
979         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
980     } else {
981         if (NULL != ( slash = strrchr( path, '/' )) ) {
982             slash++;
983             l = slash - path;
984             /* XXX we must return NULL here and test in the caller */
985             if (l > MAXPATHLEN)
986                 l = MAXPATHLEN;
987             memcpy( pathbuf, path, l);
988         } else {
989             l = 0;
990             slash = path;
991         }
992         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
993         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
994     }
995
996     return( pathbuf );
997 }
998
999 /* -------------------------
1000  * Support inherited protection modes for AppleDouble files.  The supplied
1001  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1002  * and that value is returned.
1003  */
1004 char *ad_dir(const char *path)
1005 {
1006     static char     modebuf[ MAXPATHLEN + 1];
1007     char        *slash;
1008     /*
1009      * For a path with directories in it, remove the final component
1010      * (path or subdirectory name) to get the name we want to stat.
1011      * For a path which is just a filename, use "." instead.
1012      */
1013     slash = strrchr( path, '/' );
1014     if (slash) {
1015         size_t len;
1016
1017         len = slash - path;
1018         if (len >= MAXPATHLEN) {
1019             errno = ENAMETOOLONG;
1020             return NULL;  /* can't do it */
1021         }
1022         memcpy( modebuf, path, len );
1023         modebuf[len] = '\0';
1024         /* is last char a '/' ? */
1025         if (slash[1] == 0) {
1026             slash = modebuf+ len;
1027             /* remove them */
1028             while (modebuf < slash && slash[-1] == '/') {
1029                 --slash;
1030             }
1031             if (modebuf == slash) {
1032                 goto use_cur;
1033             }
1034             *slash = '\0';
1035             while (modebuf < slash && *slash != '/') {
1036                 --slash;
1037             }
1038             if (modebuf == slash) {
1039                 goto use_cur;
1040             }
1041             *slash = '\0';      /* remove pathname component */
1042         }
1043         return modebuf;
1044     }
1045 use_cur:
1046     modebuf[0] = '.';   /* use current directory */
1047     modebuf[1] = '\0';
1048     return modebuf;
1049 }
1050
1051 int ad_setfuid(const uid_t id)
1052 {
1053     default_uid = id;
1054     return 0;
1055 }
1056
1057 /* ---------------- */
1058 uid_t ad_getfuid(void)
1059 {
1060     return default_uid;
1061 }
1062
1063 /* ----------------
1064    stat path parent directory
1065 */
1066 int ad_stat(const char *path, struct stat *stbuf)
1067 {
1068     char *p;
1069
1070     p = ad_dir(path);
1071     if (!p)
1072         return -1;
1073     return lstat( p, stbuf );
1074 }
1075
1076 /* ----------------
1077    return access right of path parent directory
1078 */
1079 int ad_mode( const char *path, mode_t mode)
1080 {
1081     struct stat     stbuf;
1082     ad_mode_st(path, &mode, &stbuf);
1083     return mode;
1084 }
1085
1086 /*
1087  * Use mkdir() with mode bits taken from ad_mode().
1088  */
1089 int ad_mkdir( const char *path, mode_t mode)
1090 {
1091     int ret;
1092     int st_invalid;
1093     struct stat stbuf;
1094
1095     LOG(log_debug, logtype_default, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1096         path, mode, getcwdpath());
1097
1098     st_invalid = ad_mode_st(path, &mode, &stbuf);
1099     ret = mkdir( path, mode );
1100     if (ret || st_invalid)
1101         return ret;
1102     ad_chown(path, &stbuf);
1103
1104     return ret;
1105 }
1106
1107 static void ad_init_func(struct adouble *ad)
1108 {
1109     switch (ad->ad_vers) {
1110     case AD_VERSION2:
1111         ad->ad_ops = &ad_adouble;
1112         ad->ad_rfp = &ad->ad_resource_fork;
1113         ad->ad_mdp = &ad->ad_resource_fork;
1114         break;
1115     case AD_VERSION_EA:
1116         ad->ad_ops = &ad_adouble_ea;
1117         ad->ad_rfp = &ad->ad_resource_fork;
1118         ad->ad_mdp = &ad->ad_resource_fork;
1119         break;
1120     default:
1121         AFP_PANIC("ad_init: unknown AD version");
1122     }
1123
1124     ad_data_fileno(ad) = -1;
1125     ad_reso_fileno(ad) = -1;
1126     ad_meta_fileno(ad) = -1;
1127     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
1128     ad->ad_rlen = 0;
1129     ad->ad_refcount = 1;
1130     ad->ad_open_forks = 0;
1131     ad->ad_resource_fork.adf_refcount = 0;
1132     ad->ad_resforkbuf = NULL;
1133     ad->ad_data_fork.adf_refcount = 0;
1134     ad->ad_data_fork.adf_syml = 0;
1135     ad->ad_inited = 0;
1136     return;
1137 }
1138
1139 void ad_init_old(struct adouble *ad, int flags, int options)
1140 {
1141     ad->ad_vers = flags;
1142     ad->ad_options = options;
1143     ad_init_func(ad);
1144 }
1145
1146 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1147 {
1148     ad->ad_vers = vol->v_adouble;
1149     ad->ad_options = vol->v_ad_options;
1150 //    ad->ad_maxeafssize = 3500;  /* FIXME: option from vol */
1151     ad->ad_maxeafssize = 0;     /* no limit */
1152     ad_init_func(ad);
1153 }
1154
1155 /*!
1156  * Open data-, metadata(header)- or ressource fork
1157  *
1158  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1159  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1160  *
1161  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1162  * @code
1163  *      struct adoube ad;
1164  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1165  * @endcode
1166  *
1167  * Open a files data fork, metadata fork or ressource fork.
1168  *
1169  * @param ad        (rw) pointer to struct adouble
1170  * @param path      (r)  Path to file or directory
1171  * @param adflags   (r)  ADFLAGS_DF:        open data fork \n
1172  *                       ADFLAGS_RF:        open ressource fork \n
1173  *                       ADFLAGS_HF:        open header (metadata) file \n
1174  *                       ADFLAGS_NOHF:      it's not an error if header file couldn't be created \n
1175  *                       ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags \n
1176  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1177  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1178  *   fds of the same file
1179  * - a file may be opened first ro, then rw and theres no way to upgrade this -> fork.c always opens rw
1180  *                       ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1181  * @param mode      (r)  mode used with O_CREATE
1182  *
1183  * @returns 0 on success, any other value indicates an error
1184  */
1185 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1186 {
1187     EC_INIT;
1188     va_list args;
1189     mode_t mode = 0;
1190
1191     LOG(log_debug, logtype_default, "ad_open(\"%s\", %s)",
1192         fullpathname(path), adflags2logstr(adflags));
1193
1194     if (ad->ad_inited != AD_INITED) {
1195         ad->ad_adflags = adflags;
1196         ad->ad_inited = AD_INITED;
1197     } else {
1198         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1199         if (ad->ad_resource_fork.adf_refcount > 0)
1200             ad->ad_open_forks |= ATTRBIT_ROPEN;
1201     }
1202
1203     va_start(args, adflags);
1204     if (adflags & ADFLAGS_CREATE)
1205         mode = va_arg(args, mode_t);
1206     va_end(args);
1207
1208     if (adflags & ADFLAGS_DF) {
1209         EC_ZERO( ad_open_df(path, adflags, mode, ad) );
1210     }
1211
1212     if (adflags & ADFLAGS_HF) {
1213         EC_ZERO( ad_open_hf(path, adflags, mode, ad) );
1214     }
1215
1216     if (adflags & ADFLAGS_RF) {
1217         EC_ZERO( ad_open_rf(path, adflags, mode, ad) );
1218     }
1219
1220 EC_CLEANUP:
1221     return ret;
1222 }
1223
1224 /*!
1225  * @brief open metadata, possibly as root
1226  *
1227  * Return only metadata but try very hard ie at first try as user, then try as root.
1228  *
1229  * @param name  name of file/dir
1230  * @param flags ADFLAGS_DIR: name is a directory \n
1231  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1232  *
1233  * @param adp   pointer to struct adouble
1234  */
1235 int ad_metadata(const char *name, int flags, struct adouble *adp)
1236 {
1237     uid_t uid;
1238     int   ret, err, oflags;
1239
1240     oflags = (flags & ADFLAGS_DIR) | ADFLAGS_HF | ADFLAGS_RDONLY;
1241
1242     if ((ret = ad_open(adp, name, oflags | ADFLAGS_SETSHRMD)) < 0 && errno == EACCES) {
1243         uid = geteuid();
1244         if (seteuid(0)) {
1245             LOG(log_error, logtype_default, "ad_metadata(%s): seteuid failed %s", name, strerror(errno));
1246             errno = EACCES;
1247             return -1;
1248         }
1249         /* we are root open read only */
1250         ret = ad_open(adp, name, oflags);
1251         err = errno;
1252         if ( seteuid(uid) < 0) {
1253             LOG(log_error, logtype_default, "ad_metadata: can't seteuid back");
1254             exit(EXITERR_SYS);
1255         }
1256         errno = err;
1257     }
1258
1259     if ((ret == 0) && (ADFLAGS_CHECK_OF & flags)) {
1260         /*
1261           we need to check if the file is open by another process.
1262           it's slow so we only do it if we have to:
1263           - it's requested.
1264           - we don't already have the answer!
1265         */
1266         adp->ad_open_forks |= ad_openforks(adp, adp->ad_open_forks);
1267     }
1268     return ret;
1269 }
1270
1271 /*
1272  * @brief openat like wrapper for ad_metadata
1273  */
1274 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1275 {
1276     int ret = 0;
1277     int cwdfd = -1;
1278
1279     if (dirfd != -1) {
1280         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0)) {
1281             ret = -1;
1282             goto exit;
1283         }
1284     }
1285
1286     if (ad_metadata(name, flags, adp) < 0) {
1287         ret = -1;
1288         goto exit;
1289     }
1290
1291     if (dirfd != -1) {
1292         if (fchdir(cwdfd) != 0) {
1293             LOG(log_error, logtype_afpd, "ad_openat: cant chdir back, exiting");
1294             exit(EXITERR_SYS);
1295         }
1296     }
1297
1298 exit:
1299     if (cwdfd != -1)
1300         close(cwdfd);
1301
1302     return ret;
1303
1304 }
1305
1306 int ad_refresh(struct adouble *ad)
1307 {
1308     switch (ad->ad_vers) {
1309     case AD_VERSION2:
1310         if (ad_meta_fileno(ad) == -1)
1311             return -1;
1312         return ad->ad_ops->ad_header_read(ad, NULL);
1313         break;
1314     case AD_VERSION_EA:
1315         if (ad_data_fileno(ad) == -1)
1316             return -1;
1317         if (ad_rsrc_len_ea(ad) != 0)
1318             return -1;
1319         return ad->ad_ops->ad_header_read(ad, NULL);
1320         break;
1321     default:
1322         return -1;
1323         break;
1324     }
1325
1326 }
1327
1328 int ad_openat(struct adouble  *ad,
1329               int dirfd,  /* dir fd openat like */
1330               const char *path,
1331               int adflags, ...)
1332 {
1333     EC_INIT;
1334     int cwdfd = -1;
1335     va_list args;
1336     mode_t mode;
1337
1338     if (dirfd != -1) {
1339         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0))
1340             EC_FAIL;
1341     }
1342
1343     va_start(args, adflags);
1344     if (adflags & ADFLAGS_CREATE)
1345         mode = va_arg(args, mode_t);
1346     va_end(args);
1347
1348     EC_NEG1( ad_open(ad, path, adflags, mode) );
1349
1350     if (dirfd != -1) {
1351         if (fchdir(cwdfd) != 0) {
1352             AFP_PANIC("ad_openat: cant chdir back");
1353         }
1354     }
1355
1356 EC_CLEANUP:
1357     if (cwdfd != -1)
1358         close(cwdfd);
1359
1360     return ret;
1361 }