blob: e87c7b93eb4d745431cd980fed271c7a645ec843 [file] [log] [blame]
Elliott Hughes01339442014-02-20 18:04:58 -08001/* $OpenBSD: refill.c,v 1.11 2009/11/09 00:18:27 kurt Exp $ */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08002/*-
3 * Copyright (c) 1990, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Chris Torek.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include <errno.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include "local.h"
38
39static int
40lflush(FILE *fp)
41{
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
Elliott Hughes01339442014-02-20 18:04:58 -080043 return (__sflush_locked(fp)); /* ignored... */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080044 return (0);
45}
46
47/*
48 * Refill a stdio buffer.
49 * Return EOF on eof or error, 0 otherwise.
50 */
51int
52__srefill(FILE *fp)
53{
54
55 /* make sure stdio is set up */
56 if (!__sdidinit)
57 __sinit();
58
59 fp->_r = 0; /* largely a convenience for callers */
60
Elliott Hughes8ab433d2015-10-09 17:57:26 -070061#if !defined(__ANDROID__)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080062 /* SysV does not make this test; take it out for compatibility */
63 if (fp->_flags & __SEOF)
64 return (EOF);
Elliott Hughes8ab433d2015-10-09 17:57:26 -070065#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080066
67 /* if not already reading, have to be reading and writing */
68 if ((fp->_flags & __SRD) == 0) {
69 if ((fp->_flags & __SRW) == 0) {
70 errno = EBADF;
71 fp->_flags |= __SERR;
72 return (EOF);
73 }
74 /* switch to reading */
75 if (fp->_flags & __SWR) {
76 if (__sflush(fp))
77 return (EOF);
78 fp->_flags &= ~__SWR;
79 fp->_w = 0;
80 fp->_lbfsize = 0;
81 }
82 fp->_flags |= __SRD;
83 } else {
84 /*
85 * We were reading. If there is an ungetc buffer,
86 * we must have been reading from that. Drop it,
87 * restoring the previous buffer (if any). If there
88 * is anything in that buffer, return.
89 */
90 if (HASUB(fp)) {
91 FREEUB(fp);
92 if ((fp->_r = fp->_ur) != 0) {
93 fp->_p = fp->_up;
94 return (0);
95 }
96 }
97 }
98
99 if (fp->_bf._base == NULL)
100 __smakebuf(fp);
101
102 /*
103 * Before reading from a line buffered or unbuffered file,
104 * flush all line buffered output files, per the ANSI C
105 * standard.
106 */
Kenny Rootf5823402011-02-12 07:13:44 -0800107 if (fp->_flags & (__SLBF|__SNBF)) {
108 /* Ignore this file in _fwalk to avoid potential deadlock. */
109 fp->_flags |= __SIGN;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800110 (void) _fwalk(lflush);
Kenny Rootf5823402011-02-12 07:13:44 -0800111 fp->_flags &= ~__SIGN;
112
113 /* Now flush this file without locking it. */
114 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
Elliott Hughes01339442014-02-20 18:04:58 -0800115 __sflush(fp);
Kenny Rootf5823402011-02-12 07:13:44 -0800116 }
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800117 fp->_p = fp->_bf._base;
118 fp->_r = (*fp->_read)(fp->_cookie, (char *)fp->_p, fp->_bf._size);
119 fp->_flags &= ~__SMOD; /* buffer contents are again pristine */
120 if (fp->_r <= 0) {
121 if (fp->_r == 0)
122 fp->_flags |= __SEOF;
123 else {
124 fp->_r = 0;
125 fp->_flags |= __SERR;
126 }
127 return (EOF);
128 }
129 return (0);
130}