]> 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 #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 static int ad_reso_size(const char *path, int adflags, struct adouble *ad);
110 static int ad_mkrf_osx(const char *path);
111
112
113 static struct adouble_fops ad_adouble = {
114     &ad_path,
115     &ad_mkrf,
116     &ad_rebuild_adouble_header,
117     &ad_header_read,
118     &ad_header_upgrade,
119 };
120
121 static struct adouble_fops ad_adouble_ea = {
122 #ifdef HAVE_EAFD
123     &ad_path_ea,
124     &ad_mkrf_ea,
125 #else
126     &ad_path_osx,
127     &ad_mkrf_osx,
128 #endif
129     &ad_rebuild_adouble_header,
130     &ad_header_read_ea,
131     &ad_header_upgrade_ea,
132 };
133
134 static struct adouble_fops ad_osx = {
135     &ad_path_osx,
136     &ad_mkrf_osx,
137     &ad_rebuild_adouble_header,
138     &ad_header_read,
139     &ad_header_upgrade,
140 };
141
142 static const struct entry entry_order2[ADEID_NUM_V2 + 1] = {
143     {ADEID_NAME,        ADEDOFF_NAME_V2,     ADEDLEN_INIT},
144     {ADEID_COMMENT,     ADEDOFF_COMMENT_V2,  ADEDLEN_INIT},
145     {ADEID_FILEDATESI,  ADEDOFF_FILEDATESI,  ADEDLEN_FILEDATESI},
146     {ADEID_FINDERI,     ADEDOFF_FINDERI_V2,  ADEDLEN_FINDERI},
147     {ADEID_DID,         ADEDOFF_DID,         ADEDLEN_DID},
148     {ADEID_AFPFILEI,    ADEDOFF_AFPFILEI,    ADEDLEN_AFPFILEI},
149     {ADEID_SHORTNAME,   ADEDOFF_SHORTNAME,   ADEDLEN_INIT},
150     {ADEID_PRODOSFILEI, ADEDOFF_PRODOSFILEI, ADEDLEN_PRODOSFILEI},
151     {ADEID_PRIVDEV,     ADEDOFF_PRIVDEV,     ADEDLEN_INIT},
152     {ADEID_PRIVINO,     ADEDOFF_PRIVINO,     ADEDLEN_INIT},
153     {ADEID_PRIVSYN,     ADEDOFF_PRIVSYN,     ADEDLEN_INIT},
154     {ADEID_PRIVID,      ADEDOFF_PRIVID,      ADEDLEN_INIT},
155     {ADEID_RFORK,       ADEDOFF_RFORK_V2,    ADEDLEN_INIT},
156     {0, 0, 0}
157 };
158
159 /* Using Extended Attributes */
160 static const struct entry entry_order_ea[ADEID_NUM_EA + 1] = {
161     {ADEID_FINDERI,    ADEDOFF_FINDERI_EA,    ADEDLEN_FINDERI},
162     {ADEID_COMMENT,    ADEDOFF_COMMENT_EA,    ADEDLEN_INIT},
163     {ADEID_FILEDATESI, ADEDOFF_FILEDATESI_EA, ADEDLEN_FILEDATESI},
164     {ADEID_AFPFILEI,   ADEDOFF_AFPFILEI_EA,   ADEDLEN_AFPFILEI},
165     {ADEID_PRIVID,     ADEDOFF_PRIVID,        ADEDLEN_INIT},
166     {0, 0, 0}
167 };
168
169 /* fallback for EAs */
170 static const struct entry entry_order_osx[ADEID_NUM_OSX +1] = {
171     {ADEID_FINDERI, ADEDOFF_FINDERI_OSX, ADEDLEN_FINDERI},
172     {ADEID_RFORK, ADEDOFF_RFORK_OSX, ADEDLEN_INIT},
173     {0, 0, 0}
174 };
175
176 #define ADFLAGS2LOGSTRBUFSIZ 128
177 const char *adflags2logstr(int adflags)
178 {
179     int first = 1;
180     static char buf[ADFLAGS2LOGSTRBUFSIZ];
181
182     buf[0] = 0;
183
184     if (adflags & ADFLAGS_DF) {
185         strlcat(buf, "DF", ADFLAGS2LOGSTRBUFSIZ);
186         first = 0;
187     }
188     if (adflags & ADFLAGS_RF) {
189         if (!first)
190             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
191         strlcat(buf, "RF", ADFLAGS2LOGSTRBUFSIZ);
192         first = 0;
193     }
194     if (adflags & ADFLAGS_HF) {
195         if (!first)
196             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
197         strlcat(buf, "HF", ADFLAGS2LOGSTRBUFSIZ);
198         first = 0;
199     }
200     if (adflags & ADFLAGS_NOHF) {
201         if (!first)
202             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
203         strlcat(buf, "NOHF", ADFLAGS2LOGSTRBUFSIZ);
204         first = 0;
205     }
206     if (adflags & ADFLAGS_DIR) {
207         if (!first)
208             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
209         strlcat(buf, "DIR", ADFLAGS2LOGSTRBUFSIZ);
210         first = 0;
211     }
212     if (adflags & ADFLAGS_CHECK_OF) {
213         if (!first)
214             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
215         strlcat(buf, "OF", ADFLAGS2LOGSTRBUFSIZ);
216         first = 0;
217     }
218     if (adflags & ADFLAGS_RDWR) {
219         if (!first)
220             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
221         strlcat(buf, "O_RDWR", ADFLAGS2LOGSTRBUFSIZ);
222         first = 0;
223     }
224     if (adflags & ADFLAGS_RDONLY) {
225         if (!first)
226             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
227         strlcat(buf, "O_RDONLY", ADFLAGS2LOGSTRBUFSIZ);
228         first = 0;
229     }
230     if (adflags & ADFLAGS_CREATE) {
231         if (!first)
232             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
233         strlcat(buf, "O_CREAT", ADFLAGS2LOGSTRBUFSIZ);
234         first = 0;
235     }
236     if (adflags & ADFLAGS_EXCL) {
237         if (!first)
238             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
239         strlcat(buf, "O_EXCL", ADFLAGS2LOGSTRBUFSIZ);
240         first = 0;
241     }
242     if (adflags & ADFLAGS_TRUNC) {
243         if (!first)
244             strlcat(buf, "|", ADFLAGS2LOGSTRBUFSIZ);
245         strlcat(buf, "O_TRUNC", ADFLAGS2LOGSTRBUFSIZ);
246         first = 0;
247     }
248
249     return buf;
250 }
251
252 static uint32_t get_eid(uint32_t eid)
253 {
254     if (eid <= 15)
255         return eid;
256     if (eid == AD_DEV)
257         return ADEID_PRIVDEV;
258     if (eid == AD_INO)
259         return ADEID_PRIVINO;
260     if (eid == AD_SYN)
261         return ADEID_PRIVSYN;
262     if (eid == AD_ID)
263         return ADEID_PRIVID;
264
265     return 0;
266 }
267
268 /* ----------------------------------- */
269 static int new_ad_header(struct adouble *ad, const char *path, struct stat *stp, int adflags)
270 {
271     const struct entry  *eid;
272     uint16_t            ashort;
273     struct stat         st;
274
275     LOG(log_debug, logtype_default, "new_ad_header(\"%s\")", path);
276
277     if (stp == NULL) {
278         stp = &st;
279         if (lstat(path, &st) != 0)
280             return -1;
281     }
282
283     ad->ad_magic = AD_MAGIC;
284     ad->ad_version = ad->ad_vers & 0x0f0000;
285     if (!ad->ad_version) {
286         ad->ad_version = AD_VERSION;
287     }
288
289     memset(ad->ad_data, 0, sizeof(ad->ad_data));
290
291     if (ad->ad_vers == AD_VERSION2)
292         eid = entry_order2;
293     else if (ad->ad_vers == AD_VERSION_EA)
294         eid = entry_order_ea;
295     else if (ad->ad_vers == AD_VERSION2_OSX)
296         eid = entry_order_osx;
297     else {
298         return -1;
299     }
300
301     while (eid->id) {
302         ad->ad_eid[eid->id].ade_off = eid->offset;
303         ad->ad_eid[eid->id].ade_len = eid->len;
304         eid++;
305     }
306
307     /* put something sane in the directory finderinfo */
308     if (ad->ad_vers != AD_VERSION2_OSX) {
309         if ((adflags & ADFLAGS_DIR)) {
310             /* set default view */
311             ashort = htons(FINDERINFO_CLOSEDVIEW);
312             memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRVIEWOFF, &ashort, sizeof(ashort));
313         } else {
314             /* set default creator/type fields */
315             memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRTYPEOFF,"\0\0\0\0", 4);
316             memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRCREATOFF,"\0\0\0\0", 4);
317         }
318
319         /* make things invisible */
320         if ((ad->ad_options & ADVOL_INVDOTS)
321             && (*path == '.')
322             && !((adflags & ADFLAGS_DIR) && (path[1] == 0))
323             ) {
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     int opened = 0;
926
927     LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\", %s, %04o)",
928         path, adflags2logstr(adflags), mode);
929
930     oflags = O_NOFOLLOW | (ad2openflags(adflags) & ~(O_CREAT | O_TRUNC));
931
932     if (ad_meta_fileno(ad) != -1) {
933         /* the file is already open, but we want write access: */
934         if ((adflags & ADFLAGS_RDWR) &&
935             /* and it was already denied: */
936             (ad->ad_mdp->adf_flags & O_RDONLY)) {
937             LOG(log_error, logtype_default, "ad_open_hf_ea(%s): rw request for ro file: %s",
938                 fullpathname(path), strerror(errno));
939             errno = EACCES;
940             return -1;
941         }
942         /* it's not new anymore */
943         ad->ad_mdp->adf_flags &= ~( O_TRUNC | O_CREAT );
944         ad->ad_mdp->adf_refcount++;
945     } else {
946         if (adflags & ADFLAGS_RDWR) {
947             /* Fo a RDONLY adouble we just use sys_lgetxattr instead if sys_fgetxattr */
948             if (adflags & ADFLAGS_DIR)
949                 /* For directories we open the directory RDONYL so we can later fchdir()  */
950                 oflags = (oflags & ~O_RDWR) | O_RDONLY;
951             LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\"): opening base file for meta adouble EA", path);
952             if ((ad_meta_fileno(ad) = open(path, oflags)) == -1)
953                 goto error;
954             opened = 1;
955             ad->ad_mdp->adf_flags = oflags;
956         }
957         ad->ad_mdp->adf_refcount = 1;
958     }
959
960     /* Read the adouble header in and parse it.*/
961     if (ad->ad_ops->ad_header_read(path, ad, NULL) != 0) {
962         LOG(log_error, logtype_default, "ad_open_hf_ea: no EA adouble");
963
964         if (!(adflags & ADFLAGS_CREATE)) {
965             errno = ENOENT;
966             goto error;
967         }
968
969         LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\"): creating metadata EA", path);
970
971         /* It doesnt exist, EPERM or another error */
972         if (!(errno == ENOATTR || errno == ENOENT)) {
973             LOG(log_error, logtype_default, "ad_open_hf_ea: unexpected: %s", strerror(errno));
974             goto error;
975         }
976
977         /* Create one */
978         if (new_ad_header(ad, path, NULL, adflags) < 0) {
979             LOG(log_error, logtype_default, "ad_open_hf_ea: can't create new header: %s",
980                 fullpathname(path));
981             goto error;
982         }
983         ad->ad_mdp->adf_flags |= O_CREAT; /* mark as just created */
984         ad_flush(ad);
985         LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\"): created metadata EA", path);
986     }
987
988     (void)ad_reso_size(path, adflags, ad);
989
990     return 0;
991
992 error:
993     if (opened && ad_meta_fileno(ad) != -1) {
994         close(ad_meta_fileno(ad));
995         ad_meta_fileno(ad) = -1;
996         ad->ad_mdp->adf_refcount = 0;
997     }
998     (void)ad_reso_size(path, adflags, ad);
999     return -1;
1000 }
1001
1002 static int ad_open_hf(const char *path, int adflags, int mode, struct adouble *ad)
1003 {
1004     int ret = 0;
1005
1006     LOG(log_debug, logtype_default, "ad_open_hf(\"%s\", %04o)", path, mode);
1007
1008     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
1009     ad->ad_rlen = 0;
1010
1011     switch (ad->ad_vers) {
1012     case AD_VERSION2:
1013         ret = ad_open_hf_v2(path, adflags, mode, ad);
1014         break;
1015     case AD_VERSION_EA:
1016         ret = ad_open_hf_ea(path, adflags, mode, ad);
1017         break;
1018     default:
1019         ret = -1;
1020         break;
1021     }
1022
1023     if (ret != 0) {
1024         return ad_error(ad, adflags);
1025     }
1026     return ret;
1027 }
1028
1029 /*!
1030  * Get resofork length for adouble:ea
1031  */
1032 static int ad_reso_size(const char *path, int adflags, struct adouble *ad)
1033 {
1034     EC_INIT;
1035     struct stat st;
1036
1037     LOG(log_debug, logtype_default, "ad_reso_size(\"%s\")", path);
1038
1039 #ifdef HAVE_EAFD
1040     int opened = 0;
1041     int eafd = ad_reso_fileno(ad);
1042     if (eafd == -1) {
1043         EC_NEG1( eafd = sys_getxattrfd(path, O_RDONLY) );
1044         opened = 1;
1045     }
1046     EC_NEG1( rlen = fstat(eafd, &st) );
1047     ad->ad_rlen = st.st_size;
1048 #else
1049     const char *rfpath;
1050     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags));
1051     EC_ZERO( lstat(rfpath, &st));
1052     if (st.st_size > ADEDOFF_RFORK_OSX)
1053         ad->ad_rlen = st.st_size - ADEDOFF_RFORK_OSX;
1054     else
1055         ad->ad_rlen = 0;
1056 #endif
1057
1058     LOG(log_debug, logtype_default, "ad_reso_size(\"%s\"): size: %zd", path, ad->ad_rlen);
1059
1060 EC_CLEANUP:
1061 #ifdef HAVE_EAFD
1062     if (opened)
1063         close(eafd);
1064 #endif
1065     if (ret != 0)
1066         ad->ad_rlen = 0;
1067     EC_EXIT;
1068 }
1069
1070 /*!
1071  * Open ressource fork
1072  *
1073  * Only for adouble:ea, a nullop otherwise because adouble:v2 has the ressource fork as part
1074  * of the adouble file which is openend by ADFLAGS_HF.
1075  */
1076 static int ad_open_rf(const char *path, int adflags, int mode, struct adouble *ad)
1077 {
1078     EC_INIT;
1079     int oflags;
1080     int closeflags = adflags & (ADFLAGS_DF | ADFLAGS_HF);
1081     ssize_t rlen;
1082 #ifndef HAVE_EAFD
1083     const char *rfpath;
1084     struct stat st;
1085 #endif
1086
1087     if (ad->ad_vers != AD_VERSION_EA)
1088         return 0;
1089
1090     LOG(log_debug, logtype_default, "ad_open_rf(\"%s\", %04o)", path, mode);
1091
1092     oflags = O_NOFOLLOW | (ad2openflags(adflags) & ~O_CREAT);
1093
1094     if (ad_reso_fileno(ad) != -1) {
1095         /* the file is already open, but we want write access: */
1096         if ((adflags & ADFLAGS_RDWR)
1097             /* and it was already denied: */
1098             && (ad->ad_rfp->adf_flags & O_RDONLY)) {
1099             errno = EACCES;
1100             return -1;
1101         }
1102         ad->ad_rfp->adf_flags &= ~( O_TRUNC | O_CREAT );
1103         ad->ad_rfp->adf_refcount++;
1104         EC_NEG1_LOG( ad_reso_size(path, adflags, ad));
1105         return 0;
1106     }
1107 #ifdef HAVE_EAFD
1108     if ((ad_reso_fileno(ad) = sys_getxattrfd(path, oflags)) == -1) {
1109         if (!(adflags & ADFLAGS_CREATE))
1110             EC_FAIL;
1111         oflags |= O_CREAT;
1112         EC_NEG1_LOG( ad_reso_fileno(ad) = sys_getxattrfd(path, oflags, 0666) ); 
1113     }
1114 #else
1115     EC_NULL_LOG( rfpath = ad->ad_ops->ad_path(path, adflags) );
1116     if ((ad_reso_fileno(ad) = open(rfpath, oflags)) == -1) {
1117         if (!(adflags & ADFLAGS_CREATE))
1118             EC_FAIL;
1119         oflags |= O_CREAT;
1120         EC_NEG1_LOG( ad_reso_fileno(ad) = open(rfpath, oflags, mode) );
1121         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork: \"%s\"",
1122             path, rfpath);
1123     }
1124 #endif
1125
1126     ad->ad_rfp->adf_refcount = 1;
1127     ad->ad_rfp->adf_flags = oflags;
1128
1129 #ifndef HAVE_EAFD
1130     EC_ZERO_LOG( fstat(ad_reso_fileno(ad), &st) );
1131     if (ad->ad_rfp->adf_flags & O_CREAT) {
1132         /* This is a new adouble header file, create it */
1133         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork, initializing: \"%s\"",
1134             path, rfpath);
1135         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): created adouble rfork, flushing: \"%s\"",
1136             path, rfpath);
1137         ad_flush(ad);
1138     } else {
1139         /* Read the adouble header */
1140         LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): reading adouble rfork: \"%s\"",
1141             path, rfpath);
1142         EC_NEG1_LOG( ad_header_read_osx(NULL, ad, &st) );
1143     }
1144 #endif
1145
1146     (void)ad_reso_size(path, adflags, ad);
1147
1148 EC_CLEANUP:
1149     if (ret != 0) {
1150         if (ad_reso_fileno(ad) != -1) {
1151             close(ad_reso_fileno(ad));
1152             ad_reso_fileno(ad) = -1;
1153             ad->ad_rfp->adf_refcount = 0;
1154         }
1155         int err = errno;
1156         (void)ad_close(ad, closeflags);
1157         errno = err;
1158         ad->ad_rlen = 0;
1159     }
1160
1161     LOG(log_debug, logtype_default, "ad_open_rf(\"%s\"): END", path);
1162
1163     EC_EXIT;
1164 }
1165
1166 /***********************************************************************************
1167  * API functions
1168  ********************************************************************************* */
1169
1170 const char *ad_path_ea( const char *path, int adflags _U_)
1171 {
1172     return path;
1173 }
1174
1175 const char *ad_path_osx(const char *path, int adflags _U_)
1176 {
1177     static char pathbuf[ MAXPATHLEN + 1];
1178     char    c, *slash, buf[MAXPATHLEN + 1];
1179
1180     if (!strcmp(path,".")) {
1181         /* fixme */
1182         getcwd(buf, MAXPATHLEN);
1183     }
1184     else {
1185         strlcpy(buf, path, MAXPATHLEN +1);
1186     }
1187     if (NULL != ( slash = strrchr( buf, '/' )) ) {
1188         c = *++slash;
1189         *slash = '\0';
1190         strlcpy( pathbuf, buf, MAXPATHLEN +1);
1191         *slash = c;
1192     } else {
1193         pathbuf[ 0 ] = '\0';
1194         slash = buf;
1195     }
1196     strlcat( pathbuf, "._", MAXPATHLEN  +1);
1197     strlcat( pathbuf, slash, MAXPATHLEN +1);
1198     return pathbuf;
1199 }
1200
1201 /*
1202  * Put the .AppleDouble where it needs to be:
1203  *
1204  *      /   a/.AppleDouble/b
1205  *  a/b
1206  *      \   b/.AppleDouble/.Parent
1207  *
1208  * FIXME: should do something for pathname > MAXPATHLEN
1209  */
1210 const char *ad_path( const char *path, int adflags)
1211 {
1212     static char pathbuf[ MAXPATHLEN + 1];
1213     const char *slash;
1214     size_t  l ;
1215
1216     if ( adflags & ADFLAGS_DIR ) {
1217         l = strlcpy( pathbuf, path, sizeof(pathbuf));
1218
1219         if ( l && l < MAXPATHLEN) {
1220             pathbuf[l++] = '/';
1221         }
1222         strlcpy(pathbuf +l, ".AppleDouble/.Parent", sizeof(pathbuf) -l);
1223     } else {
1224         if (NULL != ( slash = strrchr( path, '/' )) ) {
1225             slash++;
1226             l = slash - path;
1227             /* XXX we must return NULL here and test in the caller */
1228             if (l > MAXPATHLEN)
1229                 l = MAXPATHLEN;
1230             memcpy( pathbuf, path, l);
1231         } else {
1232             l = 0;
1233             slash = path;
1234         }
1235         l += strlcpy( pathbuf +l, ".AppleDouble/", sizeof(pathbuf) -l);
1236         strlcpy( pathbuf + l, slash, sizeof(pathbuf) -l);
1237     }
1238
1239     return( pathbuf );
1240 }
1241
1242 /* -------------------------
1243  * Support inherited protection modes for AppleDouble files.  The supplied
1244  * mode is ANDed with the parent directory's mask value in lieu of "umask",
1245  * and that value is returned.
1246  */
1247 char *ad_dir(const char *path)
1248 {
1249     static char     modebuf[ MAXPATHLEN + 1];
1250     char        *slash;
1251     /*
1252      * For a path with directories in it, remove the final component
1253      * (path or subdirectory name) to get the name we want to stat.
1254      * For a path which is just a filename, use "." instead.
1255      */
1256     slash = strrchr( path, '/' );
1257     if (slash) {
1258         size_t len;
1259
1260         len = slash - path;
1261         if (len >= MAXPATHLEN) {
1262             errno = ENAMETOOLONG;
1263             return NULL;  /* can't do it */
1264         }
1265         memcpy( modebuf, path, len );
1266         modebuf[len] = '\0';
1267         /* is last char a '/' ? */
1268         if (slash[1] == 0) {
1269             slash = modebuf+ len;
1270             /* remove them */
1271             while (modebuf < slash && slash[-1] == '/') {
1272                 --slash;
1273             }
1274             if (modebuf == slash) {
1275                 goto use_cur;
1276             }
1277             *slash = '\0';
1278             while (modebuf < slash && *slash != '/') {
1279                 --slash;
1280             }
1281             if (modebuf == slash) {
1282                 goto use_cur;
1283             }
1284             *slash = '\0';      /* remove pathname component */
1285         }
1286         return modebuf;
1287     }
1288 use_cur:
1289     modebuf[0] = '.';   /* use current directory */
1290     modebuf[1] = '\0';
1291     return modebuf;
1292 }
1293
1294 int ad_setfuid(const uid_t id)
1295 {
1296     default_uid = id;
1297     return 0;
1298 }
1299
1300 /* ---------------- */
1301 uid_t ad_getfuid(void)
1302 {
1303     return default_uid;
1304 }
1305
1306 /* ----------------
1307    stat path parent directory
1308 */
1309 int ad_stat(const char *path, struct stat *stbuf)
1310 {
1311     char *p;
1312
1313     p = ad_dir(path);
1314     if (!p)
1315         return -1;
1316     return lstat( p, stbuf );
1317 }
1318
1319 /* ----------------
1320    return access right of path parent directory
1321 */
1322 int ad_mode( const char *path, mode_t mode)
1323 {
1324     struct stat     stbuf;
1325     ad_mode_st(path, &mode, &stbuf);
1326     return mode;
1327 }
1328
1329 /*
1330  * Use mkdir() with mode bits taken from ad_mode().
1331  */
1332 int ad_mkdir( const char *path, mode_t mode)
1333 {
1334     int ret;
1335     int st_invalid;
1336     struct stat stbuf;
1337
1338     LOG(log_debug, logtype_default, "ad_mkdir(\"%s\", %04o) {cwd: \"%s\"}",
1339         path, mode, getcwdpath());
1340
1341     st_invalid = ad_mode_st(path, &mode, &stbuf);
1342     ret = mkdir( path, mode );
1343     if (ret || st_invalid)
1344         return ret;
1345     ad_chown(path, &stbuf);
1346
1347     return ret;
1348 }
1349
1350 static void ad_init_func(struct adouble *ad)
1351 {
1352     switch (ad->ad_vers) {
1353     case AD_VERSION2:
1354         ad->ad_ops = &ad_adouble;
1355         ad->ad_rfp = &ad->ad_resource_fork;
1356         ad->ad_mdp = &ad->ad_resource_fork;
1357         break;
1358     case AD_VERSION_EA:
1359         ad->ad_ops = &ad_adouble_ea;
1360         ad->ad_rfp = &ad->ad_resource_fork;
1361         ad->ad_mdp = &ad->ad_data_fork;
1362         break;
1363     default:
1364         AFP_PANIC("ad_init: unknown AD version");
1365     }
1366
1367
1368     ad_data_fileno(ad) = -1;
1369     ad_reso_fileno(ad) = -1;
1370     ad_meta_fileno(ad) = -1;
1371     ad->ad_refcount = 1;
1372     return;
1373 }
1374
1375 void ad_init_old(struct adouble *ad, int flags, int options)
1376 {
1377     memset(ad, 0, sizeof(struct adouble));
1378     ad->ad_vers = flags;
1379     ad->ad_options = options;
1380     ad_init_func(ad);
1381 }
1382
1383 void ad_init(struct adouble *ad, const struct vol * restrict vol)
1384 {
1385     memset(ad, 0, sizeof(struct adouble));
1386     ad->ad_vers = vol->v_adouble;
1387     ad->ad_options = vol->v_ad_options;
1388     ad_init_func(ad);
1389 }
1390
1391 /*!
1392  * Open data-, metadata(header)- or ressource fork
1393  *
1394  * ad_open(struct adouble *ad, const char *path, int adflags, int flags)
1395  * ad_open(struct adouble *ad, const char *path, int adflags, int flags, mode_t mode)
1396  *
1397  * You must call ad_init() before ad_open, usually you'll just call it like this: \n
1398  * @code
1399  *      struct adoube ad;
1400  *      ad_init(&ad, vol->v_adouble, vol->v_ad_options);
1401  * @endcode
1402  *
1403  * Open a files data fork, metadata fork or ressource fork.
1404  *
1405  * @param ad        (rw) pointer to struct adouble
1406  * @param path      (r)  Path to file or directory
1407  * @param adflags   (r)  Flags specifying which fork to open, can be or'd:
1408  *                         ADFLAGS_DF:        open data fork
1409  *                         ADFLAGS_RF:        open ressource fork
1410  *                         ADFLAGS_HF:        open header (metadata) file
1411  *                         ADFLAGS_NOHF:      it's not an error if header file couldn't be created
1412  *                         ADFLAGS_DIR:       if path is a directory you MUST or ADFLAGS_DIR to adflags
1413  *
1414  *                       Access mode for the forks:
1415  *                         ADFLAGS_RDONLY:    open read only
1416  *                         ADFLAGS_RDWR:      open read write
1417  *
1418  *                       Creation flags:
1419  *                         ADFLAGS_CREATE:    create if not existing
1420  *                         ADFLAGS_TRUNC:     truncate
1421  *
1422  *                       Special flags:
1423  *                         ADFLAGS_CHECK_OF:  check for open forks from us and other afpd's
1424  *                         ADFLAGS_SETSHRMD:  this adouble struct will be used to set sharemode locks.
1425  *                                            This basically results in the files being opened RW instead of RDONLY.
1426  * @param mode      (r)  mode used with O_CREATE
1427  *
1428  * The open mode flags (rw vs ro) have to take into account all the following requirements:
1429  * - we remember open fds for files because me must avoid a single close releasing fcntl locks for other
1430  *   fds of the same file
1431  *
1432  * @returns 0 on success, any other value indicates an error
1433  */
1434 int ad_open(struct adouble *ad, const char *path, int adflags, ...)
1435 {
1436     EC_INIT;
1437     va_list args;
1438     mode_t mode = 0;
1439
1440     LOG(log_debug, logtype_default, "ad_open(\"%s\", %s)",
1441         fullpathname(path), adflags2logstr(adflags));
1442
1443     if (adflags & ADFLAGS_CHECK_OF)
1444         /* Checking for open forks requires sharemode lock support (ie RDWR instead of RDONLY) */
1445         adflags |= ADFLAGS_SETSHRMD;
1446
1447     if ((ad->ad_vers == AD_VERSION_EA) && (adflags & ADFLAGS_SETSHRMD))
1448         /* adouble:ea sets sharemode locks on the datafork */
1449         adflags |= ADFLAGS_DF;
1450
1451     if (ad->ad_inited != AD_INITED) {
1452         ad->ad_adflags = (adflags & ~(ADFLAGS_DF | ADFLAGS_HF | ADFLAGS_RF));
1453         ad->ad_inited = AD_INITED;
1454     } else {
1455         ad->ad_open_forks = ((ad->ad_data_fork.adf_refcount > 0) ? ATTRBIT_DOPEN : 0);
1456         if (ad->ad_resource_fork.adf_refcount > 0)
1457             ad->ad_open_forks |= ATTRBIT_ROPEN;
1458     }
1459
1460     va_start(args, adflags);
1461     if (adflags & ADFLAGS_CREATE)
1462         mode = va_arg(args, mode_t);
1463     va_end(args);
1464
1465     if (adflags & ADFLAGS_DF) {
1466         EC_ZERO( ad_open_df(path, adflags, mode, ad) );
1467         ad->ad_adflags |= ADFLAGS_DF;
1468     }
1469
1470     if (adflags & ADFLAGS_HF) {
1471         EC_ZERO( ad_open_hf(path, adflags, mode, ad) );
1472         ad->ad_adflags |= ADFLAGS_HF;
1473     }
1474
1475     if (adflags & ADFLAGS_RF) {
1476         EC_ZERO( ad_open_rf(path, adflags, mode, ad) );
1477         ad->ad_adflags |= ADFLAGS_RF;
1478     }
1479
1480     if (adflags & ADFLAGS_CHECK_OF) {
1481         ad->ad_open_forks |= ad_openforks(ad, ad->ad_open_forks);
1482     }
1483
1484 EC_CLEANUP:
1485     LOG(log_debug, logtype_default, "ad_open(\"%s\", %s): result: %d",
1486         fullpathname(path), adflags2logstr(ad->ad_adflags), ret);
1487
1488     EC_EXIT;
1489 }
1490
1491 /*!
1492  * @brief open metadata, possibly as root
1493  *
1494  * Return only metadata but try very hard ie at first try as user, then try as root.
1495  *
1496  * @param name  name of file/dir
1497  * @param flags ADFLAGS_DIR: name is a directory \n
1498  *              ADFLAGS_CHECK_OF: test if name is open by us or another afpd process
1499  *
1500  * @param adp   pointer to struct adouble
1501  */
1502 int ad_metadata(const char *name, int flags, struct adouble *adp)
1503 {
1504     uid_t uid;
1505     int   ret, err, oflags;
1506
1507     /* Sanitize flags */
1508     oflags = (flags & (ADFLAGS_CHECK_OF | ADFLAGS_DIR)) | ADFLAGS_HF | ADFLAGS_RDONLY;    
1509
1510     if ((ret = ad_open(adp, name, oflags)) < 0 && errno == EACCES) {
1511         uid = geteuid();
1512         if (seteuid(0)) {
1513             LOG(log_error, logtype_default, "ad_metadata(%s): seteuid failed %s", name, strerror(errno));
1514             errno = EACCES;
1515             return -1;
1516         }
1517         /* we are root open read only */
1518         ret = ad_open(adp, name, oflags);
1519         err = errno;
1520         if ( seteuid(uid) < 0) {
1521             LOG(log_error, logtype_default, "ad_metadata: can't seteuid back");
1522             exit(EXITERR_SYS);
1523         }
1524         errno = err;
1525     }
1526
1527     return ret;
1528 }
1529
1530 /*
1531  * @brief openat like wrapper for ad_metadata
1532  */
1533 int ad_metadataat(int dirfd, const char *name, int flags, struct adouble *adp)
1534 {
1535     int ret = 0;
1536     int cwdfd = -1;
1537
1538     if (dirfd != -1) {
1539         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0)) {
1540             ret = -1;
1541             goto exit;
1542         }
1543     }
1544
1545     if (ad_metadata(name, flags, adp) < 0) {
1546         ret = -1;
1547         goto exit;
1548     }
1549
1550     if (dirfd != -1) {
1551
1552         if (fchdir(cwdfd) != 0) {
1553             LOG(log_error, logtype_afpd, "ad_openat: cant chdir back, exiting");
1554             exit(EXITERR_SYS);
1555         }
1556     }
1557
1558 exit:
1559     if (cwdfd != -1)
1560         close(cwdfd);
1561
1562     return ret;
1563
1564 }
1565
1566 int ad_refresh(const char *path, struct adouble *ad)
1567 {
1568     switch (ad->ad_vers) {
1569     case AD_VERSION2:
1570         if (ad_meta_fileno(ad) == -1)
1571             return -1;
1572         return ad->ad_ops->ad_header_read(NULL, ad, NULL);
1573         break;
1574     case AD_VERSION_EA:
1575 #ifdef HAVE_EAFD
1576         if (AD_META_OPEN(ad)) {
1577             if (ad_data_fileno(ad) == -1)
1578                 return -1;
1579             // TODO: read meta EA
1580         }
1581
1582         if (AD_RSRC_OPEN(ad)) {
1583             if (ad_reso_fileno(ad) == -1)
1584                 return -1;
1585             ssize_t len;
1586             if ((len = fstat(ad_reso_fileno(ad))) == -1)
1587                 return -1;
1588             ad->ad_rlen = len;
1589         }
1590 #else
1591         if (AD_META_OPEN(ad)) {
1592             if (ad_data_fileno(ad) == -1)
1593                 return -1;
1594             // TODO: read meta EA
1595         }
1596         if (AD_RSRC_OPEN(ad)) {
1597             if (ad_reso_fileno(ad) == -1)
1598                 return -1;
1599             if (ad_header_read_osx(path, ad, NULL) < 0)
1600                 return -1;
1601         }
1602 #endif
1603         return ad->ad_ops->ad_header_read(path, ad, NULL);
1604         break;
1605     default:
1606         return -1;
1607         break;
1608     }
1609
1610 }
1611
1612 int ad_openat(struct adouble  *ad,
1613               int dirfd,  /* dir fd openat like */
1614               const char *path,
1615               int adflags, ...)
1616 {
1617     EC_INIT;
1618     int cwdfd = -1;
1619     va_list args;
1620     mode_t mode;
1621
1622     if (dirfd != -1) {
1623         if ((cwdfd = open(".", O_RDONLY) == -1) || (fchdir(dirfd) != 0))
1624             EC_FAIL;
1625     }
1626
1627     va_start(args, adflags);
1628     if (adflags & ADFLAGS_CREATE)
1629         mode = va_arg(args, mode_t);
1630     va_end(args);
1631
1632     EC_NEG1( ad_open(ad, path, adflags, mode) );
1633
1634     if (dirfd != -1) {
1635         if (fchdir(cwdfd) != 0) {
1636             AFP_PANIC("ad_openat: cant chdir back");
1637         }
1638     }
1639
1640 EC_CLEANUP:
1641     if (cwdfd != -1)
1642         close(cwdfd);
1643
1644     return ret;
1645 }