]> arthur.barton.de Git - netatalk.git/blob - include/atalk/adouble.h
d71eb05a18cf6bc1e54d8592873091f1ed3509a0
[netatalk.git] / include / atalk / adouble.h
1 /*
2  * $Id: adouble.h,v 1.30 2006-09-19 23:00:50 didg Exp $
3  * Copyright (c) 1990,1991 Regents of The University of Michigan.
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software and
7  * its documentation for any purpose and without fee is hereby granted,
8  * provided that the above copyright notice appears in all copies and
9  * that both that copyright notice and this permission notice appear
10  * in supporting documentation, and that the name of The University
11  * of Michigan not be used in advertising or publicity pertaining to
12  * distribution of the software without specific, written prior
13  * permission. This software is supplied as is without expressed or
14  * implied warranties of any kind.
15  *
16  *      Research Systems Unix Group
17  *      The University of Michigan
18  *      c/o Mike Clark
19  *      535 W. William Street
20  *      Ann Arbor, Michigan
21  *      +1-313-763-0525
22  *      netatalk@itd.umich.edu
23  */
24
25 #ifndef _ATALK_ADOUBLE_H
26 #define _ATALK_ADOUBLE_H
27
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 /* ------------------- 
33  * need pread() and pwrite()
34 */
35 #ifdef HAVE_PREAD
36
37 #ifndef HAVE_PWRITE
38 #undef HAVE_PREAD
39 #endif
40
41 #endif
42
43 #ifdef HAVE_PWRITE
44 #ifndef HAVE_PREAD
45 #undef HAVE_PWRITE
46 #endif
47 #endif
48
49 /*
50    Still have to figure out which platforms really
51    need _XOPEN_SOURCE defined for pread.
52  */  
53 #if defined(HAVE_PREAD) && !defined(SOLARIS) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(TRU64)
54 #ifdef _XOPEN_SOURCE
55 #undef _XOPEN_SOURCE
56 #endif
57 #define _XOPEN_SOURCE 500
58 #endif
59
60 #include <sys/types.h>
61 #include <sys/stat.h>
62
63 #ifdef HAVE_UNISTD_H
64 #undef __USE_MISC
65 #define __USE_MISC
66 #include <unistd.h>
67 #endif 
68
69 #include <sys/cdefs.h>
70
71 #ifdef HAVE_FCNTL_H  
72 #include <fcntl.h>
73 #endif
74
75 #include <sys/mman.h>
76 #ifdef HAVE_SYS_TIME_H
77 #include <sys/time.h>
78 #endif
79 #include <netatalk/endian.h>
80
81 /* version info */
82 #define AD_VERSION1     0x00010000
83 #define AD_VERSION2     0x00020000
84 #define AD_VERSION2_OSX 0x00020001
85 #define AD_VERSION1_ADS 0x00010002
86 #define AD_VERSION      AD_VERSION2
87
88 /*
89  * AppleDouble entry IDs. 
90  */
91 #define ADEID_DFORK             1
92 #define ADEID_RFORK             2
93 #define ADEID_NAME              3
94 #define ADEID_COMMENT           4
95 #define ADEID_ICONBW            5
96 #define ADEID_ICONCOL           6
97 #define ADEID_FILEI             7  /* v1, replaced by: */
98 #define ADEID_FILEDATESI        8  /* this */
99 #define ADEID_FINDERI           9
100 #define ADEID_MACFILEI          10 /* we don't use this */
101 #define ADEID_PRODOSFILEI       11 /* we store prodos info here */
102 #define ADEID_MSDOSFILEI        12 /* we don't use this */
103 #define ADEID_SHORTNAME         13
104 #define ADEID_AFPFILEI          14 /* where the rest of the FILEI info goes */
105 #define ADEID_DID               15
106
107 #if AD_VERSION == AD_VERSION1
108 #define ADEID_MAX               16
109 #else
110 /* netatalk private note fileid reused DID */
111 #define ADEID_PRIVDEV           16
112 #define ADEID_PRIVINO           17
113 #define ADEID_PRIVSYN           18 /* in synch with database */
114 #define ADEID_PRIVID            19
115
116 #define AD_DEV                  0x80444556
117 #define AD_INO                  0x80494E4F
118 #define AD_SYN                  0x8053594E
119 #define AD_ID                   0x8053567E
120 #define ADEID_MAX               20
121 #endif
122
123 /* magic */
124 #define AD_APPLESINGLE_MAGIC 0x00051600
125 #define AD_APPLEDOUBLE_MAGIC 0x00051607
126 #define AD_MAGIC             AD_APPLEDOUBLE_MAGIC
127
128
129 /* sizes of relevant entry bits */
130 #define ADEDLEN_MAGIC       4
131 #define ADEDLEN_VERSION     4
132 #define ADEDLEN_FILLER      16
133 #define ADEDLEN_NENTRIES    2
134
135 /* 26 */
136 #define AD_HEADER_LEN       (ADEDLEN_MAGIC + ADEDLEN_VERSION + \
137                              ADEDLEN_FILLER + ADEDLEN_NENTRIES)
138 #define AD_ENTRY_LEN        12  /* size of a single entry header */
139
140 /* v1 field widths */
141 #define ADEDLEN_NAME        255
142 #define ADEDLEN_COMMENT     200
143 #define ADEDLEN_FILEI       16
144 #define ADEDLEN_FINDERI     32
145
146 /* v2 field widths */
147 #define ADEDLEN_FILEDATESI      16
148 #define ADEDLEN_SHORTNAME       12 /* length up to 8.3 */
149 #define ADEDLEN_AFPFILEI        4
150 #define ADEDLEN_MACFILEI        4
151 #define ADEDLEN_PRODOSFILEI     8
152 #define ADEDLEN_MSDOSFILEI      2
153 #define ADEDLEN_DID             4
154 #define ADEDLEN_PRIVDEV         8
155 #define ADEDLEN_PRIVINO         8
156 #define ADEDLEN_PRIVSYN         8
157 #define ADEDLEN_PRIVID          4
158
159 #define ADEID_NUM_V1         5
160 #define ADEID_NUM_V2         13
161
162 /* 589 */
163 #define AD_DATASZ1      (AD_HEADER_LEN + ADEDLEN_NAME + ADEDLEN_COMMENT +ADEDLEN_FILEI +ADEDLEN_FINDERI+\
164 ADEID_NUM_V1*AD_ENTRY_LEN)
165
166 #if AD_DATASZ1 != 589
167 #error bad size for AD_DATASZ1
168 #endif
169
170 #define AD_NEWSZ2       (ADEDLEN_DID + ADEDLEN_AFPFILEI +ADEDLEN_SHORTNAME +ADEDLEN_PRODOSFILEI \
171 +ADEDLEN_PRIVDEV +ADEDLEN_PRIVINO +ADEDLEN_PRIVSYN+ ADEDLEN_PRIVID)
172
173 /* 725 */
174 #define AD_DATASZ2      (AD_DATASZ1 + AD_NEWSZ2 + (ADEID_NUM_V2 -ADEID_NUM_V1)*AD_ENTRY_LEN)
175
176 #if AD_DATASZ2 != 741
177 #error bad size for AD_DATASZ2
178 #endif
179
180 #define AD_DATASZ_MAX   1024
181 #if AD_VERSION == AD_VERSION1
182 #define AD_DATASZ       AD_DATASZ1 /* hold enough for the entries */
183 #elif AD_VERSION == AD_VERSION2
184 #define AD_DATASZ       AD_DATASZ2
185 #endif
186
187 /*
188  * some legacy defines from netatalk-990130
189  * (to keep from breaking certain packages)
190  *
191  */
192
193 #define ADEDOFF_RFORK   589
194 #define ADEDOFF_NAME    86
195 #define ADEDOFF_COMMENT 341
196 #define ADEDOFF_FINDERI 557
197 #ifndef ADEDOFF_FILEI
198 #define ADEDOFF_FILEI   541
199 #endif
200
201 typedef u_int32_t cnid_t;
202
203 /*
204  * The header of the AppleDouble Header File looks like this:
205  *
206  *      NAME                    SIZE
207  *      ====                    ====
208  *      Magic                   4
209  *      Version                 4
210  *      Home File System        16  (this becomes filler in ad v2)
211  *      Number of Entries       2
212  *      Entry Descriptors for each entry:
213  *              Entry ID        4
214  *              Offset          4
215  *              Length          4
216  */
217
218 struct ad_entry {
219     u_int32_t   ade_off;
220     u_int32_t   ade_len;
221 };
222
223 typedef struct adf_lock_t {
224   struct flock lock;
225   int user;
226   int *refcount; /* handle read locks with multiple users */
227 } adf_lock_t;
228
229 struct ad_fd {
230     int          adf_fd;
231
232 #ifndef HAVE_PREAD
233     off_t        adf_off;
234 #endif
235
236     int          adf_flags;
237     int          adf_excl;
238     adf_lock_t   *adf_lock;
239     int          adf_refcount, adf_lockcount, adf_lockmax;
240 };
241
242 /* some header protection */
243 #define AD_INITED  0xad494e54  /* ad"INT" */
244 struct adouble {
245     u_int32_t           ad_magic;
246     u_int32_t           ad_version;
247     char                ad_filler[ 16 ];
248     struct ad_entry     ad_eid[ ADEID_MAX ];
249     struct ad_fd        ad_df, ad_hf;
250     int                 ad_flags;
251     unsigned int        ad_inited;
252     int                 ad_options;
253     int                 ad_refcount; /* used in afpd/ofork.c */
254     off_t               ad_rlen;     /* ressource fork len with AFP 3.0
255                                         the header parameter size is too small.
256                                      */
257     char                *ad_m_name;   /* mac name for open fork */
258     int                 ad_m_namelen;
259
260     char                *(*ad_path)(const char *, int);
261     int                 (*ad_mkrf)(char *);
262                            
263 #ifdef USE_MMAPPED_HEADERS
264     char                *ad_data;
265 #else
266     char                ad_data[AD_DATASZ_MAX];
267 #endif
268 };
269
270 #define ADFLAGS_DF        (1<<0)
271 #define ADFLAGS_HF        (1<<1)
272 #define ADFLAGS_DIR       (1<<2)
273 #define ADFLAGS_NOADOUBLE (1<<3)
274 #define ADFLAGS_V1COMPAT  (1<<4)
275 #define ADFLAGS_NOHF      (1<<5)  /* not an error if no ressource fork */
276 #define ADFLAGS_RDONLY    (1<<6)  /* don't try readwrite */
277
278 /* adouble v2 cnid cache */
279 #define ADVOL_NODEV      (1 << 0)   
280 #define ADVOL_CACHE      (1 << 1)
281 /* adouble unix priv */
282 #define ADVOL_UNIXPRIV   (1 << 2)   
283 /* dot files (.DS_Store) are invisible) */
284 #define ADVOL_INVDOTS    (1 << 3)   
285
286 /* lock flags */
287 #define ADLOCK_CLR      (0)
288 #define ADLOCK_RD       (1<<0)
289 #define ADLOCK_WR       (1<<1)
290 #define ADLOCK_MASK     (ADLOCK_RD | ADLOCK_WR)
291 #define ADLOCK_UPGRADE  (1<<2)
292 #define ADLOCK_FILELOCK (1<<3)
293
294 /* we use this so that we can use the same mechanism for both byte
295  * locks and file synchronization locks. i do this by co-opting either
296  * first bits on 32-bit machines or shifting above the last bit on
297  * 64-bit machines. this only matters for the data fork. */
298 #if defined(TRY_64BITOFF_T) && (~0UL > 0xFFFFFFFFU)
299 /* synchronization locks */
300 #define AD_FILELOCK_BASE (0x80000000)
301 #else
302 #define AD_FILELOCK_BASE (0x7FFFFFFF -9)
303 #endif
304
305 /* FIXME:
306  * AD_FILELOCK_BASE case 
307  */
308 #if _FILE_OFFSET_BITS == 64   
309 #define BYTELOCK_MAX (0x7FFFFFFFFFFFFFFFULL)
310 #else
311 /* Tru64 is an always-64-bit OS; version 4.0 does not set _FILE_OFFSET_BITS */
312 #if defined(TRU64)
313 #define BYTELOCK_MAX (0x7FFFFFFFFFFFFFFFULL)
314 #else
315 #define BYTELOCK_MAX (0x7FFFFFFFU)
316 #endif
317 #endif
318
319 #define AD_FILELOCK_OPEN_WR        (AD_FILELOCK_BASE + 0)
320 #define AD_FILELOCK_OPEN_RD        (AD_FILELOCK_BASE + 1)
321 #define AD_FILELOCK_DENY_WR        (AD_FILELOCK_BASE + 2)
322 #define AD_FILELOCK_DENY_RD        (AD_FILELOCK_BASE + 3)
323 #define AD_FILELOCK_OPEN_NONE      (AD_FILELOCK_BASE + 4)
324
325 /* time stuff. we overload the bits a little.  */
326 #define AD_DATE_CREATE         0
327 #define AD_DATE_MODIFY         4
328 #define AD_DATE_BACKUP         8
329 #define AD_DATE_ACCESS        12 
330 #define AD_DATE_MASK          (AD_DATE_CREATE | AD_DATE_MODIFY | \
331                                AD_DATE_BACKUP | AD_DATE_ACCESS)
332 #define AD_DATE_UNIX          (1 << 10)
333 #define AD_DATE_START         htonl(0x80000000)
334 #define AD_DATE_DELTA         946684800
335 #define AD_DATE_FROM_UNIX(x)  htonl((x) - AD_DATE_DELTA)
336 #define AD_DATE_TO_UNIX(x)    (ntohl(x) + AD_DATE_DELTA)
337
338 /* various finder offset and info bits */
339 #define FINDERINFO_FRTYPEOFF   0
340 #define FINDERINFO_FRCREATOFF  4
341
342 #define FINDERINFO_FRFLAGOFF   8
343 /* finderinfo flags */
344 #define FINDERINFO_ISONDESK      (1)
345 #define FINDERINFO_COLOR         (0x0e)
346 #define FINDERINFO_ISHARED       (1<<6)
347 #define FINDERINFO_HASNOINITS    (1<<7)
348 #define FINDERINFO_HASBEENINITED (1<<8)
349 #define FINDERINFO_HASCUSTOMICON (1<<10)
350 #define FINDERINFO_ISSTATIONNERY (1<<11)
351 #define FINDERINFO_NAMELOCKED    (1<<12)
352 #define FINDERINFO_HASBUNDLE     (1<<13)
353 #define FINDERINFO_INVISIBLE     (1<<14)
354 #define FINDERINFO_ISALIAS       (1<<15)
355
356 #define FINDERINFO_FRVIEWOFF  14 
357 #define FINDERINFO_CUSTOMICON 0x4
358 #define FINDERINFO_CLOSEDVIEW 0x100   
359
360  
361 /* private AFPFileInfo bits */
362 #define AD_AFPFILEI_OWNER       (1 << 0) /* any owner */
363 #define AD_AFPFILEI_GROUP       (1 << 1) /* ignore group */
364 #define AD_AFPFILEI_BLANKACCESS (1 << 2) /* blank access permissions */
365
366 #define ad_dfileno(ad)          ((ad)->ad_df.adf_fd)
367 #define ad_hfileno(ad)          ((ad)->ad_hf.adf_fd)
368 #define ad_getversion(ad)       ((ad)->ad_version)
369
370 #define ad_getentrylen(ad,eid)  ((ad)->ad_eid[(eid)].ade_len)
371 #define ad_setentrylen(ad,eid,len) \
372         ((ad)->ad_eid[(eid)].ade_len = (len))
373 #define ad_getentryoff(ad,eid)  ((ad)->ad_eid[(eid)].ade_off)
374 #define ad_entry(ad,eid)        ((caddr_t)(ad)->ad_data + \
375                                  (ad)->ad_eid[(eid)].ade_off)     
376 #define ad_getoflags(ad,adf)    (((adf)&ADFLAGS_HF) ? \
377         (ad)->ad_hf.adf_flags : (ad)->ad_df.adf_flags)
378
379 #define ad_get_HF_flags(ad)     ((ad)->ad_hf.adf_flags)
380
381 /* ad_flush.c */
382 extern void ad_rebuild_header __P((struct adouble *));
383 extern int ad_flush           __P((struct adouble *, int));
384 extern int ad_close           __P((struct adouble *, int));
385
386 /* ad_lock.c */
387 extern int ad_fcntl_lock __P((struct adouble *, const u_int32_t /*eid*/,
388                               const int /*type*/, const off_t /*offset*/,
389                               const off_t /*len*/, const int /*user*/));
390 extern void ad_fcntl_unlock __P((struct adouble *, const int /*user*/));
391
392 extern int ad_fcntl_tmplock __P((struct adouble *, const u_int32_t /*eid*/,
393                                  const int /*type*/, const off_t /*offset*/,
394                                  const off_t /*len*/, const int /*user*/));
395
396 extern int ad_testlock      __P((struct adouble * /*adp*/, int /*eid*/, off_t /*off*/));
397 extern int ad_excl_lock     __P((struct adouble * /*adp*/, const u_int32_t /*eid*/));
398
399 #define ad_lock ad_fcntl_lock
400 #define ad_tmplock ad_fcntl_tmplock
401 #define ad_unlock ad_fcntl_unlock
402
403 /* ad_open.c */
404 extern int ad_setfuid     __P((const uid_t ));
405 extern uid_t ad_getfuid   __P((void ));
406
407 extern char *ad_dir       __P((const char *));
408 extern char *ad_path      __P((const char *, int));
409 extern char *ad_path_osx  __P((const char *, int));
410 extern char *ad_path_ads  __P((const char *, int));
411
412 extern int ad_mode        __P((const char *, int));
413 extern int ad_mkdir       __P((const char *, int));
414 extern void ad_init       __P((struct adouble *, int, int ));
415
416 extern int ad_open        __P((const char *, int, int, int, struct adouble *)); 
417 extern int ad_refresh     __P((struct adouble *));
418 extern int ad_stat        __P((const char *, struct stat *));
419 extern int ad_metadata    __P((const char *, int, struct adouble *));
420
421 #define ad_open_metadata(name, flags, mode, adp)\
422    ad_open(name, ADFLAGS_HF|(flags), O_RDWR |(mode), 0666, (adp))
423
424 #define ad_flush_metadata(adp) ad_flush( (adp), ADFLAGS_HF)
425 #define ad_close_metadata(adp) ad_close( (adp), ADFLAGS_HF)
426
427 /* build a resource fork mode from the data fork mode:
428  * remove X mode and extend header to RW if R or W (W if R for locking),
429  */ 
430 #ifndef ATACC
431 #ifndef __inline__
432 #define __inline__
433 #endif
434 static __inline__ mode_t ad_hf_mode (mode_t mode)
435 {
436     mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH);
437     /* fnctl lock need write access */
438     if ((mode & S_IRUSR))
439         mode |= S_IWUSR;
440     if ((mode & S_IRGRP))
441         mode |= S_IWGRP;
442     if ((mode & S_IROTH))
443         mode |= S_IWOTH;
444
445     /* if write mode set add read mode */
446     if ((mode & S_IWUSR))
447         mode |= S_IRUSR;
448     if ((mode & S_IWGRP))
449         mode |= S_IRGRP;
450     if ((mode & S_IWOTH))
451         mode |= S_IROTH;
452
453     return mode;
454 }
455 #else
456 extern mode_t ad_hf_mode __P((mode_t ));
457 #endif
458
459 /* ad_read.c/ad_write.c */
460 extern ssize_t ad_read __P((struct adouble *, const u_int32_t, 
461                             const off_t, char *, const size_t));
462 extern ssize_t ad_pread __P((struct ad_fd *, void *, size_t, off_t));
463
464 extern ssize_t ad_write __P((struct adouble *, const u_int32_t, off_t,
465                              const int, const char *, const size_t));
466
467 extern ssize_t adf_pread  __P((struct ad_fd *, void *, size_t, off_t));
468 extern ssize_t adf_pwrite __P((struct ad_fd *, const void *, size_t, off_t));
469
470 extern int ad_dtruncate __P((struct adouble *, const off_t));
471 extern int ad_rtruncate __P((struct adouble *, const off_t));
472
473 /* ad_size.c */
474 extern off_t ad_size __P((const struct adouble *, const u_int32_t ));
475
476 /* ad_mmap.c */
477 extern void *ad_mmapread __P((struct adouble *, const u_int32_t,
478                               const off_t, const size_t));
479 extern void *ad_mmapwrite __P((struct adouble *, const u_int32_t,
480                                const off_t, const int, const size_t));
481 #define ad_munmap(buf, len)  (munmap((buf), (len)))
482
483 /* ad_date.c */
484 extern int ad_setdate __P((const struct adouble *, unsigned int, u_int32_t));
485 extern int ad_getdate __P((const struct adouble *, unsigned int, u_int32_t *));
486
487 /* ad_attr.c */
488 extern int ad_setattr __P((const struct adouble *, const u_int16_t));
489 extern int ad_getattr __P((const struct adouble *, u_int16_t *));
490
491 extern int ad_setname __P((struct adouble *, const char *));
492 #if AD_VERSION == AD_VERSION2
493 extern int ad_setid __P((struct adouble *, const dev_t dev,const ino_t ino, const u_int32_t, const u_int32_t, const void *));
494 extern u_int32_t ad_getid __P((struct adouble *, const dev_t, const ino_t, const cnid_t, const void *));
495 #else
496 #define ad_setid(a, b, c)
497 #endif
498
499 #ifdef WITH_SENDFILE
500 extern ssize_t ad_readfile __P((const struct adouble *, const int, 
501                                 const int, off_t, const size_t));
502 #endif
503
504 #if 0
505 #ifdef HAVE_SENDFILE_WRITE
506 extern ssize_t ad_writefile __P((struct adouble *, const int, 
507                                  const int, off_t, const int, const size_t));
508 #endif
509 #endif
510      
511 #endif