forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfs_read.c
More file actions
411 lines (343 loc) · 11 KB
/
fs_read.c
File metadata and controls
411 lines (343 loc) · 11 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/****************************************************************************
* fs/vfs/fs_read.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <sched.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/cancelpt.h>
#include "inode/inode.h"
#include "vfs.h"
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: file_readv_compat
*
* Description:
* Emulate readv using file_operation::read.
*
* Unless iovcnt <= 1, this implementation is NOT appropriate for files
* with non-trivial semantics, including:
*
* - Files which might return partial success. (except the EOF)
* (Eg. certain character devices, including tty.)
*
* - Files which need to preserve data boundaries.
* (Eg. datagram sockets)
*
* - Files which need to provide read/write atomicity.
* (Eg. regular files, pipes, fifos. Note that, although NuttX
* doesn't implement the atomicity for regular files as of writing
* this, POSIX requires it.)
*
* - Files with flow-control mechanisms might be confused a bit by
* this implementation. (Eg. TCP socket)
*
* For those kind of files, please consider to implement
* file_operations::readv natively instead of using this function.
*
****************************************************************************/
static ssize_t file_readv_compat(FAR struct file *filep,
FAR const struct iovec *iov, int iovcnt)
{
FAR struct inode *inode = filep->f_inode;
ssize_t ntotal;
ssize_t nread;
int i;
/* Process each entry in the struct iovec array */
for (i = 0, ntotal = 0; i < iovcnt; i++)
{
/* Ignore zero-length reads */
if (iov[i].iov_len == 0)
{
continue;
}
/* Sanity check to avoid total length overflow */
if (SSIZE_MAX - ntotal < iov[i].iov_len)
{
if (ntotal > 0)
{
break;
}
return -EINVAL;
}
nread = inode->u.i_ops->read(filep, iov[i].iov_base,
iov[i].iov_len);
/* Check for a read error */
if (nread < 0)
{
if (ntotal > 0)
{
break;
}
return nread;
}
ntotal += nread;
/* Check for a partial success condition, including an end-of-file */
if (nread < iov[i].iov_len)
{
break;
}
}
return ntotal;
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: file_readv
*
* Description:
* file_readv() is an internal OS interface. It is functionally similar to
* the standard readv() interface except:
*
* - It does not modify the errno variable,
* - It is not a cancellation point,
* - It accepts a file structure instance instead of file descriptor.
*
* Input Parameters:
* filep - File structure instance
* iov - User-provided iovec to save the data
* iovcnt - The number of iovec
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or a negated errno value on any failure.
*
****************************************************************************/
ssize_t file_readv(FAR struct file *filep,
FAR const struct iovec *iov, int iovcnt)
{
FAR struct inode *inode;
ssize_t ret;
DEBUGASSERT(filep);
inode = filep->f_inode;
/* Check buffer count and pointer for iovec */
if (iovcnt == 0)
{
return 0;
}
if (iov == NULL)
{
return -EFAULT;
}
/* Are all iov_base accessible? */
for (ret = 0; ret < iovcnt; ret++)
{
if (iov[ret].iov_base == NULL && iov[ret].iov_len != 0)
{
return -EFAULT;
}
}
ret = -EBADF;
/* Was this file opened for read access? */
if ((filep->f_oflags & O_RDOK) == 0)
{
/* No.. File is not read-able */
ret = -EACCES;
}
/* Is a driver or mountpoint registered? If so, does it support the read
* method?
* If yes, then let it perform the read. NOTE that for the case of the
* mountpoint, we depend on the read methods being identical in
* signature and position in the operations vtable.
*/
else if (inode != NULL && inode->u.i_ops)
{
clock_t start_time;
FS_PROFILE_START(start_time);
if (inode->u.i_ops->readv)
{
struct uio uio;
ret = uio_init(&uio, iov, iovcnt);
if (ret == 0)
{
ret = inode->u.i_ops->readv(filep, &uio);
}
}
else if (inode->u.i_ops->read)
{
ret = file_readv_compat(filep, iov, iovcnt);
}
FS_PROFILE_STOP(start_time, g_fs_profile.total_read_time,
g_fs_profile.reads);
}
/* Return the number of bytes read (or possibly an error code) */
#ifdef CONFIG_FS_NOTIFY
if (ret > 0)
{
notify_read(filep);
}
#endif
return ret;
}
/****************************************************************************
* Name: file_read
*
* Description:
* file_read() is an internal OS interface. It is functionally similar to
* the standard read() interface except:
*
* - It does not modify the errno variable,
* - It is not a cancellation point,
* - It accepts a file structure instance instead of file descriptor.
*
* Input Parameters:
* filep - File structure instance
* buf - User-provided to save the data
* nbytes - The maximum size of the user-provided buffer
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or a negated errno value on any failure.
*
****************************************************************************/
ssize_t file_read(FAR struct file *filep, FAR void *buf, size_t nbytes)
{
struct iovec iov;
iov.iov_base = buf;
iov.iov_len = nbytes;
return file_readv(filep, &iov, 1);
}
/****************************************************************************
* Name: nx_readv
*
* Description:
* nx_readv() is an internal OS interface. It is functionally similar to
* the standard readv() interface except:
*
* - It does not modify the errno variable, and
* - It is not a cancellation point.
*
* Input Parameters:
* fd - File descriptor to read from
* iov - User-provided iovec to save the data
* iovcnt - The number of iovec
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or a negated errno value on any failure.
*
****************************************************************************/
ssize_t nx_readv(int fd, FAR const struct iovec *iov, int iovcnt)
{
FAR struct file *filep;
ssize_t ret;
/* First, get the file structure. Note that on failure,
* file_get() will return the errno.
*/
ret = (ssize_t)file_get(fd, &filep);
if (ret >= 0)
{
/* Then let file_readv do all of the work. */
ret = file_readv(filep, iov, iovcnt);
file_put(filep);
}
return ret;
}
/****************************************************************************
* Name: nx_read
*
* Description:
* nx_read() is an internal OS interface. It is functionally similar to
* the standard read() interface except:
*
* - It does not modify the errno variable, and
* - It is not a cancellation point.
*
* Input Parameters:
* fd - File descriptor to read from
* buf - User-provided to save the data
* nbytes - The maximum size of the user-provided buffer
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or a negated errno value on any failure.
*
****************************************************************************/
ssize_t nx_read(int fd, FAR void *buf, size_t nbytes)
{
struct iovec iov;
iov.iov_base = buf;
iov.iov_len = nbytes;
return nx_readv(fd, &iov, 1);
}
/****************************************************************************
* Name: readv
*
* Description:
* The standard, POSIX read interface.
*
* Input Parameters:
* fd - File descriptor to read from
* iov - User-provided iovec to save the data
* iovcnt - The number of iovec
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or -1 on failure with errno set appropriately.
*
****************************************************************************/
ssize_t readv(int fd, FAR const struct iovec *iov, int iovcnt)
{
ssize_t ret;
/* readv() is a cancellation point */
enter_cancellation_point();
/* Let nx_readv() do the real work */
ret = nx_readv(fd, iov, iovcnt);
if (ret < 0)
{
set_errno(-ret);
ret = ERROR;
}
leave_cancellation_point();
return ret;
}
/****************************************************************************
* Name: read
*
* Description:
* The standard, POSIX read interface.
*
* Input Parameters:
* fd - File descriptor to read from
* buf - User-provided to save the data
* nbytes - The maximum size of the user-provided buffer
*
* Returned Value:
* The positive non-zero number of bytes read on success, 0 on if an
* end-of-file condition, or -1 on failure with errno set appropriately.
*
****************************************************************************/
ssize_t read(int fd, FAR void *buf, size_t nbytes)
{
struct iovec iov;
iov.iov_base = buf;
iov.iov_len = nbytes;
return readv(fd, &iov, 1);
}