]>
git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/fseek.c
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid
[] = "@(#)fseek.c 8.3 (Berkeley) 1/2/94";
35 #endif /* LIBC_SCCS and not lint */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/lib/libc/stdio/fseek.c,v 1.44 2008/04/17 22:17:54 jhb Exp $");
39 #include "namespace.h"
40 #include <sys/types.h>
47 #include "un-namespace.h"
49 #include "libc_private.h"
51 #define POS_ERR (-(fpos_t)1)
54 fseek(fp
, offset
, whence
)
62 /* make sure stdio is set up */
63 pthread_once(&__sdidinit
, __sinit
);
66 ret
= _fseeko(fp
, (off_t
)offset
, whence
, 1);
74 fseeko(fp
, offset
, whence
)
82 /* make sure stdio is set up */
83 pthread_once(&__sdidinit
, __sinit
);
86 ret
= _fseeko(fp
, offset
, whence
, 0);
94 * Seek the given file to the given offset.
95 * `Whence' must be one of the three SEEK_* macros.
98 _fseeko(fp
, offset
, whence
, ltest
)
104 fpos_t (*seekfn
)(void *, fpos_t, int);
105 fpos_t target
, curoff
, ret
;
111 * Have to be able to seek.
113 if ((seekfn
= fp
->_seek
) == NULL
) {
114 errno
= ESPIPE
; /* historic practice */
119 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
120 * After this, whence is either SEEK_SET or SEEK_END.
126 * In order to seek relative to the current stream offset,
127 * we have to first find the current stream offset via
128 * ftell (see ftell for details).
130 if (_ftello(fp
, &curoff
))
133 /* Unspecified position because of ungetc() at 0 */
137 if (offset
> 0 && curoff
> OFF_MAX
- offset
) {
146 if (ltest
&& offset
> LONG_MAX
) {
160 curoff
= 0; /* XXX just to keep gcc quiet */
170 * Can only optimise if:
171 * reading (and not reading-and-writing);
172 * not unbuffered; and
173 * this is a `regular' Unix file (and hence seekfn==__sseek).
174 * We must check __NBF first, because it is possible to have __NBF
175 * and __SOPT both set.
177 if (fp
->_bf
._base
== NULL
)
179 if (fp
->_flags
& (__SWR
| __SRW
| __SNBF
| __SNPT
))
181 if ((fp
->_flags
& __SOPT
) == 0) {
182 if (seekfn
!= __sseek
||
183 fp
->_file
< 0 || _fstat(fp
->_file
, &st
) ||
184 (st
.st_mode
& S_IFMT
) != S_IFREG
) {
185 fp
->_flags
|= __SNPT
;
188 fp
->_blksize
= st
.st_blksize
;
189 fp
->_flags
|= __SOPT
;
193 * We are reading; we can try to optimise.
194 * Figure out where we are going and where we are now.
196 if (whence
== SEEK_SET
)
199 if (_fstat(fp
->_file
, &st
))
201 if (offset
> 0 && st
.st_size
> OFF_MAX
- offset
) {
205 target
= st
.st_size
+ offset
;
206 if ((off_t
)target
< 0) {
210 if (ltest
&& (off_t
)target
> LONG_MAX
) {
216 if (!havepos
&& _ftello(fp
, &curoff
))
220 * (If the buffer was modified, we have to
221 * skip this; see fgetln.c.)
223 if (fp
->_flags
& __SMOD
)
227 * Compute the number of bytes in the input buffer (pretending
228 * that any ungetc() input has been discarded). Adjust current
229 * offset backwards by this count so that it represents the
230 * file offset for the first byte in the current input buffer.
233 curoff
+= fp
->_r
; /* kill off ungetc */
234 n
= fp
->_up
- fp
->_bf
._base
;
238 n
= fp
->_p
- fp
->_bf
._base
;
244 * If the target offset is within the current buffer,
245 * simply adjust the pointers, clear EOF, undo ungetc(),
248 if (target
>= curoff
&& target
< curoff
+ n
) {
249 size_t o
= target
- curoff
;
251 fp
->_p
= fp
->_bf
._base
+ o
;
255 fp
->_flags
&= ~__SEOF
;
256 memset(&fp
->_mbstate
, 0, sizeof(mbstate_t));
262 * The place we want to get to is not within the current buffer,
263 * but we can still be kind to the kernel copyout mechanism.
264 * By aligning the file offset to a block boundary, we can let
265 * the kernel use the VM hardware to map pages instead of
266 * copying bytes laboriously. Using a block boundary also
267 * ensures that we only read one block, rather than two.
269 curoff
= target
& ~(fp
->_blksize
- 1);
270 if (_sseek(fp
, curoff
, SEEK_SET
) == POS_ERR
)
273 fp
->_p
= fp
->_bf
._base
;
278 if (__srefill(fp
) || fp
->_r
< n
)
283 fp
->_flags
&= ~__SEOF
;
284 memset(&fp
->_mbstate
, 0, sizeof(mbstate_t));
288 * We get here if we cannot optimise the seek ... just
289 * do it. Allow the seek function to change fp->_bf._base.
293 (ret
= _sseek(fp
, (fpos_t)offset
, whence
)) == POS_ERR
)
295 if (ltest
&& ret
> LONG_MAX
) {
296 fp
->_flags
|= __SERR
;
300 /* success: clear EOF indicator and discard ungetc() data */
303 fp
->_p
= fp
->_bf
._base
;
305 /* fp->_w = 0; */ /* unnecessary (I think...) */
306 fp
->_flags
&= ~__SEOF
;
307 memset(&fp
->_mbstate
, 0, sizeof(mbstate_t));