1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Copyright 2019 Intel Corporation
* SPDX-License-Identifier: MIT
*/
#include "os_file.h"
#include <errno.h>
#include <stdlib.h>
#if defined(__linux__)
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
static ssize_t
readN(int fd, char *buf, size_t len)
{
int err = -ENODATA;
size_t total = 0;
do {
ssize_t ret = read(fd, buf + total, len - total);
if (ret < 0)
ret = -errno;
if (ret == -EINTR || ret == -EAGAIN)
continue;
if (ret <= 0)
break;
total += ret;
} while (total != len);
return total ? total : err;
}
static char *
read_grow(int fd)
{
size_t len = 64;
char *buf = malloc(len);
if (!buf) {
close(fd);
errno = -ENOMEM;
return NULL;
}
ssize_t read;
size_t offset = 0, remaining = len - 1;
while ((read = readN(fd, buf + offset, remaining)) == remaining) {
char *newbuf = realloc(buf, 2 * len);
if (!newbuf) {
free(buf);
close(fd);
errno = -ENOMEM;
return NULL;
}
buf = newbuf;
len *= 2;
offset += read;
remaining = len - offset - 1;
}
close(fd);
if (read > 0)
offset += read;
buf[offset] = '\0';
return buf;
}
char *
os_read_file(const char *filename)
{
size_t len = 0;
int fd = open(filename, O_RDONLY);
if (fd == -1) {
/* errno set by open() */
return NULL;
}
struct stat stat;
if (fstat(fd, &stat) == 0)
len = stat.st_size;
if (!len)
return read_grow(fd);
/* add NULL terminator */
len++;
char *buf = malloc(len);
if (!buf) {
close(fd);
errno = -ENOMEM;
return NULL;
}
ssize_t read = readN(fd, buf, len - 1);
close(fd);
if (read == -1)
return NULL;
buf[read] = '\0';
return buf;
}
#else
char *
os_read_file(const char *filename)
{
errno = -ENOSYS;
return NULL;
}
#endif
|