diff options
author | phk <phk@FreeBSD.org> | 2003-04-25 21:28:28 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-04-25 21:28:28 +0000 |
commit | 82e4f296ffa08c58666099c9917ecbc998d24d2b (patch) | |
tree | 97a26813fad453130db48c7fa1a40f7f123fd740 /sys/geom/bde | |
parent | 017246b9b8dd3b24cd66f34840cceef6336634fa (diff) | |
download | FreeBSD-src-82e4f296ffa08c58666099c9917ecbc998d24d2b.zip FreeBSD-src-82e4f296ffa08c58666099c9917ecbc998d24d2b.tar.gz |
If on a BIO_READ request, we failed to allocate the bio for reading
our key-sector, we would end up returning the read without an error,
despite the fact that the data was not correctly decrypted.
This would result in data corruption on read, but intact data still
on the media.
Diffstat (limited to 'sys/geom/bde')
-rw-r--r-- | sys/geom/bde/g_bde_work.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/sys/geom/bde/g_bde_work.c b/sys/geom/bde/g_bde_work.c index 9375051..1093566 100644 --- a/sys/geom/bde/g_bde_work.c +++ b/sys/geom/bde/g_bde_work.c @@ -572,13 +572,20 @@ g_bde_worker(void *arg) } switch(wp->bp->bio_cmd) { case BIO_READ: - if (wp->ksp != NULL && wp->sp->error == 0) { - mtx_unlock(&sc->worklist_mutex); - g_bde_crypt_read(wp); - mtx_lock(&sc->worklist_mutex); + if (wp->ksp == NULL) { + KASSERT(wp->error != 0, + ("BIO_READ, no ksp and no error")); + g_bde_contribute(wp->bp, wp->length, + wp->error); + } else { + if (wp->sp->error == 0) { + mtx_unlock(&sc->worklist_mutex); + g_bde_crypt_read(wp); + mtx_lock(&sc->worklist_mutex); + } + g_bde_contribute(wp->bp, wp->length, + wp->sp->error); } - g_bde_contribute(wp->bp, wp->length, - wp->sp->error); g_bde_delete_sector(sc, wp->sp); if (wp->ksp != NULL) g_bde_release_keysector(wp); |