Major BUF/BIO work commit. Make I/O BIO-centric and specify the disk or
[dragonfly.git] / sys / vfs / specfs / spec_vnops.c
1 /*
2  * Copyright (c) 1989, 1993, 1995
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  *      @(#)spec_vnops.c        8.14 (Berkeley) 5/21/95
34  * $FreeBSD: src/sys/miscfs/specfs/spec_vnops.c,v 1.131.2.4 2001/02/26 04:23:20 jlemon Exp $
35  * $DragonFly: src/sys/vfs/specfs/spec_vnops.c,v 1.31 2006/03/24 18:35:34 dillon Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/proc.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/conf.h>
43 #include <sys/buf.h>
44 #include <sys/device.h>
45 #include <sys/mount.h>
46 #include <sys/vnode.h>
47 #include <sys/stat.h>
48 #include <sys/fcntl.h>
49 #include <sys/vmmeter.h>
50 #include <sys/tty.h>
51
52 #include <vm/vm.h>
53 #include <vm/vm_object.h>
54 #include <vm/vm_page.h>
55 #include <vm/vm_pager.h>
56
57 #include <sys/buf2.h>
58
59 #include <sys/thread2.h>
60
61 static int      spec_advlock (struct vop_advlock_args *);  
62 static int      spec_bmap (struct vop_bmap_args *);
63 static int      spec_close (struct vop_close_args *);
64 static int      spec_freeblks (struct vop_freeblks_args *);
65 static int      spec_fsync (struct  vop_fsync_args *);
66 static int      spec_getpages (struct vop_getpages_args *);
67 static int      spec_inactive (struct  vop_inactive_args *);
68 static int      spec_ioctl (struct vop_ioctl_args *);
69 static int      spec_open (struct vop_open_args *);
70 static int      spec_poll (struct vop_poll_args *);
71 static int      spec_kqfilter (struct vop_kqfilter_args *);
72 static int      spec_print (struct vop_print_args *);
73 static int      spec_read (struct vop_read_args *);  
74 static int      spec_strategy (struct vop_strategy_args *);
75 static int      spec_write (struct vop_write_args *);
76
77 struct vop_ops *spec_vnode_vops;
78 struct vnodeopv_entry_desc spec_vnodeop_entries[] = {
79         { &vop_default_desc,            vop_defaultop },
80         { &vop_access_desc,             vop_ebadf },
81         { &vop_advlock_desc,            (vnodeopv_entry_t) spec_advlock },
82         { &vop_bmap_desc,               (vnodeopv_entry_t) spec_bmap },
83         { &vop_close_desc,              (vnodeopv_entry_t) spec_close },
84         { &vop_old_create_desc,         vop_panic },
85         { &vop_freeblks_desc,           (vnodeopv_entry_t) spec_freeblks },
86         { &vop_fsync_desc,              (vnodeopv_entry_t) spec_fsync },
87         { &vop_getpages_desc,           (vnodeopv_entry_t) spec_getpages },
88         { &vop_inactive_desc,           (vnodeopv_entry_t) spec_inactive },
89         { &vop_ioctl_desc,              (vnodeopv_entry_t) spec_ioctl },
90         { &vop_lease_desc,              vop_null },
91         { &vop_old_link_desc,           vop_panic },
92         { &vop_old_mkdir_desc,          vop_panic },
93         { &vop_old_mknod_desc,          vop_panic },
94         { &vop_open_desc,               (vnodeopv_entry_t) spec_open },
95         { &vop_pathconf_desc,           (vnodeopv_entry_t) vop_stdpathconf },
96         { &vop_poll_desc,               (vnodeopv_entry_t) spec_poll },
97         { &vop_kqfilter_desc,           (vnodeopv_entry_t) spec_kqfilter },
98         { &vop_print_desc,              (vnodeopv_entry_t) spec_print },
99         { &vop_read_desc,               (vnodeopv_entry_t) spec_read },
100         { &vop_readdir_desc,            vop_panic },
101         { &vop_readlink_desc,           vop_panic },
102         { &vop_reallocblks_desc,        vop_panic },
103         { &vop_reclaim_desc,            vop_null },
104         { &vop_old_remove_desc,         vop_panic },
105         { &vop_old_rename_desc,         vop_panic },
106         { &vop_old_rmdir_desc,          vop_panic },
107         { &vop_setattr_desc,            vop_ebadf },
108         { &vop_strategy_desc,           (vnodeopv_entry_t) spec_strategy },
109         { &vop_old_symlink_desc,        vop_panic },
110         { &vop_write_desc,              (vnodeopv_entry_t) spec_write },
111         { NULL, NULL }
112 };
113 static struct vnodeopv_desc spec_vnodeop_opv_desc =
114         { &spec_vnode_vops, spec_vnodeop_entries, 0 };
115 VNODEOP_SET(spec_vnodeop_opv_desc);
116
117 extern int dev_ref_debug;
118
119 /*
120  * spec_vnoperate(struct vnodeop_desc *a_desc, ...)
121  */
122 int
123 spec_vnoperate(struct vop_generic_args *ap)
124 {
125         return (VOCALL(spec_vnode_vops, ap));
126 }
127
128 static void spec_getpages_iodone (struct bio *bio);
129
130 /*
131  * Open a special file.
132  *
133  * spec_open(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
134  *           struct thread *a_td)
135  */
136 /* ARGSUSED */
137 static int
138 spec_open(struct vop_open_args *ap)
139 {
140         struct vnode *vp = ap->a_vp;
141         dev_t dev;
142         int error;
143         int isblk = (vp->v_type == VBLK) ? 1 : 0;
144         const char *cp;
145
146         /*
147          * Don't allow open if fs is mounted -nodev.
148          */
149         if (vp->v_mount && (vp->v_mount->mnt_flag & MNT_NODEV))
150                 return (ENXIO);
151
152         /*
153          * Resolve the device.  If the vnode is already open v_rdev may
154          * already be resolved.  However, if the device changes out from
155          * under us we report it (and, for now, we allow it).  Since
156          * v_release_rdev() zero's v_opencount, we have to save and restore
157          * it when replacing the rdev reference.
158          */
159         if (vp->v_rdev != NULL) {
160                 dev = udev2dev(vp->v_udev, isblk);
161                 if (dev != vp->v_rdev) {
162                         int oc = vp->v_opencount;
163                         printf(
164                             "Warning: spec_open: dev %s was lost",
165                             vp->v_rdev->si_name);
166                         v_release_rdev(vp);
167                         error = v_associate_rdev(vp, 
168                                         udev2dev(vp->v_udev, isblk));
169                         if (error) {
170                                 printf(", reacquisition failed\n");
171                         } else {
172                                 vp->v_opencount = oc;
173                                 printf(", reacquisition successful\n");
174                         }
175                 } else {
176                         error = 0;
177                 }
178         } else {
179                 error = v_associate_rdev(vp, udev2dev(vp->v_udev, isblk));
180         }
181         if (error)
182                 return(error);
183
184         /*
185          * Prevent degenerate open/close sequences from nulling out rdev.
186          */
187         ++vp->v_opencount;
188         dev = vp->v_rdev;
189         KKASSERT(dev != NULL);
190
191         /*
192          * Make this field valid before any I/O in ->d_open.  XXX the
193          * device itself should probably be required to initialize
194          * this field in d_open.
195          */
196         if (!dev->si_iosize_max)
197                 dev->si_iosize_max = DFLTPHYS;
198
199         /*
200          * XXX: Disks get special billing here, but it is mostly wrong.
201          * XXX: diskpartitions can overlap and the real checks should
202          * XXX: take this into account, and consequently they need to
203          * XXX: live in the diskslicing code.  Some checks do.
204          */
205         if (vn_isdisk(vp, NULL) && ap->a_cred != FSCRED && 
206             (ap->a_mode & FWRITE)) {
207                 /*
208                  * Never allow opens for write if the device is mounted R/W
209                  */
210                 if (vp->v_rdev && vp->v_rdev->si_mountpoint &&
211                     !(vp->v_rdev->si_mountpoint->mnt_flag & MNT_RDONLY)) {
212                                 error = EBUSY;
213                                 goto done;
214                 }
215
216                 /*
217                  * When running in secure mode, do not allow opens
218                  * for writing if the device is mounted
219                  */
220                 if (securelevel >= 1 && vfs_mountedon(vp)) {
221                         error = EPERM;
222                         goto done;
223                 }
224
225                 /*
226                  * When running in very secure mode, do not allow
227                  * opens for writing of any devices.
228                  */
229                 if (securelevel >= 2) {
230                         error = EPERM;
231                         goto done;
232                 }
233         }
234
235         /* XXX: Special casing of ttys for deadfs.  Probably redundant */
236         if (dev_dflags(dev) & D_TTY)
237                 vp->v_flag |= VISTTY;
238
239         /*
240          * dev_dopen() is always called for each open.  dev_dclose() is
241          * only called for the last close unless D_TRACKCLOSE is set.
242          */
243         VOP_UNLOCK(vp, 0, ap->a_td);
244         error = dev_dopen(dev, ap->a_mode, S_IFCHR, ap->a_td);
245         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, ap->a_td);
246
247         if (error)
248                 goto done;
249
250         if (dev_dflags(dev) & D_TTY) {
251                 if (dev->si_tty) {
252                         struct tty *tp;
253                         tp = dev->si_tty;
254                         if (!tp->t_stop) {
255                                 printf("Warning:%s: no t_stop, using nottystop\n", devtoname(dev));
256                                 tp->t_stop = nottystop;
257                         }
258                 }
259         }
260
261         if (vn_isdisk(vp, NULL)) {
262                 if (!dev->si_bsize_phys)
263                         dev->si_bsize_phys = DEV_BSIZE;
264         }
265         if ((dev_dflags(dev) & D_DISK) == 0) {
266                 cp = devtoname(dev);
267                 if (*cp == '#') {
268                         printf("WARNING: driver %s should register devices with make_dev() (dev_t = \"%s\")\n",
269                             dev_dname(dev), cp);
270                 }
271         }
272
273         /*
274          * If we were handed a file pointer we may be able to install a
275          * shortcut which issues device read and write operations directly
276          * from the fileops rather then having to go through spec_read()
277          * and spec_write().
278          */
279         if (ap->a_fp)
280                 vn_setspecops(ap->a_fp);
281
282         if (dev_ref_debug)
283                 printf("spec_open: %s %d\n", dev->si_name, vp->v_opencount);
284 done:
285         if (error) {
286                 KKASSERT(vp->v_opencount > 0);
287                 if (--vp->v_opencount == 0)
288                         v_release_rdev(vp);
289         }
290         return (error);
291 }
292
293 /*
294  * Vnode op for read
295  *
296  * spec_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
297  *           struct ucred *a_cred)
298  */
299 /* ARGSUSED */
300 static int
301 spec_read(struct vop_read_args *ap)
302 {
303         struct vnode *vp;
304         struct thread *td;
305         struct uio *uio;
306         dev_t dev;
307         int error;
308
309         vp = ap->a_vp;
310         dev = vp->v_rdev;
311         uio = ap->a_uio;
312         td = uio->uio_td;
313
314         if (dev == NULL)                /* device was revoked */
315                 return (EBADF);
316         if (uio->uio_resid == 0)
317                 return (0);
318
319         VOP_UNLOCK(vp, 0, td);
320         error = dev_dread(dev, uio, ap->a_ioflag);
321         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
322         return (error);
323 }
324
325 /*
326  * Vnode op for write
327  *
328  * spec_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
329  *            struct ucred *a_cred)
330  */
331 /* ARGSUSED */
332 static int
333 spec_write(struct vop_write_args *ap)
334 {
335         struct vnode *vp;
336         struct thread *td;
337         struct uio *uio;
338         dev_t dev;
339         int error;
340
341         vp = ap->a_vp;
342         dev = vp->v_rdev;
343         uio = ap->a_uio;
344         td = uio->uio_td;
345
346         if (dev == NULL)                /* device was revoked */
347                 return (EBADF);
348
349         VOP_UNLOCK(vp, 0, td);
350         error = dev_dwrite(dev, uio, ap->a_ioflag);
351         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
352         return (error);
353 }
354
355 /*
356  * Device ioctl operation.
357  *
358  * spec_ioctl(struct vnode *a_vp, int a_command, caddr_t a_data,
359  *            int a_fflag, struct ucred *a_cred, struct thread *a_td)
360  */
361 /* ARGSUSED */
362 static int
363 spec_ioctl(struct vop_ioctl_args *ap)
364 {
365         dev_t dev;
366
367         if ((dev = ap->a_vp->v_rdev) == NULL)
368                 return (EBADF);         /* device was revoked */
369
370         return (dev_dioctl(dev, ap->a_command, ap->a_data,
371                     ap->a_fflag, ap->a_td));
372 }
373
374 /*
375  * spec_poll(struct vnode *a_vp, int a_events, struct ucred *a_cred,
376  *           struct thread *a_td)
377  */
378 /* ARGSUSED */
379 static int
380 spec_poll(struct vop_poll_args *ap)
381 {
382         dev_t dev;
383
384         if ((dev = ap->a_vp->v_rdev) == NULL)
385                 return (EBADF);         /* device was revoked */
386         return (dev_dpoll(dev, ap->a_events, ap->a_td));
387 }
388
389 /*
390  * spec_kqfilter(struct vnode *a_vp, struct knote *a_kn)
391  */
392 /* ARGSUSED */
393 static int
394 spec_kqfilter(struct vop_kqfilter_args *ap)
395 {
396         dev_t dev;
397
398         if ((dev = ap->a_vp->v_rdev) == NULL)
399                 return (EBADF);         /* device was revoked */
400         return (dev_dkqfilter(dev, ap->a_kn));
401 }
402
403 /*
404  * Synch buffers associated with a block device
405  *
406  * spec_fsync(struct vnode *a_vp, struct ucred *a_cred,
407  *            int a_waitfor, struct thread *a_td)
408  */
409 /* ARGSUSED */
410 static int
411 spec_fsync(struct vop_fsync_args *ap)
412 {
413         struct vnode *vp = ap->a_vp;
414         int error;
415
416         if (!vn_isdisk(vp, NULL))
417                 return (0);
418
419         /*
420          * Flush all dirty buffers associated with a block device.
421          */
422         error = vfsync(vp, ap->a_waitfor, 10000, NOOFFSET, NULL, NULL);
423         return (error);
424 }
425
426 /*
427  * spec_inactive(struct vnode *a_vp, struct thread *a_td)
428  */
429 static int
430 spec_inactive(struct vop_inactive_args *ap)
431 {
432         return (0);
433 }
434
435 /*
436  * Just call the device strategy routine
437  *
438  * spec_strategy(struct vnode *a_vp, struct bio *a_bio)
439  */
440 static int
441 spec_strategy(struct vop_strategy_args *ap)
442 {
443         struct bio *bio = ap->a_bio;
444         struct buf *bp = bio->bio_buf;
445         struct vnode *vp;
446         struct mount *mp;
447
448         if (((bp->b_flags & B_READ) == 0) &&
449                 (LIST_FIRST(&bp->b_dep)) != NULL && bioops.io_start)
450                 (*bioops.io_start)(bp);
451
452         /*
453          * Collect statistics on synchronous and asynchronous read
454          * and write counts for disks that have associated filesystems.
455          */
456         vp = ap->a_vp;
457         KKASSERT(vp->v_rdev != NULL);   /* XXX */
458         if (vn_isdisk(vp, NULL) && (mp = vp->v_rdev->si_mountpoint) != NULL) {
459                 if ((bp->b_flags & B_READ) == 0) {
460                         if (bp->b_lock.lk_lockholder == LK_KERNTHREAD)
461                                 mp->mnt_stat.f_asyncwrites++;
462                         else
463                                 mp->mnt_stat.f_syncwrites++;
464                 } else {
465                         if (bp->b_lock.lk_lockholder == LK_KERNTHREAD)
466                                 mp->mnt_stat.f_asyncreads++;
467                         else
468                                 mp->mnt_stat.f_syncreads++;
469                 }
470         }
471         dev_dstrategy_chain(vp->v_rdev, bio);
472         return (0);
473 }
474
475 /*
476  * spec_freeblks(struct vnode *a_vp, daddr_t a_addr, daddr_t a_length)
477  */
478 static int
479 spec_freeblks(struct vop_freeblks_args *ap)
480 {
481         struct buf *bp;
482
483         /*
484          * XXX: This assumes that strategy does the deed right away.
485          * XXX: this may not be TRTTD.
486          */
487         KKASSERT(ap->a_vp->v_rdev != NULL);
488         if ((dev_dflags(ap->a_vp->v_rdev) & D_CANFREE) == 0)
489                 return (0);
490         bp = geteblk(ap->a_length);
491         bp->b_flags |= B_FREEBUF;
492         bp->b_bio1.bio_offset = ap->a_offset;
493         bp->b_bcount = ap->a_length;
494         dev_dstrategy(ap->a_vp->v_rdev, &bp->b_bio1);
495         return (0);
496 }
497
498 /*
499  * Implement degenerate case where the block requested is the block
500  * returned, and assume that the entire device is contiguous in regards
501  * to the contiguous block range (runp and runb).
502  *
503  * spec_bmap(struct vnode *a_vp, off_t a_loffset, struct vnode **a_vpp,
504  *           off_t *a_doffsetp, int *a_runp, int *a_runb)
505  */
506 static int
507 spec_bmap(struct vop_bmap_args *ap)
508 {
509         struct vnode *vp = ap->a_vp;
510
511         if (ap->a_vpp != NULL)
512                 *ap->a_vpp = vp;
513         if (ap->a_doffsetp != NULL)
514                 *ap->a_doffsetp = ap->a_loffset;
515         if (ap->a_runp != NULL)
516                 *ap->a_runp = MAXBSIZE;
517         if (ap->a_runb != NULL) {
518                 if (ap->a_loffset < MAXBSIZE)
519                         *ap->a_runb = (int)ap->a_loffset;
520                 else
521                         *ap->a_runb = MAXBSIZE;
522         }
523         return (0);
524 }
525
526 /*
527  * Device close routine
528  *
529  * spec_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred,
530  *            struct thread *a_td)
531  *
532  * NOTE: the vnode may or may not be locked on call.
533  */
534 /* ARGSUSED */
535 static int
536 spec_close(struct vop_close_args *ap)
537 {
538         struct proc *p = ap->a_td->td_proc;
539         struct vnode *vp = ap->a_vp;
540         dev_t dev = vp->v_rdev;
541         int error;
542         int needrelock;
543
544         /*
545          * Hack: a tty device that is a controlling terminal
546          * has a reference from the session structure.
547          * We cannot easily tell that a character device is
548          * a controlling terminal, unless it is the closing
549          * process' controlling terminal.  In that case,
550          * if the reference count is 2 (this last descriptor
551          * plus the session), release the reference from the session.
552          *
553          * It is possible for v_opencount to be 0 or 1 in this case, 0
554          * because the tty might have been revoked.
555          */
556         if (dev)
557                 reference_dev(dev);
558         if (vcount(vp) == 2 && vp->v_opencount <= 1 && 
559             p && vp == p->p_session->s_ttyvp) {
560                 p->p_session->s_ttyvp = NULL;
561                 vrele(vp);
562         }
563
564         /*
565          * Vnodes can be opened and close multiple times.  Do not really
566          * close the device unless (1) it is being closed forcibly,
567          * (2) the device wants to track closes, or (3) this is the last
568          * vnode doing its last close on the device.
569          *
570          * XXX the VXLOCK (force close) case can leave vnodes referencing
571          * a closed device.
572          */
573         if (dev && ((vp->v_flag & VRECLAIMED) ||
574             (dev_dflags(dev) & D_TRACKCLOSE) ||
575             (vcount(vp) <= 1 && vp->v_opencount == 1))) {
576                 needrelock = 0;
577                 if (VOP_ISLOCKED(vp, ap->a_td)) {
578                         needrelock = 1;
579                         VOP_UNLOCK(vp, 0, ap->a_td);
580                 }
581                 error = dev_dclose(dev, ap->a_fflag, S_IFCHR, ap->a_td);
582                 if (needrelock)
583                         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, ap->a_td);
584         } else {
585                 error = 0;
586         }
587
588         /*
589          * Track the actual opens and closes on the vnode.  The last close
590          * disassociates the rdev.  If the rdev is already disassociated 
591          * the vnode might have been revoked and no further opencount
592          * tracking occurs.
593          */
594         if (dev) {
595                 KKASSERT(vp->v_opencount > 0);
596                 if (dev_ref_debug) {
597                         printf("spec_close: %s %d\n",
598                                 dev->si_name, vp->v_opencount - 1);
599                 }
600                 if (--vp->v_opencount == 0)
601                         v_release_rdev(vp);
602                 release_dev(dev);
603         }
604         return(error);
605 }
606
607 /*
608  * Print out the contents of a special device vnode.
609  *
610  * spec_print(struct vnode *a_vp)
611  */
612 static int
613 spec_print(struct vop_print_args *ap)
614 {
615         printf("tag VT_NON, dev %s\n", devtoname(ap->a_vp->v_rdev));
616         return (0);
617 }
618
619 /*
620  * Special device advisory byte-level locks.
621  *
622  * spec_advlock(struct vnode *a_vp, caddr_t a_id, int a_op,
623  *              struct flock *a_fl, int a_flags)
624  */
625 /* ARGSUSED */
626 static int
627 spec_advlock(struct vop_advlock_args *ap)
628 {
629         return (ap->a_flags & F_FLOCK ? EOPNOTSUPP : EINVAL);
630 }
631
632 static void
633 spec_getpages_iodone(struct bio *bio)
634 {
635         bio->bio_buf->b_flags |= B_DONE;
636         wakeup(bio->bio_buf);
637 }
638
639 static int
640 spec_getpages(struct vop_getpages_args *ap)
641 {
642         vm_offset_t kva;
643         int error;
644         int i, pcount, size;
645         struct buf *bp;
646         vm_page_t m;
647         vm_ooffset_t offset;
648         int toff, nextoff, nread;
649         struct vnode *vp = ap->a_vp;
650         int blksiz;
651         int gotreqpage;
652
653         error = 0;
654         pcount = round_page(ap->a_count) / PAGE_SIZE;
655
656         /*
657          * Calculate the offset of the transfer and do sanity check.
658          */
659         offset = IDX_TO_OFF(ap->a_m[0]->pindex) + ap->a_offset;
660
661         /*
662          * Round up physical size for real devices.  We cannot round using
663          * v_mount's block size data because v_mount has nothing to do with
664          * the device.  i.e. it's usually '/dev'.  We need the physical block
665          * size for the device itself.
666          *
667          * We can't use v_rdev->si_mountpoint because it only exists when the
668          * block device is mounted.  However, we can use v_rdev.
669          */
670
671         if (vn_isdisk(vp, NULL))
672                 blksiz = vp->v_rdev->si_bsize_phys;
673         else
674                 blksiz = DEV_BSIZE;
675
676         size = (ap->a_count + blksiz - 1) & ~(blksiz - 1);
677
678         bp = getpbuf(NULL);
679         kva = (vm_offset_t)bp->b_data;
680
681         /*
682          * Map the pages to be read into the kva.
683          */
684         pmap_qenter(kva, ap->a_m, pcount);
685
686         /* Build a minimal buffer header. */
687         bp->b_flags = B_READ;
688
689         /* B_PHYS is not set, but it is nice to fill this in. */
690         pbgetvp(ap->a_vp, bp);
691         bp->b_bcount = size;
692         bp->b_bufsize = size;
693         bp->b_resid = 0;
694         bp->b_runningbufspace = bp->b_bufsize;
695         runningbufspace += bp->b_runningbufspace;
696
697         bp->b_bio1.bio_offset = offset;
698         bp->b_bio1.bio_done = spec_getpages_iodone;
699
700         mycpu->gd_cnt.v_vnodein++;
701         mycpu->gd_cnt.v_vnodepgsin += pcount;
702
703         /* Do the input. */
704         vn_strategy(ap->a_vp, &bp->b_bio1);
705
706         crit_enter();
707
708         /* We definitely need to be at splbio here. */
709         while ((bp->b_flags & B_DONE) == 0) {
710                 tsleep(bp, 0, "spread", 0);
711         }
712
713         crit_exit();
714
715         if ((bp->b_flags & B_ERROR) != 0) {
716                 if (bp->b_error)
717                         error = bp->b_error;
718                 else
719                         error = EIO;
720         }
721
722         nread = size - bp->b_resid;
723
724         if (nread < ap->a_count) {
725                 bzero((caddr_t)kva + nread,
726                         ap->a_count - nread);
727         }
728         pmap_qremove(kva, pcount);
729
730
731         gotreqpage = 0;
732         for (i = 0, toff = 0; i < pcount; i++, toff = nextoff) {
733                 nextoff = toff + PAGE_SIZE;
734                 m = ap->a_m[i];
735
736                 m->flags &= ~PG_ZERO;
737
738                 if (nextoff <= nread) {
739                         m->valid = VM_PAGE_BITS_ALL;
740                         vm_page_undirty(m);
741                 } else if (toff < nread) {
742                         /*
743                          * Since this is a VM request, we have to supply the
744                          * unaligned offset to allow vm_page_set_validclean()
745                          * to zero sub-DEV_BSIZE'd portions of the page.
746                          */
747                         vm_page_set_validclean(m, 0, nread - toff);
748                 } else {
749                         m->valid = 0;
750                         vm_page_undirty(m);
751                 }
752
753                 if (i != ap->a_reqpage) {
754                         /*
755                          * Just in case someone was asking for this page we
756                          * now tell them that it is ok to use.
757                          */
758                         if (!error || (m->valid == VM_PAGE_BITS_ALL)) {
759                                 if (m->valid) {
760                                         if (m->flags & PG_WANTED) {
761                                                 vm_page_activate(m);
762                                         } else {
763                                                 vm_page_deactivate(m);
764                                         }
765                                         vm_page_wakeup(m);
766                                 } else {
767                                         vm_page_free(m);
768                                 }
769                         } else {
770                                 vm_page_free(m);
771                         }
772                 } else if (m->valid) {
773                         gotreqpage = 1;
774                         /*
775                          * Since this is a VM request, we need to make the
776                          * entire page presentable by zeroing invalid sections.
777                          */
778                         if (m->valid != VM_PAGE_BITS_ALL)
779                             vm_page_zero_invalid(m, FALSE);
780                 }
781         }
782         if (!gotreqpage) {
783                 m = ap->a_m[ap->a_reqpage];
784                 printf(
785             "spec_getpages:(%s) I/O read failure: (error=%d) bp %p vp %p\n",
786                         devtoname(vp->v_rdev), error, bp, bp->b_vp);
787                 printf(
788             "               size: %d, resid: %d, a_count: %d, valid: 0x%x\n",
789                     size, bp->b_resid, ap->a_count, m->valid);
790                 printf(
791             "               nread: %d, reqpage: %d, pindex: %lu, pcount: %d\n",
792                     nread, ap->a_reqpage, (u_long)m->pindex, pcount);
793                 /*
794                  * Free the buffer header back to the swap buffer pool.
795                  */
796                 relpbuf(bp, NULL);
797                 return VM_PAGER_ERROR;
798         }
799         /*
800          * Free the buffer header back to the swap buffer pool.
801          */
802         relpbuf(bp, NULL);
803         return VM_PAGER_OK;
804 }