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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 29 Mar 2009 14:54:39 +0200
From:	Sascha Silbe <sascha-ccparty-c74088b0@...be.org>
To:	linux-kernel@...r.kernel.org
Subject: Flushing the (page?) cache for a block device

Hello!

I'd like to do a verification step after writing to a USB stick (block 
device level, no filesystem involved). For this to work as intended, I 
need to ensure the reads are not satisfied from blocks still in cache, 
i.e.: flush "the cache" (page cache IIUC) for the block device in 
question (and _only_ this device).
Some research resulted in the following options:

1. Open the target file using O_DIRECT while writing.
      Doesn't feel like the right thing to do; only want to flush the 
cache, not circumvent it. Might severly limit performance as writes are 
synchronous.
      Interface isn't very nice (need to ensure alignment to page size 
in memory).

2. Use posix_fadvise() with POSIX_FADV_DONTNEED.
      Probably works with the current kernel (haven't tested yet), but 
there's absolutely no guarantee.
      Interface much better than O_DIRECT.

3. Flush the entire page cache using procfs.
      Brute force, last resort. Will severly impact performance of my 
tool (as it's going to write to several devices in parallel).


Is there a better method I've not found yet? Nr. 2 sounds like the way 
to go, but I don't like that it could (silently!) stop working with any 
new kernel version.


PS: Not subscribed, so please CC me.

CU Sascha

-- 
http://sascha.silbe.org/
http://www.infra-silbe.de/

Download attachment "signature.asc" of type "application/pgp-signature" (490 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ