1999-08-29 13:28:55 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
1999-09-09 19:08:44 +00:00
|
|
|
#include <sys/sysctl.h>
|
2000-05-05 09:59:14 +00:00
|
|
|
#include <sys/bio.h>
|
1999-08-29 13:28:55 +00:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/disk.h>
|
|
|
|
#include <sys/malloc.h>
|
2000-06-22 11:44:43 +00:00
|
|
|
#include <sys/sysctl.h>
|
1999-09-01 05:38:09 +00:00
|
|
|
#include <machine/md_var.h>
|
1999-08-29 13:28:55 +00:00
|
|
|
|
|
|
|
MALLOC_DEFINE(M_DISK, "disk", "disk data");
|
|
|
|
|
|
|
|
static d_strategy_t diskstrategy;
|
|
|
|
static d_open_t diskopen;
|
|
|
|
static d_close_t diskclose;
|
|
|
|
static d_ioctl_t diskioctl;
|
|
|
|
static d_psize_t diskpsize;
|
2000-06-15 20:30:53 +00:00
|
|
|
|
|
|
|
static LIST_HEAD(, disk) disklist = LIST_HEAD_INITIALIZER(&disklist);
|
1999-08-29 13:28:55 +00:00
|
|
|
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
static void
|
|
|
|
inherit_raw(dev_t pdev, dev_t dev)
|
|
|
|
{
|
|
|
|
dev->si_disk = pdev->si_disk;
|
|
|
|
dev->si_drv1 = pdev->si_drv1;
|
|
|
|
dev->si_drv2 = pdev->si_drv2;
|
|
|
|
dev->si_iosize_max = pdev->si_iosize_max;
|
|
|
|
dev->si_bsize_phys = pdev->si_bsize_phys;
|
|
|
|
dev->si_bsize_best = pdev->si_bsize_best;
|
|
|
|
}
|
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
dev_t
|
1999-09-12 20:40:29 +00:00
|
|
|
disk_create(int unit, struct disk *dp, int flags, struct cdevsw *cdevsw, struct cdevsw *proto)
|
1999-08-29 13:28:55 +00:00
|
|
|
{
|
|
|
|
dev_t dev;
|
1999-09-12 09:16:00 +00:00
|
|
|
|
|
|
|
bzero(dp, sizeof(*dp));
|
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
dev = makedev(cdevsw->d_maj, 0);
|
1999-09-12 09:16:00 +00:00
|
|
|
if (!devsw(dev)) {
|
1999-09-12 20:40:29 +00:00
|
|
|
*proto = *cdevsw;
|
|
|
|
proto->d_open = diskopen;
|
|
|
|
proto->d_close = diskclose;
|
|
|
|
proto->d_ioctl = diskioctl;
|
|
|
|
proto->d_strategy = diskstrategy;
|
|
|
|
proto->d_psize = diskpsize;
|
|
|
|
cdevsw_add(proto);
|
1999-08-29 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
1999-11-19 23:34:01 +00:00
|
|
|
if (bootverbose)
|
|
|
|
printf("Creating DISK %s%d\n", cdevsw->d_name, unit);
|
1999-09-13 18:20:21 +00:00
|
|
|
dev = make_dev(proto, dkmakeminor(unit, WHOLE_DISK_SLICE, RAW_PART),
|
2000-06-15 20:30:53 +00:00
|
|
|
0, 0, 0, "%s%d", cdevsw->d_name, unit);
|
1999-08-29 13:28:55 +00:00
|
|
|
|
|
|
|
dev->si_disk = dp;
|
|
|
|
dp->d_dev = dev;
|
1999-11-06 10:25:58 +00:00
|
|
|
dp->d_dsflags = flags;
|
1999-09-12 20:40:29 +00:00
|
|
|
dp->d_devsw = cdevsw;
|
2000-06-15 20:30:53 +00:00
|
|
|
LIST_INSERT_HEAD(&disklist, dp, d_list);
|
1999-08-29 13:28:55 +00:00
|
|
|
return (dev);
|
|
|
|
}
|
|
|
|
|
1999-09-01 05:38:09 +00:00
|
|
|
int
|
|
|
|
disk_dumpcheck(dev_t dev, u_int *count, u_int *blkno, u_int *secsize)
|
|
|
|
{
|
|
|
|
struct disk *dp;
|
|
|
|
struct disklabel *dl;
|
|
|
|
u_int boff;
|
|
|
|
|
|
|
|
dp = dev->si_disk;
|
|
|
|
if (!dp)
|
|
|
|
return (ENXIO);
|
|
|
|
if (!dp->d_slice)
|
|
|
|
return (ENXIO);
|
|
|
|
dl = dsgetlabel(dev, dp->d_slice);
|
|
|
|
if (!dl)
|
|
|
|
return (ENXIO);
|
|
|
|
*count = (u_long)Maxmem * PAGE_SIZE / dl->d_secsize;
|
|
|
|
if (dumplo < 0 ||
|
|
|
|
(dumplo + *count > dl->d_partitions[dkpart(dev)].p_size))
|
|
|
|
return (EINVAL);
|
|
|
|
boff = dl->d_partitions[dkpart(dev)].p_offset +
|
|
|
|
dp->d_slice->dss_slices[dkslice(dev)].ds_offset;
|
|
|
|
*blkno = boff + dumplo;
|
|
|
|
*secsize = dl->d_secsize;
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
disk_invalidate (struct disk *disk)
|
|
|
|
{
|
2000-02-18 20:57:33 +00:00
|
|
|
if (disk->d_slice)
|
|
|
|
dsgone(&disk->d_slice);
|
1999-09-01 05:38:09 +00:00
|
|
|
}
|
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
void
|
2000-01-28 20:49:43 +00:00
|
|
|
disk_destroy(dev_t dev)
|
1999-08-29 13:28:55 +00:00
|
|
|
{
|
2000-06-15 20:30:53 +00:00
|
|
|
LIST_REMOVE(dev->si_disk, d_list);
|
|
|
|
bzero(dev->si_disk, sizeof(*dev->si_disk));
|
2000-02-18 20:57:33 +00:00
|
|
|
dev->si_disk = NULL;
|
|
|
|
destroy_dev(dev);
|
1999-08-29 13:28:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-06-15 20:30:53 +00:00
|
|
|
struct disk *
|
|
|
|
disk_enumerate(struct disk *disk)
|
|
|
|
{
|
|
|
|
if (!disk)
|
|
|
|
return (LIST_FIRST(&disklist));
|
|
|
|
else
|
|
|
|
return (LIST_NEXT(disk, d_list));
|
|
|
|
}
|
|
|
|
|
2000-06-22 11:44:43 +00:00
|
|
|
static int
|
2000-07-04 11:25:35 +00:00
|
|
|
sysctl_disks(SYSCTL_HANDLER_ARGS)
|
2000-06-22 11:44:43 +00:00
|
|
|
{
|
|
|
|
struct disk *disk;
|
|
|
|
int error, first;
|
|
|
|
|
|
|
|
disk = NULL;
|
|
|
|
first = 1;
|
|
|
|
|
|
|
|
while ((disk = disk_enumerate(disk))) {
|
|
|
|
if (!first) {
|
|
|
|
error = SYSCTL_OUT(req, " ", 1);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
} else {
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
error = SYSCTL_OUT(req, disk->d_dev->si_name, strlen(disk->d_dev->si_name));
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
error = SYSCTL_OUT(req, "", 1);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, disks, CTLTYPE_STRING | CTLFLAG_RD, 0, NULL,
|
|
|
|
sysctl_disks, "A", "names of available disks");
|
|
|
|
|
1999-09-01 05:38:09 +00:00
|
|
|
/*
|
|
|
|
* The cdevsw functions
|
|
|
|
*/
|
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
static int
|
|
|
|
diskopen(dev_t dev, int oflags, int devtype, struct proc *p)
|
|
|
|
{
|
|
|
|
dev_t pdev;
|
|
|
|
struct disk *dp;
|
|
|
|
int error;
|
|
|
|
|
1999-09-01 05:38:09 +00:00
|
|
|
error = 0;
|
1999-08-29 13:28:55 +00:00
|
|
|
pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART);
|
1999-09-01 05:38:09 +00:00
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
dp = pdev->si_disk;
|
|
|
|
if (!dp)
|
|
|
|
return (ENXIO);
|
1999-09-01 05:38:09 +00:00
|
|
|
|
1999-11-06 10:25:58 +00:00
|
|
|
while (dp->d_flags & DISKFLAG_LOCK) {
|
|
|
|
dp->d_flags |= DISKFLAG_WANTED;
|
1999-12-19 12:36:41 +00:00
|
|
|
error = tsleep(dp, PRIBIO | PCATCH, "diskopen", hz);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-11-06 10:25:58 +00:00
|
|
|
}
|
|
|
|
dp->d_flags |= DISKFLAG_LOCK;
|
|
|
|
|
1999-10-02 11:17:54 +00:00
|
|
|
if (!dsisopen(dp->d_slice)) {
|
1999-10-02 20:21:49 +00:00
|
|
|
if (!pdev->si_iosize_max)
|
|
|
|
pdev->si_iosize_max = dev->si_iosize_max;
|
1999-09-30 21:14:28 +00:00
|
|
|
error = dp->d_devsw->d_open(pdev, oflags, devtype, p);
|
1999-10-02 11:17:54 +00:00
|
|
|
}
|
1999-09-30 21:14:28 +00:00
|
|
|
|
|
|
|
/* Inherit properties from the whole/raw dev_t */
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
inherit_raw(pdev, dev);
|
1999-08-29 13:28:55 +00:00
|
|
|
|
1999-09-01 05:38:09 +00:00
|
|
|
if (error)
|
1999-11-06 10:25:58 +00:00
|
|
|
goto out;
|
1999-09-01 05:38:09 +00:00
|
|
|
|
1999-11-06 10:25:58 +00:00
|
|
|
error = dsopen(dev, devtype, dp->d_dsflags, &dp->d_slice, &dp->d_label);
|
1999-08-29 13:28:55 +00:00
|
|
|
|
1999-09-01 05:38:09 +00:00
|
|
|
if (!dsisopen(dp->d_slice))
|
1999-10-04 09:28:36 +00:00
|
|
|
dp->d_devsw->d_close(pdev, oflags, devtype, p);
|
1999-11-06 10:25:58 +00:00
|
|
|
out:
|
|
|
|
dp->d_flags &= ~DISKFLAG_LOCK;
|
|
|
|
if (dp->d_flags & DISKFLAG_WANTED) {
|
|
|
|
dp->d_flags &= ~DISKFLAG_WANTED;
|
|
|
|
wakeup(dp);
|
|
|
|
}
|
1999-09-01 05:38:09 +00:00
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
diskclose(dev_t dev, int fflag, int devtype, struct proc *p)
|
|
|
|
{
|
|
|
|
struct disk *dp;
|
|
|
|
int error;
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
dev_t pdev;
|
1999-08-29 13:28:55 +00:00
|
|
|
|
|
|
|
error = 0;
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART);
|
|
|
|
dp = pdev->si_disk;
|
1999-09-30 05:29:59 +00:00
|
|
|
dsclose(dev, devtype, dp->d_slice);
|
1999-09-30 21:14:28 +00:00
|
|
|
if (!dsisopen(dp->d_slice)) {
|
1999-10-04 09:28:36 +00:00
|
|
|
error = dp->d_devsw->d_close(dp->d_dev, fflag, devtype, p);
|
1999-09-30 21:14:28 +00:00
|
|
|
}
|
1999-08-29 13:28:55 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-04-15 05:54:02 +00:00
|
|
|
diskstrategy(struct bio *bp)
|
1999-08-29 13:28:55 +00:00
|
|
|
{
|
|
|
|
dev_t pdev;
|
|
|
|
struct disk *dp;
|
|
|
|
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
pdev = dkmodpart(dkmodslice(bp->bio_dev, WHOLE_DISK_SLICE), RAW_PART);
|
|
|
|
dp = pdev->si_disk;
|
|
|
|
if (dp != bp->bio_dev->si_disk)
|
|
|
|
inherit_raw(pdev, bp->bio_dev);
|
1999-08-29 13:28:55 +00:00
|
|
|
|
|
|
|
if (!dp) {
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_error = ENXIO;
|
|
|
|
bp->bio_flags |= BIO_ERROR;
|
1999-08-29 13:28:55 +00:00
|
|
|
biodone(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-01-10 12:21:39 +00:00
|
|
|
if (dscheck(bp, dp->d_slice) <= 0) {
|
1999-08-29 13:28:55 +00:00
|
|
|
biodone(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-25 10:51:18 +00:00
|
|
|
KASSERT(dp->d_devsw != NULL, ("NULL devsw"));
|
|
|
|
KASSERT(dp->d_devsw->d_strategy != NULL, ("NULL d_strategy"));
|
1999-09-12 20:40:29 +00:00
|
|
|
dp->d_devsw->d_strategy(bp);
|
1999-08-29 13:28:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
diskioctl(dev_t dev, u_long cmd, caddr_t data, int fflag, struct proc *p)
|
|
|
|
{
|
|
|
|
struct disk *dp;
|
|
|
|
int error;
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
dev_t pdev;
|
1999-08-29 13:28:55 +00:00
|
|
|
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART);
|
|
|
|
dp = pdev->si_disk;
|
1999-08-29 13:28:55 +00:00
|
|
|
error = dsioctl(dev, cmd, data, fflag, &dp->d_slice);
|
|
|
|
if (error == ENOIOCTL)
|
1999-09-12 20:40:29 +00:00
|
|
|
error = dp->d_devsw->d_ioctl(dev, cmd, data, fflag, p);
|
1999-08-29 13:28:55 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
diskpsize(dev_t dev)
|
|
|
|
{
|
|
|
|
struct disk *dp;
|
1999-09-01 05:38:09 +00:00
|
|
|
dev_t pdev;
|
1999-08-29 13:28:55 +00:00
|
|
|
|
End two weeks of on and off debugging. Fix the crash on the Nth
insertion of a CF card, for random values of N > 1. With these fixes,
I've been able to do 100 insert/remove of the cards w/o a crash with
lots of system activity going on that in the past would help trigger
the crash.
The problem:
FreeBSD creates dev_t's on the fly as they are needed and never
destroys them. These dev_t's point to a struct disk that is used for
housekeeping on the disk. When a device goes away, the struct disk
pointer becomes a dangling pointer. Sometimes when the device comes
back, the pointer will point to the new struct disk (in which case the
insertion will work). Other times it won't (especially if any length
of time has passed, since it is dependent on memory returned from
malloc).
The Fix:
There is one of these dev_t's that is always correct. The
device for the WHOLE_DISK_SLICE is always right. It gets set at
create_disk() time. So, the fix is to spend a little CPU time and
lookup the WHOLE_DISK_SLICE dev_t and use the si_disk from that in
preference to the one that's in the device asking to do the I/O. In
addition, we change the test of si_disk == NULL meaning that the dev
needed to inherit properties from the pdev to dev->si_disk !=
pdev->si_disk. This test is a little stronger than the previous test,
but can sometimes be fooled into not inheriting. However, the results
of this fooling are that the old values will be used, which will
generally always be the same as before. si_drv[12] are the only
values that are copied that might pose a problem. They tend to change
as the si_disk field would change, so it is a hole, but it is a small
hole.
One could correctly argue that one should replace much of this code
with something much much better. I would be on the pro side of that
argument.
Reviewed by: phk (who also ported the original patch to current)
Sponsored by: Timing Solutions
2000-07-05 06:01:33 +00:00
|
|
|
pdev = dkmodpart(dkmodslice(dev, WHOLE_DISK_SLICE), RAW_PART);
|
|
|
|
dp = pdev->si_disk;
|
|
|
|
if (!dp)
|
|
|
|
return (-1);
|
|
|
|
if (dp != dev->si_disk) {
|
1999-09-01 05:38:09 +00:00
|
|
|
dev->si_drv1 = pdev->si_drv1;
|
|
|
|
dev->si_drv2 = pdev->si_drv2;
|
|
|
|
/* XXX: don't set bp->b_dev->si_disk (?) */
|
|
|
|
}
|
1999-08-29 13:28:55 +00:00
|
|
|
return (dssize(dev, &dp->d_slice));
|
|
|
|
}
|
1999-09-09 19:08:44 +00:00
|
|
|
|
|
|
|
SYSCTL_DECL(_debug_sizeof);
|
|
|
|
|
|
|
|
SYSCTL_INT(_debug_sizeof, OID_AUTO, disklabel, CTLFLAG_RD,
|
|
|
|
0, sizeof(struct disklabel), "sizeof(struct disklabel)");
|
|
|
|
|
|
|
|
SYSCTL_INT(_debug_sizeof, OID_AUTO, diskslices, CTLFLAG_RD,
|
|
|
|
0, sizeof(struct diskslices), "sizeof(struct diskslices)");
|
|
|
|
|
|
|
|
SYSCTL_INT(_debug_sizeof, OID_AUTO, disk, CTLFLAG_RD,
|
|
|
|
0, sizeof(struct disk), "sizeof(struct disk)");
|