]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_read.c
Merge master
[netatalk.git] / libatalk / adouble / ad_read.c
1 /*
2  * Copyright (c) 1990,1991 Regents of The University of Michigan.
3  * All Rights Reserved.
4  *
5  * Permission to use, copy, modify, and distribute this software and
6  * its documentation for any purpose and without fee is hereby granted,
7  * provided that the above copyright notice appears in all copies and
8  * that both that copyright notice and this permission notice appear
9  * in supporting documentation, and that the name of The University
10  * of Michigan not be used in advertising or publicity pertaining to
11  * distribution of the software without specific, written prior
12  * permission. This software is supplied as is without expressed or
13  * implied warranties of any kind.
14  *
15  *  Research Systems Unix Group
16  *  The University of Michigan
17  *  c/o Mike Clark
18  *  535 W. William Street
19  *  Ann Arbor, Michigan
20  *  +1-313-763-0525
21  *  netatalk@itd.umich.edu
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif /* HAVE_CONFIG_H */
27
28 #include <string.h>
29 #include <sys/param.h>
30
31 #include <atalk/adouble.h>
32 #include <atalk/ea.h>
33
34 #ifndef MIN
35 #define MIN(a,b)    ((a)<(b)?(a):(b))
36 #endif /* ! MIN */
37
38 ssize_t adf_pread(struct ad_fd *ad_fd, void *buf, size_t count, off_t offset)
39 {
40     ssize_t     cc;
41
42 #ifndef  HAVE_PREAD
43     if ( ad_fd->adf_off != offset ) {
44         if ( lseek( ad_fd->adf_fd, offset, SEEK_SET ) < 0 ) {
45             return -1;
46         }
47         ad_fd->adf_off = offset;
48     }
49     if (( cc = read( ad_fd->adf_fd, buf, count )) < 0 ) {
50         return -1;
51     }
52     ad_fd->adf_off += cc;
53 #else
54     cc = pread(ad_fd->adf_fd, buf, count, offset );
55 #endif
56     return cc;
57 }
58
59 /* XXX: locks have to be checked before each stream of consecutive
60  *      ad_reads to prevent a denial in the middle from causing
61  *      problems. */
62 ssize_t ad_read( struct adouble *ad, const u_int32_t eid, off_t off, char *buf, const size_t buflen)
63 {
64     ssize_t     cc;
65
66     /* We're either reading the data fork (and thus the data file)
67      * or we're reading anything else (and thus the header file). */
68     if ( eid == ADEID_DFORK ) {
69         if (ad->ad_data_fork.adf_syml !=0 ) {
70             /* It's a symlink, we already have the target in adf_syml */
71             cc = strlen(ad->ad_data_fork.adf_syml);
72             if (buflen < cc)
73                 /* Request buffersize is too small, force AFPERR_PARAM */
74                 return -1;
75             memcpy(buf, ad->ad_data_fork.adf_syml, cc);
76         } else {
77             cc = adf_pread(&ad->ad_data_fork, buf, buflen, off);
78         }
79     } else {
80         if (ad->ad_flags != AD_VERSION_EA) {
81             off_t r_off;
82             if ( ad_reso_fileno( ad ) == -1 )
83                 /* resource fork is not open ( cf etc/afp/fork.c) */
84                 return 0;
85             r_off = ad_getentryoff(ad, eid) + off;
86             if (( cc = adf_pread( &ad->ad_resource_fork, buf, buflen, r_off )) < 0 )
87                 return( -1 );
88             /*
89              * We've just read in bytes from the disk that we read earlier
90              * into ad_data. If we're going to write this buffer out later,
91              * we need to update ad_data.
92              * FIXME : always false?
93              */
94             if (r_off < ad_getentryoff(ad, ADEID_RFORK)) {
95                 if ( ad->ad_resource_fork.adf_flags & O_RDWR ) {
96                     memcpy(buf, ad->ad_data + r_off,
97                            MIN(sizeof( ad->ad_data ) - r_off, cc));
98                 } else {
99                     memcpy(ad->ad_data + r_off, buf,
100                            MIN(sizeof( ad->ad_data ) - r_off, cc));
101                 }
102             }
103         } else { /* AD_VERSION_EA */
104             if ((off + buflen) > ad->ad_rlen) {
105                 errno = ERANGE;
106                 return -1;
107             }
108             memcpy(buf, ad->ad_resforkbuf + off, buflen);
109             cc = buflen;
110         }
111     }
112
113     return( cc );
114 }