forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfs_pseudofile.c
463 lines (389 loc) · 10.6 KB
/
fs_pseudofile.c
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
/****************************************************************************
* fs/vfs/fs_pseudofile.c
*
* 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 <stdio.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <fcntl.h>
#include <sys/param.h>
#include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h>
#include <nuttx/fs/ioctl.h>
#include <nuttx/lib/math32.h>
#include "inode/inode.h"
/****************************************************************************
* Private Types
****************************************************************************/
struct fs_pseudofile_s
{
mutex_t lock;
uint8_t crefs;
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
bool unlinked;
#endif
FAR char *content;
};
/****************************************************************************
* Private Functions Prototypes
****************************************************************************/
static int pseudofile_open(FAR struct file *filep);
static int pseudofile_close(FAR struct file *filep);
static ssize_t pseudofile_write(FAR struct file *filep,
FAR const char *buffer, size_t buflen);
static ssize_t pseudofile_read(FAR struct file *filep, FAR char *buffer,
size_t buflen);
static off_t pseudofile_seek(FAR struct file *filep, off_t offset,
int whence);
static int pseudofile_mmap(FAR struct file *filep,
FAR struct mm_map_entry_s *map);
static int pseudofile_truncate(FAR struct file *filep, off_t length);
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
static int pseudofile_unlink(FAR struct inode *inode);
#endif
/****************************************************************************
* Private Data
****************************************************************************/
static const struct file_operations g_pseudofile_ops =
{
pseudofile_open, /* open */
pseudofile_close, /* close */
pseudofile_read, /* read */
pseudofile_write, /* write */
pseudofile_seek, /* seek */
NULL, /* ioctl */
pseudofile_mmap, /* mmap */
pseudofile_truncate, /* truncate */
NULL, /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
pseudofile_unlink, /* unlink */
#endif
};
/****************************************************************************
* Private Functions
****************************************************************************/
static int pseudofile_open(FAR struct file *filep)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
if (pf->crefs >= 255)
{
ret = -EMFILE;
}
else
{
pf->crefs += 1;
ret = OK;
}
#ifdef CONFIG_PSEUDOFS_ATTRIBUTES
node->i_atime.tv_sec = time(NULL);
#endif
nxmutex_unlock(&pf->lock);
return ret;
}
static void pseudofile_remove(FAR struct fs_pseudofile_s *pf)
{
nxmutex_unlock(&pf->lock);
nxmutex_destroy(&pf->lock);
kmm_free(pf->content);
kmm_free(pf);
}
static int pseudofile_close(FAR struct file *filep)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
pf->crefs--;
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
if (pf->crefs <= 0 && pf->unlinked)
#else
if (pf->crefs <= 0)
#endif
{
pseudofile_remove(pf);
return OK;
}
nxmutex_unlock(&pf->lock);
return OK;
}
static int pseudofile_expand(FAR struct inode *node,
size_t size)
{
FAR struct fs_pseudofile_s *pf = node->i_private;
FAR void *tmp;
if (pf->content && kmm_malloc_size(pf->content) >= size)
{
node->i_size = size;
return 0;
}
tmp = kmm_realloc(pf->content, 1 << LOG2_CEIL(size));
if (tmp == NULL)
{
return -ENOMEM;
}
pf->content = tmp;
node->i_size = size;
return 0;
}
static ssize_t pseudofile_write(FAR struct file *filep,
FAR const char *buffer, size_t buflen)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
if (filep->f_oflags & O_APPEND)
{
ret = pseudofile_expand(node, node->i_size + buflen);
if (ret < 0)
{
nxmutex_unlock(&pf->lock);
return ret;
}
filep->f_pos = node->i_size - buflen;
}
else
{
ret = pseudofile_expand(node, filep->f_pos + buflen);
if (ret < 0)
{
nxmutex_unlock(&pf->lock);
return ret;
}
}
memcpy(pf->content + filep->f_pos, buffer, buflen);
filep->f_pos += buflen;
#ifdef CONFIG_PSEUDOFS_ATTRIBUTES
node->i_mtime.tv_sec = time(NULL);
#endif
nxmutex_unlock(&pf->lock);
return buflen;
}
static ssize_t pseudofile_read(FAR struct file *filep, FAR char *buffer,
size_t buflen)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
if (buffer == NULL || node->i_size < filep->f_pos)
{
return -EINVAL;
}
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
buflen = MIN(node->i_size - filep->f_pos, buflen);
memcpy(buffer, pf->content + filep->f_pos, buflen);
filep->f_pos += buflen;
#ifdef CONFIG_PSEUDOFS_ATTRIBUTES
node->i_atime.tv_sec = time(NULL);
#endif
nxmutex_unlock(&pf->lock);
return buflen;
}
static off_t pseudofile_seek(FAR struct file *filep, off_t offset,
int whence)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
/* Map the offset according to the whence option */
switch (whence)
{
case SEEK_SET:
break;
case SEEK_CUR:
offset += filep->f_pos;
break;
case SEEK_END:
offset += node->i_size;
break;
default:
nxmutex_unlock(&pf->lock);
return -EINVAL;
}
if (offset < 0)
{
nxmutex_unlock(&pf->lock);
return -EINVAL;
}
filep->f_pos = offset;
#ifdef CONFIG_PSEUDOFS_ATTRIBUTES
node->i_atime.tv_sec = time(NULL);
#endif
nxmutex_unlock(&pf->lock);
return offset;
}
static int pseudofile_mmap(FAR struct file *filep,
FAR struct mm_map_entry_s *map)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
if (map->offset >= 0 && map->offset < node->i_size &&
map->length != 0 && map->offset + map->length <= node->i_size)
{
map->vaddr = pf->content + map->offset;
return OK;
}
return -EINVAL;
}
static int pseudofile_truncate(FAR struct file *filep, off_t length)
{
FAR struct inode *node = filep->f_inode;
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
if (length < node->i_size)
{
FAR void *tmp;
tmp = kmm_realloc(pf->content, length);
if (tmp == NULL)
{
ret = -ENOMEM;
goto out;
}
pf->content = tmp;
node->i_size = length;
}
else
{
ret = pseudofile_expand(node, length);
if (ret < 0)
{
goto out;
}
memset(pf->content + node->i_size, 0, length - node->i_size);
}
#ifdef CONFIG_PSEUDOFS_ATTRIBUTES
node->i_mtime.tv_sec = time(NULL);
#endif
out:
nxmutex_unlock(&pf->lock);
return ret;
}
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
static int pseudofile_unlink(FAR struct inode *node)
{
FAR struct fs_pseudofile_s *pf = node->i_private;
int ret;
ret = nxmutex_lock(&pf->lock);
if (ret < 0)
{
return ret;
}
if (pf->crefs <= 0)
{
pseudofile_remove(pf);
return OK;
}
pf->unlinked = true;
nxmutex_unlock(&pf->lock);
return OK;
}
#endif
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: pseudofile_create
*
* Description:
* Create the pseudo-file with specified path and mode, and alloc inode
* of this pseudo-file.
*
****************************************************************************/
int pseudofile_create(FAR struct inode **node, FAR const char *path,
mode_t mode)
{
FAR struct fs_pseudofile_s *pf;
int ret;
if (node == NULL || path == NULL)
{
return -EINVAL;
}
pf = kmm_zalloc(sizeof(struct fs_pseudofile_s));
if (pf == NULL)
{
return -ENOMEM;
}
nxmutex_init(&pf->lock);
ret = inode_lock();
if (ret < 0)
{
goto lock_err;
}
ret = inode_reserve(path, mode, node);
if (ret < 0)
{
goto reserve_err;
}
(*node)->i_crefs = 0;
(*node)->i_flags = 1;
(*node)->u.i_ops = &g_pseudofile_ops;
(*node)->i_private = pf;
inode_unlock();
return 0;
reserve_err:
inode_unlock();
lock_err:
nxmutex_destroy(&pf->lock);
kmm_free(pf);
return ret;
}
/****************************************************************************
* Name: inode_is_pseudofile
*
* Description:
* Check inode whether is a pseudo file.
*
****************************************************************************/
bool inode_is_pseudofile(FAR struct inode *inode)
{
return inode != NULL && inode->u.i_ops == &g_pseudofile_ops;
}