blob: 502faa3ddcb8838acf2e123da19a69e200da4716 [file] [log] [blame]
Mike Frysinger1fd98e02005-05-09 22:10:42 +00001/*
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 GNU Public
8 * 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
Mike Frysinger1fd98e02005-05-09 22:10:42 +000025#include "ext2fs/ext2_io.h"
26
27#ifdef __linux__
28
29#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE)
30
31#define my_llseek lseek64
32
33#else
34#if defined(HAVE_LLSEEK)
35#include <syscall.h>
36
37#ifndef HAVE_LLSEEK_PROTOTYPE
38extern 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__
58static int _llseek (unsigned int, unsigned long,
59 unsigned long, ext2_loff_t *, unsigned int);
60
61static _syscall5(int,_llseek,unsigned int,fd,unsigned long,offset_high,
62 unsigned long, offset_low,ext2_loff_t *,result,
63 unsigned int, origin)
64#endif
65
66static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
67{
68 ext2_loff_t result;
69 int retval;
70
71#ifndef __i386__
72 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
73#else
74 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
75#endif
76 ((unsigned long long) offset) & 0xffffffff,
77 &result, origin);
78 return (retval == -1 ? (ext2_loff_t) retval : result);
79}
80
81#endif /* __alpha__ || __ia64__ */
82
83#endif /* HAVE_LLSEEK */
84#endif /* defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) */
85
86ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
87{
88 ext2_loff_t result;
89 static int do_compat = 0;
90
91 if ((sizeof(off_t) >= sizeof(ext2_loff_t)) ||
92 (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))))
93 return lseek(fd, (off_t) offset, origin);
94
95 if (do_compat) {
96 errno = EINVAL;
97 return -1;
98 }
99
100 result = my_llseek (fd, offset, origin);
101 if (result == -1 && errno == ENOSYS) {
102 /*
103 * Just in case this code runs on top of an old kernel
104 * which does not support the llseek system call
105 */
106 do_compat++;
107 errno = EINVAL;
108 }
109 return result;
110}
111
112#else /* !linux */
113
114#ifndef EINVAL
115#define EINVAL EXT2_ET_INVALID_ARGUMENT
116#endif
117
118ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
119{
120#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE)
121 return lseek64 (fd, offset, origin);
122#else
123 if ((sizeof(off_t) < sizeof(ext2_loff_t)) &&
124 (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) {
125 errno = EINVAL;
126 return -1;
127 }
128 return lseek (fd, (off_t) offset, origin);
129#endif
130}
131
132#endif /* linux */
133
134