fseeko.c revision 1.4 1 1.4 agc /* $NetBSD: fseeko.c,v 1.4 2003/08/07 16:43:25 agc 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.4 agc __RCSID("$NetBSD: fseeko.c,v 1.4 2003/08/07 16:43:25 agc 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.1 kleink fseeko(fp, offset, whence)
64 1.1 kleink FILE *fp;
65 1.1 kleink off_t offset;
66 1.1 kleink int whence;
67 1.1 kleink {
68 1.1 kleink fpos_t (*seekfn) __P((void *, fpos_t, int));
69 1.1 kleink fpos_t target, curoff;
70 1.1 kleink size_t n;
71 1.1 kleink struct stat st;
72 1.1 kleink int havepos;
73 1.1 kleink
74 1.1 kleink _DIAGASSERT(fp != NULL);
75 1.1 kleink
76 1.1 kleink #ifdef __GNUC__
77 1.1 kleink /* This outrageous construct just to shut up a GCC warning. */
78 1.1 kleink (void) &curoff;
79 1.1 kleink #endif
80 1.1 kleink
81 1.1 kleink /* make sure stdio is set up */
82 1.1 kleink if (!__sdidinit)
83 1.1 kleink __sinit();
84 1.1 kleink
85 1.1 kleink FLOCKFILE(fp);
86 1.1 kleink
87 1.1 kleink /*
88 1.1 kleink * Have to be able to seek.
89 1.1 kleink */
90 1.1 kleink if ((seekfn = fp->_seek) == NULL) {
91 1.1 kleink errno = ESPIPE; /* historic practice */
92 1.1 kleink FUNLOCKFILE(fp);
93 1.1 kleink return (-1);
94 1.1 kleink }
95 1.1 kleink
96 1.1 kleink /*
97 1.1 kleink * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
98 1.1 kleink * After this, whence is either SEEK_SET or SEEK_END.
99 1.1 kleink */
100 1.1 kleink switch (whence) {
101 1.1 kleink
102 1.1 kleink case SEEK_CUR:
103 1.1 kleink /*
104 1.1 kleink * In order to seek relative to the current stream offset,
105 1.1 kleink * we have to first find the current stream offset a la
106 1.1 kleink * ftell (see ftell for details).
107 1.1 kleink */
108 1.1 kleink __sflush(fp); /* may adjust seek offset on append stream */
109 1.1 kleink if (fp->_flags & __SOFF)
110 1.1 kleink curoff = fp->_offset;
111 1.1 kleink else {
112 1.1 kleink curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
113 1.1 kleink if (curoff == POS_ERR) {
114 1.1 kleink FUNLOCKFILE(fp);
115 1.1 kleink return (-1);
116 1.1 kleink }
117 1.1 kleink }
118 1.1 kleink if (fp->_flags & __SRD) {
119 1.1 kleink curoff -= fp->_r;
120 1.1 kleink if (HASUB(fp))
121 1.1 kleink curoff -= fp->_ur;
122 1.1 kleink } else if (fp->_flags & __SWR && fp->_p != NULL)
123 1.1 kleink curoff += fp->_p - fp->_bf._base;
124 1.1 kleink
125 1.1 kleink offset += curoff;
126 1.1 kleink whence = SEEK_SET;
127 1.1 kleink havepos = 1;
128 1.1 kleink break;
129 1.1 kleink
130 1.1 kleink case SEEK_SET:
131 1.1 kleink case SEEK_END:
132 1.1 kleink curoff = 0; /* XXX just to keep gcc quiet */
133 1.1 kleink havepos = 0;
134 1.1 kleink break;
135 1.1 kleink
136 1.1 kleink default:
137 1.1 kleink errno = EINVAL;
138 1.1 kleink FUNLOCKFILE(fp);
139 1.1 kleink return (-1);
140 1.1 kleink }
141 1.1 kleink
142 1.1 kleink /*
143 1.1 kleink * Can only optimise if:
144 1.1 kleink * reading (and not reading-and-writing);
145 1.1 kleink * not unbuffered; and
146 1.1 kleink * this is a `regular' Unix file (and hence seekfn==__sseek).
147 1.1 kleink * We must check __NBF first, because it is possible to have __NBF
148 1.1 kleink * and __SOPT both set.
149 1.1 kleink */
150 1.1 kleink if (fp->_bf._base == NULL)
151 1.1 kleink __smakebuf(fp);
152 1.1 kleink if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
153 1.1 kleink goto dumb;
154 1.1 kleink if ((fp->_flags & __SOPT) == 0) {
155 1.1 kleink if (seekfn != __sseek ||
156 1.1 kleink fp->_file < 0 || fstat(fp->_file, &st) ||
157 1.1 kleink !S_ISREG(st.st_mode)) {
158 1.1 kleink fp->_flags |= __SNPT;
159 1.1 kleink goto dumb;
160 1.1 kleink }
161 1.1 kleink fp->_blksize = st.st_blksize;
162 1.1 kleink fp->_flags |= __SOPT;
163 1.1 kleink }
164 1.1 kleink
165 1.1 kleink /*
166 1.1 kleink * We are reading; we can try to optimise.
167 1.1 kleink * Figure out where we are going and where we are now.
168 1.1 kleink */
169 1.1 kleink if (whence == SEEK_SET)
170 1.1 kleink target = offset;
171 1.1 kleink else {
172 1.1 kleink if (fstat(fp->_file, &st))
173 1.1 kleink goto dumb;
174 1.1 kleink target = st.st_size + offset;
175 1.1 kleink }
176 1.1 kleink
177 1.1 kleink if (!havepos) {
178 1.1 kleink if (fp->_flags & __SOFF)
179 1.1 kleink curoff = fp->_offset;
180 1.1 kleink else {
181 1.1 kleink curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
182 1.1 kleink if (curoff == POS_ERR)
183 1.1 kleink goto dumb;
184 1.1 kleink }
185 1.1 kleink curoff -= fp->_r;
186 1.1 kleink if (HASUB(fp))
187 1.1 kleink curoff -= fp->_ur;
188 1.1 kleink }
189 1.1 kleink
190 1.1 kleink /*
191 1.1 kleink * Compute the number of bytes in the input buffer (pretending
192 1.1 kleink * that any ungetc() input has been discarded). Adjust current
193 1.1 kleink * offset backwards by this count so that it represents the
194 1.1 kleink * file offset for the first byte in the current input buffer.
195 1.1 kleink */
196 1.1 kleink if (HASUB(fp)) {
197 1.1 kleink curoff += fp->_r; /* kill off ungetc */
198 1.1 kleink n = fp->_up - fp->_bf._base;
199 1.1 kleink curoff -= n;
200 1.1 kleink n += fp->_ur;
201 1.1 kleink } else {
202 1.1 kleink n = fp->_p - fp->_bf._base;
203 1.1 kleink curoff -= n;
204 1.1 kleink n += fp->_r;
205 1.1 kleink }
206 1.1 kleink
207 1.1 kleink /*
208 1.1 kleink * If the target offset is within the current buffer,
209 1.1 kleink * simply adjust the pointers, clear EOF, undo ungetc(),
210 1.1 kleink * and return. (If the buffer was modified, we have to
211 1.1 kleink * skip this; see fgetln.c.)
212 1.1 kleink */
213 1.1 kleink if ((fp->_flags & __SMOD) == 0 &&
214 1.1 kleink target >= curoff && target < curoff + n) {
215 1.1 kleink int o = (int)(target - curoff);
216 1.1 kleink
217 1.1 kleink fp->_p = fp->_bf._base + o;
218 1.1 kleink fp->_r = n - o;
219 1.1 kleink if (HASUB(fp))
220 1.1 kleink FREEUB(fp);
221 1.1 kleink fp->_flags &= ~__SEOF;
222 1.1 kleink FUNLOCKFILE(fp);
223 1.1 kleink return (0);
224 1.1 kleink }
225 1.1 kleink
226 1.1 kleink /*
227 1.1 kleink * The place we want to get to is not within the current buffer,
228 1.1 kleink * but we can still be kind to the kernel copyout mechanism.
229 1.1 kleink * By aligning the file offset to a block boundary, we can let
230 1.1 kleink * the kernel use the VM hardware to map pages instead of
231 1.1 kleink * copying bytes laboriously. Using a block boundary also
232 1.1 kleink * ensures that we only read one block, rather than two.
233 1.1 kleink */
234 1.1 kleink curoff = target & ~(fp->_blksize - 1);
235 1.1 kleink if ((*seekfn)(fp->_cookie, curoff, SEEK_SET) == POS_ERR)
236 1.1 kleink goto dumb;
237 1.1 kleink fp->_r = 0;
238 1.1 kleink fp->_p = fp->_bf._base;
239 1.1 kleink if (HASUB(fp))
240 1.1 kleink FREEUB(fp);
241 1.1 kleink fp->_flags &= ~__SEOF;
242 1.1 kleink n = (int)(target - curoff);
243 1.1 kleink if (n) {
244 1.1 kleink if (__srefill(fp) || fp->_r < n)
245 1.1 kleink goto dumb;
246 1.1 kleink fp->_p += n;
247 1.1 kleink fp->_r -= n;
248 1.1 kleink }
249 1.1 kleink FUNLOCKFILE(fp);
250 1.1 kleink return (0);
251 1.1 kleink
252 1.1 kleink /*
253 1.1 kleink * We get here if we cannot optimise the seek ... just
254 1.1 kleink * do it. Allow the seek function to change fp->_bf._base.
255 1.1 kleink */
256 1.1 kleink dumb:
257 1.1 kleink if (__sflush(fp) ||
258 1.1 kleink (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
259 1.1 kleink FUNLOCKFILE(fp);
260 1.1 kleink return (-1);
261 1.1 kleink }
262 1.1 kleink /* success: clear EOF indicator and discard ungetc() data */
263 1.1 kleink if (HASUB(fp))
264 1.1 kleink FREEUB(fp);
265 1.1 kleink fp->_p = fp->_bf._base;
266 1.1 kleink fp->_r = 0;
267 1.1 kleink /* fp->_w = 0; */ /* unnecessary (I think...) */
268 1.1 kleink fp->_flags &= ~__SEOF;
269 1.1 kleink FUNLOCKFILE(fp);
270 1.1 kleink return (0);
271 1.1 kleink }
272