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