]> arthur.barton.de Git - netatalk.git/blob - include/atalk/adouble.h
try very hard to open resource without read access.
[netatalk.git] / include / atalk / adouble.h
1 /*
2  * $Id: adouble.h,v 1.21.6.18 2004-05-11 08:28:33 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__)
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_VERSION      AD_VERSION2
86
87 /*
88  * AppleDouble entry IDs. 
89  */
90 #define ADEID_DFORK             1
91 #define ADEID_RFORK             2
92 #define ADEID_NAME              3
93 #define ADEID_COMMENT           4
94 #define ADEID_ICONBW            5
95 #define ADEID_ICONCOL           6
96 #define ADEID_FILEI             7  /* v1, replaced by: */
97 #define ADEID_FILEDATESI        8  /* this */
98 #define ADEID_FINDERI           9
99 #define ADEID_MACFILEI          10 /* we don't use this */
100 #define ADEID_PRODOSFILEI       11 /* we store prodos info here */
101 #define ADEID_MSDOSFILEI        12 /* we don't use this */
102 #define ADEID_SHORTNAME         13
103 #define ADEID_AFPFILEI          14 /* where the rest of the FILEI info goes */
104 #define ADEID_DID               15
105
106 #if AD_VERSION == AD_VERSION1
107 #define ADEID_MAX               16
108 #else
109 /* netatalk private note fileid reused DID */
110 #define ADEID_PRIVDEV           16
111 #define ADEID_PRIVINO           17
112 #define ADEID_PRIVSYN           18 /* in synch with database */
113 #define ADEID_PRIVID            19
114
115 #define AD_DEV                  0x80444556
116 #define AD_INO                  0x80494E4F
117 #define AD_SYN                  0x8053594E
118 #define AD_ID                   0x8053567E
119 #define ADEID_MAX               20
120 #endif
121
122 /* magic */
123 #define AD_APPLESINGLE_MAGIC 0x00051600
124 #define AD_APPLEDOUBLE_MAGIC 0x00051607
125 #define AD_MAGIC             AD_APPLEDOUBLE_MAGIC
126
127
128 /* sizes of relevant entry bits */
129 #define ADEDLEN_MAGIC       4
130 #define ADEDLEN_VERSION     4
131 #define ADEDLEN_FILLER      16
132 #define ADEDLEN_NENTRIES    2
133
134 /* 26 */
135 #define AD_HEADER_LEN       (ADEDLEN_MAGIC + ADEDLEN_VERSION + \
136                              ADEDLEN_FILLER + ADEDLEN_NENTRIES)
137 #define AD_ENTRY_LEN        12  /* size of a single entry header */
138
139 /* v1 field widths */
140 #define ADEDLEN_NAME        255
141 #define ADEDLEN_COMMENT     200
142 #define ADEDLEN_FILEI       16
143 #define ADEDLEN_FINDERI     32
144
145 /* v2 field widths */
146 #define ADEDLEN_FILEDATESI      16
147 #define ADEDLEN_SHORTNAME       12 /* length up to 8.3 */
148 #define ADEDLEN_AFPFILEI        4
149 #define ADEDLEN_MACFILEI        4
150 #define ADEDLEN_PRODOSFILEI     8
151 #define ADEDLEN_MSDOSFILEI      2
152 #define ADEDLEN_DID             4
153 #define ADEDLEN_PRIVDEV         8
154 #define ADEDLEN_PRIVINO         8
155 #define ADEDLEN_PRIVSYN         8
156 #define ADEDLEN_PRIVID          4
157
158 #define ADEID_NUM_V1         5
159 #define ADEID_NUM_V2         13
160
161 /* 589 */
162 #define AD_DATASZ1      (AD_HEADER_LEN + ADEDLEN_NAME + ADEDLEN_COMMENT +ADEDLEN_FILEI +ADEDLEN_FINDERI+\
163 ADEID_NUM_V1*AD_ENTRY_LEN)
164
165 #if AD_DATASZ1 != 589
166 #error bad size for AD_DATASZ1
167 #endif
168
169 #define AD_NEWSZ2       (ADEDLEN_DID + ADEDLEN_AFPFILEI +ADEDLEN_SHORTNAME +ADEDLEN_PRODOSFILEI \
170 +ADEDLEN_PRIVDEV +ADEDLEN_PRIVINO +ADEDLEN_PRIVSYN+ ADEDLEN_PRIVID)
171
172 /* 725 */
173 #define AD_DATASZ2      (AD_DATASZ1 + AD_NEWSZ2 + (ADEID_NUM_V2 -ADEID_NUM_V1)*AD_ENTRY_LEN)
174
175 #if AD_DATASZ2 != 741
176 #error bad size for AD_DATASZ2
177 #endif
178
179 #define AD_DATASZ_MAX   1024
180 #if AD_VERSION == AD_VERSION1
181 #define AD_DATASZ       AD_DATASZ1 /* hold enough for the entries */
182 #elif AD_VERSION == AD_VERSION2
183 #define AD_DATASZ       AD_DATASZ2
184 #endif
185
186 /*
187  * some legacy defines from netatalk-990130
188  * (to keep from breaking certain packages)
189  *
190  */
191
192 #define ADEDOFF_RFORK   589
193 #define ADEDOFF_NAME    86
194 #define ADEDOFF_COMMENT 341
195 #define ADEDOFF_FINDERI 557
196 #ifndef ADEDOFF_FILEI
197 #define ADEDOFF_FILEI   541
198 #endif
199
200 typedef u_int32_t cnid_t;
201
202 /*
203  * The header of the AppleDouble Header File looks like this:
204  *
205  *      NAME                    SIZE
206  *      ====                    ====
207  *      Magic                   4
208  *      Version                 4
209  *      Home File System        16  (this becomes filler in ad v2)
210  *      Number of Entries       2
211  *      Entry Descriptors for each entry:
212  *              Entry ID        4
213  *              Offset          4
214  *              Length          4
215  */
216
217 struct ad_entry {
218     u_int32_t   ade_off;
219     u_int32_t   ade_len;
220 };
221
222 typedef struct adf_lock_t {
223   struct flock lock;
224   int user;
225   int *refcount; /* handle read locks with multiple users */
226 } adf_lock_t;
227
228 struct ad_fd {
229     int          adf_fd;
230
231 #ifndef HAVE_PREAD
232     off_t        adf_off;
233 #endif
234
235     int          adf_flags;
236     int          adf_excl;
237     adf_lock_t   *adf_lock;
238     int          adf_refcount, adf_lockcount, adf_lockmax;
239 };
240
241 /* some header protection */
242 #define AD_INITED  0xad494e54  /* ad"INT" */
243 struct adouble {
244     u_int32_t           ad_magic;
245     u_int32_t           ad_version;
246     char                ad_filler[ 16 ];
247     struct ad_entry     ad_eid[ ADEID_MAX ];
248     struct ad_fd        ad_df, ad_hf;
249     int                 ad_flags, ad_inited;
250     int                 ad_refcount; /* used in afpd/ofork.c */
251     off_t               ad_rlen;     /* ressource fork len with AFP 3.0
252                                         the header parameter size is too small.
253                                      */
254     char                *(*ad_path)(const char *, int);
255                            
256 #ifdef USE_MMAPPED_HEADERS
257     char                *ad_data;
258 #else
259     char                ad_data[AD_DATASZ_MAX];
260 #endif
261 };
262
263 #define ADFLAGS_DF        (1<<0)
264 #define ADFLAGS_HF        (1<<1)
265 #define ADFLAGS_DIR       (1<<2)
266 #define ADFLAGS_NOADOUBLE (1<<3)
267 #define ADFLAGS_V1COMPAT  (1<<4)
268 #define ADFLAGS_NOHF      (1<<5)  /* not an error if no ressource fork */
269 #define ADFLAGS_RDONLY    (1<<6)  /* don't try readwrite */
270
271 /* lock flags */
272 #define ADLOCK_CLR      (0)
273 #define ADLOCK_RD       (1<<0)
274 #define ADLOCK_WR       (1<<1)
275 #define ADLOCK_MASK     (ADLOCK_RD | ADLOCK_WR)
276 #define ADLOCK_UPGRADE  (1<<2)
277 #define ADLOCK_FILELOCK (1<<3)
278
279 /* we use this so that we can use the same mechanism for both byte
280  * locks and file synchronization locks. i do this by co-opting either
281  * first bits on 32-bit machines or shifting above the last bit on
282  * 64-bit machines. this only matters for the data fork. */
283 #if defined(TRY_64BITOFF_T) && (~0UL > 0xFFFFFFFFU)
284 /* synchronization locks */
285 #define AD_FILELOCK_BASE (0x80000000)
286 #else
287 #define AD_FILELOCK_BASE (0x7FFFFFFF -9)
288 #endif
289
290 /* FIXME:
291  * AD_FILELOCK_BASE case 
292  */
293 #if _FILE_OFFSET_BITS == 64   
294 #define BYTELOCK_MAX (0x7FFFFFFFFFFFFFFFULL)
295 #else
296 #define BYTELOCK_MAX (0x7FFFFFFFU)
297 #endif
298
299 #define AD_FILELOCK_OPEN_WR        (AD_FILELOCK_BASE + 0)
300 #define AD_FILELOCK_OPEN_RD        (AD_FILELOCK_BASE + 1)
301 #define AD_FILELOCK_DENY_WR        (AD_FILELOCK_BASE + 2)
302 #define AD_FILELOCK_DENY_RD        (AD_FILELOCK_BASE + 3)
303 #define AD_FILELOCK_OPEN_NONE      (AD_FILELOCK_BASE + 4)
304
305 /* time stuff. we overload the bits a little.  */
306 #define AD_DATE_CREATE         0
307 #define AD_DATE_MODIFY         4
308 #define AD_DATE_BACKUP         8
309 #define AD_DATE_ACCESS        12 
310 #define AD_DATE_MASK          (AD_DATE_CREATE | AD_DATE_MODIFY | \
311                                AD_DATE_BACKUP | AD_DATE_ACCESS)
312 #define AD_DATE_UNIX          (1 << 10)
313 #define AD_DATE_START         htonl(0x80000000)
314 #define AD_DATE_DELTA         946684800
315 #define AD_DATE_FROM_UNIX(x)  htonl((x) - AD_DATE_DELTA)
316 #define AD_DATE_TO_UNIX(x)    (ntohl(x) + AD_DATE_DELTA)
317  
318 /* private AFPFileInfo bits */
319 #define AD_AFPFILEI_OWNER       (1 << 0) /* any owner */
320 #define AD_AFPFILEI_GROUP       (1 << 1) /* ignore group */
321 #define AD_AFPFILEI_BLANKACCESS (1 << 2) /* blank access permissions */
322
323 #define ad_dfileno(ad)          ((ad)->ad_df.adf_fd)
324 #define ad_hfileno(ad)          ((ad)->ad_hf.adf_fd)
325 #define ad_getversion(ad)       ((ad)->ad_version)
326
327 #define ad_getentrylen(ad,eid)  ((ad)->ad_eid[(eid)].ade_len)
328 #define ad_setentrylen(ad,eid,len) \
329         ((ad)->ad_eid[(eid)].ade_len = (len))
330 #define ad_getentryoff(ad,eid)  ((ad)->ad_eid[(eid)].ade_off)
331 #define ad_entry(ad,eid)        ((caddr_t)(ad)->ad_data + \
332                                  (ad)->ad_eid[(eid)].ade_off)     
333 #define ad_getoflags(ad,adf)    (((adf)&ADFLAGS_HF) ? \
334         (ad)->ad_hf.adf_flags : (ad)->ad_df.adf_flags)
335
336 #define ad_get_HF_flags(ad)     ((ad)->ad_hf.adf_flags)
337
338 /* ad_flush.c */
339 extern void ad_rebuild_header __P((struct adouble *));
340 extern int ad_flush           __P((struct adouble *, int));
341 extern int ad_close           __P((struct adouble *, int));
342
343 /* ad_lock.c */
344 extern int ad_fcntl_lock __P((struct adouble *, const u_int32_t /*eid*/,
345                               const int /*type*/, const off_t /*offset*/,
346                               const off_t /*len*/, const int /*user*/));
347 extern void ad_fcntl_unlock __P((struct adouble *, const int /*user*/));
348
349 extern int ad_fcntl_tmplock __P((struct adouble *, const u_int32_t /*eid*/,
350                                  const int /*type*/, const off_t /*offset*/,
351                                  const off_t /*len*/, const int /*user*/));
352
353 extern int ad_testlock      __P((struct adouble * /*adp*/, int /*eid*/, off_t /*off*/));
354 extern int ad_excl_lock     __P((struct adouble * /*adp*/, const u_int32_t /*eid*/));
355
356 #define ad_lock ad_fcntl_lock
357 #define ad_tmplock ad_fcntl_tmplock
358 #define ad_unlock ad_fcntl_unlock
359
360 /* ad_open.c */
361 extern int ad_setfuid     __P((const uid_t ));
362 extern uid_t ad_getfuid   __P((void ));
363
364 extern char *ad_dir       __P((const char *));
365 extern char *ad_path      __P((const char *, int));
366 extern char *ad_path_osx  __P((const char *, int));
367
368 extern int ad_mode        __P((const char *, int));
369 extern int ad_mkdir       __P((const char *, int));
370 extern void ad_init       __P((struct adouble *, int ));
371
372 extern int ad_open        __P((const char *, int, int, int, struct adouble *)); 
373 extern int ad_refresh     __P((struct adouble *));
374 extern int ad_stat        __P((const char *, struct stat *));
375 extern int ad_metadata    __P((const char *, int, struct adouble *));
376
377 #if 0
378 #define ad_metadata(name, flags, adp)  ad_open(name, ADFLAGS_HF|(flags), O_RDONLY, 0666, adp)
379 #endif
380
381 /* extend header to RW if R or W (W if R for locking),
382  */ 
383 #ifndef ATACC
384 #ifndef __inline__
385 #define __inline__
386 #endif
387 static __inline__ mode_t ad_hf_mode (mode_t mode)
388 {
389 #if 0
390     mode |= S_IRUSR;
391 #endif    
392     /* fnctl lock need write access */
393     if ((mode & S_IRUSR))
394         mode |= S_IWUSR;
395     if ((mode & S_IRGRP))
396         mode |= S_IWGRP;
397     if ((mode & S_IROTH))
398         mode |= S_IWOTH;
399
400     /* if write mode set add read mode */
401     if ((mode & S_IWUSR))
402         mode |= S_IRUSR;
403     if ((mode & S_IWGRP))
404         mode |= S_IRGRP;
405     if ((mode & S_IWOTH))
406         mode |= S_IROTH;
407
408     return mode;
409 }
410 #else
411 extern mode_t ad_hf_mode __P((mode_t ));
412 #endif
413
414 /* ad_read.c/ad_write.c */
415 extern ssize_t ad_read __P((struct adouble *, const u_int32_t, 
416                             const off_t, char *, const size_t));
417 extern ssize_t ad_pread __P((struct ad_fd *, void *, size_t, off_t));
418
419 extern ssize_t ad_write __P((struct adouble *, const u_int32_t, off_t,
420                              const int, const char *, const size_t));
421
422 extern ssize_t adf_pread  __P((struct ad_fd *, void *, size_t, off_t));
423 extern ssize_t adf_pwrite __P((struct ad_fd *, const void *, size_t, off_t));
424
425 extern int ad_dtruncate __P((struct adouble *, const off_t));
426 extern int ad_rtruncate __P((struct adouble *, const off_t));
427
428 /* ad_size.c */
429 extern off_t ad_size __P((const struct adouble *, const u_int32_t ));
430
431 /* ad_mmap.c */
432 extern void *ad_mmapread __P((struct adouble *, const u_int32_t,
433                               const off_t, const size_t));
434 extern void *ad_mmapwrite __P((struct adouble *, const u_int32_t,
435                                const off_t, const int, const size_t));
436 #define ad_munmap(buf, len)  (munmap((buf), (len)))
437
438 /* ad_date.c */
439 extern int ad_setdate __P((const struct adouble *, unsigned int, u_int32_t));
440 extern int ad_getdate __P((const struct adouble *, unsigned int, u_int32_t *));
441
442 /* ad_attr.c */
443 extern int ad_setattr __P((const struct adouble *, const u_int16_t));
444 extern int ad_getattr __P((const struct adouble *, u_int16_t *));
445
446 extern int ad_setname __P((struct adouble *, const char *));
447 #if AD_VERSION == AD_VERSION2
448 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 *));
449 #else
450 #define ad_setid(a, b, c)
451 #endif
452
453 #ifdef WITH_SENDFILE
454 extern ssize_t ad_readfile __P((const struct adouble *, const int, 
455                                 const int, off_t, const size_t));
456 #endif
457
458 #if 0
459 #ifdef HAVE_SENDFILE_WRITE
460 extern ssize_t ad_writefile __P((struct adouble *, const int, 
461                                  const int, off_t, const int, const size_t));
462 #endif
463 #endif
464      
465 #endif