2 * Sherlock Library -- Large File Support
4 * (c) 1999 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
7 #ifndef _SHERLOCK_LFS_H
8 #define _SHERLOCK_LFS_H
10 #ifdef SHERLOCK_CONFIG_LFS
13 #if defined(__linux__) && defined(__i386__)
14 #define O_LARGEFILE 0100000
16 #error O_LARGEFILE unknown
20 #define SHERLOCK_O_LARGEFILE O_LARGEFILE
24 /* A "do it yourself" solution */
26 #include <asm/unistd.h>
29 _syscall5(int, _llseek, int, fd, int, hi, int, lo, loff_t *, result, int, whence);
31 extern inline loff_t sh_seek(int fd, sh_off_t pos, int whence)
36 err = _llseek(fd, pos >> 32, pos, &result, whence);
37 return (err < 0) ? err : result;
41 /* Touching hidden places in glibc */
42 extern loff_t llseek(int fd, loff_t pos, int whence);
43 #define sh_seek(f,o,w) llseek(f,o,w)
47 #else /* !SHERLOCK_CONFIG_LFS */
49 #define sh_seek(f,o,w) lseek(f,o,w)
50 #define SHERLOCK_O_LARGEFILE 0
52 #endif /* !SHERLOCK_CONFIG_LFS */
55 * We'd like to use pread/pwrite for our file accesses, but unfortunately it
56 * isn't simple at all since all libc's until glibc 2.1 don't define it.
60 #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ > 0
61 /* glibc 2.1 or newer -> pread/pwrite supported automatically */
62 #define SHERLOCK_HAVE_PREAD
63 #elif defined(i386) && defined(__GLIBC__)
64 /* glibc 2.0 on i386 -> call syscalls directly */
65 #include <asm/unistd.h>
66 #include <syscall-list.h>
67 #include <sys/types.h>
72 static int pread(unsigned int fd, void *buf, size_t size, loff_t where)
73 { return syscall(SYS_pread, fd, buf, size, where); }
75 #define SYS_pwrite 181
77 static int pwrite(unsigned int fd, void *buf, size_t size, loff_t where)
78 { return syscall(SYS_pwrite, fd, buf, size, where); }
79 #define SHERLOCK_HAVE_PREAD
81 /* old libc on i386 -> call syscalls directly the old way */
82 #include <asm/unistd.h>
83 static _syscall4(int, pread, unsigned int, fd, void *, buf, size_t, size, loff_t, where);
84 static _syscall4(int, pwrite, unsigned int, fd, void *, buf, size_t, size, loff_t, where);
85 #define SHERLOCK_HAVE_PREAD
87 #endif /* __linux__ */
89 #endif /* !_SHERLOCK_LFS_H */