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>] [day] [month] [year] [list]
Date:	Mon, 30 Nov 2015 13:26:14 +0100
From:	Elmar Stellnberger <estellnb@...tel.org>
To:	linux-kernel@...r.kernel.org
Subject: [f]truncate64 and user space sparse file handling

a.) Having written a program to patch binary files I wonder how it is 
possible to truncate a file to a length greater than 2GB on a 32bit 
system. This is f.i. an issue when patching big files like qemu disk 
images. The given limitations of the off_t on 32bit systems are not as 
bad for seeking as you can seek forward in a loop (and that is the way I 
have implemented binpatch) multiple times. Why not have an 
[f]truncate64/off64_t if we are currently implementing timespec64?

b.) A very similar program has to check each page/sector of a qemu image 
file for all containing zeroes when compressing such files. This results 
in an unnecessary high CPU load for huge sparse files which are very 
sparsely populated with data. Why not have a user space callable 
'readzeroes' function which reads as long as the input just contains 
zero bytes and then returns the number of read bytes like a normal read 
would do. The only difference would be that it could skip sparse 
sections without having to zero the memory first and then let the user 
program compare the read block for all being zeroed out.

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