]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_open.c
28b072e3b10d542d44e5bbf2e2d9c66e9a359c54
[netatalk.git] / libatalk / adouble / ad_open.c
1 /*
2  * $Id: ad_open.c,v 1.27 2003-02-16 12:35:05 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 ad_error(struct adouble *ad, int adflags)
651 {
652     if ((adflags & ADFLAGS_NOHF)) {
653         /* FIXME double check : set header offset ?*/
654         return 0;
655     }
656     if ((adflags & ADFLAGS_DF)) {
657         ad_close( ad, ADFLAGS_DF );
658     }
659     return -1 ;
660 }
661
662 static int new_rfork(const char *path, struct adouble *ad, int adflags);
663
664 #ifdef  HAVE_PREAD
665 #define AD_SET(a) 
666 #else 
667 #define AD_SET(a) a = 0
668 #endif
669 /*
670  * It's not possible to open the header file O_RDONLY -- the read
671  * will fail and return an error. this refcounts things now. 
672  */
673 int ad_open( path, adflags, oflags, mode, ad )
674     const char          *path;
675     int                 adflags, oflags, mode;
676     struct adouble      *ad;
677 {
678     struct stat         st;
679     char                *slash, *ad_p;
680     int                 hoflags, admode;
681     int                 st_invalid;
682     int                 open_df = 0;
683     
684     if (ad->ad_inited != AD_INITED) {
685         ad_dfileno(ad) = -1;
686         ad_hfileno(ad) = -1;
687         adf_lock_init(&ad->ad_df);
688         adf_lock_init(&ad->ad_hf);
689         ad->ad_inited = AD_INITED;
690         ad->ad_refcount = 1;
691     }
692
693     if ((adflags & ADFLAGS_DF)) { 
694         if (ad_dfileno(ad) == -1) {
695           hoflags = (oflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
696           admode = mode;
697           st_invalid = ad_mode_st(path, &admode, &st);
698           ad->ad_df.adf_fd =open( path, hoflags, admode );
699           if (ad->ad_df.adf_fd < 0 ) {
700              if (errno == EACCES && !(oflags & O_RDWR)) {
701                 hoflags = oflags;
702                 ad->ad_df.adf_fd =open( path, hoflags, admode );
703              }
704           }
705           if ( ad->ad_df.adf_fd < 0)
706                 return -1;
707
708           AD_SET(ad->ad_df.adf_off);
709           ad->ad_df.adf_flags = hoflags;
710           if ((oflags & O_CREAT) && !st_invalid) {
711               /* just created, set owner if admin (root) */
712               ad_chown(path, &st);
713           }
714         } 
715         else {
716             /* the file is already open... but */
717             if ((oflags & ( O_RDWR | O_WRONLY)) &&             /* we want write access */
718                 !(ad->ad_df.adf_flags & ( O_RDWR | O_WRONLY))) /* and it was denied the first time */
719             {
720                  errno = EACCES;
721                  return -1;
722             }
723             /* FIXME 
724              * for now ad_open is never called with O_TRUNC or O_EXCL if the file is
725              * already open. Should we check for it? ie
726              * O_EXCL --> error 
727              * O_TRUNC --> truncate the fork.
728              * idem for ressource fork.
729              */
730         }
731         open_df = ADFLAGS_DF;
732         ad->ad_df.adf_refcount++;
733     }
734
735     if (!(adflags & ADFLAGS_HF)) 
736         return 0;
737         
738     if (ad_hfileno(ad) != -1) { /* the file is already open */
739         if ((oflags & ( O_RDWR | O_WRONLY)) &&             
740                 !(ad->ad_hf.adf_flags & ( O_RDWR | O_WRONLY))) {
741             if (open_df) {
742                 /* don't call with ADFLAGS_HF because we didn't open ressource fork */
743                 ad_close( ad, open_df );
744             }
745             errno = EACCES;
746             return -1;
747         }
748         ad_refresh(ad);
749         ad->ad_hf.adf_refcount++;
750         return 0;
751     }
752
753     ad_p = ad_path( path, adflags );
754
755     hoflags = oflags & ~O_CREAT;
756     hoflags = (hoflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
757     ad->ad_hf.adf_fd = open( ad_p, hoflags, 0 );
758     if (ad->ad_hf.adf_fd < 0 ) {
759         if (errno == EACCES && !(oflags & O_RDWR)) {
760             hoflags = oflags & ~O_CREAT;
761             ad->ad_hf.adf_fd = open( ad_p, hoflags, 0 );
762         }    
763     }
764
765     if ( ad->ad_hf.adf_fd < 0 ) { 
766         if (errno == ENOENT && (oflags & O_CREAT) ) {
767             /*
768              * We're expecting to create a new adouble header file,
769              * here.
770              * if ((oflags & O_CREAT) ==> (oflags & O_RDWR)
771              */
772             admode = mode;
773             st_invalid = ad_mode_st(ad_p, &admode, &st);
774             admode = ad_hf_mode(admode); 
775             errno = 0;
776             ad->ad_hf.adf_fd = open( ad_p, oflags,admode );
777             if ( ad->ad_hf.adf_fd < 0 ) {
778                 /*
779                  * Probably .AppleDouble doesn't exist, try to
780                  * mkdir it.
781                  */
782                 if (errno == ENOENT && (adflags & ADFLAGS_NOADOUBLE) == 0) {
783                     if (NULL == ( slash = strrchr( ad_p, '/' )) ) {
784                         return ad_error(ad, adflags);
785                     }
786                     *slash = '\0';
787                     errno = 0;
788                     if ( ad_mkdir( ad_p, 0777 ) < 0 ) {
789                         return ad_error(ad, adflags);
790                     }
791                     *slash = '/';
792                     admode = mode;
793                     st_invalid = ad_mode_st(ad_p, &admode, &st);
794                     admode = ad_hf_mode(admode); 
795                     ad->ad_hf.adf_fd = open( ad_p, oflags, admode);
796                     if ( ad->ad_hf.adf_fd < 0 ) {
797                         return ad_error(ad, adflags);
798                     }
799                 } else {
800                      return ad_error(ad, adflags);
801                 }
802             }
803             ad->ad_hf.adf_flags = oflags;
804             /* just created, set owner if admin owner (root) */
805             if (!st_invalid) {
806                 ad_chown(path, &st);
807             }
808         }
809         else {
810             return ad_error(ad, adflags);
811         }
812     } else if (fstat(ad->ad_hf.adf_fd, &st) == 0 && st.st_size == 0) {
813         /* for 0 length files, treat them as new. */
814         ad->ad_hf.adf_flags = (oflags & ~(O_RDONLY | O_WRONLY)) | O_RDWR | O_TRUNC;
815     } else {
816         ad->ad_hf.adf_flags = hoflags;
817     }
818     AD_SET(ad->ad_hf.adf_off);
819           
820     memset(ad->ad_eid, 0, sizeof( ad->ad_eid ));
821     ad->ad_hf.adf_refcount++;
822     if ((ad->ad_hf.adf_flags & ( O_TRUNC | O_CREAT ))) {
823         /*
824          * This is a new adouble header file. Initialize the structure,
825          * instead of reading it.
826         */
827         if (new_rfork(path, ad, adflags) < 0) {
828             /* the file is already deleted, perm, whatever, so return an error*/
829             ad_close(ad, adflags);
830             return -1;
831         }
832     } else {
833             /* Read the adouble header in and parse it.*/
834         if ((ad_header_read( ad , &st) < 0)
835 #if AD_VERSION == AD_VERSION2
836                 || (ad_v1tov2(ad, ad_p) < 0)
837 #endif /* AD_VERSION == AD_VERSION2 */
838         ) {
839             ad_close( ad, adflags );
840             return( -1 );
841         }
842     }
843     return 0 ;
844 }
845
846 /* ----------------------------------- */
847 static int new_rfork(const char *path, struct adouble *ad, int adflags)
848 {
849 #if 0
850     struct timeval      tv;
851 #endif    
852     const struct entry  *eid;
853     u_int16_t           ashort;
854     struct stat         st;
855
856     ad->ad_magic = AD_MAGIC;
857     ad->ad_version = AD_VERSION;
858
859     memset(ad->ad_filler, 0, sizeof( ad->ad_filler ));
860     memset(ad->ad_data, 0, sizeof(ad->ad_data));
861
862     eid = entry_order;
863     while (eid->id) {
864         ad->ad_eid[eid->id].ade_off = eid->offset;
865         ad->ad_eid[eid->id].ade_len = eid->len;
866         eid++;
867     }
868             
869     /* put something sane in the directory finderinfo */
870     if (adflags & ADFLAGS_DIR) {
871         /* set default view */
872         ashort = htons(FINDERINFO_CLOSEDVIEW);
873         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRVIEWOFF, 
874                      &ashort, sizeof(ashort));
875     } else {
876         /* set default creator/type fields */
877         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRTYPEOFF,"TEXT", 4);
878         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRCREATOFF,"UNIX", 4);
879     }
880
881     /* make things invisible */
882     if ((*path == '.') && strcmp(path, ".") && strcmp(path, "..")) {
883         ashort = htons(ATTRBIT_INVISIBLE);
884         ad_setattr(ad, ashort);
885         ashort = htons(FINDERINFO_INVISIBLE);
886         memcpy(ad_entry(ad, ADEID_FINDERI) + FINDERINFO_FRFLAGOFF,
887                      &ashort, sizeof(ashort));
888     }
889
890 #if 0
891     if (gettimeofday(&tv, NULL) < 0) {
892         return -1;
893     } 
894 #endif
895     
896     if (stat(path, &st) < 0) {
897         return -1;
898     }
899             
900     /* put something sane in the date fields */
901     ad_setdate(ad, AD_DATE_CREATE | AD_DATE_UNIX, st.st_mtime);
902     ad_setdate(ad, AD_DATE_MODIFY | AD_DATE_UNIX, st.st_mtime);
903     ad_setdate(ad, AD_DATE_ACCESS | AD_DATE_UNIX, st.st_mtime);
904     ad_setdate(ad, AD_DATE_BACKUP, AD_DATE_START);
905     return 0;
906 }
907
908 /* to do this with mmap, we need the hfs fs to understand how to mmap
909    header files. */
910 int ad_refresh(struct adouble *ad)
911 {
912
913   if (ad->ad_hf.adf_fd < -1)
914     return -1;
915
916   return ad_header_read(ad, NULL);
917 }