vnd.c revision 1.119 1 /* $NetBSD: vnd.c,v 1.119 2005/08/18 22:06:25 nathanw Exp $ */
2
3 /*-
4 * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * Copyright (c) 1990, 1993
41 * The Regents of the University of California. All rights reserved.
42 *
43 * This code is derived from software contributed to Berkeley by
44 * the Systems Programming Group of the University of Utah Computer
45 * Science Department.
46 *
47 * Redistribution and use in source and binary forms, with or without
48 * modification, are permitted provided that the following conditions
49 * are met:
50 * 1. Redistributions of source code must retain the above copyright
51 * notice, this list of conditions and the following disclaimer.
52 * 2. Redistributions in binary form must reproduce the above copyright
53 * notice, this list of conditions and the following disclaimer in the
54 * documentation and/or other materials provided with the distribution.
55 * 3. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
58 *
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 * SUCH DAMAGE.
70 *
71 * from: Utah $Hdr: vn.c 1.13 94/04/02$
72 *
73 * @(#)vn.c 8.9 (Berkeley) 5/14/95
74 */
75
76 /*
77 * Copyright (c) 1988 University of Utah.
78 *
79 * This code is derived from software contributed to Berkeley by
80 * the Systems Programming Group of the University of Utah Computer
81 * Science Department.
82 *
83 * Redistribution and use in source and binary forms, with or without
84 * modification, are permitted provided that the following conditions
85 * are met:
86 * 1. Redistributions of source code must retain the above copyright
87 * notice, this list of conditions and the following disclaimer.
88 * 2. Redistributions in binary form must reproduce the above copyright
89 * notice, this list of conditions and the following disclaimer in the
90 * documentation and/or other materials provided with the distribution.
91 * 3. All advertising materials mentioning features or use of this software
92 * must display the following acknowledgement:
93 * This product includes software developed by the University of
94 * California, Berkeley and its contributors.
95 * 4. Neither the name of the University nor the names of its contributors
96 * may be used to endorse or promote products derived from this software
97 * without specific prior written permission.
98 *
99 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
100 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
101 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
102 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
103 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
104 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
105 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
106 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
107 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
108 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
109 * SUCH DAMAGE.
110 *
111 * from: Utah $Hdr: vn.c 1.13 94/04/02$
112 *
113 * @(#)vn.c 8.9 (Berkeley) 5/14/95
114 */
115
116 /*
117 * Vnode disk driver.
118 *
119 * Block/character interface to a vnode. Allows one to treat a file
120 * as a disk (e.g. build a filesystem in it, mount it, etc.).
121 *
122 * NOTE 1: This uses the VOP_BMAP/VOP_STRATEGY interface to the vnode
123 * instead of a simple VOP_RDWR. We do this to avoid distorting the
124 * local buffer cache.
125 *
126 * NOTE 2: There is a security issue involved with this driver.
127 * Once mounted all access to the contents of the "mapped" file via
128 * the special file is controlled by the permissions on the special
129 * file, the protection of the mapped file is ignored (effectively,
130 * by using root credentials in all transactions).
131 *
132 * NOTE 3: Doesn't interact with leases, should it?
133 */
134
135 #include <sys/cdefs.h>
136 __KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.119 2005/08/18 22:06:25 nathanw Exp $");
137
138 #if defined(_KERNEL_OPT)
139 #include "fs_nfs.h"
140 #include "opt_vnd.h"
141 #endif
142
143 #include <sys/param.h>
144 #include <sys/systm.h>
145 #include <sys/namei.h>
146 #include <sys/proc.h>
147 #include <sys/kthread.h>
148 #include <sys/errno.h>
149 #include <sys/buf.h>
150 #include <sys/bufq.h>
151 #include <sys/malloc.h>
152 #include <sys/ioctl.h>
153 #include <sys/disklabel.h>
154 #include <sys/device.h>
155 #include <sys/disk.h>
156 #include <sys/stat.h>
157 #include <sys/mount.h>
158 #include <sys/vnode.h>
159 #include <sys/file.h>
160 #include <sys/uio.h>
161 #include <sys/conf.h>
162 #include <net/zlib.h>
163
164 #include <miscfs/specfs/specdev.h>
165
166 #include <dev/vndvar.h>
167
168 #if defined(VNDDEBUG) && !defined(DEBUG)
169 #define DEBUG
170 #endif
171
172 #ifdef DEBUG
173 int dovndcluster = 1;
174 #define VDB_FOLLOW 0x01
175 #define VDB_INIT 0x02
176 #define VDB_IO 0x04
177 #define VDB_LABEL 0x08
178 int vnddebug = 0x00;
179 #endif
180
181 #define vndunit(x) DISKUNIT(x)
182
183 struct vndxfer {
184 struct buf *vx_bp; /* Pointer to parent buffer */
185 int vx_error;
186 int vx_pending; /* # of pending aux buffers */
187 int vx_flags;
188 #define VX_BUSY 1
189 };
190
191 struct vndbuf {
192 struct buf vb_buf;
193 struct vndxfer *vb_xfer;
194 };
195
196 #define VND_GETXFER(vnd) pool_get(&(vnd)->sc_vxpool, PR_WAITOK)
197 #define VND_PUTXFER(vnd, vx) pool_put(&(vnd)->sc_vxpool, (vx))
198
199 #define VND_GETBUF(vnd) pool_get(&(vnd)->sc_vbpool, PR_WAITOK)
200 #define VND_PUTBUF(vnd, vb) pool_put(&(vnd)->sc_vbpool, (vb))
201
202 struct vnd_softc *vnd_softc;
203 int numvnd = 0;
204
205 #define VNDLABELDEV(dev) \
206 (MAKEDISKDEV(major((dev)), vndunit((dev)), RAW_PART))
207
208 /* called by main() at boot time (XXX: and the LKM driver) */
209 void vndattach(int);
210 int vnddetach(void);
211
212 static void vndclear(struct vnd_softc *, int);
213 static int vndsetcred(struct vnd_softc *, struct ucred *);
214 static void vndthrottle(struct vnd_softc *, struct vnode *);
215 static void vndiodone(struct buf *);
216 #if 0
217 static void vndshutdown(void);
218 #endif
219
220 static void vndgetdefaultlabel(struct vnd_softc *, struct disklabel *);
221 static void vndgetdisklabel(dev_t);
222
223 static int vndlock(struct vnd_softc *);
224 static void vndunlock(struct vnd_softc *);
225 #ifdef VND_COMPRESSION
226 static void compstrategy(struct buf *, off_t);
227 static void *vnd_alloc(void *, u_int, u_int);
228 static void vnd_free(void *, void *);
229 #endif /* VND_COMPRESSION */
230
231 void vndthread(void *);
232
233 static dev_type_open(vndopen);
234 static dev_type_close(vndclose);
235 static dev_type_read(vndread);
236 static dev_type_write(vndwrite);
237 static dev_type_ioctl(vndioctl);
238 static dev_type_strategy(vndstrategy);
239 static dev_type_dump(vnddump);
240 static dev_type_size(vndsize);
241
242 const struct bdevsw vnd_bdevsw = {
243 vndopen, vndclose, vndstrategy, vndioctl, vnddump, vndsize, D_DISK
244 };
245
246 const struct cdevsw vnd_cdevsw = {
247 vndopen, vndclose, vndread, vndwrite, vndioctl,
248 nostop, notty, nopoll, nommap, nokqfilter, D_DISK
249 };
250
251 static int vndattached;
252
253 void
254 vndattach(int num)
255 {
256 int i;
257 char *mem;
258
259 if (vndattached)
260 return;
261 vndattached = 1;
262 if (num <= 0)
263 return;
264 i = num * sizeof(struct vnd_softc);
265 mem = malloc(i, M_DEVBUF, M_NOWAIT|M_ZERO);
266 if (mem == NULL) {
267 printf("WARNING: no memory for vnode disks\n");
268 return;
269 }
270 vnd_softc = (struct vnd_softc *)mem;
271 numvnd = num;
272
273 for (i = 0; i < numvnd; i++) {
274 vnd_softc[i].sc_unit = i;
275 vnd_softc[i].sc_comp_offsets = NULL;
276 vnd_softc[i].sc_comp_buff = NULL;
277 vnd_softc[i].sc_comp_decombuf = NULL;
278 bufq_alloc(&vnd_softc[i].sc_tab,
279 BUFQ_DISKSORT|BUFQ_SORT_RAWBLOCK);
280 }
281 }
282
283 int
284 vnddetach(void)
285 {
286 int i;
287
288 /* First check we aren't in use. */
289 for (i = 0; i < numvnd; i++)
290 if (vnd_softc[i].sc_flags & VNF_INITED)
291 return (EBUSY);
292
293 for (i = 0; i < numvnd; i++)
294 bufq_free(&vnd_softc[i].sc_tab);
295
296 free(vnd_softc, M_DEVBUF);
297 vndattached = 0;
298
299 return (0);
300 }
301
302 static int
303 vndopen(dev_t dev, int flags, int mode, struct proc *p)
304 {
305 int unit = vndunit(dev);
306 struct vnd_softc *sc;
307 int error = 0, part, pmask;
308 struct disklabel *lp;
309
310 #ifdef DEBUG
311 if (vnddebug & VDB_FOLLOW)
312 printf("vndopen(0x%x, 0x%x, 0x%x, %p)\n", dev, flags, mode, p);
313 #endif
314 if (unit >= numvnd)
315 return (ENXIO);
316 sc = &vnd_softc[unit];
317
318 if ((error = vndlock(sc)) != 0)
319 return (error);
320
321 lp = sc->sc_dkdev.dk_label;
322
323 part = DISKPART(dev);
324 pmask = (1 << part);
325
326 /*
327 * If we're initialized, check to see if there are any other
328 * open partitions. If not, then it's safe to update the
329 * in-core disklabel. Only read the disklabel if it is
330 * not already valid.
331 */
332 if ((sc->sc_flags & (VNF_INITED|VNF_VLABEL)) == VNF_INITED &&
333 sc->sc_dkdev.dk_openmask == 0)
334 vndgetdisklabel(dev);
335
336 /* Check that the partitions exists. */
337 if (part != RAW_PART) {
338 if (((sc->sc_flags & VNF_INITED) == 0) ||
339 ((part >= lp->d_npartitions) ||
340 (lp->d_partitions[part].p_fstype == FS_UNUSED))) {
341 error = ENXIO;
342 goto done;
343 }
344 }
345
346 /* Prevent our unit from being unconfigured while open. */
347 switch (mode) {
348 case S_IFCHR:
349 sc->sc_dkdev.dk_copenmask |= pmask;
350 break;
351
352 case S_IFBLK:
353 sc->sc_dkdev.dk_bopenmask |= pmask;
354 break;
355 }
356 sc->sc_dkdev.dk_openmask =
357 sc->sc_dkdev.dk_copenmask | sc->sc_dkdev.dk_bopenmask;
358
359 done:
360 vndunlock(sc);
361 return (error);
362 }
363
364 static int
365 vndclose(dev_t dev, int flags, int mode, struct proc *p)
366 {
367 int unit = vndunit(dev);
368 struct vnd_softc *sc;
369 int error = 0, part;
370
371 #ifdef DEBUG
372 if (vnddebug & VDB_FOLLOW)
373 printf("vndclose(0x%x, 0x%x, 0x%x, %p)\n", dev, flags, mode, p);
374 #endif
375
376 if (unit >= numvnd)
377 return (ENXIO);
378 sc = &vnd_softc[unit];
379
380 if ((error = vndlock(sc)) != 0)
381 return (error);
382
383 part = DISKPART(dev);
384
385 /* ...that much closer to allowing unconfiguration... */
386 switch (mode) {
387 case S_IFCHR:
388 sc->sc_dkdev.dk_copenmask &= ~(1 << part);
389 break;
390
391 case S_IFBLK:
392 sc->sc_dkdev.dk_bopenmask &= ~(1 << part);
393 break;
394 }
395 sc->sc_dkdev.dk_openmask =
396 sc->sc_dkdev.dk_copenmask | sc->sc_dkdev.dk_bopenmask;
397
398 vndunlock(sc);
399 return (0);
400 }
401
402 /*
403 * Qeue the request, and wakeup the kernel thread to handle it.
404 */
405 static void
406 vndstrategy(struct buf *bp)
407 {
408 int unit = vndunit(bp->b_dev);
409 struct vnd_softc *vnd = &vnd_softc[unit];
410 struct disklabel *lp = vnd->sc_dkdev.dk_label;
411 int s = splbio();
412
413 bp->b_resid = bp->b_bcount;
414
415 if ((vnd->sc_flags & VNF_INITED) == 0) {
416 bp->b_error = ENXIO;
417 bp->b_flags |= B_ERROR;
418 goto done;
419 }
420
421 /*
422 * The transfer must be a whole number of blocks.
423 */
424 if ((bp->b_bcount % lp->d_secsize) != 0) {
425 bp->b_error = EINVAL;
426 bp->b_flags |= B_ERROR;
427 goto done;
428 }
429
430 /*
431 * check if we're read-only.
432 */
433 if ((vnd->sc_flags & VNF_READONLY) && !(bp->b_flags & B_READ)) {
434 bp->b_error = EACCES;
435 bp->b_flags |= B_ERROR;
436 goto done;
437 }
438
439 /*
440 * Do bounds checking and adjust transfer. If there's an error,
441 * the bounds check will flag that for us.
442 */
443 if (DISKPART(bp->b_dev) != RAW_PART) {
444 if (bounds_check_with_label(&vnd->sc_dkdev,
445 bp, vnd->sc_flags & (VNF_WLABEL|VNF_LABELLING)) <= 0)
446 goto done;
447 }
448
449 /* If it's a nil transfer, wake up the top half now. */
450 if (bp->b_bcount == 0)
451 goto done;
452 #ifdef DEBUG
453 if (vnddebug & VDB_FOLLOW)
454 printf("vndstrategy(%p): unit %d\n", bp, unit);
455 #endif
456 BUFQ_PUT(&vnd->sc_tab, bp);
457 wakeup(&vnd->sc_tab);
458 splx(s);
459 return;
460 done:
461 biodone(bp);
462 splx(s);
463 }
464
465 void
466 vndthread(void *arg)
467 {
468 struct vnd_softc *vnd = arg;
469 struct buf *bp;
470 struct vndxfer *vnx;
471 struct mount *mp;
472 int s, bsize, resid;
473 off_t bn;
474 caddr_t addr;
475 int sz, flags, error;
476 struct disklabel *lp;
477 struct partition *pp;
478
479 s = splbio();
480 vnd->sc_flags |= VNF_KTHREAD;
481 wakeup(&vnd->sc_kthread);
482
483 /*
484 * Dequeue requests, break them into bsize pieces and submit using
485 * VOP_BMAP/VOP_STRATEGY.
486 */
487 while ((vnd->sc_flags & VNF_VUNCONF) == 0) {
488 bp = BUFQ_GET(&vnd->sc_tab);
489 if (bp == NULL) {
490 tsleep(&vnd->sc_tab, PRIBIO, "vndbp", 0);
491 continue;
492 };
493 splx(s);
494
495 #ifdef DEBUG
496 if (vnddebug & VDB_FOLLOW)
497 printf("vndthread(%p\n", bp);
498 #endif
499 lp = vnd->sc_dkdev.dk_label;
500 bp->b_resid = bp->b_bcount;
501
502 /*
503 * Put the block number in terms of the logical blocksize
504 * of the "device".
505 */
506 bn = bp->b_blkno / (lp->d_secsize / DEV_BSIZE);
507
508 /*
509 * Translate the partition-relative block number to an absolute.
510 */
511 if (DISKPART(bp->b_dev) != RAW_PART) {
512 pp = &vnd->sc_dkdev.dk_label->d_partitions[
513 DISKPART(bp->b_dev)];
514 bn += pp->p_offset;
515 }
516
517 /* ...and convert to a byte offset within the file. */
518 bn *= lp->d_secsize;
519
520 if (vnd->sc_vp->v_mount == NULL) {
521 bp->b_error = ENXIO;
522 bp->b_flags |= B_ERROR;
523 goto done;
524 }
525 #ifdef VND_COMPRESSION
526 /* handle a compressed read */
527 if ((bp->b_flags & B_READ) && (vnd->sc_flags & VNF_COMP)) {
528 compstrategy(bp, bn);
529 goto done;
530 }
531 #endif /* VND_COMPRESSION */
532
533 bsize = vnd->sc_vp->v_mount->mnt_stat.f_iosize;
534 addr = bp->b_data;
535 flags = (bp->b_flags & (B_READ|B_ASYNC)) | B_CALL;
536
537 /*
538 * Allocate a header for this transfer and link it to the
539 * buffer
540 */
541 s = splbio();
542 vnx = VND_GETXFER(vnd);
543 splx(s);
544 vnx->vx_flags = VX_BUSY;
545 vnx->vx_error = 0;
546 vnx->vx_pending = 0;
547 vnx->vx_bp = bp;
548
549 if ((flags & B_READ) == 0)
550 vn_start_write(vnd->sc_vp, &mp, V_WAIT);
551
552 /*
553 * Feed requests sequentially.
554 * We do it this way to keep from flooding NFS servers if we
555 * are connected to an NFS file. This places the burden on
556 * the client rather than the server.
557 */
558 for (resid = bp->b_resid; resid; resid -= sz) {
559 struct vndbuf *nbp;
560 struct vnode *vp;
561 daddr_t nbn;
562 int off, nra;
563
564 nra = 0;
565 vn_lock(vnd->sc_vp, LK_EXCLUSIVE | LK_RETRY | LK_CANRECURSE);
566 error = VOP_BMAP(vnd->sc_vp, bn / bsize, &vp, &nbn, &nra);
567 VOP_UNLOCK(vnd->sc_vp, 0);
568
569 if (error == 0 && (long)nbn == -1)
570 error = EIO;
571
572 /*
573 * If there was an error or a hole in the file...punt.
574 * Note that we may have to wait for any operations
575 * that we have already fired off before releasing
576 * the buffer.
577 *
578 * XXX we could deal with holes here but it would be
579 * a hassle (in the write case).
580 */
581 if (error) {
582 s = splbio();
583 vnx->vx_error = error;
584 goto out;
585 }
586
587 #ifdef DEBUG
588 if (!dovndcluster)
589 nra = 0;
590 #endif
591
592 if ((off = bn % bsize) != 0)
593 sz = bsize - off;
594 else
595 sz = (1 + nra) * bsize;
596 if (resid < sz)
597 sz = resid;
598 #ifdef DEBUG
599 if (vnddebug & VDB_IO)
600 printf("vndstrategy: vp %p/%p bn 0x%qx/0x%" PRIx64
601 " sz 0x%x\n",
602 vnd->sc_vp, vp, (long long)bn, nbn, sz);
603 #endif
604
605 s = splbio();
606 while (vnd->sc_active >= vnd->sc_maxactive) {
607 tsleep(&vnd->sc_tab, PRIBIO, "vndac", 0);
608 }
609 vnd->sc_active++;
610 nbp = VND_GETBUF(vnd);
611 splx(s);
612 BUF_INIT(&nbp->vb_buf);
613 nbp->vb_buf.b_flags = flags;
614 nbp->vb_buf.b_bcount = sz;
615 nbp->vb_buf.b_bufsize = round_page((ulong)addr + sz)
616 - trunc_page((ulong) addr);
617 nbp->vb_buf.b_error = 0;
618 nbp->vb_buf.b_data = addr;
619 nbp->vb_buf.b_blkno = nbp->vb_buf.b_rawblkno = nbn + btodb(off);
620 nbp->vb_buf.b_proc = bp->b_proc;
621 nbp->vb_buf.b_iodone = vndiodone;
622 nbp->vb_buf.b_vp = vp;
623
624 nbp->vb_xfer = vnx;
625
626 BIO_COPYPRIO(&nbp->vb_buf, bp);
627
628 /*
629 * Just sort by block number
630 */
631 s = splbio();
632 if (vnx->vx_error != 0) {
633 VND_PUTBUF(vnd, nbp);
634 goto out;
635 }
636 vnx->vx_pending++;
637 #ifdef DEBUG
638 if (vnddebug & VDB_IO)
639 printf("vndstart(%ld): bp %p vp %p blkno "
640 "0x%" PRIx64 " flags %x addr %p cnt 0x%x\n",
641 (long) (vnd-vnd_softc), &nbp->vb_buf,
642 nbp->vb_buf.b_vp, nbp->vb_buf.b_blkno,
643 nbp->vb_buf.b_flags, nbp->vb_buf.b_data,
644 nbp->vb_buf.b_bcount);
645 #endif
646
647 /* Instrumentation. */
648 disk_busy(&vnd->sc_dkdev);
649
650 if ((nbp->vb_buf.b_flags & B_READ) == 0)
651 vp->v_numoutput++;
652 VOP_STRATEGY(vp, &nbp->vb_buf);
653
654 splx(s);
655 bn += sz;
656 addr += sz;
657 }
658
659 s = splbio();
660
661 out: /* Arrive here at splbio */
662 if ((flags & B_READ) == 0)
663 vn_finished_write(mp, 0);
664 vnx->vx_flags &= ~VX_BUSY;
665 if (vnx->vx_pending == 0) {
666 if (vnx->vx_error != 0) {
667 bp->b_error = vnx->vx_error;
668 bp->b_flags |= B_ERROR;
669 }
670 VND_PUTXFER(vnd, vnx);
671 biodone(bp);
672 }
673 continue;
674 done:
675 biodone(bp);
676 s = splbio();
677 }
678
679 vnd->sc_flags &= (~VNF_KTHREAD | VNF_VUNCONF);
680 wakeup(&vnd->sc_kthread);
681 splx(s);
682 kthread_exit(0);
683 }
684
685
686 static void
687 vndiodone(struct buf *bp)
688 {
689 struct vndbuf *vbp = (struct vndbuf *) bp;
690 struct vndxfer *vnx = (struct vndxfer *)vbp->vb_xfer;
691 struct buf *pbp = vnx->vx_bp;
692 struct vnd_softc *vnd = &vnd_softc[vndunit(pbp->b_dev)];
693 int s, resid;
694
695 s = splbio();
696 #ifdef DEBUG
697 if (vnddebug & VDB_IO)
698 printf("vndiodone(%ld): vbp %p vp %p blkno 0x%" PRIx64
699 " addr %p cnt 0x%x\n",
700 (long) (vnd-vnd_softc), vbp, vbp->vb_buf.b_vp,
701 vbp->vb_buf.b_blkno, vbp->vb_buf.b_data,
702 vbp->vb_buf.b_bcount);
703 #endif
704
705 resid = vbp->vb_buf.b_bcount - vbp->vb_buf.b_resid;
706 pbp->b_resid -= resid;
707 disk_unbusy(&vnd->sc_dkdev, resid, (pbp->b_flags & B_READ));
708 vnx->vx_pending--;
709
710 if (vbp->vb_buf.b_error) {
711 #ifdef DEBUG
712 if (vnddebug & VDB_IO)
713 printf("vndiodone: vbp %p error %d\n", vbp,
714 vbp->vb_buf.b_error);
715 #endif
716 vnx->vx_error = vbp->vb_buf.b_error;
717 }
718
719 VND_PUTBUF(vnd, vbp);
720
721 /*
722 * Wrap up this transaction if it has run to completion or, in
723 * case of an error, when all auxiliary buffers have returned.
724 */
725 if (vnx->vx_error != 0) {
726 pbp->b_flags |= B_ERROR;
727 pbp->b_error = vnx->vx_error;
728 if ((vnx->vx_flags & VX_BUSY) == 0 && vnx->vx_pending == 0) {
729
730 #ifdef DEBUG
731 if (vnddebug & VDB_IO)
732 printf("vndiodone: pbp %p iodone: error %d\n",
733 pbp, vnx->vx_error);
734 #endif
735 VND_PUTXFER(vnd, vnx);
736 biodone(pbp);
737 }
738 } else if (pbp->b_resid == 0) {
739
740 #ifdef DIAGNOSTIC
741 if (vnx->vx_pending != 0)
742 panic("vndiodone: vnx pending: %d", vnx->vx_pending);
743 #endif
744
745 if ((vnx->vx_flags & VX_BUSY) == 0) {
746 #ifdef DEBUG
747 if (vnddebug & VDB_IO)
748 printf("vndiodone: pbp %p iodone\n", pbp);
749 #endif
750 VND_PUTXFER(vnd, vnx);
751 biodone(pbp);
752 }
753 }
754
755 vnd->sc_active--;
756 wakeup(&vnd->sc_tab);
757 splx(s);
758 }
759
760 /* ARGSUSED */
761 static int
762 vndread(dev_t dev, struct uio *uio, int flags)
763 {
764 int unit = vndunit(dev);
765 struct vnd_softc *sc;
766
767 #ifdef DEBUG
768 if (vnddebug & VDB_FOLLOW)
769 printf("vndread(0x%x, %p)\n", dev, uio);
770 #endif
771
772 if (unit >= numvnd)
773 return (ENXIO);
774 sc = &vnd_softc[unit];
775
776 if ((sc->sc_flags & VNF_INITED) == 0)
777 return (ENXIO);
778
779 return (physio(vndstrategy, NULL, dev, B_READ, minphys, uio));
780 }
781
782 /* ARGSUSED */
783 static int
784 vndwrite(dev_t dev, struct uio *uio, int flags)
785 {
786 int unit = vndunit(dev);
787 struct vnd_softc *sc;
788
789 #ifdef DEBUG
790 if (vnddebug & VDB_FOLLOW)
791 printf("vndwrite(0x%x, %p)\n", dev, uio);
792 #endif
793
794 if (unit >= numvnd)
795 return (ENXIO);
796 sc = &vnd_softc[unit];
797
798 if ((sc->sc_flags & VNF_INITED) == 0)
799 return (ENXIO);
800
801 return (physio(vndstrategy, NULL, dev, B_WRITE, minphys, uio));
802 }
803
804 /* ARGSUSED */
805 static int
806 vndioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
807 {
808 int unit = vndunit(dev);
809 struct vnd_softc *vnd;
810 struct vnd_ioctl *vio;
811 struct vattr vattr;
812 struct nameidata nd;
813 int error, part, pmask;
814 size_t geomsize;
815 int fflags;
816 #ifdef __HAVE_OLD_DISKLABEL
817 struct disklabel newlabel;
818 #endif
819
820 #ifdef DEBUG
821 if (vnddebug & VDB_FOLLOW)
822 printf("vndioctl(0x%x, 0x%lx, %p, 0x%x, %p): unit %d\n",
823 dev, cmd, data, flag, p, unit);
824 #endif
825 if (unit >= numvnd)
826 return (ENXIO);
827
828 vnd = &vnd_softc[unit];
829 vio = (struct vnd_ioctl *)data;
830
831 /* Must be open for writes for these commands... */
832 switch (cmd) {
833 case VNDIOCSET:
834 case VNDIOCCLR:
835 case DIOCSDINFO:
836 case DIOCWDINFO:
837 #ifdef __HAVE_OLD_DISKLABEL
838 case ODIOCSDINFO:
839 case ODIOCWDINFO:
840 #endif
841 case DIOCKLABEL:
842 case DIOCWLABEL:
843 if ((flag & FWRITE) == 0)
844 return (EBADF);
845 }
846
847 /* Must be initialized for these... */
848 switch (cmd) {
849 case VNDIOCCLR:
850 case DIOCGDINFO:
851 case DIOCSDINFO:
852 case DIOCWDINFO:
853 case DIOCGPART:
854 case DIOCKLABEL:
855 case DIOCWLABEL:
856 case DIOCGDEFLABEL:
857 #ifdef __HAVE_OLD_DISKLABEL
858 case ODIOCGDINFO:
859 case ODIOCSDINFO:
860 case ODIOCWDINFO:
861 case ODIOCGDEFLABEL:
862 #endif
863 if ((vnd->sc_flags & VNF_INITED) == 0)
864 return (ENXIO);
865 }
866
867 switch (cmd) {
868 case VNDIOCSET:
869 if (vnd->sc_flags & VNF_INITED)
870 return (EBUSY);
871
872 if ((error = vndlock(vnd)) != 0)
873 return (error);
874
875 fflags = FREAD;
876 if ((vio->vnd_flags & VNDIOF_READONLY) == 0)
877 fflags |= FWRITE;
878 NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, vio->vnd_file, p);
879 if ((error = vn_open(&nd, fflags, 0)) != 0)
880 goto unlock_and_exit;
881 error = VOP_GETATTR(nd.ni_vp, &vattr, p->p_ucred, p);
882 if (!error && nd.ni_vp->v_type != VREG)
883 error = EOPNOTSUPP;
884 if (error) {
885 VOP_UNLOCK(nd.ni_vp, 0);
886 goto close_and_exit;
887 }
888
889 /* If using a compressed file, initialize its info */
890 /* (or abort with an error if kernel has no compression) */
891 if (vio->vnd_flags & VNF_COMP) {
892 #ifdef VND_COMPRESSION
893 struct vnd_comp_header *ch;
894 int i;
895 u_int32_t comp_size;
896 u_int32_t comp_maxsize;
897
898 /* allocate space for compresed file header */
899 ch = malloc(sizeof(struct vnd_comp_header),
900 M_TEMP, M_WAITOK);
901
902 /* read compressed file header */
903 error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)ch,
904 sizeof(struct vnd_comp_header), 0, UIO_SYSSPACE,
905 IO_UNIT|IO_NODELOCKED, p->p_ucred, NULL, NULL);
906 if(error) {
907 free(ch, M_TEMP);
908 VOP_UNLOCK(nd.ni_vp, 0);
909 goto close_and_exit;
910 }
911
912 /* save some header info */
913 vnd->sc_comp_blksz = ntohl(ch->block_size);
914 /* note last offset is the file byte size */
915 vnd->sc_comp_numoffs = ntohl(ch->num_blocks)+1;
916 free(ch, M_TEMP);
917 if(vnd->sc_comp_blksz % DEV_BSIZE !=0) {
918 VOP_UNLOCK(nd.ni_vp, 0);
919 error = EINVAL;
920 goto close_and_exit;
921 }
922 if(sizeof(struct vnd_comp_header) +
923 sizeof(u_int64_t) * vnd->sc_comp_numoffs >
924 vattr.va_size) {
925 VOP_UNLOCK(nd.ni_vp, 0);
926 error = EINVAL;
927 goto close_and_exit;
928 }
929
930 /* set decompressed file size */
931 vattr.va_size =
932 (vnd->sc_comp_numoffs - 1) * vnd->sc_comp_blksz;
933
934 /* allocate space for all the compressed offsets */
935 vnd->sc_comp_offsets =
936 malloc(sizeof(u_int64_t) * vnd->sc_comp_numoffs,
937 M_DEVBUF, M_WAITOK);
938
939 /* read in the offsets */
940 error = vn_rdwr(UIO_READ, nd.ni_vp,
941 (caddr_t)vnd->sc_comp_offsets,
942 sizeof(u_int64_t) * vnd->sc_comp_numoffs,
943 sizeof(struct vnd_comp_header), UIO_SYSSPACE,
944 IO_UNIT|IO_NODELOCKED, p->p_ucred, NULL, NULL);
945 if(error) {
946 VOP_UNLOCK(nd.ni_vp, 0);
947 goto close_and_exit;
948 }
949 /*
950 * find largest block size (used for allocation limit).
951 * Also convert offset to native byte order.
952 */
953 comp_maxsize = 0;
954 for (i = 0; i < vnd->sc_comp_numoffs - 1; i++) {
955 vnd->sc_comp_offsets[i] =
956 be64toh(vnd->sc_comp_offsets[i]);
957 comp_size = be64toh(vnd->sc_comp_offsets[i + 1])
958 - vnd->sc_comp_offsets[i];
959 if (comp_size > comp_maxsize)
960 comp_maxsize = comp_size;
961 }
962 vnd->sc_comp_offsets[vnd->sc_comp_numoffs - 1] =
963 be64toh(vnd->sc_comp_offsets[vnd->sc_comp_numoffs - 1]);
964
965 /* create compressed data buffer */
966 vnd->sc_comp_buff = malloc(comp_maxsize,
967 M_DEVBUF, M_WAITOK);
968
969 /* create decompressed buffer */
970 vnd->sc_comp_decombuf = malloc(vnd->sc_comp_blksz,
971 M_DEVBUF, M_WAITOK);
972 vnd->sc_comp_buffblk = -1;
973
974 /* Initialize decompress stream */
975 bzero(&vnd->sc_comp_stream, sizeof(z_stream));
976 vnd->sc_comp_stream.zalloc = vnd_alloc;
977 vnd->sc_comp_stream.zfree = vnd_free;
978 error = inflateInit2(&vnd->sc_comp_stream, MAX_WBITS);
979 if(error) {
980 if(vnd->sc_comp_stream.msg)
981 printf("vnd%d: compressed file, %s\n",
982 unit, vnd->sc_comp_stream.msg);
983 VOP_UNLOCK(nd.ni_vp, 0);
984 error = EINVAL;
985 goto close_and_exit;
986 }
987
988 vnd->sc_flags |= VNF_COMP | VNF_READONLY;
989 #else /* !VND_COMPRESSION */
990 VOP_UNLOCK(nd.ni_vp, 0);
991 error = EOPNOTSUPP;
992 goto close_and_exit;
993 #endif /* VND_COMPRESSION */
994 }
995
996 VOP_UNLOCK(nd.ni_vp, 0);
997 vnd->sc_vp = nd.ni_vp;
998 vnd->sc_size = btodb(vattr.va_size); /* note truncation */
999
1000 /*
1001 * Use pseudo-geometry specified. If none was provided,
1002 * use "standard" Adaptec fictitious geometry.
1003 */
1004 if (vio->vnd_flags & VNDIOF_HASGEOM) {
1005
1006 memcpy(&vnd->sc_geom, &vio->vnd_geom,
1007 sizeof(vio->vnd_geom));
1008
1009 /*
1010 * Sanity-check the sector size.
1011 * XXX Don't allow secsize < DEV_BSIZE. Should
1012 * XXX we?
1013 */
1014 if (vnd->sc_geom.vng_secsize < DEV_BSIZE ||
1015 (vnd->sc_geom.vng_secsize % DEV_BSIZE) != 0 ||
1016 vnd->sc_geom.vng_ncylinders == 0 ||
1017 (vnd->sc_geom.vng_ntracks *
1018 vnd->sc_geom.vng_nsectors) == 0) {
1019 error = EINVAL;
1020 goto close_and_exit;
1021 }
1022
1023 /*
1024 * Compute the size (in DEV_BSIZE blocks) specified
1025 * by the geometry.
1026 */
1027 geomsize = (vnd->sc_geom.vng_nsectors *
1028 vnd->sc_geom.vng_ntracks *
1029 vnd->sc_geom.vng_ncylinders) *
1030 (vnd->sc_geom.vng_secsize / DEV_BSIZE);
1031
1032 /*
1033 * Sanity-check the size against the specified
1034 * geometry.
1035 */
1036 if (vnd->sc_size < geomsize) {
1037 error = EINVAL;
1038 goto close_and_exit;
1039 }
1040 } else if (vnd->sc_size >= (32 * 64)) {
1041 /*
1042 * Size must be at least 2048 DEV_BSIZE blocks
1043 * (1M) in order to use this geometry.
1044 */
1045 vnd->sc_geom.vng_secsize = DEV_BSIZE;
1046 vnd->sc_geom.vng_nsectors = 32;
1047 vnd->sc_geom.vng_ntracks = 64;
1048 vnd->sc_geom.vng_ncylinders = vnd->sc_size / (64 * 32);
1049 } else {
1050 vnd->sc_geom.vng_secsize = DEV_BSIZE;
1051 vnd->sc_geom.vng_nsectors = 1;
1052 vnd->sc_geom.vng_ntracks = 1;
1053 vnd->sc_geom.vng_ncylinders = vnd->sc_size;
1054 }
1055
1056 if (vio->vnd_flags & VNDIOF_READONLY) {
1057 vnd->sc_flags |= VNF_READONLY;
1058 }
1059
1060 if ((error = vndsetcred(vnd, p->p_ucred)) != 0)
1061 goto close_and_exit;
1062
1063 memset(vnd->sc_xname, 0, sizeof(vnd->sc_xname)); /* XXX */
1064 snprintf(vnd->sc_xname, sizeof(vnd->sc_xname), "vnd%d", unit);
1065
1066
1067 vndthrottle(vnd, vnd->sc_vp);
1068 vio->vnd_size = dbtob(vnd->sc_size);
1069 vnd->sc_flags |= VNF_INITED;
1070
1071 /* create the kernel thread, wait for it to be up */
1072 error = kthread_create1(vndthread, vnd, &vnd->sc_kthread,
1073 vnd->sc_xname);
1074 if (error)
1075 goto close_and_exit;
1076 while ((vnd->sc_flags & VNF_KTHREAD) == 0) {
1077 tsleep(&vnd->sc_kthread, PRIBIO, "vndthr", 0);
1078 }
1079 #ifdef DEBUG
1080 if (vnddebug & VDB_INIT)
1081 printf("vndioctl: SET vp %p size 0x%lx %d/%d/%d/%d\n",
1082 vnd->sc_vp, (unsigned long) vnd->sc_size,
1083 vnd->sc_geom.vng_secsize,
1084 vnd->sc_geom.vng_nsectors,
1085 vnd->sc_geom.vng_ntracks,
1086 vnd->sc_geom.vng_ncylinders);
1087 #endif
1088
1089 /* Attach the disk. */
1090 vnd->sc_dkdev.dk_name = vnd->sc_xname;
1091 disk_attach(&vnd->sc_dkdev);
1092
1093 /* Initialize the xfer and buffer pools. */
1094 pool_init(&vnd->sc_vxpool, sizeof(struct vndxfer), 0,
1095 0, 0, "vndxpl", NULL);
1096 pool_init(&vnd->sc_vbpool, sizeof(struct vndbuf), 0,
1097 0, 0, "vndbpl", NULL);
1098
1099 /* Try and read the disklabel. */
1100 vndgetdisklabel(dev);
1101
1102 vndunlock(vnd);
1103
1104 break;
1105
1106 close_and_exit:
1107 (void) vn_close(nd.ni_vp, fflags, p->p_ucred, p);
1108 unlock_and_exit:
1109 #ifdef VND_COMPRESSION
1110 /* free any allocated memory (for compressed file) */
1111 if(vnd->sc_comp_offsets) {
1112 free(vnd->sc_comp_offsets, M_DEVBUF);
1113 vnd->sc_comp_offsets = NULL;
1114 }
1115 if(vnd->sc_comp_buff) {
1116 free(vnd->sc_comp_buff, M_DEVBUF);
1117 vnd->sc_comp_buff = NULL;
1118 }
1119 if(vnd->sc_comp_decombuf) {
1120 free(vnd->sc_comp_decombuf, M_DEVBUF);
1121 vnd->sc_comp_decombuf = NULL;
1122 }
1123 #endif /* VND_COMPRESSION */
1124 vndunlock(vnd);
1125 return (error);
1126
1127 case VNDIOCCLR:
1128 if ((error = vndlock(vnd)) != 0)
1129 return (error);
1130
1131 /*
1132 * Don't unconfigure if any other partitions are open
1133 * or if both the character and block flavors of this
1134 * partition are open.
1135 */
1136 part = DISKPART(dev);
1137 pmask = (1 << part);
1138 if (((vnd->sc_dkdev.dk_openmask & ~pmask) ||
1139 ((vnd->sc_dkdev.dk_bopenmask & pmask) &&
1140 (vnd->sc_dkdev.dk_copenmask & pmask))) &&
1141 !(vio->vnd_flags & VNDIOF_FORCE)) {
1142 vndunlock(vnd);
1143 return (EBUSY);
1144 }
1145
1146 /*
1147 * XXX vndclear() might call vndclose() implicitely;
1148 * release lock to avoid recursion
1149 */
1150 vndunlock(vnd);
1151 vndclear(vnd, minor(dev));
1152 #ifdef DEBUG
1153 if (vnddebug & VDB_INIT)
1154 printf("vndioctl: CLRed\n");
1155 #endif
1156
1157 /* Destroy the xfer and buffer pools. */
1158 pool_destroy(&vnd->sc_vxpool);
1159 pool_destroy(&vnd->sc_vbpool);
1160
1161 /* Detatch the disk. */
1162 disk_detach(&vnd->sc_dkdev);
1163
1164 break;
1165
1166 case VNDIOCGET: {
1167 struct vnd_user *vnu;
1168 struct vattr va;
1169
1170 vnu = (struct vnd_user *)data;
1171
1172 if (vnu->vnu_unit == -1)
1173 vnu->vnu_unit = unit;
1174 if (vnu->vnu_unit >= numvnd)
1175 return (ENXIO);
1176 if (vnu->vnu_unit < 0)
1177 return (EINVAL);
1178
1179 vnd = &vnd_softc[vnu->vnu_unit];
1180
1181 if (vnd->sc_flags & VNF_INITED) {
1182 error = VOP_GETATTR(vnd->sc_vp, &va, p->p_ucred, p);
1183 if (error)
1184 return (error);
1185 vnu->vnu_dev = va.va_fsid;
1186 vnu->vnu_ino = va.va_fileid;
1187 }
1188 else {
1189 /* unused is not an error */
1190 vnu->vnu_dev = 0;
1191 vnu->vnu_ino = 0;
1192 }
1193
1194 break;
1195 }
1196
1197 case DIOCGDINFO:
1198 *(struct disklabel *)data = *(vnd->sc_dkdev.dk_label);
1199 break;
1200
1201 #ifdef __HAVE_OLD_DISKLABEL
1202 case ODIOCGDINFO:
1203 newlabel = *(vnd->sc_dkdev.dk_label);
1204 if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1205 return ENOTTY;
1206 memcpy(data, &newlabel, sizeof (struct olddisklabel));
1207 break;
1208 #endif
1209
1210 case DIOCGPART:
1211 ((struct partinfo *)data)->disklab = vnd->sc_dkdev.dk_label;
1212 ((struct partinfo *)data)->part =
1213 &vnd->sc_dkdev.dk_label->d_partitions[DISKPART(dev)];
1214 break;
1215
1216 case DIOCWDINFO:
1217 case DIOCSDINFO:
1218 #ifdef __HAVE_OLD_DISKLABEL
1219 case ODIOCWDINFO:
1220 case ODIOCSDINFO:
1221 #endif
1222 {
1223 struct disklabel *lp;
1224
1225 if ((error = vndlock(vnd)) != 0)
1226 return (error);
1227
1228 vnd->sc_flags |= VNF_LABELLING;
1229
1230 #ifdef __HAVE_OLD_DISKLABEL
1231 if (cmd == ODIOCSDINFO || cmd == ODIOCWDINFO) {
1232 memset(&newlabel, 0, sizeof newlabel);
1233 memcpy(&newlabel, data, sizeof (struct olddisklabel));
1234 lp = &newlabel;
1235 } else
1236 #endif
1237 lp = (struct disklabel *)data;
1238
1239 error = setdisklabel(vnd->sc_dkdev.dk_label,
1240 lp, 0, vnd->sc_dkdev.dk_cpulabel);
1241 if (error == 0) {
1242 if (cmd == DIOCWDINFO
1243 #ifdef __HAVE_OLD_DISKLABEL
1244 || cmd == ODIOCWDINFO
1245 #endif
1246 )
1247 error = writedisklabel(VNDLABELDEV(dev),
1248 vndstrategy, vnd->sc_dkdev.dk_label,
1249 vnd->sc_dkdev.dk_cpulabel);
1250 }
1251
1252 vnd->sc_flags &= ~VNF_LABELLING;
1253
1254 vndunlock(vnd);
1255
1256 if (error)
1257 return (error);
1258 break;
1259 }
1260
1261 case DIOCKLABEL:
1262 if (*(int *)data != 0)
1263 vnd->sc_flags |= VNF_KLABEL;
1264 else
1265 vnd->sc_flags &= ~VNF_KLABEL;
1266 break;
1267
1268 case DIOCWLABEL:
1269 if (*(int *)data != 0)
1270 vnd->sc_flags |= VNF_WLABEL;
1271 else
1272 vnd->sc_flags &= ~VNF_WLABEL;
1273 break;
1274
1275 case DIOCGDEFLABEL:
1276 vndgetdefaultlabel(vnd, (struct disklabel *)data);
1277 break;
1278
1279 #ifdef __HAVE_OLD_DISKLABEL
1280 case ODIOCGDEFLABEL:
1281 vndgetdefaultlabel(vnd, &newlabel);
1282 if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1283 return ENOTTY;
1284 memcpy(data, &newlabel, sizeof (struct olddisklabel));
1285 break;
1286 #endif
1287
1288 default:
1289 return (ENOTTY);
1290 }
1291
1292 return (0);
1293 }
1294
1295 /*
1296 * Duplicate the current processes' credentials. Since we are called only
1297 * as the result of a SET ioctl and only root can do that, any future access
1298 * to this "disk" is essentially as root. Note that credentials may change
1299 * if some other uid can write directly to the mapped file (NFS).
1300 */
1301 static int
1302 vndsetcred(struct vnd_softc *vnd, struct ucred *cred)
1303 {
1304 struct uio auio;
1305 struct iovec aiov;
1306 char *tmpbuf;
1307 int error;
1308
1309 vnd->sc_cred = crdup(cred);
1310 tmpbuf = malloc(DEV_BSIZE, M_TEMP, M_WAITOK);
1311
1312 /* XXX: Horrible kludge to establish credentials for NFS */
1313 aiov.iov_base = tmpbuf;
1314 aiov.iov_len = min(DEV_BSIZE, dbtob(vnd->sc_size));
1315 auio.uio_iov = &aiov;
1316 auio.uio_iovcnt = 1;
1317 auio.uio_offset = 0;
1318 auio.uio_rw = UIO_READ;
1319 auio.uio_segflg = UIO_SYSSPACE;
1320 auio.uio_resid = aiov.iov_len;
1321 vn_lock(vnd->sc_vp, LK_EXCLUSIVE | LK_RETRY);
1322 error = VOP_READ(vnd->sc_vp, &auio, 0, vnd->sc_cred);
1323 if (error == 0) {
1324 /*
1325 * Because vnd does all IO directly through the vnode
1326 * we need to flush (at least) the buffer from the above
1327 * VOP_READ from the buffer cache to prevent cache
1328 * incoherencies. Also, be careful to write dirty
1329 * buffers back to stable storage.
1330 */
1331 error = vinvalbuf(vnd->sc_vp, V_SAVE, vnd->sc_cred,
1332 curproc, 0, 0);
1333 }
1334 VOP_UNLOCK(vnd->sc_vp, 0);
1335
1336 free(tmpbuf, M_TEMP);
1337 return (error);
1338 }
1339
1340 /*
1341 * Set maxactive based on FS type
1342 */
1343 static void
1344 vndthrottle(struct vnd_softc *vnd, struct vnode *vp)
1345 {
1346 #ifdef NFS
1347 extern int (**nfsv2_vnodeop_p)(void *);
1348
1349 if (vp->v_op == nfsv2_vnodeop_p)
1350 vnd->sc_maxactive = 2;
1351 else
1352 #endif
1353 vnd->sc_maxactive = 8;
1354
1355 if (vnd->sc_maxactive < 1)
1356 vnd->sc_maxactive = 1;
1357 }
1358
1359 #if 0
1360 static void
1361 vndshutdown(void)
1362 {
1363 struct vnd_softc *vnd;
1364
1365 for (vnd = &vnd_softc[0]; vnd < &vnd_softc[numvnd]; vnd++)
1366 if (vnd->sc_flags & VNF_INITED)
1367 vndclear(vnd);
1368 }
1369 #endif
1370
1371 static void
1372 vndclear(struct vnd_softc *vnd, int myminor)
1373 {
1374 struct vnode *vp = vnd->sc_vp;
1375 struct proc *p = curproc; /* XXX */
1376 int fflags = FREAD;
1377 int bmaj, cmaj, i, mn;
1378 int s;
1379
1380 #ifdef DEBUG
1381 if (vnddebug & VDB_FOLLOW)
1382 printf("vndclear(%p): vp %p\n", vnd, vp);
1383 #endif
1384 /* locate the major number */
1385 bmaj = bdevsw_lookup_major(&vnd_bdevsw);
1386 cmaj = cdevsw_lookup_major(&vnd_cdevsw);
1387
1388 /* Nuke the vnodes for any open instances */
1389 for (i = 0; i < MAXPARTITIONS; i++) {
1390 mn = DISKMINOR(vnd->sc_unit, i);
1391 vdevgone(bmaj, mn, mn, VBLK);
1392 if (mn != myminor) /* XXX avoid to kill own vnode */
1393 vdevgone(cmaj, mn, mn, VCHR);
1394 }
1395
1396 if ((vnd->sc_flags & VNF_READONLY) == 0)
1397 fflags |= FWRITE;
1398
1399 s = splbio();
1400 bufq_drain(&vnd->sc_tab);
1401 splx(s);
1402
1403 vnd->sc_flags |= VNF_VUNCONF;
1404 wakeup(&vnd->sc_tab);
1405 while (vnd->sc_flags & VNF_KTHREAD)
1406 tsleep(&vnd->sc_kthread, PRIBIO, "vnthr", 0);
1407
1408 #ifdef VND_COMPRESSION
1409 /* free the compressed file buffers */
1410 if(vnd->sc_flags & VNF_COMP) {
1411 if(vnd->sc_comp_offsets) {
1412 free(vnd->sc_comp_offsets, M_DEVBUF);
1413 vnd->sc_comp_offsets = NULL;
1414 }
1415 if(vnd->sc_comp_buff) {
1416 free(vnd->sc_comp_buff, M_DEVBUF);
1417 vnd->sc_comp_buff = NULL;
1418 }
1419 if(vnd->sc_comp_decombuf) {
1420 free(vnd->sc_comp_decombuf, M_DEVBUF);
1421 vnd->sc_comp_decombuf = NULL;
1422 }
1423 }
1424 #endif /* VND_COMPRESSION */
1425 vnd->sc_flags &=
1426 ~(VNF_INITED | VNF_READONLY | VNF_VLABEL
1427 | VNF_VUNCONF | VNF_COMP);
1428 if (vp == (struct vnode *)0)
1429 panic("vndclear: null vp");
1430 (void) vn_close(vp, fflags, vnd->sc_cred, p);
1431 crfree(vnd->sc_cred);
1432 vnd->sc_vp = (struct vnode *)0;
1433 vnd->sc_cred = (struct ucred *)0;
1434 vnd->sc_size = 0;
1435 }
1436
1437 static int
1438 vndsize(dev_t dev)
1439 {
1440 struct vnd_softc *sc;
1441 struct disklabel *lp;
1442 int part, unit, omask;
1443 int size;
1444
1445 unit = vndunit(dev);
1446 if (unit >= numvnd)
1447 return (-1);
1448 sc = &vnd_softc[unit];
1449
1450 if ((sc->sc_flags & VNF_INITED) == 0)
1451 return (-1);
1452
1453 part = DISKPART(dev);
1454 omask = sc->sc_dkdev.dk_openmask & (1 << part);
1455 lp = sc->sc_dkdev.dk_label;
1456
1457 if (omask == 0 && vndopen(dev, 0, S_IFBLK, curproc))
1458 return (-1);
1459
1460 if (lp->d_partitions[part].p_fstype != FS_SWAP)
1461 size = -1;
1462 else
1463 size = lp->d_partitions[part].p_size *
1464 (lp->d_secsize / DEV_BSIZE);
1465
1466 if (omask == 0 && vndclose(dev, 0, S_IFBLK, curproc))
1467 return (-1);
1468
1469 return (size);
1470 }
1471
1472 static int
1473 vnddump(dev_t dev, daddr_t blkno, caddr_t va, size_t size)
1474 {
1475
1476 /* Not implemented. */
1477 return ENXIO;
1478 }
1479
1480 static void
1481 vndgetdefaultlabel(struct vnd_softc *sc, struct disklabel *lp)
1482 {
1483 struct vndgeom *vng = &sc->sc_geom;
1484 struct partition *pp;
1485
1486 memset(lp, 0, sizeof(*lp));
1487
1488 lp->d_secperunit = sc->sc_size / (vng->vng_secsize / DEV_BSIZE);
1489 lp->d_secsize = vng->vng_secsize;
1490 lp->d_nsectors = vng->vng_nsectors;
1491 lp->d_ntracks = vng->vng_ntracks;
1492 lp->d_ncylinders = vng->vng_ncylinders;
1493 lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1494
1495 strncpy(lp->d_typename, "vnd", sizeof(lp->d_typename));
1496 lp->d_type = DTYPE_VND;
1497 strncpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
1498 lp->d_rpm = 3600;
1499 lp->d_interleave = 1;
1500 lp->d_flags = 0;
1501
1502 pp = &lp->d_partitions[RAW_PART];
1503 pp->p_offset = 0;
1504 pp->p_size = lp->d_secperunit;
1505 pp->p_fstype = FS_UNUSED;
1506 lp->d_npartitions = RAW_PART + 1;
1507
1508 lp->d_magic = DISKMAGIC;
1509 lp->d_magic2 = DISKMAGIC;
1510 lp->d_checksum = dkcksum(lp);
1511 }
1512
1513 /*
1514 * Read the disklabel from a vnd. If one is not present, create a fake one.
1515 */
1516 static void
1517 vndgetdisklabel(dev_t dev)
1518 {
1519 struct vnd_softc *sc = &vnd_softc[vndunit(dev)];
1520 const char *errstring;
1521 struct disklabel *lp = sc->sc_dkdev.dk_label;
1522 struct cpu_disklabel *clp = sc->sc_dkdev.dk_cpulabel;
1523 int i;
1524
1525 memset(clp, 0, sizeof(*clp));
1526
1527 vndgetdefaultlabel(sc, lp);
1528
1529 /*
1530 * Call the generic disklabel extraction routine.
1531 */
1532 errstring = readdisklabel(VNDLABELDEV(dev), vndstrategy, lp, clp);
1533 if (errstring) {
1534 /*
1535 * Lack of disklabel is common, but we print the warning
1536 * anyway, since it might contain other useful information.
1537 */
1538 printf("%s: %s\n", sc->sc_xname, errstring);
1539
1540 /*
1541 * For historical reasons, if there's no disklabel
1542 * present, all partitions must be FS_BSDFFS and
1543 * occupy the entire disk.
1544 */
1545 for (i = 0; i < MAXPARTITIONS; i++) {
1546 /*
1547 * Don't wipe out port specific hack (such as
1548 * dos partition hack of i386 port).
1549 */
1550 if (lp->d_partitions[i].p_size != 0)
1551 continue;
1552
1553 lp->d_partitions[i].p_size = lp->d_secperunit;
1554 lp->d_partitions[i].p_offset = 0;
1555 lp->d_partitions[i].p_fstype = FS_BSDFFS;
1556 }
1557
1558 strncpy(lp->d_packname, "default label",
1559 sizeof(lp->d_packname));
1560
1561 lp->d_npartitions = MAXPARTITIONS;
1562 lp->d_checksum = dkcksum(lp);
1563 }
1564
1565 /* In-core label now valid. */
1566 sc->sc_flags |= VNF_VLABEL;
1567 }
1568
1569 /*
1570 * Wait interruptibly for an exclusive lock.
1571 *
1572 * XXX
1573 * Several drivers do this; it should be abstracted and made MP-safe.
1574 */
1575 static int
1576 vndlock(struct vnd_softc *sc)
1577 {
1578 int error;
1579
1580 while ((sc->sc_flags & VNF_LOCKED) != 0) {
1581 sc->sc_flags |= VNF_WANTED;
1582 if ((error = tsleep(sc, PRIBIO | PCATCH, "vndlck", 0)) != 0)
1583 return (error);
1584 }
1585 sc->sc_flags |= VNF_LOCKED;
1586 return (0);
1587 }
1588
1589 /*
1590 * Unlock and wake up any waiters.
1591 */
1592 static void
1593 vndunlock(struct vnd_softc *sc)
1594 {
1595
1596 sc->sc_flags &= ~VNF_LOCKED;
1597 if ((sc->sc_flags & VNF_WANTED) != 0) {
1598 sc->sc_flags &= ~VNF_WANTED;
1599 wakeup(sc);
1600 }
1601 }
1602
1603 #ifdef VND_COMPRESSION
1604 /* compressed file read */
1605 static void
1606 compstrategy(struct buf *bp, off_t bn)
1607 {
1608 int error;
1609 int unit = vndunit(bp->b_dev);
1610 struct vnd_softc *vnd = &vnd_softc[unit];
1611 u_int32_t comp_block;
1612 struct uio auio;
1613 caddr_t addr;
1614 int s;
1615
1616 /* set up constants for data move */
1617 auio.uio_rw = UIO_READ;
1618 auio.uio_segflg = bp->b_flags & B_PHYS ? UIO_USERSPACE : UIO_SYSSPACE;
1619 auio.uio_procp = bp->b_proc;
1620
1621 /* read, and transfer the data */
1622 addr = bp->b_data;
1623 s = splbio();
1624 while (bp->b_resid > 0) {
1625 unsigned length;
1626 size_t length_in_buffer;
1627 u_int32_t offset_in_buffer;
1628 struct iovec aiov;
1629
1630 /* calculate the compressed block number */
1631 comp_block = bn / (off_t)vnd->sc_comp_blksz;
1632
1633 /* check for good block number */
1634 if (comp_block >= vnd->sc_comp_numoffs) {
1635 bp->b_error = EINVAL;
1636 bp->b_flags |= B_ERROR;
1637 splx(s);
1638 return;
1639 }
1640
1641 /* read in the compressed block, if not in buffer */
1642 if (comp_block != vnd->sc_comp_buffblk) {
1643 length = vnd->sc_comp_offsets[comp_block + 1] -
1644 vnd->sc_comp_offsets[comp_block];
1645 vn_lock(vnd->sc_vp, LK_EXCLUSIVE | LK_RETRY);
1646 error = vn_rdwr(UIO_READ, vnd->sc_vp, vnd->sc_comp_buff,
1647 length, vnd->sc_comp_offsets[comp_block],
1648 UIO_SYSSPACE, IO_UNIT, vnd->sc_cred, NULL, NULL);
1649 if (error) {
1650 bp->b_error = error;
1651 bp->b_flags |= B_ERROR;
1652 VOP_UNLOCK(vnd->sc_vp, 0);
1653 splx(s);
1654 return;
1655 }
1656 /* uncompress the buffer */
1657 vnd->sc_comp_stream.next_in = vnd->sc_comp_buff;
1658 vnd->sc_comp_stream.avail_in = length;
1659 vnd->sc_comp_stream.next_out = vnd->sc_comp_decombuf;
1660 vnd->sc_comp_stream.avail_out = vnd->sc_comp_blksz;
1661 inflateReset(&vnd->sc_comp_stream);
1662 error = inflate(&vnd->sc_comp_stream, Z_FINISH);
1663 if (error != Z_STREAM_END) {
1664 if (vnd->sc_comp_stream.msg)
1665 printf("%s: compressed file, %s\n",
1666 vnd->sc_xname,
1667 vnd->sc_comp_stream.msg);
1668 bp->b_error = EBADMSG;
1669 bp->b_flags |= B_ERROR;
1670 VOP_UNLOCK(vnd->sc_vp, 0);
1671 splx(s);
1672 return;
1673 }
1674 vnd->sc_comp_buffblk = comp_block;
1675 VOP_UNLOCK(vnd->sc_vp, 0);
1676 }
1677
1678 /* transfer the usable uncompressed data */
1679 offset_in_buffer = bn % (off_t)vnd->sc_comp_blksz;
1680 length_in_buffer = vnd->sc_comp_blksz - offset_in_buffer;
1681 if (length_in_buffer > bp->b_resid)
1682 length_in_buffer = bp->b_resid;
1683 auio.uio_iov = &aiov;
1684 auio.uio_iovcnt = 1;
1685 aiov.iov_base = addr;
1686 aiov.iov_len = length_in_buffer;
1687 auio.uio_resid = aiov.iov_len;
1688 auio.uio_offset = 0;
1689 error = uiomove(vnd->sc_comp_decombuf + offset_in_buffer,
1690 length_in_buffer, &auio);
1691 if (error) {
1692 bp->b_error = error;
1693 bp->b_flags |= B_ERROR;
1694 splx(s);
1695 return;
1696 }
1697
1698 bn += length_in_buffer;
1699 addr += length_in_buffer;
1700 bp->b_resid -= length_in_buffer;
1701 }
1702 splx(s);
1703 }
1704
1705 /* compression memory allocation routines */
1706 static void *
1707 vnd_alloc(void *aux, u_int items, u_int siz)
1708 {
1709 return malloc(items * siz, M_TEMP, M_NOWAIT);
1710 }
1711
1712 static void
1713 vnd_free(void *aux, void *ptr)
1714 {
1715 free(ptr, M_TEMP);
1716 }
1717 #endif /* VND_COMPRESSION */
1718