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