1994-05-25 09:21:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 John S. Dyson
|
|
|
|
* All rights reserved.
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
1994-05-25 09:21:21 +00:00
|
|
|
* notice immediately at the beginning of the file, without modification,
|
|
|
|
* this list of conditions, and the following disclaimer.
|
1994-05-24 10:09:53 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1994-05-25 09:21:21 +00:00
|
|
|
* 3. Absolutely no warranty of function or purpose is made by the author
|
|
|
|
* John S. Dyson.
|
|
|
|
* 4. Modifications may be freely made to this file if the above conditions
|
|
|
|
* are met.
|
1994-08-02 07:55:43 +00:00
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/proc.h>
|
1998-03-28 10:33:27 +00:00
|
|
|
#include <sys/uio.h>
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1999-10-09 19:44:32 +00:00
|
|
|
static void
|
|
|
|
physwakeup(struct buf *bp)
|
1999-05-07 07:03:47 +00:00
|
|
|
{
|
1999-10-09 19:44:32 +00:00
|
|
|
wakeup((caddr_t) bp);
|
|
|
|
bp->b_flags &= ~B_CALL;
|
1999-05-07 07:03:47 +00:00
|
|
|
}
|
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1999-10-09 19:44:32 +00:00
|
|
|
physio(dev_t dev, struct uio *uio, int ioflag)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1994-05-25 09:21:21 +00:00
|
|
|
int i;
|
|
|
|
int error;
|
|
|
|
int spl;
|
1994-08-06 09:15:42 +00:00
|
|
|
caddr_t sa;
|
1999-08-21 06:48:16 +00:00
|
|
|
off_t blockno;
|
1999-10-09 19:44:32 +00:00
|
|
|
u_int iolen;
|
|
|
|
struct buf *bp;
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1999-10-09 19:44:32 +00:00
|
|
|
/* Keep the process UPAGES from being swapped. XXX: why ? */
|
1999-04-06 03:04:47 +00:00
|
|
|
PHOLD(curproc);
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1999-10-09 19:44:32 +00:00
|
|
|
bp = getpbuf(NULL);
|
|
|
|
sa = bp->b_data;
|
1994-05-25 09:21:21 +00:00
|
|
|
error = bp->b_error = 0;
|
|
|
|
|
1999-10-09 19:44:32 +00:00
|
|
|
/* XXX: sanity check */
|
|
|
|
if(dev->si_iosize_max < PAGE_SIZE) {
|
|
|
|
printf("WARNING: %s si_iosize_max=%d, using DFLTPHYS.\n",
|
|
|
|
devtoname(dev), dev->si_iosize_max);
|
|
|
|
dev->si_iosize_max = DFLTPHYS;
|
|
|
|
}
|
|
|
|
|
1999-06-26 02:47:16 +00:00
|
|
|
for (i = 0; i < uio->uio_iovcnt; i++) {
|
|
|
|
while (uio->uio_iov[i].iov_len) {
|
1999-10-09 19:44:32 +00:00
|
|
|
if (uio->uio_rw == UIO_READ)
|
|
|
|
bp->b_flags = B_PHYS | B_CALL | B_READ;
|
|
|
|
else
|
|
|
|
bp->b_flags = B_PHYS | B_CALL | B_WRITE;
|
1998-01-24 02:01:46 +00:00
|
|
|
bp->b_dev = dev;
|
1996-06-26 05:52:15 +00:00
|
|
|
bp->b_iodone = physwakeup;
|
|
|
|
bp->b_data = uio->uio_iov[i].iov_base;
|
1999-10-09 19:44:32 +00:00
|
|
|
bp->b_bcount = uio->uio_iov[i].iov_len;
|
|
|
|
bp->b_offset = uio->uio_offset;
|
1994-08-06 09:15:42 +00:00
|
|
|
bp->b_saveaddr = sa;
|
1999-10-09 19:44:32 +00:00
|
|
|
|
|
|
|
/* Don't exceed drivers iosize limit */
|
|
|
|
if (bp->b_bcount > dev->si_iosize_max)
|
|
|
|
bp->b_bcount = dev->si_iosize_max;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the pbuf can map the request
|
|
|
|
* XXX: The pbuf has kvasize = MAXPHYS so a request
|
|
|
|
* XXX: larger than MAXPHYS - PAGE_SIZE must be
|
|
|
|
* XXX: page aligned or it will be fragmented.
|
|
|
|
*/
|
|
|
|
iolen = ((vm_offset_t) bp->b_data) & PAGE_MASK;
|
|
|
|
if ((bp->b_bcount + iolen) > bp->b_kvasize) {
|
|
|
|
bp->b_bcount = bp->b_kvasize;
|
|
|
|
if (iolen != 0)
|
|
|
|
bp->b_bcount -= PAGE_SIZE;
|
|
|
|
}
|
|
|
|
bp->b_bufsize = bp->b_bcount;
|
|
|
|
|
|
|
|
blockno = bp->b_offset >> DEV_BSHIFT;
|
1999-08-21 18:22:44 +00:00
|
|
|
if ((daddr_t)blockno != blockno) {
|
1999-10-09 19:44:32 +00:00
|
|
|
error = EINVAL; /* blockno overflow */
|
1999-08-21 06:48:16 +00:00
|
|
|
goto doerror;
|
|
|
|
}
|
1999-08-21 18:22:44 +00:00
|
|
|
bp->b_blkno = blockno;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1995-11-28 02:40:38 +00:00
|
|
|
if (uio->uio_segflg == UIO_USERSPACE) {
|
1999-10-09 19:44:32 +00:00
|
|
|
if (!useracc(bp->b_data, bp->b_bufsize,
|
1999-10-30 06:32:05 +00:00
|
|
|
bp->b_flags & B_READ ?
|
|
|
|
VM_PROT_WRITE : VM_PROT_READ)) {
|
1995-11-28 02:40:38 +00:00
|
|
|
error = EFAULT;
|
|
|
|
goto doerror;
|
|
|
|
}
|
|
|
|
vmapbuf(bp);
|
|
|
|
}
|
1994-05-25 09:21:21 +00:00
|
|
|
|
1999-08-14 11:40:51 +00:00
|
|
|
BUF_STRATEGY(bp, 0);
|
1994-05-25 09:21:21 +00:00
|
|
|
spl = splbio();
|
|
|
|
while ((bp->b_flags & B_DONE) == 0)
|
|
|
|
tsleep((caddr_t)bp, PRIBIO, "physstr", 0);
|
|
|
|
splx(spl);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1995-11-28 02:40:38 +00:00
|
|
|
if (uio->uio_segflg == UIO_USERSPACE)
|
|
|
|
vunmapbuf(bp);
|
1999-10-09 19:44:32 +00:00
|
|
|
iolen = bp->b_bcount - bp->b_resid;
|
|
|
|
if (iolen == 0 && !(bp->b_flags & B_ERROR))
|
|
|
|
goto doerror; /* EOF */
|
|
|
|
uio->uio_iov[i].iov_len -= iolen;
|
|
|
|
uio->uio_iov[i].iov_base += iolen;
|
|
|
|
uio->uio_resid -= iolen;
|
|
|
|
uio->uio_offset += iolen;
|
1994-05-25 09:21:21 +00:00
|
|
|
if( bp->b_flags & B_ERROR) {
|
|
|
|
error = bp->b_error;
|
|
|
|
goto doerror;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
doerror:
|
1999-10-09 19:44:32 +00:00
|
|
|
relpbuf(bp, NULL);
|
1999-04-06 03:04:47 +00:00
|
|
|
PRELE(curproc);
|
1994-05-25 09:21:21 +00:00
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|