blob: 073f71aa619891f814abd95b19352cfde2f50f40 [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
George Burgess IV7cc779f2017-02-09 00:00:31 -080044fread(void *buf, size_t size, size_t count, FILE *fp) __overloadable
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070045{
Josh Gaod1620602017-10-05 13:48:08 -070046 CHECK_FP(fp);
47
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070048 /*
Elliott Hughes75b99382015-01-20 11:23:50 -080049 * Extension: Catch integer overflow.
Elliott Hughesf1ada792014-05-02 17:56:56 -070050 */
51 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) &&
52 size > 0 && SIZE_MAX / size < count) {
53 errno = EOVERFLOW;
54 fp->_flags |= __SERR;
55 return (0);
56 }
57
Elliott Hughes75b99382015-01-20 11:23:50 -080058 const size_t desired_total = count * size;
59 size_t total = desired_total;
60
Elliott Hughesf1ada792014-05-02 17:56:56 -070061 /*
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070062 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
63 */
Elliott Hughes75b99382015-01-20 11:23:50 -080064 if (total == 0) {
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070065 return (0);
Elliott Hughes75b99382015-01-20 11:23:50 -080066 }
67
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070068 FLOCKFILE(fp);
69 _SET_ORIENTATION(fp, -1);
Elliott Hughes75b99382015-01-20 11:23:50 -080070
71 // TODO: how can this ever happen?!
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -070072 if (fp->_r < 0)
73 fp->_r = 0;
Elliott Hughes20841a12014-12-01 16:13:30 -080074
Elliott Hughes75b99382015-01-20 11:23:50 -080075 /*
76 * Ensure _bf._size is valid.
77 */
78 if (fp->_bf._base == NULL) {
79 __smakebuf(fp);
Elliott Hughes20841a12014-12-01 16:13:30 -080080 }
Elliott Hughes20841a12014-12-01 16:13:30 -080081
Elliott Hughescc3d04f2017-10-26 15:38:06 -070082 char* dst = static_cast<char*>(buf);
Elliott Hughes75b99382015-01-20 11:23:50 -080083
84 while (total > 0) {
85 /*
86 * Copy data out of the buffer.
87 */
Elliott Hughese69e6452015-01-20 16:52:04 -080088 size_t buffered_bytes = MIN((size_t) fp->_r, total);
Elliott Hughes75b99382015-01-20 11:23:50 -080089 memcpy(dst, fp->_p, buffered_bytes);
90 fp->_p += buffered_bytes;
91 fp->_r -= buffered_bytes;
92 dst += buffered_bytes;
93 total -= buffered_bytes;
94
95 /*
96 * Are we done?
97 */
98 if (total == 0) {
99 goto out;
100 }
101
102 /*
103 * Do we have so much more to read that we should
104 * avoid copying it through the buffer?
105 */
106 if (total > (size_t) fp->_bf._size) {
Christopher Ferriscc9ca102015-02-27 18:22:45 -0800107 /*
108 * Make sure that fseek doesn't think it can
109 * reuse the buffer since we are going to read
110 * directly from the file descriptor.
111 */
112 fp->_flags |= __SMOD;
Elliott Hughes75b99382015-01-20 11:23:50 -0800113 break;
114 }
115
116 /*
117 * Less than a buffer to go, so refill the buffer and
118 * go around the loop again.
119 */
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700120 if (__srefill(fp)) {
Elliott Hughes75b99382015-01-20 11:23:50 -0800121 goto out;
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700122 }
123 }
Elliott Hughes75b99382015-01-20 11:23:50 -0800124
125 /*
126 * Read directly into the caller's buffer.
127 */
128 while (total > 0) {
129 ssize_t bytes_read = (*fp->_read)(fp->_cookie, dst, total);
130 if (bytes_read <= 0) {
Elliott Hughese6bb5a22015-01-23 17:48:15 -0800131 fp->_flags |= (bytes_read == 0) ? __SEOF : __SERR;
Elliott Hughes75b99382015-01-20 11:23:50 -0800132 break;
133 }
134 dst += bytes_read;
135 total -= bytes_read;
136 }
137
138out:
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700139 FUNLOCKFILE(fp);
Elliott Hughes75b99382015-01-20 11:23:50 -0800140 return ((desired_total - total) / size);
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700141}