lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Sat, 15 Mar 2008 01:26:44 +0100 (CET)
From:	Jesper Juhl <jesper.juhl@...il.com>
To:	Bartlomiej Zolnierkiewicz <bzolnier@...il.com>
cc:	Gadi Oxman <gadio@...vision.net.il>,
	LKML <linux-kernel@...r.kernel.org>,
	Jesper Juhl <jesper.juhl@...il.com>
Subject: [PATCH] ide-tape: Avoid potential null pointer dereference in
 idetape_abort_pipeline()


If a NULL 'new_last_stage' is passed to idetape_abort_pipeline() then 
we'll dereference a NULL pointer and go *boom*. 
The function does test for a null pointer, unfortunately it only does it 
after having already dereferenced it.


Signed-off-by: Jesper Juhl <jesper.juhl@...il.com>
---

 ide-tape.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index 43e0e05..943290c 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -814,11 +814,14 @@ static void idetape_abort_pipeline(ide_drive_t *drive,
 				   idetape_stage_t *new_last_stage)
 {
 	idetape_tape_t *tape = drive->driver_data;
-	idetape_stage_t *stage = new_last_stage->next;
+	idetape_stage_t *stage = NULL;
 	idetape_stage_t *nstage;
 
 	debug_log(DBG_PROCS, "%s: Enter %s\n", tape->name, __func__);
 
+	if (new_last_stage)
+		stage = new_last_stage->next;
+
 	while (stage) {
 		nstage = stage->next;
 		idetape_kfree_stage(tape, stage);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists