blob: f3f0127379c8ab271c015f6917b3aa66ae428ca0 [file] [log] [blame]
Elliott Hughesf1ada792014-05-02 17:56:56 -07001/* $OpenBSD: fread.c,v 1.12 2014/05/01 16:40:36 deraadt Exp $ */
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -07002/*-
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 <stdio.h>
35#include <string.h>
Elliott Hughesf1ada792014-05-02 17:56:56 -070036#include <stdint.h>
37#include <errno.h>
Elliott Hughes75b99382015-01-20 11:23:50 -080038#include <sys/param.h>
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070039#include "local.h"
40
Elliott Hughesf1ada792014-05-02 17:56:56 -070041#define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4))
42
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070043size_t
44fread(void *buf, size_t size, size_t count, FILE *fp)
45{
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070046 /*
Elliott Hughes75b99382015-01-20 11:23:50 -080047 * Extension: Catch integer overflow.
Elliott Hughesf1ada792014-05-02 17:56:56 -070048 */
49 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) &&
50 size > 0 && SIZE_MAX / size < count) {
51 errno = EOVERFLOW;
52 fp->_flags |= __SERR;
53 return (0);
54 }
55
Elliott Hughes75b99382015-01-20 11:23:50 -080056 const size_t desired_total = count * size;
57 size_t total = desired_total;
58
Elliott Hughesf1ada792014-05-02 17:56:56 -070059 /*
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070060 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
61 */
Elliott Hughes75b99382015-01-20 11:23:50 -080062 if (total == 0) {
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070063 return (0);
Elliott Hughes75b99382015-01-20 11:23:50 -080064 }
65
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070066 FLOCKFILE(fp);
67 _SET_ORIENTATION(fp, -1);
Elliott Hughes75b99382015-01-20 11:23:50 -080068
69 // TODO: how can this ever happen?!
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070070 if (fp->_r < 0)
71 fp->_r = 0;
Elliott Hughes20841a12014-12-01 16:13:30 -080072
Elliott Hughes75b99382015-01-20 11:23:50 -080073 /*
74 * Ensure _bf._size is valid.
75 */
76 if (fp->_bf._base == NULL) {
77 __smakebuf(fp);
Elliott Hughes20841a12014-12-01 16:13:30 -080078 }
Elliott Hughes20841a12014-12-01 16:13:30 -080079
Elliott Hughes75b99382015-01-20 11:23:50 -080080 char* dst = buf;
81
82 while (total > 0) {
83 /*
84 * Copy data out of the buffer.
85 */
Elliott Hughese69e6452015-01-20 16:52:04 -080086 size_t buffered_bytes = MIN((size_t) fp->_r, total);
Elliott Hughes75b99382015-01-20 11:23:50 -080087 memcpy(dst, fp->_p, buffered_bytes);
88 fp->_p += buffered_bytes;
89 fp->_r -= buffered_bytes;
90 dst += buffered_bytes;
91 total -= buffered_bytes;
92
93 /*
94 * Are we done?
95 */
96 if (total == 0) {
97 goto out;
98 }
99
100 /*
101 * Do we have so much more to read that we should
102 * avoid copying it through the buffer?
103 */
104 if (total > (size_t) fp->_bf._size) {
Christopher Ferriscc9ca102015-02-27 18:22:45 -0800105 /*
106 * Make sure that fseek doesn't think it can
107 * reuse the buffer since we are going to read
108 * directly from the file descriptor.
109 */
110 fp->_flags |= __SMOD;
Elliott Hughes75b99382015-01-20 11:23:50 -0800111 break;
112 }
113
114 /*
115 * Less than a buffer to go, so refill the buffer and
116 * go around the loop again.
117 */
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700118 if (__srefill(fp)) {
Elliott Hughes75b99382015-01-20 11:23:50 -0800119 goto out;
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700120 }
121 }
Elliott Hughes75b99382015-01-20 11:23:50 -0800122
123 /*
124 * Read directly into the caller's buffer.
125 */
126 while (total > 0) {
127 ssize_t bytes_read = (*fp->_read)(fp->_cookie, dst, total);
128 if (bytes_read <= 0) {
Elliott Hughese6bb5a22015-01-23 17:48:15 -0800129 fp->_flags |= (bytes_read == 0) ? __SEOF : __SERR;
Elliott Hughes75b99382015-01-20 11:23:50 -0800130 break;
131 }
132 dst += bytes_read;
133 total -= bytes_read;
134 }
135
136out:
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700137 FUNLOCKFILE(fp);
Elliott Hughes75b99382015-01-20 11:23:50 -0800138 return ((desired_total - total) / size);
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700139}