Merge from vendor branch OPENSSH:
[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.25 2005/06/06 15:09:38 drhodus 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_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_link_desc,               vop_panic },
92         { &vop_mkdir_desc,              vop_panic },
93         { &vop_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_remove_desc,             vop_panic },
105         { &vop_rename_desc,             vop_panic },
106         { &vop_rmdir_desc,              vop_panic },
107         { &vop_setattr_desc,            vop_ebadf },
108         { &vop_strategy_desc,           (vnodeopv_entry_t) spec_strategy },
109         { &vop_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 };
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 buf *bp);
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, (daddr_t)-1, 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 buf *a_bp)
439  */
440 static int
441 spec_strategy(struct vop_strategy_args *ap)
442 {
443         struct buf *bp;
444         struct vnode *vp;
445         struct mount *mp;
446
447         bp = ap->a_bp;
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         bp->b_dev = vp->v_rdev;
472         BUF_STRATEGY(bp, 0);
473         return (0);
474 }
475
476 /*
477  * spec_freeblks(struct vnode *a_vp, daddr_t a_addr, daddr_t a_length)
478  */
479 static int
480 spec_freeblks(struct vop_freeblks_args *ap)
481 {
482         struct buf *bp;
483
484         /*
485          * XXX: This assumes that strategy does the deed right away.
486          * XXX: this may not be TRTTD.
487          */
488         KKASSERT(ap->a_vp->v_rdev != NULL);
489         if ((dev_dflags(ap->a_vp->v_rdev) & D_CANFREE) == 0)
490                 return (0);
491         bp = geteblk(ap->a_length);
492         bp->b_flags |= B_FREEBUF;
493         bp->b_dev = ap->a_vp->v_rdev;
494         bp->b_blkno = ap->a_addr;
495         bp->b_offset = dbtob(ap->a_addr);
496         bp->b_bcount = ap->a_length;
497         BUF_STRATEGY(bp, 0);
498         return (0);
499 }
500
501 /*
502  * Implement degenerate case where the block requested is the block
503  * returned, and assume that the entire device is contiguous in regards
504  * to the contiguous block range (runp and runb).
505  *
506  * spec_bmap(struct vnode *a_vp, daddr_t a_bn, struct vnode **a_vpp,
507  *           daddr_t *a_bnp, int *a_runp, int *a_runb)
508  */
509 static int
510 spec_bmap(struct vop_bmap_args *ap)
511 {
512         struct vnode *vp = ap->a_vp;
513         int runp = 0;
514         int runb = 0;
515
516         if (ap->a_vpp != NULL)
517                 *ap->a_vpp = vp;
518         if (ap->a_bnp != NULL)
519                 *ap->a_bnp = ap->a_bn;
520         if (vp->v_mount != NULL)
521                 runp = runb = MAXBSIZE / vp->v_mount->mnt_stat.f_iosize;
522         if (ap->a_runp != NULL)
523                 *ap->a_runp = runp;
524         if (ap->a_runb != NULL)
525                 *ap->a_runb = runb;
526         return (0);
527 }
528
529 /*
530  * Device close routine
531  *
532  * spec_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred,
533  *            struct thread *a_td)
534  */
535 /* ARGSUSED */
536 static int
537 spec_close(struct vop_close_args *ap)
538 {
539         struct proc *p = ap->a_td->td_proc;
540         struct vnode *vp = ap->a_vp;
541         dev_t dev = vp->v_rdev;
542         int error;
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                 error = dev_dclose(dev, ap->a_fflag, S_IFCHR, ap->a_td);
577         } else {
578                 error = 0;
579         }
580
581         /*
582          * Track the actual opens and closes on the vnode.  The last close
583          * disassociates the rdev.  If the rdev is already disassociated 
584          * the vnode might have been revoked and no further opencount
585          * tracking occurs.
586          */
587         if (dev) {
588                 KKASSERT(vp->v_opencount > 0);
589                 if (dev_ref_debug) {
590                         printf("spec_close: %s %d\n",
591                                 dev->si_name, vp->v_opencount - 1);
592                 }
593                 if (--vp->v_opencount == 0)
594                         v_release_rdev(vp);
595                 release_dev(dev);
596         }
597         return(error);
598 }
599
600 /*
601  * Print out the contents of a special device vnode.
602  *
603  * spec_print(struct vnode *a_vp)
604  */
605 static int
606 spec_print(struct vop_print_args *ap)
607 {
608         printf("tag VT_NON, dev %s\n", devtoname(ap->a_vp->v_rdev));
609         return (0);
610 }
611
612 /*
613  * Special device advisory byte-level locks.
614  *
615  * spec_advlock(struct vnode *a_vp, caddr_t a_id, int a_op,
616  *              struct flock *a_fl, int a_flags)
617  */
618 /* ARGSUSED */
619 static int
620 spec_advlock(struct vop_advlock_args *ap)
621 {
622         return (ap->a_flags & F_FLOCK ? EOPNOTSUPP : EINVAL);
623 }
624
625 static void
626 spec_getpages_iodone(struct buf *bp)
627 {
628         bp->b_flags |= B_DONE;
629         wakeup(bp);
630 }
631
632 static int
633 spec_getpages(struct vop_getpages_args *ap)
634 {
635         vm_offset_t kva;
636         int error;
637         int i, pcount, size;
638         daddr_t blkno;
639         struct buf *bp;
640         vm_page_t m;
641         vm_ooffset_t offset;
642         int toff, nextoff, nread;
643         struct vnode *vp = ap->a_vp;
644         int blksiz;
645         int gotreqpage;
646
647         error = 0;
648         pcount = round_page(ap->a_count) / PAGE_SIZE;
649
650         /*
651          * Calculate the offset of the transfer and do sanity check.
652          * FreeBSD currently only supports an 8 TB range due to b_blkno
653          * being in DEV_BSIZE ( usually 512 ) byte chunks on call to
654          * VOP_STRATEGY.  XXX
655          */
656         offset = IDX_TO_OFF(ap->a_m[0]->pindex) + ap->a_offset;
657
658 #define DADDR_T_BIT     (sizeof(daddr_t)*8)
659 #define OFFSET_MAX      ((1LL << (DADDR_T_BIT + DEV_BSHIFT)) - 1)
660
661         if (offset < 0 || offset > OFFSET_MAX) {
662                 /* XXX still no %q in kernel. */
663                 printf("spec_getpages: preposterous offset 0x%x%08x\n",
664                        (u_int)((u_quad_t)offset >> 32),
665                        (u_int)(offset & 0xffffffff));
666                 return (VM_PAGER_ERROR);
667         }
668
669         blkno = btodb(offset);
670
671         /*
672          * Round up physical size for real devices.  We cannot round using
673          * v_mount's block size data because v_mount has nothing to do with
674          * the device.  i.e. it's usually '/dev'.  We need the physical block
675          * size for the device itself.
676          *
677          * We can't use v_rdev->si_mountpoint because it only exists when the
678          * block device is mounted.  However, we can use v_rdev.
679          */
680
681         if (vn_isdisk(vp, NULL))
682                 blksiz = vp->v_rdev->si_bsize_phys;
683         else
684                 blksiz = DEV_BSIZE;
685
686         size = (ap->a_count + blksiz - 1) & ~(blksiz - 1);
687
688         bp = getpbuf(NULL);
689         kva = (vm_offset_t)bp->b_data;
690
691         /*
692          * Map the pages to be read into the kva.
693          */
694         pmap_qenter(kva, ap->a_m, pcount);
695
696         /* Build a minimal buffer header. */
697         bp->b_flags = B_READ | B_CALL;
698         bp->b_iodone = spec_getpages_iodone;
699
700         /* B_PHYS is not set, but it is nice to fill this in. */
701         bp->b_blkno = blkno;
702         bp->b_lblkno = blkno;
703         pbgetvp(ap->a_vp, bp);
704         bp->b_bcount = size;
705         bp->b_bufsize = size;
706         bp->b_resid = 0;
707         bp->b_runningbufspace = bp->b_bufsize;
708         runningbufspace += bp->b_runningbufspace;
709
710         mycpu->gd_cnt.v_vnodein++;
711         mycpu->gd_cnt.v_vnodepgsin += pcount;
712
713         /* Do the input. */
714         VOP_STRATEGY(bp->b_vp, bp);
715
716         crit_enter();
717
718         /* We definitely need to be at splbio here. */
719         while ((bp->b_flags & B_DONE) == 0) {
720                 tsleep(bp, 0, "spread", 0);
721         }
722
723         crit_exit();
724
725         if ((bp->b_flags & B_ERROR) != 0) {
726                 if (bp->b_error)
727                         error = bp->b_error;
728                 else
729                         error = EIO;
730         }
731
732         nread = size - bp->b_resid;
733
734         if (nread < ap->a_count) {
735                 bzero((caddr_t)kva + nread,
736                         ap->a_count - nread);
737         }
738         pmap_qremove(kva, pcount);
739
740
741         gotreqpage = 0;
742         for (i = 0, toff = 0; i < pcount; i++, toff = nextoff) {
743                 nextoff = toff + PAGE_SIZE;
744                 m = ap->a_m[i];
745
746                 m->flags &= ~PG_ZERO;
747
748                 if (nextoff <= nread) {
749                         m->valid = VM_PAGE_BITS_ALL;
750                         vm_page_undirty(m);
751                 } else if (toff < nread) {
752                         /*
753                          * Since this is a VM request, we have to supply the
754                          * unaligned offset to allow vm_page_set_validclean()
755                          * to zero sub-DEV_BSIZE'd portions of the page.
756                          */
757                         vm_page_set_validclean(m, 0, nread - toff);
758                 } else {
759                         m->valid = 0;
760                         vm_page_undirty(m);
761                 }
762
763                 if (i != ap->a_reqpage) {
764                         /*
765                          * Just in case someone was asking for this page we
766                          * now tell them that it is ok to use.
767                          */
768                         if (!error || (m->valid == VM_PAGE_BITS_ALL)) {
769                                 if (m->valid) {
770                                         if (m->flags & PG_WANTED) {
771                                                 vm_page_activate(m);
772                                         } else {
773                                                 vm_page_deactivate(m);
774                                         }
775                                         vm_page_wakeup(m);
776                                 } else {
777                                         vm_page_free(m);
778                                 }
779                         } else {
780                                 vm_page_free(m);
781                         }
782                 } else if (m->valid) {
783                         gotreqpage = 1;
784                         /*
785                          * Since this is a VM request, we need to make the
786                          * entire page presentable by zeroing invalid sections.
787                          */
788                         if (m->valid != VM_PAGE_BITS_ALL)
789                             vm_page_zero_invalid(m, FALSE);
790                 }
791         }
792         if (!gotreqpage) {
793                 m = ap->a_m[ap->a_reqpage];
794                 printf(
795             "spec_getpages:(%s) I/O read failure: (error=%d) bp %p vp %p\n",
796                         devtoname(bp->b_dev), error, bp, bp->b_vp);
797                 printf(
798             "               size: %d, resid: %ld, a_count: %d, valid: 0x%x\n",
799                     size, bp->b_resid, ap->a_count, m->valid);
800                 printf(
801             "               nread: %d, reqpage: %d, pindex: %lu, pcount: %d\n",
802                     nread, ap->a_reqpage, (u_long)m->pindex, pcount);
803                 /*
804                  * Free the buffer header back to the swap buffer pool.
805                  */
806                 relpbuf(bp, NULL);
807                 return VM_PAGER_ERROR;
808         }
809         /*
810          * Free the buffer header back to the swap buffer pool.
811          */
812         relpbuf(bp, NULL);
813         return VM_PAGER_OK;
814 }