uClibc/libc/sysdeps/linux/common/pread_write.c
Anthony G. Basile 0aaf783f8d common/pread_write.c: backport fix for 64-bit handling of pread/pwrite
Commit 458076d fixed the pread/pwrite syscalls for 64-bit ports on the
master branch, but the fix was not backported to the 0.9.33 branch.  This
patch backports the fix which is critical for e2fsprogs-1.42.12 and above.
The introduction of pread64()/pwrite64() in e2fsprogs' commit f00948a
broke fsck.ext3 and fsck.ext4 on uclibc-0.9.33, leading to potential
data corrupton. See

https://bugs.gentoo.org/show_bug.cgi?id=548950

http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?id=f00948ad1df100c7d616ef6fbf7609329a2e4001

Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2015-05-20 12:25:24 +02:00

137 lines
4.6 KiB
C

/* vi: set sw=4 ts=4: */
/*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
/*
* Based in part on the files
* ./sysdeps/unix/sysv/linux/pwrite.c,
* ./sysdeps/unix/sysv/linux/pread.c,
* sysdeps/posix/pread.c
* sysdeps/posix/pwrite.c
* from GNU libc 2.2.5, but reworked considerably...
*/
#include <sys/syscall.h>
#include <unistd.h>
#include <stdint.h>
#include <endian.h>
#ifdef __UCLIBC_HAS_THREADS_NATIVE__
#include "sysdep-cancel.h"
#else
/* No multi-thread handling enabled. */
#define SINGLE_THREAD_P (1)
#define RTLD_SINGLE_THREAD_P (1)
#define LIBC_CANCEL_ASYNC() 0 /* Just a dummy value. */
#define LIBC_CANCEL_RESET(val) ((void)(val)) /* Nothing, but evaluate it. */
#define LIBC_CANCEL_HANDLED() /* Nothing. */
#endif
#ifdef __NR_pread64
# undef __NR_pread
# define __NR_pread __NR_pread64
#endif
#ifdef __NR_pwrite64
# undef __NR_pwrite
# define __NR_pwrite __NR_pwrite64
#endif
#ifndef MY_PREAD
# ifdef __NR_pread
# define __NR___syscall_pread __NR_pread
# if defined(__UCLIBC_SYSCALL_ALIGN_64BIT__)
static _syscall6(ssize_t, __syscall_pread, int, fd, void *, buf,
size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo)
# define MY_PREAD(fd, buf, count, offset) __syscall_pread(fd, buf, count, 0, OFF_HI_LO(offset))
# define MY_PREAD64(fd, buf, count, offset) __syscall_pread(fd, buf, count, 0, OFF64_HI_LO(offset))
# elif __WORDSIZE == 32
static _syscall5(ssize_t, __syscall_pread, int, fd, void *, buf,
size_t, count, off_t, offset_hi, off_t, offset_lo)
# define MY_PREAD(fd, buf, count, offset) __syscall_pread(fd, buf, count, OFF_HI_LO(offset))
# define MY_PREAD64(fd, buf, count, offset) __syscall_pread(fd, buf, count, OFF64_HI_LO(offset))
# else
static _syscall4(ssize_t, __syscall_pread, int, fd, void *, buf,
size_t, count, off_t, offset)
# define MY_PREAD(fd, buf, count, offset) __syscall_pread(fd, buf, count, offset)
# define MY_PREAD64(fd, buf, count, offset) __syscall_pread(fd, buf, count, offset)
# endif
# endif
#endif
#ifndef MY_PWRITE
# ifdef __NR_pwrite
# define __NR___syscall_pwrite __NR_pwrite
# if defined(__UCLIBC_SYSCALL_ALIGN_64BIT__)
static _syscall6(ssize_t, __syscall_pwrite, int, fd, const void *, buf,
size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo)
# define MY_PWRITE(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, 0, OFF_HI_LO(offset))
# define MY_PWRITE64(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, 0, OFF64_HI_LO(offset))
# elif __WORDSIZE == 32
static _syscall5(ssize_t, __syscall_pwrite, int, fd, const void *, buf,
size_t, count, off_t, offset_hi, off_t, offset_lo)
# define MY_PWRITE(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, OFF_HI_LO(offset))
# define MY_PWRITE64(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, OFF64_HI_LO(offset))
# else
static _syscall4(ssize_t, __syscall_pwrite, int, fd, const void *, buf,
size_t, count, off_t, offset)
# define MY_PWRITE(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, offset)
# define MY_PWRITE64(fd, buf, count, offset) __syscall_pwrite(fd, buf, count, offset)
# endif
# endif
#endif
ssize_t __libc_pread(int fd, void *buf, size_t count, off_t offset)
{
int oldtype = LIBC_CANCEL_ASYNC ();
int result = MY_PREAD(fd, buf, count, offset);
LIBC_CANCEL_RESET (oldtype);
return result;
}
weak_alias(__libc_pread,pread)
ssize_t __libc_pwrite(int fd, const void *buf, size_t count, off_t offset)
{
int oldtype = LIBC_CANCEL_ASYNC ();
int result = MY_PWRITE(fd, buf, count, offset);
LIBC_CANCEL_RESET (oldtype);
return result;
}
weak_alias(__libc_pwrite,pwrite)
#ifdef __UCLIBC_HAS_LFS__
# if __WORDSIZE == 32
ssize_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset)
{
int oldtype = LIBC_CANCEL_ASYNC ();
int result = MY_PREAD64(fd, buf, count, offset);
LIBC_CANCEL_RESET (oldtype);
return result;
}
weak_alias(__libc_pread64,pread64)
ssize_t __libc_pwrite64(int fd, const void *buf, size_t count, off64_t offset)
{
int oldtype = LIBC_CANCEL_ASYNC ();
int result = MY_PWRITE64(fd, buf, count, offset);
LIBC_CANCEL_RESET (oldtype);
return result;
}
weak_alias(__libc_pwrite64,pwrite64)
# else
# ifdef __LINUXTHREADS_OLD__
weak_alias(pread,pread64)
weak_alias(pwrite,pwrite64)
extern __typeof(pread64) __libc_pread64;
extern __typeof(pwrite64) __libc_pwrite4;
strong_alias(pread64,__libc_pread64)
strong_alias(pwrite64,__libc_write64)
# else
strong_alias_untyped(pread,pread64)
strong_alias_untyped(pwrite,pwrite64)
# endif
# endif
#endif