fseeko.c revision 1.5 1 1.5 dsl /* $NetBSD: fseeko.c,v 1.5 2005/03/04 16:04:58 dsl Exp $ */
2 1.1 kleink
3 1.1 kleink /*-
4 1.1 kleink * Copyright (c) 1990, 1993
5 1.1 kleink * The Regents of the University of California. All rights reserved.
6 1.1 kleink *
7 1.1 kleink * This code is derived from software contributed to Berkeley by
8 1.1 kleink * Chris Torek.
9 1.1 kleink *
10 1.1 kleink * Redistribution and use in source and binary forms, with or without
11 1.1 kleink * modification, are permitted provided that the following conditions
12 1.1 kleink * are met:
13 1.1 kleink * 1. Redistributions of source code must retain the above copyright
14 1.1 kleink * notice, this list of conditions and the following disclaimer.
15 1.1 kleink * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 kleink * notice, this list of conditions and the following disclaimer in the
17 1.1 kleink * documentation and/or other materials provided with the distribution.
18 1.4 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 kleink * may be used to endorse or promote products derived from this software
20 1.1 kleink * without specific prior written permission.
21 1.1 kleink *
22 1.1 kleink * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 kleink * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 kleink * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 kleink * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 kleink * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 kleink * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 kleink * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 kleink * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 kleink * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 kleink * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 kleink * SUCH DAMAGE.
33 1.1 kleink */
34 1.1 kleink
35 1.1 kleink #include <sys/cdefs.h>
36 1.1 kleink #if defined(LIBC_SCCS) && !defined(lint)
37 1.5 dsl __RCSID("$NetBSD: fseeko.c,v 1.5 2005/03/04 16:04:58 dsl Exp $");
38 1.1 kleink #endif /* LIBC_SCCS and not lint */
39 1.1 kleink
40 1.1 kleink #include "namespace.h"
41 1.1 kleink #include <sys/types.h>
42 1.1 kleink #include <sys/stat.h>
43 1.1 kleink
44 1.1 kleink #include <assert.h>
45 1.1 kleink #include <errno.h>
46 1.1 kleink #include <fcntl.h>
47 1.1 kleink #include <stdio.h>
48 1.1 kleink #include <stdlib.h>
49 1.3 thorpej #include "reentrant.h"
50 1.1 kleink #include "local.h"
51 1.2 kleink
52 1.2 kleink #ifdef __weak_alias
53 1.2 kleink __weak_alias(fseeko, _fseeko)
54 1.2 kleink #endif
55 1.1 kleink
56 1.1 kleink #define POS_ERR (-(fpos_t)1)
57 1.1 kleink
58 1.1 kleink /*
59 1.1 kleink * Seek the given file to the given offset.
60 1.1 kleink * `Whence' must be one of the three SEEK_* macros.
61 1.1 kleink */
62 1.1 kleink int
63 1.5 dsl fseeko(FILE *fp, off_t offset, int whence)
64 1.1 kleink {
65 1.5 dsl fpos_t (*seekfn)(void *, fpos_t, int);
66 1.1 kleink fpos_t target, curoff;
67 1.1 kleink size_t n;
68 1.1 kleink struct stat st;
69 1.1 kleink int havepos;
70 1.1 kleink
71 1.1 kleink _DIAGASSERT(fp != NULL);
72 1.1 kleink
73 1.1 kleink #ifdef __GNUC__
74 1.1 kleink /* This outrageous construct just to shut up a GCC warning. */
75 1.1 kleink (void) &curoff;
76 1.1 kleink #endif
77 1.1 kleink
78 1.1 kleink /* make sure stdio is set up */
79 1.1 kleink if (!__sdidinit)
80 1.1 kleink __sinit();
81 1.1 kleink
82 1.1 kleink FLOCKFILE(fp);
83 1.1 kleink
84 1.1 kleink /*
85 1.1 kleink * Have to be able to seek.
86 1.1 kleink */
87 1.1 kleink if ((seekfn = fp->_seek) == NULL) {
88 1.1 kleink errno = ESPIPE; /* historic practice */
89 1.1 kleink FUNLOCKFILE(fp);
90 1.1 kleink return (-1);
91 1.1 kleink }
92 1.1 kleink
93 1.1 kleink /*
94 1.1 kleink * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
95 1.1 kleink * After this, whence is either SEEK_SET or SEEK_END.
96 1.1 kleink */
97 1.1 kleink switch (whence) {
98 1.1 kleink
99 1.1 kleink case SEEK_CUR:
100 1.1 kleink /*
101 1.1 kleink * In order to seek relative to the current stream offset,
102 1.1 kleink * we have to first find the current stream offset a la
103 1.1 kleink * ftell (see ftell for details).
104 1.1 kleink */
105 1.1 kleink __sflush(fp); /* may adjust seek offset on append stream */
106 1.1 kleink if (fp->_flags & __SOFF)
107 1.1 kleink curoff = fp->_offset;
108 1.1 kleink else {
109 1.1 kleink curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
110 1.1 kleink if (curoff == POS_ERR) {
111 1.1 kleink FUNLOCKFILE(fp);
112 1.1 kleink return (-1);
113 1.1 kleink }
114 1.1 kleink }
115 1.1 kleink if (fp->_flags & __SRD) {
116 1.1 kleink curoff -= fp->_r;
117 1.1 kleink if (HASUB(fp))
118 1.1 kleink curoff -= fp->_ur;
119 1.1 kleink } else if (fp->_flags & __SWR && fp->_p != NULL)
120 1.1 kleink curoff += fp->_p - fp->_bf._base;
121 1.1 kleink
122 1.1 kleink offset += curoff;
123 1.1 kleink whence = SEEK_SET;
124 1.1 kleink havepos = 1;
125 1.1 kleink break;
126 1.1 kleink
127 1.1 kleink case SEEK_SET:
128 1.1 kleink case SEEK_END:
129 1.1 kleink curoff = 0; /* XXX just to keep gcc quiet */
130 1.1 kleink havepos = 0;
131 1.1 kleink break;
132 1.1 kleink
133 1.1 kleink default:
134 1.1 kleink errno = EINVAL;
135 1.1 kleink FUNLOCKFILE(fp);
136 1.1 kleink return (-1);
137 1.1 kleink }
138 1.1 kleink
139 1.1 kleink /*
140 1.1 kleink * Can only optimise if:
141 1.1 kleink * reading (and not reading-and-writing);
142 1.1 kleink * not unbuffered; and
143 1.1 kleink * this is a `regular' Unix file (and hence seekfn==__sseek).
144 1.1 kleink * We must check __NBF first, because it is possible to have __NBF
145 1.1 kleink * and __SOPT both set.
146 1.1 kleink */
147 1.1 kleink if (fp->_bf._base == NULL)
148 1.1 kleink __smakebuf(fp);
149 1.1 kleink if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
150 1.1 kleink goto dumb;
151 1.1 kleink if ((fp->_flags & __SOPT) == 0) {
152 1.1 kleink if (seekfn != __sseek ||
153 1.1 kleink fp->_file < 0 || fstat(fp->_file, &st) ||
154 1.1 kleink !S_ISREG(st.st_mode)) {
155 1.1 kleink fp->_flags |= __SNPT;
156 1.1 kleink goto dumb;
157 1.1 kleink }
158 1.1 kleink fp->_blksize = st.st_blksize;
159 1.1 kleink fp->_flags |= __SOPT;
160 1.1 kleink }
161 1.1 kleink
162 1.1 kleink /*
163 1.1 kleink * We are reading; we can try to optimise.
164 1.1 kleink * Figure out where we are going and where we are now.
165 1.1 kleink */
166 1.1 kleink if (whence == SEEK_SET)
167 1.1 kleink target = offset;
168 1.1 kleink else {
169 1.1 kleink if (fstat(fp->_file, &st))
170 1.1 kleink goto dumb;
171 1.1 kleink target = st.st_size + offset;
172 1.1 kleink }
173 1.1 kleink
174 1.1 kleink if (!havepos) {
175 1.1 kleink if (fp->_flags & __SOFF)
176 1.1 kleink curoff = fp->_offset;
177 1.1 kleink else {
178 1.1 kleink curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
179 1.1 kleink if (curoff == POS_ERR)
180 1.1 kleink goto dumb;
181 1.1 kleink }
182 1.1 kleink curoff -= fp->_r;
183 1.1 kleink if (HASUB(fp))
184 1.1 kleink curoff -= fp->_ur;
185 1.1 kleink }
186 1.1 kleink
187 1.1 kleink /*
188 1.1 kleink * Compute the number of bytes in the input buffer (pretending
189 1.1 kleink * that any ungetc() input has been discarded). Adjust current
190 1.1 kleink * offset backwards by this count so that it represents the
191 1.1 kleink * file offset for the first byte in the current input buffer.
192 1.1 kleink */
193 1.1 kleink if (HASUB(fp)) {
194 1.1 kleink curoff += fp->_r; /* kill off ungetc */
195 1.1 kleink n = fp->_up - fp->_bf._base;
196 1.1 kleink curoff -= n;
197 1.1 kleink n += fp->_ur;
198 1.1 kleink } else {
199 1.1 kleink n = fp->_p - fp->_bf._base;
200 1.1 kleink curoff -= n;
201 1.1 kleink n += fp->_r;
202 1.1 kleink }
203 1.1 kleink
204 1.1 kleink /*
205 1.1 kleink * If the target offset is within the current buffer,
206 1.1 kleink * simply adjust the pointers, clear EOF, undo ungetc(),
207 1.1 kleink * and return. (If the buffer was modified, we have to
208 1.1 kleink * skip this; see fgetln.c.)
209 1.1 kleink */
210 1.1 kleink if ((fp->_flags & __SMOD) == 0 &&
211 1.1 kleink target >= curoff && target < curoff + n) {
212 1.1 kleink int o = (int)(target - curoff);
213 1.1 kleink
214 1.1 kleink fp->_p = fp->_bf._base + o;
215 1.1 kleink fp->_r = n - o;
216 1.1 kleink if (HASUB(fp))
217 1.1 kleink FREEUB(fp);
218 1.1 kleink fp->_flags &= ~__SEOF;
219 1.1 kleink FUNLOCKFILE(fp);
220 1.1 kleink return (0);
221 1.1 kleink }
222 1.1 kleink
223 1.1 kleink /*
224 1.1 kleink * The place we want to get to is not within the current buffer,
225 1.1 kleink * but we can still be kind to the kernel copyout mechanism.
226 1.1 kleink * By aligning the file offset to a block boundary, we can let
227 1.1 kleink * the kernel use the VM hardware to map pages instead of
228 1.1 kleink * copying bytes laboriously. Using a block boundary also
229 1.1 kleink * ensures that we only read one block, rather than two.
230 1.1 kleink */
231 1.1 kleink curoff = target & ~(fp->_blksize - 1);
232 1.1 kleink if ((*seekfn)(fp->_cookie, curoff, SEEK_SET) == POS_ERR)
233 1.1 kleink goto dumb;
234 1.1 kleink fp->_r = 0;
235 1.1 kleink fp->_p = fp->_bf._base;
236 1.1 kleink if (HASUB(fp))
237 1.1 kleink FREEUB(fp);
238 1.1 kleink fp->_flags &= ~__SEOF;
239 1.1 kleink n = (int)(target - curoff);
240 1.1 kleink if (n) {
241 1.1 kleink if (__srefill(fp) || fp->_r < n)
242 1.1 kleink goto dumb;
243 1.1 kleink fp->_p += n;
244 1.1 kleink fp->_r -= n;
245 1.1 kleink }
246 1.1 kleink FUNLOCKFILE(fp);
247 1.1 kleink return (0);
248 1.1 kleink
249 1.1 kleink /*
250 1.1 kleink * We get here if we cannot optimise the seek ... just
251 1.1 kleink * do it. Allow the seek function to change fp->_bf._base.
252 1.1 kleink */
253 1.1 kleink dumb:
254 1.1 kleink if (__sflush(fp) ||
255 1.1 kleink (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
256 1.1 kleink FUNLOCKFILE(fp);
257 1.1 kleink return (-1);
258 1.1 kleink }
259 1.1 kleink /* success: clear EOF indicator and discard ungetc() data */
260 1.1 kleink if (HASUB(fp))
261 1.1 kleink FREEUB(fp);
262 1.1 kleink fp->_p = fp->_bf._base;
263 1.1 kleink fp->_r = 0;
264 1.1 kleink /* fp->_w = 0; */ /* unnecessary (I think...) */
265 1.1 kleink fp->_flags &= ~__SEOF;
266 1.1 kleink FUNLOCKFILE(fp);
267 1.1 kleink return (0);
268 1.1 kleink }
269