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>] [day] [month] [year] [list]
Date:	Wed, 24 Jan 2007 14:46:19 +0100
From:	Jochen Oekonomopulos <jochen.oekonomopulos@...-konstanz.de>
To:	linux-kernel@...r.kernel.org
Subject: bio -> bi_bdev


Hello,

I am working on a module to redirect a bio request from one block device
to another. Therefore, I catch every bio from one device, clone it and
change the underlying block_device bi_bdev to the other block device.
Everything works fine, except that the first page read is always filled
with random data. Everything else works fine. So I am wondering, if
there is something I did not take into consideration.

I tested it under 2.6.8 and 2.6.19 with the same results.

Below is the essence of my redirection code.


"device" is the instance of my device structure. The original read was
made to it and I want to redirect it to the block_device linked in
bdev.

struct bio bio, cloned_bio;
int sect = 0;


rq_for_each_bio(bio, req) {
		
		cloned_bio = bio_clone(bio, GFP_NOIO);
		cloned_bio -> bi_private = bio;
		cloned_bio -> bi_bdev = device -> bdev;
		
		if(bio_data_dir(cloned_bio) == WRITE) {

			submit_bio(WRITE, cloned_bio);
		}
		else {

			submit_bio(READ, cloned_bio);
		}
		
		sect += cloned_bio->bi_size/KERNEL_SECTOR_SIZE;

	}

thanks in advance for any feedback,

Jochen Oekonomopulos
-
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ