Mike Frysinger | 38a33f9 | 2005-05-09 22:13:22 +0000 | [diff] [blame] | 1 | /* |
| 2 | * llseek.c -- stub calling the llseek system call |
| 3 | * |
| 4 | * Copyright (C) 1994, 1995, 1996, 1997 Theodore Ts'o. |
| 5 | * |
| 6 | * %Begin-Header% |
| 7 | * This file may be redistributed under the terms of the |
| 8 | * GNU Lesser General Public License. |
| 9 | * %End-Header% |
| 10 | */ |
| 11 | |
| 12 | #if HAVE_SYS_TYPES_H |
| 13 | #include <sys/types.h> |
| 14 | #endif |
| 15 | |
| 16 | #if HAVE_ERRNO_H |
| 17 | #include <errno.h> |
| 18 | #endif |
| 19 | #if HAVE_UNISTD_H |
| 20 | #include <unistd.h> |
| 21 | #endif |
| 22 | #ifdef __MSDOS__ |
| 23 | #include <io.h> |
| 24 | #endif |
| 25 | |
| 26 | #include "blkidP.h" |
| 27 | |
| 28 | #ifdef __linux__ |
| 29 | |
| 30 | #if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) |
| 31 | |
| 32 | #define my_llseek lseek64 |
| 33 | |
| 34 | #elif defined(HAVE_LLSEEK) |
| 35 | #include <syscall.h> |
| 36 | |
| 37 | #ifndef HAVE_LLSEEK_PROTOTYPE |
| 38 | extern long long llseek(int fd, long long offset, int origin); |
| 39 | #endif |
| 40 | |
| 41 | #define my_llseek llseek |
| 42 | |
| 43 | #else /* ! HAVE_LLSEEK */ |
| 44 | |
| 45 | #if defined(__alpha__) || defined(__ia64__) |
| 46 | |
| 47 | #define llseek lseek |
| 48 | |
| 49 | #else /* !__alpha__ && !__ia64__*/ |
| 50 | |
| 51 | #include <linux/unistd.h> |
| 52 | |
| 53 | #ifndef __NR__llseek |
| 54 | #define __NR__llseek 140 |
| 55 | #endif |
| 56 | |
| 57 | #ifndef __i386__ |
| 58 | static int _llseek(unsigned int, unsigned long, unsigned long, |
| 59 | blkid_loff_t *, unsigned int); |
| 60 | |
| 61 | static _syscall5(int, _llseek, unsigned int, fd, unsigned long, offset_high, |
| 62 | unsigned long, offset_low, blkid_loff_t *, result, |
| 63 | unsigned int, origin) |
| 64 | #endif |
| 65 | |
| 66 | static blkid_loff_t my_llseek(int fd, blkid_loff_t offset, int origin) |
| 67 | { |
| 68 | blkid_loff_t result; |
| 69 | int retval; |
| 70 | |
| 71 | #ifndef __i386__ |
| 72 | retval = _llseek(fd, ((unsigned long long) offset) >> 32, |
| 73 | ((unsigned long long)offset) & 0xffffffff, |
| 74 | &result, origin); |
| 75 | #else |
| 76 | retval = syscall(__NR__llseek, fd, ((unsigned long long) offset) >> 32, |
| 77 | ((unsigned long long)offset) & 0xffffffff, |
| 78 | &result, origin); |
| 79 | #endif |
| 80 | return (retval == -1 ? (blkid_loff_t) retval : result); |
| 81 | } |
| 82 | |
| 83 | #endif /* __alpha__ || __ia64__ */ |
| 84 | |
| 85 | #endif /* HAVE_LLSEEK */ |
| 86 | |
| 87 | blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence) |
| 88 | { |
| 89 | blkid_loff_t result; |
| 90 | static int do_compat = 0; |
| 91 | |
| 92 | if ((sizeof(off_t) >= sizeof(blkid_loff_t)) || |
| 93 | (offset < ((blkid_loff_t) 1 << ((sizeof(off_t)*8) -1)))) |
| 94 | return lseek(fd, (off_t) offset, whence); |
| 95 | |
| 96 | if (do_compat) { |
| 97 | errno = EOVERFLOW; |
| 98 | return -1; |
| 99 | } |
| 100 | |
| 101 | result = my_llseek(fd, offset, whence); |
| 102 | if (result == -1 && errno == ENOSYS) { |
| 103 | /* |
| 104 | * Just in case this code runs on top of an old kernel |
| 105 | * which does not support the llseek system call |
| 106 | */ |
| 107 | do_compat++; |
| 108 | errno = EOVERFLOW; |
| 109 | } |
| 110 | return result; |
| 111 | } |
| 112 | |
| 113 | #else /* !linux */ |
| 114 | |
| 115 | #ifndef EOVERFLOW |
| 116 | #ifdef EXT2_ET_INVALID_ARGUMENT |
| 117 | #define EOVERFLOW EXT2_ET_INVALID_ARGUMENT |
| 118 | #else |
| 119 | #define EOVERFLOW 112 |
| 120 | #endif |
| 121 | #endif |
| 122 | |
| 123 | blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int origin) |
| 124 | { |
| 125 | #if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) |
| 126 | return lseek64 (fd, offset, origin); |
| 127 | #else |
| 128 | if ((sizeof(off_t) < sizeof(blkid_loff_t)) && |
| 129 | (offset >= ((blkid_loff_t) 1 << ((sizeof(off_t)*8) - 1)))) { |
| 130 | errno = EOVERFLOW; |
| 131 | return -1; |
| 132 | } |
| 133 | return lseek(fd, (off_t) offset, origin); |
| 134 | #endif |
| 135 | } |
| 136 | |
| 137 | #endif /* linux */ |
| 138 | |
| 139 | |