Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gen_init_cpio: Avoid race between call to stat() and call to open()
In usr/gen_init_cpio.c::cpio_mkfile() a call to stat() is made based on pathname, subsequently the file is open()'ed and then the value of the initial stat() call is used to allocate a buffer. This is not safe since the file may change between the call to stat() and the call to open(). Safer to just open() the file and then do fstat() using the filedescriptor returned by open. Signed-off-by: Jesper Juhl <[email protected]> Acked-by: Jeff Garzik <[email protected]> Signed-off-by: Michal Marek <[email protected]>
- Loading branch information