Major BUF/BIO work commit. Make I/O BIO-centric and specify the disk or
[dragonfly.git] / sys / vfs / ufs / ffs_subr.c
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)ffs_subr.c  8.5 (Berkeley) 3/21/95
34  * $FreeBSD: src/sys/ufs/ffs/ffs_subr.c,v 1.25 1999/12/29 04:55:04 peter Exp $
35  * $DragonFly: src/sys/vfs/ufs/ffs_subr.c,v 1.10 2006/03/24 18:35:34 dillon Exp $
36  */
37
38 #include <sys/param.h>
39 #include "fs.h"
40
41 #ifndef _KERNEL
42 #include "dinode.h"
43 #else
44 #include "opt_ddb.h"
45
46 #include <sys/systm.h>
47 #include <sys/lock.h>
48 #include <sys/vnode.h>
49 #include <sys/buf.h>
50 #include <sys/ucred.h>
51
52 #include "quota.h"
53 #include "inode.h"
54 #include "ffs_extern.h"
55
56 #ifdef DDB
57 void    ffs_checkoverlap (struct buf *, struct inode *);
58 #endif
59
60 /*
61  * Return buffer with the contents of block "offset" from the beginning of
62  * directory "ip".  If "res" is non-zero, fill it in with a pointer to the
63  * remaining space in the directory.
64  */
65 int
66 ffs_blkatoff(struct vnode *vp, off_t offset, char **res, struct buf **bpp)
67 {
68         struct inode *ip;
69         struct fs *fs;
70         struct buf *bp;
71         ufs_daddr_t lbn;
72         int bsize, error;
73
74         ip = VTOI(vp);
75         fs = ip->i_fs;
76         lbn = lblkno(fs, offset);
77         bsize = blksize(fs, ip, lbn);
78
79         *bpp = NULL;
80         error = bread(vp, lblktodoff(fs, lbn), bsize, &bp);
81         if (error) {
82                 brelse(bp);
83                 return (error);
84         }
85         if (res)
86                 *res = (char *)bp->b_data + blkoff(fs, offset);
87         *bpp = bp;
88         return (0);
89 }
90 #endif
91
92 /*
93  * Update the frsum fields to reflect addition or deletion
94  * of some frags.
95  */
96 void
97 ffs_fragacct(struct fs *fs, int fragmap, int32_t fraglist[], int cnt)
98 {
99         int inblk;
100         int field, subfield;
101         int siz, pos;
102
103         /*
104          * inblk represents a bitmap of fragment sizes which may be
105          * contained in the data 'fragmap'.  e.g. if a fragment of size
106          * 1 is available, bit 0 would be set.  inblk is shifted left
107          * by one so we do not have to calculate (1 << (siz - 1)).
108          *
109          * fragment represents the data pattern we are trying to decipher,
110          * we shift it left by one to align it with the 'around' and 'inside'
111          * masks.
112          *
113          * around represents the bits around the subfield and is a mask.
114          * inside represents what we must match within the mask, it is
115          * basically the mask with the first and last bit set to 0, allowing
116          * us to represent a whole fragment.
117          *
118          * When we find a match we bump our position by the size of the
119          * matching fragment, then bump the position again:
120          *
121          * 010101010 fragmap (shifted left by 1)
122          *       111 around mask
123          *       010 inside mask
124          *      111     (shifted by siz)
125          *      010
126          *     111      (shifted again)
127          *     010
128          */
129         inblk = (int)(fragtbl[fs->fs_frag][fragmap]) << 1;
130         fragmap <<= 1;
131         for (siz = 1; siz < fs->fs_frag; siz++) {
132                 if ((inblk & (1 << (siz + (fs->fs_frag % NBBY)))) == 0)
133                         continue;
134                 field = around[siz];
135                 subfield = inside[siz];
136                 for (pos = siz; pos <= fs->fs_frag; pos++) {
137                         if ((fragmap & field) == subfield) {
138                                 fraglist[siz] += cnt;
139                                 pos += siz;
140                                 field <<= siz;
141                                 subfield <<= siz;
142                         }
143                         field <<= 1;
144                         subfield <<= 1;
145                 }
146         }
147 }
148
149 #ifdef DDB
150 void
151 ffs_checkoverlap(struct buf *bp, struct inode *ip)
152 {
153         struct buf *ebp, *ep;
154         off_t start, last;
155         struct vnode *vp;
156
157         ebp = &buf[nbuf];
158         start = bp->b_bio2.bio_offset;
159         last = start + bp->b_bcount - 1;
160         for (ep = buf; ep < ebp; ep++) {
161                 if (ep == bp || (ep->b_flags & B_INVAL) ||
162                     ep->b_vp == NULLVP)
163                         continue;
164                 if (VOP_BMAP(ep->b_vp, (off_t)0, &vp, NULL, NULL, NULL))
165                         continue;
166                 if (vp != ip->i_devvp)
167                         continue;
168                 /* look for overlap */
169                 if (ep->b_bcount == 0 || ep->b_bio2.bio_offset == NOOFFSET ||
170                     ep->b_bio2.bio_offset > last ||
171                     ep->b_bio2.bio_offset + ep->b_bcount <= start)
172                         continue;
173                 vprint("Disk overlap", vp);
174                 printf("\tstart %lld, end %lld overlap start %lld, end %lld\n",
175                         start, last, 
176                         ep->b_bio2.bio_offset,
177                         ep->b_bio2.bio_offset + ep->b_bcount - 1);
178                 panic("ffs_checkoverlap: Disk buffer overlap");
179         }
180 }
181 #endif /* DDB */
182
183 /*
184  * block operations
185  *
186  * check if a block is available
187  */
188 int
189 ffs_isblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h)
190 {
191         unsigned char mask;
192
193         switch ((int)fs->fs_frag) {
194         case 8:
195                 return (cp[h] == 0xff);
196         case 4:
197                 mask = 0x0f << ((h & 0x1) << 2);
198                 return ((cp[h >> 1] & mask) == mask);
199         case 2:
200                 mask = 0x03 << ((h & 0x3) << 1);
201                 return ((cp[h >> 2] & mask) == mask);
202         case 1:
203                 mask = 0x01 << (h & 0x7);
204                 return ((cp[h >> 3] & mask) == mask);
205         default:
206                 panic("ffs_isblock");
207         }
208 }
209
210 /*
211  * check if a block is free
212  */
213 int
214 ffs_isfreeblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h)
215 {
216         switch ((int)fs->fs_frag) {
217         case 8:
218                 return (cp[h] == 0);
219         case 4:
220                 return ((cp[h >> 1] & (0x0f << ((h & 0x1) << 2))) == 0);
221         case 2:
222                 return ((cp[h >> 2] & (0x03 << ((h & 0x3) << 1))) == 0);
223         case 1:
224                 return ((cp[h >> 3] & (0x01 << (h & 0x7))) == 0);
225         default:
226                 panic("ffs_isfreeblock");
227         }
228 }
229
230 /*
231  * take a block out of the map
232  */
233 void
234 ffs_clrblock(struct fs *fs, u_char *cp, ufs_daddr_t h)
235 {
236         switch ((int)fs->fs_frag) {
237         case 8:
238                 cp[h] = 0;
239                 return;
240         case 4:
241                 cp[h >> 1] &= ~(0x0f << ((h & 0x1) << 2));
242                 return;
243         case 2:
244                 cp[h >> 2] &= ~(0x03 << ((h & 0x3) << 1));
245                 return;
246         case 1:
247                 cp[h >> 3] &= ~(0x01 << (h & 0x7));
248                 return;
249         default:
250                 panic("ffs_clrblock");
251         }
252 }
253
254 /*
255  * put a block into the map
256  */
257 void
258 ffs_setblock(struct fs *fs, unsigned char *cp, ufs_daddr_t h)
259 {
260         switch ((int)fs->fs_frag) {
261         case 8:
262                 cp[h] = 0xff;
263                 return;
264         case 4:
265                 cp[h >> 1] |= (0x0f << ((h & 0x1) << 2));
266                 return;
267         case 2:
268                 cp[h >> 2] |= (0x03 << ((h & 0x3) << 1));
269                 return;
270         case 1:
271                 cp[h >> 3] |= (0x01 << (h & 0x7));
272                 return;
273         default:
274                 panic("ffs_setblock");
275         }
276 }