e65975d36d0bc3ae0073419d94e6825a2a029837
[openafs.git] / src / afs / VNOPS / afs_vnop_strategy.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Implements:
12  * afs_ustrategy
13  */
14
15 #include <afsconfig.h>
16 #include "afs/param.h"
17
18 RCSID
19     ("$Header$");
20
21 #if !defined(AFS_HPUX_ENV) && !defined(AFS_SGI_ENV) && !defined(AFS_LINUX20_ENV)
22
23 #include "afs/sysincludes.h"    /* Standard vendor system headers */
24 #include "afsincludes.h"        /* Afs-based standard headers */
25 #include "afs/afs_stats.h"      /* statistics */
26 #include "afs/afs_cbqueue.h"
27 #include "afs/nfsclient.h"
28 #include "afs/afs_osidnlc.h"
29
30
31
32 int
33 #if     defined(AFS_SUN5_ENV) || defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
34 afs_ustrategy(abp, credp)
35      struct AFS_UCRED *credp;
36 #else
37 afs_ustrategy(abp)
38 #endif
39      register struct buf *abp;
40 {
41     register afs_int32 code;
42     struct uio tuio;
43     register struct vcache *tvc = VTOAFS(abp->b_vp);
44     register afs_int32 len = abp->b_bcount;
45 #if     !defined(AFS_SUN5_ENV) && !defined(AFS_OSF_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_XBSD_ENV)
46 #ifdef  AFS_AIX41_ENV
47     struct ucred *credp;
48 #else
49     struct AFS_UCRED *credp = u.u_cred;
50 #endif
51 #endif
52     struct iovec tiovec[1];
53
54     AFS_STATCNT(afs_ustrategy);
55 #ifdef  AFS_AIX41_ENV
56     /*
57      * So that it won't change while reading it
58      */
59     ObtainReadLock(&tvc->lock);
60     if (tvc->credp) {
61         credp = tvc->credp;
62         crhold(credp);
63     } else {
64         credp = crref();
65     }
66     ReleaseReadLock(&tvc->lock);
67     osi_Assert(credp);
68 #endif
69 #ifdef AFS_FBSD50_ENV
70     if (abp->b_iocmd == BIO_READ) {
71 #else
72     if ((abp->b_flags & B_READ) == B_READ) {
73 #endif
74         /* read b_bcount bytes into kernel address b_un.b_addr starting
75          * at byte DEV_BSIZE * b_blkno.  Bzero anything we can't read,
76          * and finally call iodone(abp).  File is in abp->b_vp.  Credentials
77          * are from u area??
78          */
79         tuio.afsio_iov = tiovec;
80         tuio.afsio_iovcnt = 1;
81 #if     defined(AFS_OSF_ENV) || defined(AFS_SUN5_ENV) || defined(AFS_XBSD_ENV)
82 #ifdef AFS_64BIT_CLIENT
83         tuio.afsio_offset = (afs_offs_t) dbtob(abp->b_blkno);
84 #else /* AFS_64BIT_CLIENT */
85         tuio.afsio_offset = (u_int) dbtob(abp->b_blkno);
86 #if     defined(AFS_SUN5_ENV)
87         tuio._uio_offset._p._u = 0;
88 #endif
89 #endif /* AFS_64BIT_CLIENT */
90 #else
91         tuio.afsio_offset = DEV_BSIZE * abp->b_blkno;
92 #endif
93         tuio.afsio_seg = AFS_UIOSYS;
94 #ifdef AFS_UIOFMODE
95         tuio.afsio_fmode = 0;
96 #endif
97         tuio.afsio_resid = abp->b_bcount;
98 #if defined(AFS_XBSD_ENV)
99         tiovec[0].iov_base = abp->b_saveaddr;
100 #else
101         tiovec[0].iov_base = abp->b_un.b_addr;
102 #endif /* AFS_XBSD_ENV */
103         tiovec[0].iov_len = abp->b_bcount;
104         /* are user's credentials valid here?  probably, but this
105          * sure seems like the wrong things to do. */
106 #if     defined(AFS_SUN5_ENV)
107         code = afs_nlrdwr(VTOAFS(abp->b_vp), &tuio, UIO_READ, 0, credp);
108 #else
109         code = afs_rdwr(VTOAFS(abp->b_vp), &tuio, UIO_READ, 0, credp);
110 #endif
111         if (code == 0) {
112             if (tuio.afsio_resid > 0)
113 #if defined(AFS_XBSD_ENV)
114                 memset(abp->b_saveaddr + abp->b_bcount - tuio.afsio_resid, 0,
115                        tuio.afsio_resid);
116 #else
117                 memset(abp->b_un.b_addr + abp->b_bcount - tuio.afsio_resid, 0,
118                        tuio.afsio_resid);
119 #endif /* AFS_XBSD_ENV */
120 #ifdef  AFS_AIX32_ENV
121             /*
122              * If we read a block that is past EOF and the user was not storing
123              * to it, go ahead and write protect the page. This way we will detect
124              * storing beyond EOF in the future
125              */
126             if (dbtob(abp->b_blkno) + abp->b_bcount > tvc->m.Length) {
127                 if ((abp->b_flags & B_PFSTORE) == 0) {
128                     AFS_GUNLOCK();
129                     vm_protectp(tvc->segid, dbtob(abp->b_blkno) / PAGESIZE,
130                                 abp->b_bcount / PAGESIZE, RDONLY);
131                     AFS_GLOCK();
132                 }
133             }
134 #endif
135         }
136     } else {
137         tuio.afsio_iov = tiovec;
138         tuio.afsio_iovcnt = 1;
139 #if     defined(AFS_OSF_ENV) || defined(AFS_SUN5_ENV)
140 #ifdef AFS_64BIT_CLIENT
141         tuio.afsio_offset = (afs_offs_t) dbtob(abp->b_blkno);
142 #else /* AFS_64BIT_CLIENT */
143         tuio.afsio_offset = (u_int) dbtob(abp->b_blkno);
144 #ifdef  AFS_SUN5_ENV
145         tuio._uio_offset._p._u = 0;
146 #endif
147 #endif /* AFS_64BIT_CLIENT */
148 #ifdef  AFS_SUN5_ENV
149 #ifdef  AFS_SUN59_ENV
150         tuio.uio_limit = curproc->p_fsz_ctl.rlim_cur;
151 #else
152         tuio.uio_limit = u.u_rlimit[RLIMIT_FSIZE].rlim_cur;
153 #endif
154 #endif
155 #else
156         tuio.afsio_offset = DEV_BSIZE * abp->b_blkno;
157 #endif
158         tuio.afsio_seg = AFS_UIOSYS;
159 #ifdef AFS_UIOFMODE
160         tuio.afsio_fmode = 0;
161 #endif
162 #ifdef  AFS_AIX32_ENV
163         /*
164          * XXX It this really right? Ideally we should always write block size multiple
165          * and not any arbitrary size, right? XXX
166          */
167         len = MIN(len, tvc->m.Length - dbtob(abp->b_blkno));
168 #endif
169 #ifdef AFS_OSF_ENV
170         len =
171             MIN(abp->b_bcount,
172                 (VTOAFS(abp->b_vp))->m.Length - dbtob(abp->b_blkno));
173 #endif /* AFS_OSF_ENV */
174         tuio.afsio_resid = len;
175 #if defined(AFS_XBSD_ENV)
176         tiovec[0].iov_base = abp->b_saveaddr;
177 #else
178         tiovec[0].iov_base = abp->b_un.b_addr;
179 #endif /* AFS_XBSD_ENV */
180         tiovec[0].iov_len = len;
181         /* are user's credentials valid here?  probably, but this
182          * sure seems like the wrong things to do. */
183 #if     defined(AFS_SUN5_ENV)
184         code = afs_nlrdwr(VTOAFS(abp->b_vp), &tuio, UIO_WRITE, 0, credp);
185 #else
186         code = afs_rdwr(VTOAFS(abp->b_vp), &tuio, UIO_WRITE, 0, credp);
187 #endif
188     }
189
190 #if defined(AFS_DUX40_ENV) || defined (AFS_XBSD_ENV)
191     if (code) {
192         abp->b_error = code;
193 #if !defined(AFS_FBSD50_ENV)
194         abp->b_flags |= B_ERROR;
195 #endif
196     }
197 #endif
198
199 #if defined(AFS_AIX32_ENV)
200     crfree(credp);
201 #elif defined(AFS_DUX40_ENV)
202     biodone(abp);
203     if (code && !(abp->b_flags & B_READ)) {
204         /* prevent ubc from retrying writes */
205         AFS_GUNLOCK();
206         ubc_invalidate(AFSTOV(tvc)->v_object,
207                        (vm_offset_t) dbtob(abp->b_blkno), PAGE_SIZE, B_INVAL);
208         AFS_GLOCK();
209     }
210 #elif defined(AFS_FBSD60_ENV)
211     (*abp->b_iodone)(abp);
212 #elif defined(AFS_FBSD50_ENV)
213     biodone(&abp->b_io);
214 #elif defined(AFS_XBSD_ENV)
215     biodone(abp);
216 #elif !defined(AFS_SUN5_ENV)
217     iodone(abp);
218 #endif
219
220     afs_Trace3(afs_iclSetp, CM_TRACE_STRATEGYDONE, ICL_TYPE_POINTER, tvc,
221                ICL_TYPE_INT32, code, ICL_TYPE_LONG, tuio.afsio_resid);
222     return code;
223 }
224
225 #endif /* !AFS_HPUX_ENV  && !AFS_SGI_ENV && !AFS_LINUX20_ENV */