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