]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
improvement: add a SUIDDIR (aka BSD like) for admin user, files create by an admin
[netatalk.git] / libatalk / adouble / ad_open.c
1 /*
2  * $Id: ad_open.c,v 1.26 2003-01-24 06:58:25 didg Exp $
3  *
4  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu)
5  * Copyright (c) 1990,1991 Regents of The University of Michigan.
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  * NOTE: I don't use inline because a good compiler should be
27  * able to optimize all the static below. Didier
28  */
29
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif /* HAVE_CONFIG_H */
33
34 #include <string.h>
35 #ifdef HAVE_FCNTL_H
36 #include <fcntl.h>
37 #endif /* HAVE_FCNTL_H */
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif /* HAVE_UNISTD_H */
41 #include <errno.h>
42 #include <atalk/logger.h>
43
44 #include <sys/time.h>
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #include <sys/param.h>
48 #include <sys/mman.h>
49
50 #include <netatalk/endian.h>
51 #include <atalk/adouble.h>
52
53 #include "ad_private.h"
54
55 #ifndef MAX
56 #define MAX(a, b)  ((a) < (b) ? (b) : (a))
57 #endif /* ! MAX */
58
59 /*
60  * AppleDouble entry default offsets.
61  * The layout looks like this:
62  *
63  * this is the v1 layout:
64  *        255     200             16      32              N
65  *      |  NAME |    COMMENT    | FILEI |    FINDERI    | RFORK |
66  *
67  * we need to change it to look like this:
68  *
69  * v2 layout:
70  * field       length (in bytes)
71  * NAME        255
72  * COMMENT     200
73  * FILEDATESI  16     replaces FILEI
74  * FINDERI     32  
75  * DID          4     new
76  * AFPFILEI     4     new
77  * SHORTNAME   12     8.3 new
78  * RFORK        N
79  * 
80  * so, all we need to do is replace FILEI with FILEDATESI, move RFORK,
81  * and add in the new fields.
82  *
83  * NOTE: the HFS module will need similar modifications to interact with
84  * afpd correctly.
85  */
86  
87 #define ADEDOFF_MAGIC        (0)
88 #define ADEDOFF_VERSION      (ADEDOFF_MAGIC + ADEDLEN_MAGIC)
89 #define ADEDOFF_FILLER       (ADEDOFF_VERSION + ADEDLEN_VERSION)
90 #define ADEDOFF_NENTRIES     (ADEDOFF_FILLER + ADEDLEN_FILLER)
91
92 /* initial lengths of some of the fields */
93 #define ADEDLEN_INIT     0
94
95 /* make sure we don't redefine ADEDOFF_FILEI */
96 #ifdef ADEDOFF_FILEI
97 #undef ADEDOFF_FILEI
98 #endif /* ADEDOFF_FILEI */
99
100 #define ADEID_NUM_V1         5
101 #define ADEDOFF_NAME_V1      (AD_HEADER_LEN + ADEID_NUM_V1*AD_ENTRY_LEN)
102 #define ADEDOFF_COMMENT_V1   (ADEDOFF_NAME_V1 + ADEDLEN_NAME)
103 #define ADEDOFF_FILEI        (ADEDOFF_COMMENT_V1 + ADEDLEN_COMMENT)
104 #define ADEDOFF_FINDERI_V1   (ADEDOFF_FILEI + ADEDLEN_FILEI)
105 #define ADEDOFF_RFORK_V1     (ADEDOFF_FINDERI_V1 + ADEDLEN_FINDERI)
106
107 /* i stick things in a slightly different order than their eid order in 
108  * case i ever want to separate RootInfo behaviour from the rest of the 
109  * stuff. */
110 #define ADEID_NUM_V2         9
111 #define ADEDOFF_NAME_V2      (AD_HEADER_LEN + ADEID_NUM_V2*AD_ENTRY_LEN)
112 #define ADEDOFF_COMMENT_V2   (ADEDOFF_NAME_V2 + ADEDLEN_NAME)
113 #define ADEDOFF_FILEDATESI   (ADEDOFF_COMMENT_V2 + ADEDLEN_COMMENT)
114 #define ADEDOFF_FINDERI_V2   (ADEDOFF_FILEDATESI + ADEDLEN_FILEDATESI)
115 #define ADEDOFF_DID          (ADEDOFF_FINDERI_V2 + ADEDLEN_FINDERI)
116 #define ADEDOFF_AFPFILEI     (ADEDOFF_DID + ADEDLEN_DID)
117 #define ADEDOFF_SHORTNAME    (ADEDOFF_AFPFILEI + ADEDLEN_AFPFILEI)
118 #define ADEDOFF_PRODOSFILEI  (ADEDOFF_SHORTNAME + ADEDLEN_SHORTNAME)
119 #define ADEDOFF_RFORK_V2     (ADEDOFF_PRODOSFILEI + ADEDLEN_PRODOSFILEI)
120
121
122
123 /* we keep local copies of a bunch of stuff so that we can initialize things 
124  * correctly. */
125
126 /* Bits in the finderinfo data. 
127  * see etc/afpd/{directory.c,file.c} for the finderinfo structure
128  * layout. */
129 #define FINDERINFO_CUSTOMICON 0x4
130 #define FINDERINFO_CLOSEDVIEW 0x100
131
132 /* offsets in finderinfo */
133 #define FINDERINFO_FRTYPEOFF   0
134 #define FINDERINFO_FRCREATOFF  4
135 #define FINDERINFO_FRFLAGOFF   8
136 #define FINDERINFO_FRVIEWOFF  14
137
138 /* invisible bit for dot files */
139 #define ATTRBIT_INVISIBLE     (1 << 0)
140 #define FINDERINFO_INVISIBLE  (1 << 14)
141
142 /* this is to prevent changing timezones from causing problems with
143    localtime volumes. the screw-up is 30 years. we use a delta of 5
144    years.  */
145 #define TIMEWARP_DELTA 157680000
146
147
148 struct entry {
149   u_int32_t id, offset, len;
150 };
151
152 #if AD_VERSION == AD_VERSION1 
153 static const struct entry entry_order[] = {
154   {ADEID_NAME, ADEDOFF_NAME_V1, ADEDLEN_INIT},
155   {ADEID_COMMENT, ADEDOFF_COMMENT_V1, ADEDLEN_INIT},
156   {ADEID_FILEI, ADEDOFF_FILEI, ADEDLEN_FILEI},
157   {ADEID_FINDERI, ADEDOFF_FINDERI_V1, ADEDLEN_FINDERI},
158   {ADEID_RFORK, ADEDOFF_RFORK_V1, ADEDLEN_INIT},
159   {0, 0, 0}
160 };
161 #else /* AD_VERSION == AD_VERSION2 */
162 static const struct entry entry_order[] = {
163   {ADEID_NAME, ADEDOFF_NAME_V2, ADEDLEN_INIT},
164   {ADEID_COMMENT, ADEDOFF_COMMENT_V2, ADEDLEN_INIT},
165   {ADEID_FILEDATESI, ADEDOFF_FILEDATESI, ADEDLEN_FILEDATESI},
166   {ADEID_FINDERI, ADEDOFF_FINDERI_V2, ADEDLEN_FINDERI},
167   {ADEID_DID, ADEDOFF_DID, ADEDLEN_DID},
168   {ADEID_AFPFILEI, ADEDOFF_AFPFILEI, ADEDLEN_AFPFILEI},
169   {ADEID_SHORTNAME, ADEDOFF_SHORTNAME, ADEDLEN_INIT},
170   {ADEID_PRODOSFILEI, ADEDOFF_PRODOSFILEI, ADEDLEN_PRODOSFILEI},
171   {ADEID_RFORK, ADEDOFF_RFORK_V2, ADEDLEN_INIT},
172   {0, 0, 0}
173 };
174 #endif /* AD_VERSION == AD_VERSION2 */
175
176 #if AD_VERSION == AD_VERSION2
177
178
179 static __inline__ int ad_v1tov2(struct adouble *ad, const char *path)
180 {
181   struct stat st;
182   u_int16_t attr;
183   char *buf;
184   int fd, off;
185   
186   /* check to see if we should convert this header. */
187   if (!path || (ad->ad_version != AD_VERSION1))
188     return 0;
189
190   /* convert from v1 to v2. what does this mean?
191    *  1) change FILEI into FILEDATESI
192    *  2) create space for SHORTNAME, AFPFILEI, DID, and PRODOSI
193    *  3) move FILEI attributes into AFPFILEI
194    *  4) initialize ACCESS field of FILEDATESI.
195    *
196    *  so, we need 4*12 (entry ids) + 12 (shortname) + 4 (afpfilei) +
197    *  4 (did) + 8 (prodosi) = 76 more bytes.  */
198   
199 #define SHIFTDATA (AD_DATASZ2 - AD_DATASZ1)
200
201   /* bail if we can't get a lock */
202   if (ad_tmplock(ad, ADEID_RFORK, ADLOCK_WR, 0, 0) < 0) 
203     goto bail_err;
204   
205   if ((fd = open(path, O_RDWR)) < 0) 
206     goto bail_lock;
207   
208   if (fstat(fd, &st) ||
209       ftruncate(fd, st.st_size + SHIFTDATA) < 0) {
210     goto bail_open;
211   }
212   
213   /* last place for failure. */
214   if ((void *) (buf = (char *) 
215                 mmap(NULL, st.st_size + SHIFTDATA,
216                      PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)) == 
217           MAP_FAILED) {
218     goto bail_truncate;
219   }
220   
221   off = ad->ad_eid[ADEID_RFORK].ade_off;
222
223   /* move the RFORK. this assumes that the RFORK is at the end */
224   memmove(buf + off + SHIFTDATA, buf + off, 
225           ad->ad_eid[ADEID_RFORK].ade_len);
226   
227   /* now, fix up our copy of the header */
228   memset(ad->ad_filler, 0, sizeof(ad->ad_filler));
229   
230   /* replace FILEI with FILEDATESI */
231   ad_getattr(ad, &attr);
232   ad->ad_eid[ADEID_FILEDATESI].ade_off = ADEDOFF_FILEDATESI;
233   ad->ad_eid[ADEID_FILEDATESI].ade_len = ADEDLEN_FILEDATESI;
234   ad->ad_eid[ADEID_FILEI].ade_off = 0;
235   ad->ad_eid[ADEID_FILEI].ade_len = 0;
236   
237   /* add in the new entries */
238   ad->ad_eid[ADEID_DID].ade_off = ADEDOFF_DID;
239   ad->ad_eid[ADEID_DID].ade_len = ADEDLEN_DID;
240   ad->ad_eid[ADEID_AFPFILEI].ade_off = ADEDOFF_AFPFILEI;
241   ad->ad_eid[ADEID_AFPFILEI].ade_len = ADEDLEN_AFPFILEI;
242   ad->ad_eid[ADEID_SHORTNAME].ade_off = ADEDOFF_SHORTNAME;
243   ad->ad_eid[ADEID_SHORTNAME].ade_len = ADEDLEN_INIT;
244   ad->ad_eid[ADEID_PRODOSFILEI].ade_off = ADEDOFF_PRODOSFILEI;
245   ad->ad_eid[ADEID_PRODOSFILEI].ade_len = ADEDLEN_PRODOSFILEI;
246   
247   /* shift the old entries (NAME, COMMENT, FINDERI, RFORK) */
248   ad->ad_eid[ADEID_NAME].ade_off = ADEDOFF_NAME_V2;
249   ad->ad_eid[ADEID_COMMENT].ade_off = ADEDOFF_COMMENT_V2;
250   ad->ad_eid[ADEID_FINDERI].ade_off = ADEDOFF_FINDERI_V2;
251   ad->ad_eid[ADEID_RFORK].ade_off = ADEDOFF_RFORK_V2;
252   
253   /* switch to v2 */
254   ad->ad_version = AD_VERSION2;
255   
256   /* move our data buffer to make space for the new entries. */
257   memmove(buf + ADEDOFF_NAME_V2, buf + ADEDOFF_NAME_V1,
258           ADEDOFF_RFORK_V1 - ADEDOFF_NAME_V1);
259   
260   /* now, fill in the space with appropriate stuff. we're
261      operating as a v2 file now. */
262   ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, st.st_mtime);
263   memset(ad_entry(ad, ADEID_DID), 0, ADEDLEN_DID);
264   memset(ad_entry(ad, ADEID_AFPFILEI), 0, ADEDLEN_AFPFILEI);
265   ad_setattr(ad, attr);
266   memset(ad_entry(ad, ADEID_SHORTNAME), 0, ADEDLEN_SHORTNAME);
267   memset(ad_entry(ad, ADEID_PRODOSFILEI), 0, ADEDLEN_PRODOSFILEI);
268   
269   /* rebuild the header and cleanup */
270   ad_rebuild_header(ad);
271   munmap(buf, st.st_size + SHIFTDATA);
272   close(fd);
273   ad_tmplock(ad, ADEID_RFORK, ADLOCK_CLR, 0, 0);
274
275   return 0;
276   
277 bail_truncate:
278   ftruncate(fd, st.st_size);
279 bail_open:
280   close(fd);
281 bail_lock:
282   ad_tmplock(ad, ADEID_RFORK, ADLOCK_CLR, 0, 0);
283 bail_err:
284   return -1;
285 }
286 #endif /* AD_VERSION == AD_VERSION2 */
287
288 #ifdef ATACC
289 mode_t ad_hf_mode (mode_t mode)
290 {
291     /* fnctl lock need write access */
292     if ((mode & S_IRUSR))
293         mode |= S_IWUSR;
294     if ((mode & S_IRGRP))
295         mode |= S_IWGRP;
296     if ((mode & S_IROTH))
297         mode |= S_IWOTH;
298     /* if write mode set add read mode */
299     if ((mode & S_IWUSR))
300         mode |= S_IRUSR;
301     if ((mode & S_IWGRP))
302         mode |= S_IRGRP;
303     if ((mode & S_IWOTH))
304         mode |= S_IROTH;
305
306     return mode;
307 }
308
309 #endif
310
311 /* ------------------------------------- 
312   read in the entries 
313 */
314 static void parse_entries(struct adouble *ad, char *buf,
315                                     u_int16_t nentries)
316 {
317     u_int32_t           eid, len, off;
318
319     /* now, read in the entry bits */
320     for (; nentries > 0; nentries-- ) {
321         memcpy(&eid, buf, sizeof( eid ));
322         eid = ntohl( eid );
323         buf += sizeof( eid );
324         memcpy(&off, buf, sizeof( off ));
325         off = ntohl( off );
326         buf += sizeof( off );
327         memcpy(&len, buf, sizeof( len ));
328         len = ntohl( len );
329         buf += sizeof( len );
330
331         if ( 0 < eid && eid < ADEID_MAX ) {
332             ad->ad_eid[ eid ].ade_off = off;
333             ad->ad_eid[ eid ].ade_len = len;
334         } else {
335             LOG(log_debug, logtype_default, "ad_refresh: nentries %hd  eid %d\n",
336                     nentries, eid );
337         }
338     }
339 }
340
341
342 /* this reads enough of the header so that we can figure out all of
343  * the entry lengths and offsets. once that's done, we just read/mmap
344  * the rest of the header in.
345  *
346  * NOTE: we're assuming that the resource fork is kept at the end of
347  *       the file. also, mmapping won't work for the hfs fs until it
348  *       understands how to mmap header files. */
349 static int ad_header_read(struct adouble *ad, struct stat *hst)
350 {
351     char                *buf = ad->ad_data;
352     u_int16_t           nentries;
353     int                 len;
354     ssize_t             header_len;
355     static int          warning = 0;
356     struct stat         st;
357
358     /* read the header */
359     if ((header_len = adf_pread( &ad->ad_hf, buf, sizeof(ad->ad_data), 0)) < 0) {
360         return -1;
361     }
362     if (header_len < AD_HEADER_LEN) {
363         errno = EIO;
364         return -1;
365     }
366
367     memcpy(&ad->ad_magic, buf, sizeof( ad->ad_magic ));
368     memcpy(&ad->ad_version, buf + ADEDOFF_VERSION, sizeof( ad->ad_version ));
369
370     /* tag broken v1 headers. just assume they're all right. 
371      * we detect two cases: null magic/version
372      *                      byte swapped magic/version
373      * XXX: in the future, you'll need the v1compat flag. 
374      * (ad->ad_flags & ADFLAGS_V1COMPAT) */
375     if (!ad->ad_magic && !ad->ad_version) {
376       if (!warning) {
377         LOG(log_debug, logtype_default, "notice: fixing up null v1 magic/version.");
378         warning++;
379       }
380       ad->ad_magic = AD_MAGIC;
381       ad->ad_version = AD_VERSION1;
382
383     } else if (ad->ad_magic == AD_MAGIC && ad->ad_version == AD_VERSION1) {
384       if (!warning) {
385         LOG(log_debug, logtype_default, "notice: fixing up byte-swapped v1 magic/version.");
386         warning++;
387       }
388
389     } else {
390       ad->ad_magic = ntohl( ad->ad_magic );
391       ad->ad_version = ntohl( ad->ad_version );
392     }
393
394     if ((ad->ad_magic != AD_MAGIC) || ((ad->ad_version != AD_VERSION1)
395 #if AD_VERSION == AD_VERSION2
396                                        && (ad->ad_version != AD_VERSION2)
397 #endif /* AD_VERSION == AD_VERSION2 */
398                                        )) {
399       errno = EIO;
400       LOG(log_debug, logtype_default, "ad_open: can't parse AppleDouble header.");
401       return -1;
402     }
403
404     memcpy(ad->ad_filler, buf + ADEDOFF_FILLER, sizeof( ad->ad_filler ));
405     memcpy(&nentries, buf + ADEDOFF_NENTRIES, sizeof( nentries ));
406     nentries = ntohs( nentries );
407
408     /* read in all the entry headers. if we have more than the 
409      * maximum, just hope that the rfork is specified early on. */
410     len = nentries*AD_ENTRY_LEN;
411
412     if (len + AD_HEADER_LEN > sizeof(ad->ad_data))
413       len = sizeof(ad->ad_data) - AD_HEADER_LEN;
414
415     buf += AD_HEADER_LEN;
416     if (len > header_len - AD_HEADER_LEN) {
417         errno = EIO;
418         LOG(log_debug, logtype_default, "ad_header_read: can't read entry info.");
419         return -1;
420     }
421
422     /* figure out all of the entry offsets and lengths. if we aren't
423      * able to read a resource fork entry, bail. */
424     parse_entries(ad, buf, nentries);
425     if (!ad_getentryoff(ad, ADEID_RFORK)
426         || (ad_getentryoff(ad, ADEID_RFORK) > sizeof(ad->ad_data))
427         ) {
428       LOG(log_debug, logtype_default, "ad_header_read: problem with rfork entry offset."); 
429       return -1;
430     }
431
432     if (ad_getentryoff(ad, ADEID_RFORK) > header_len) {
433         errno = EIO;
434         LOG(log_debug, logtype_default, "ad_header_read: can't read in entries.");
435         return -1;
436     }
437     
438     if (hst == NULL) {
439         hst = &st;
440         if (fstat(ad->ad_hf.adf_fd, &st) < 0) {
441             return 1; /* fail silently */
442          }
443     }
444     ad->ad_rlen = hst->st_size - ad_getentryoff(ad, ADEID_RFORK);
445
446     /* fix up broken dates */
447     if (ad->ad_version == AD_VERSION1) {
448       u_int32_t aint;
449       
450       /* check to see if the ad date is wrong. just see if we have
451       * a modification date in the future. */
452       if (((ad_getdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, &aint)) == 0) &&
453           (aint > TIMEWARP_DELTA + hst->st_mtime)) {
454         ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, aint - AD_DATE_DELTA);
455         ad_getdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, &aint);
456         ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, aint - AD_DATE_DELTA);
457         ad_getdate(ad, AD_DATE_BACKUP | AD_DATE_UNIX, &aint);
458         ad_setdate(ad, AD_DATE_BACKUP | AD_DATE_UNIX, aint - AD_DATE_DELTA);
459       }
460     }
461
462     return 0;
463 }
464
465
466 /*
467  * Put the .AppleDouble where it needs to be:
468  *
469  *          /   a/.AppleDouble/b
470  *      a/b
471  *          \   b/.AppleDouble/.Parent
472  */
473 char *
474 ad_path( path, adflags )
475     const char  *path;
476     int         adflags;
477 {
478     static char pathbuf[ MAXPATHLEN + 1];
479     char        c, *slash, buf[MAXPATHLEN + 1];
480
481     strncpy(buf, path, MAXPATHLEN);
482     if ( adflags & ADFLAGS_DIR ) {
483         strncpy( pathbuf, buf, MAXPATHLEN );
484         if ( *buf != '\0' ) {
485             strcat( pathbuf, "/" );
486         }
487         slash = ".Parent";
488     } else {
489         if (NULL != ( slash = strrchr( buf, '/' )) ) {
490             c = *++slash;
491             *slash = '\0';
492             strncpy( pathbuf, buf, MAXPATHLEN);
493             *slash = c;
494         } else {
495             pathbuf[ 0 ] = '\0';
496             slash = buf;
497         }
498     }
499     strncat( pathbuf, ".AppleDouble/", MAXPATHLEN - strlen(pathbuf));
500     strncat( pathbuf, slash, MAXPATHLEN - strlen(pathbuf));
501
502     return( pathbuf );
503 }
504
505 /*
506  * Support inherited protection modes for AppleDouble files.  The supplied
507  * mode is ANDed with the parent directory's mask value in lieu of "umask",
508  * and that value is returned.
509  */
510
511 #define DEFMASK 07700   /* be conservative */
512
513 char 
514 *ad_dir(path)
515     const char          *path;
516 {
517     static char         modebuf[ MAXPATHLEN + 1];
518     char                *slash;
519
520     if ( strlen( path ) >= MAXPATHLEN ) {
521         errno = ENAMETOOLONG;
522         return NULL;  /* can't do it */
523     }
524
525     /*
526      * For a path with directories in it, remove the final component
527      * (path or subdirectory name) to get the name we want to stat.
528      * For a path which is just a filename, use "." instead.
529      */
530     strcpy( modebuf, path );
531     if (NULL != ( slash = strrchr( modebuf, '/' )) ) {
532         *slash = '\0';          /* remove pathname component */
533     } else {
534         modebuf[0] = '.';       /* use current directory */
535         modebuf[1] = '\0';
536     }
537     return modebuf;
538 }
539
540 /* ---------------- */
541 static uid_t default_uid = -1;
542
543 int ad_setfuid(const uid_t id)
544 {
545     default_uid = id;
546     return 0;
547 }
548
549 /* ---------------- */
550 uid_t ad_getfuid(void) 
551 {
552     return default_uid;
553 }
554
555 /* ---------------- 
556    return inode of path parent directory
557 */
558 static int ad_stat(const char *path, struct stat *stbuf)
559 {
560     char                *p;
561
562     p = ad_dir(path);
563     if (!p) {
564         return -1;
565     }
566
567     return stat( p, stbuf );
568 }
569
570 /* ---------------- 
571    if we are root change path user/ group
572    It can be a native function for BSD cf. FAQ.Q10
573    path:  pathname to chown 
574    stbuf: parent directory inode
575    
576    use fstat and fchown or lchown with linux?
577 */
578 #define EMULATE_SUIDDIR
579  
580 static int ad_chown(const char *path, struct stat *stbuf)
581 {
582 int ret = 0;
583 #ifdef EMULATE_SUIDDIR
584 uid_t id;
585
586     if (default_uid != -1) {  
587         /* we are root (admin) */
588         id = (default_uid)?default_uid:stbuf->st_uid;
589         ret = chown( path, id, stbuf->st_gid );
590     }
591 #endif    
592     return ret;
593 }
594
595 /* ---------------- 
596    return access right and inode of path parent directory
597 */
598 static int ad_mode_st(const char *path, int *mode, struct stat *stbuf)
599 {
600     if (*mode == 0) {
601        return -1;
602     }
603     if (ad_stat(path, stbuf) != 0) {
604         *mode &= DEFMASK;
605         return -1;
606     }
607     *mode &= stbuf->st_mode;
608     return 0;    
609 }
610
611 /* ---------------- 
612    return access right of path parent directory
613 */
614 int
615 ad_mode( path, mode )
616     const char          *path;
617     int                 mode;
618 {
619     struct stat         stbuf;
620     ad_mode_st(path, &mode, &stbuf);
621     return mode;
622 }
623
624 /*
625  * Use mkdir() with mode bits taken from ad_mode().
626  */
627 int
628 ad_mkdir( path, mode )
629     const char          *path;
630     int                 mode;
631 {
632 int ret;
633 int st_invalid;
634 struct stat stbuf;
635
636 #ifdef DEBUG
637     LOG(log_info, logtype_default, "ad_mkdir: Creating directory with mode %d", mode);
638 #endif /* DEBUG */
639
640     st_invalid = ad_mode_st(path, &mode, &stbuf);
641     ret = mkdir( path, mode );
642     if (ret || st_invalid)
643         return ret;
644     ad_chown(path, &stbuf);
645
646     return ret;    
647 }
648
649
650 static int new_rfork(const char *path, struct adouble *ad, int adflags);
651
652 #ifdef  HAVE_PREAD
653 #define AD_SET(a) 
654 #else 
655 #define AD_SET(a) a = 0
656 #endif
657 /*
658  * It's not possible to open the header file O_RDONLY -- the read
659  * will fail and return an error. this refcounts things now. 
660  */
661 int ad_open( path, adflags, oflags, mode, ad )
662     const char          *path;
663     int                 adflags, oflags, mode;
664     struct adouble      *ad;
665 {
666     struct stat         st;
667     char                *slash, *ad_p;
668     int                 hoflags, admode;
669     int                 st_invalid;
670     int                 open_df = 0;
671     
672     if (ad->ad_inited != AD_INITED) {
673         ad_dfileno(ad) = -1;
674         ad_hfileno(ad) = -1;
675         adf_lock_init(&ad->ad_df);
676         adf_lock_init(&ad->ad_hf);
677         ad->ad_inited = AD_INITED;
678         ad->ad_refcount = 1;
679     }
680
681     if ((adflags & ADFLAGS_DF)) { 
682         if (ad_dfileno(ad) == -1) {
683           hoflags = (oflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
684           admode = mode;
685           st_invalid = ad_mode_st(path, &admode, &st);
686           ad->ad_df.adf_fd =open( path, hoflags, admode );
687           if (ad->ad_df.adf_fd < 0 ) {
688              if (errno == EACCES && !(oflags & O_RDWR)) {
689                 hoflags = oflags;
690                 ad->ad_df.adf_fd =open( path, hoflags, admode );
691              }
692           }
693           if ( ad->ad_df.adf_fd < 0)
694                 return -1;
695
696           AD_SET(ad->ad_df.adf_off);
697           ad->ad_df.adf_flags = hoflags;
698           if ((oflags & O_CREAT) && !st_invalid) {
699               /* just created, set owner if admin (root) */
700               ad_chown(path, &st);
701           }
702         } 
703         else {
704             /* the file is already open... but */
705             if ((oflags & ( O_RDWR | O_WRONLY)) &&             /* we want write access */
706                 !(ad->ad_df.adf_flags & ( O_RDWR | O_WRONLY))) /* and it was denied the first time */
707             {
708                  errno = EACCES;
709                  return -1;
710             }
711             /* FIXME 
712              * for now ad_open is never called with O_TRUNC or O_EXCL if the file is
713              * already open. Should we check for it? ie
714              * O_EXCL --> error 
715              * O_TRUNC --> truncate the fork.
716              * idem for ressource fork.
717              */
718         }
719         open_df = ADFLAGS_DF;
720         ad->ad_df.adf_refcount++;
721     }
722
723     if (!(adflags & ADFLAGS_HF)) 
724         return 0;
725         
726     if (ad_hfileno(ad) != -1) { /* the file is already open */
727         if ((oflags & ( O_RDWR | O_WRONLY)) &&             
728                 !(ad->ad_hf.adf_flags & ( O_RDWR | O_WRONLY))) {
729             if (open_df) {
730                 /* don't call with ADFLAGS_HF because we didn't open ressource fork */
731                 ad_close( ad, open_df );
732             }
733             errno = EACCES;
734             return -1;
735         }
736         ad_refresh(ad);
737         ad->ad_hf.adf_refcount++;
738         return 0;
739     }
740
741     ad_p = ad_path( path, adflags );
742
743     hoflags = oflags & ~O_CREAT;
744     hoflags = (hoflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
745     ad->ad_hf.adf_fd = open( ad_p, hoflags, 0 );
746     if (ad->ad_hf.adf_fd < 0 ) {
747         if (errno == EACCES && !(oflags & O_RDWR)) {
748             hoflags = oflags & ~O_CREAT;
749             ad->ad_hf.adf_fd = open( ad_p, hoflags, 0 );
750         }    
751     }
752
753     if ( ad->ad_hf.adf_fd < 0 ) { 
754         if (errno == ENOENT && (oflags & O_CREAT) ) {
755             /*
756              * We're expecting to create a new adouble header file,
757              * here.
758              * if ((oflags & O_CREAT) ==> (oflags & O_RDWR)
759              */
760             admode = mode;
761             st_invalid = ad_mode_st(ad_p, &admode, &st);
762             admode = ad_hf_mode(admode); 
763             errno = 0;
764             ad->ad_hf.adf_fd = open( ad_p, oflags,admode );
765             if ( ad->ad_hf.adf_fd < 0 ) {
766                 /*
767                  * Probably .AppleDouble doesn't exist, try to
768                  * mkdir it.
769                  */
770                 if (errno == ENOENT && (adflags & ADFLAGS_NOADOUBLE) == 0) {
771                     if (NULL == ( slash = strrchr( ad_p, '/' )) ) {
772                         ad_close( ad, open_df );
773                         return( -1 );
774                     }
775                     *slash = '\0';
776                     errno = 0;
777                     if ( ad_mkdir( ad_p, 0777 ) < 0 ) {
778                         ad_close( ad, adflags );
779                         return( -1 );
780                     }
781                     *slash = '/';
782                     admode = mode;
783                     st_invalid = ad_mode_st(ad_p, &admode, &st);
784                     admode = ad_hf_mode(admode); 
785                     ad->ad_hf.adf_fd = open( ad_p, oflags, admode);
786                     if ( ad->ad_hf.adf_fd < 0 ) {
787                         ad_close( ad, open_df );
788                         return( -1 );
789                     }
790                 } else {
791                   ad_close( ad, open_df );
792                   return( -1 );
793                 }
794             }
795             ad->ad_hf.adf_flags = oflags;
796             /* just created, set owner if admin owner (root) */
797             if (!st_invalid) {
798                 ad_chown(path, &st);
799             }
800           } else {
801             ad_close( ad, open_df );
802             return( -1 );
803         }
804     } else if (fstat(ad->ad_hf.adf_fd, &st) == 0 && st.st_size == 0) {
805         /* for 0 length files, treat them as new. */
806         ad->ad_hf.adf_flags = (oflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR | O_TRUNC;
807     } else {
808         ad->ad_hf.adf_flags = hoflags;
809     }
810     AD_SET(ad->ad_hf.adf_off);
811           
812     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
813     ad->ad_hf.adf_refcount++;
814     if ((ad->ad_hf.adf_flags & ( O_TRUNC | O_CREAT ))) {
815         /*
816          * This is a new adouble header file. Initialize the structure,
817          * instead of reading it.
818         */
819         if (new_rfork(path, ad, adflags) < 0) {
820             ad_close(ad, adflags);
821             return -1;
822         }
823     } else {
824             /* Read the adouble header in and parse it.*/
825         if ((ad_header_read( ad , &st) < 0)
826 #if AD_VERSION == AD_VERSION2
827                 || (ad_v1tov2(ad, ad_p) < 0)
828 #endif /* AD_VERSION == AD_VERSION2 */
829         ) {
830             ad_close( ad, adflags );
831             return( -1 );
832         }
833     }
834     return 0 ;
835 }
836
837 /* ----------------------------------- */
838 static int new_rfork(const char *path, struct adouble *ad, int adflags)
839 {
840 #if 0
841     struct timeval      tv;
842 #endif    
843     const struct entry  *eid;
844     u_int16_t           ashort;
845     struct stat         st;
846
847     ad->ad_magic = AD_MAGIC;
848     ad->ad_version = AD_VERSION;
849
850     memset(ad->ad_filler, 0, sizeof( ad->ad_filler ));
851     memset(ad->ad_data, 0, sizeof(ad->ad_data));
852
853     eid = entry_order;
854     while (eid->id) {
855         ad->ad_eid[eid->id].ade_off = eid->offset;
856         ad->ad_eid[eid->id].ade_len = eid->len;
857         eid++;
858     }
859             
860     /* put something sane in the directory finderinfo */
861     if (adflags & ADFLAGS_DIR) {
862         /* set default view */
863         ashort = htons(FINDERINFO_CLOSEDVIEW);
864         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRVIEWOFF, 
865                      &ashort, sizeof(ashort));
866     } else {
867         /* set default creator/type fields */
868         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRTYPEOFF,"TEXT", 4);
869         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRCREATOFF,"UNIX", 4);
870     }
871
872     /* make things invisible */
873     if ((*path == '.') && strcmp(path, ".") && strcmp(path, "..")) {
874         ashort = htons(ATTRBIT_INVISIBLE);
875         ad_setattr(ad, ashort);
876         ashort = htons(FINDERINFO_INVISIBLE);
877         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF,
878                      &ashort, sizeof(ashort));
879     }
880
881 #if 0
882     if (gettimeofday(&tv, NULL) < 0) {
883         return -1;
884     } 
885 #endif
886     
887     if (stat(path, &st) < 0) {
888         return -1;
889     }
890             
891     /* put something sane in the date fields */
892     ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, st.st_mtime);
893     ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, st.st_mtime);
894     ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, st.st_mtime);
895     ad_setdate(ad, AD_DATE_BACKUP, AD_DATE_START);
896     return 0;
897 }
898
899 /* to do this with mmap, we need the hfs fs to understand how to mmap
900    header files. */
901 int ad_refresh(struct adouble *ad)
902 {
903
904   if (ad->ad_hf.adf_fd < -1)
905     return -1;
906
907   return ad_header_read(ad, NULL);
908 }