summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2013-11-20 11:00:20 +0000
committeravg <avg@FreeBSD.org>2013-11-20 11:00:20 +0000
commit2857d29bc5ec5d02ce3c91b146eb2274318d618e (patch)
treee961dfcebe7489657442b0f2dcdbf748c1d1c373
parentb20a39ab617ae3c1a3576d702e32c83e3a15e082 (diff)
downloadFreeBSD-src-2857d29bc5ec5d02ce3c91b146eb2274318d618e.zip
FreeBSD-src-2857d29bc5ec5d02ce3c91b146eb2274318d618e.tar.gz
4089 NULL pointer dereference in arc_read()
illumos/illumos-gate@57815f6b95a743697e148327725b7f568e75e6ea
-rw-r--r--uts/common/fs/zfs/arc.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/uts/common/fs/zfs/arc.c b/uts/common/fs/zfs/arc.c
index 121ae75..c5fe8f9 100644
--- a/uts/common/fs/zfs/arc.c
+++ b/uts/common/fs/zfs/arc.c
@@ -20,10 +20,10 @@
*/
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
* Copyright (c) 2012, Joyent, Inc. All rights reserved.
* Copyright (c) 2013 by Delphix. All rights reserved.
* Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
+ * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
*/
/*
@@ -2972,6 +2972,8 @@ top:
vdev_t *vd = NULL;
uint64_t addr = 0;
boolean_t devw = B_FALSE;
+ enum zio_compress b_compress = ZIO_COMPRESS_OFF;
+ uint64_t b_asize = 0;
if (hdr == NULL) {
/* this block is not in the cache */
@@ -3041,10 +3043,12 @@ top:
hdr->b_acb = acb;
hdr->b_flags |= ARC_IO_IN_PROGRESS;
- if (HDR_L2CACHE(hdr) && hdr->b_l2hdr != NULL &&
+ if (hdr->b_l2hdr != NULL &&
(vd = hdr->b_l2hdr->b_dev->l2ad_vdev) != NULL) {
devw = hdr->b_l2hdr->b_dev->l2ad_writing;
addr = hdr->b_l2hdr->b_daddr;
+ b_compress = hdr->b_l2hdr->b_compress;
+ b_asize = hdr->b_l2hdr->b_asize;
/*
* Lock out device removal.
*/
@@ -3092,7 +3096,7 @@ top:
cb->l2rcb_bp = *bp;
cb->l2rcb_zb = *zb;
cb->l2rcb_flags = zio_flags;
- cb->l2rcb_compress = hdr->b_l2hdr->b_compress;
+ cb->l2rcb_compress = b_compress;
ASSERT(addr >= VDEV_LABEL_START_SIZE &&
addr + size < vd->vdev_psize -
@@ -3104,8 +3108,7 @@ top:
* Issue a null zio if the underlying buffer
* was squashed to zero size by compression.
*/
- if (hdr->b_l2hdr->b_compress ==
- ZIO_COMPRESS_EMPTY) {
+ if (b_compress == ZIO_COMPRESS_EMPTY) {
rzio = zio_null(pio, spa, vd,
l2arc_read_done, cb,
zio_flags | ZIO_FLAG_DONT_CACHE |
@@ -3114,8 +3117,8 @@ top:
ZIO_FLAG_DONT_RETRY);
} else {
rzio = zio_read_phys(pio, vd, addr,
- hdr->b_l2hdr->b_asize,
- buf->b_data, ZIO_CHECKSUM_OFF,
+ b_asize, buf->b_data,
+ ZIO_CHECKSUM_OFF,
l2arc_read_done, cb, priority,
zio_flags | ZIO_FLAG_DONT_CACHE |
ZIO_FLAG_CANFAIL |
@@ -3124,8 +3127,7 @@ top:
}
DTRACE_PROBE2(l2arc__read, vdev_t *, vd,
zio_t *, rzio);
- ARCSTAT_INCR(arcstat_l2_read_bytes,
- hdr->b_l2hdr->b_asize);
+ ARCSTAT_INCR(arcstat_l2_read_bytes, b_asize);
if (*arc_flags & ARC_NOWAIT) {
zio_nowait(rzio);
OpenPOWER on IntegriCloud