Select one of the symbols to view example projects that use it.
 
Outline
#include "sdkconfig.h"
#include <stdio.h>
#include <sys/types.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <sys/errno.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/types.h>
#include <fcntl.h>
#include "esp_vfs.h"
#include "esp_vfs_ops.h"
#include "esp_log.h"
#include "esp_err.h"
#include "esp_private/startup_internal.h"
#include "esp_vfs_null.h"
#define UNUSED
vfs_null_flags_t
vfs_null_ctx_t
#define VFS_NULL_MAX_FDS
#define GET_FLAGS
#define SET_FLAGS
#define WRITABLE
#define READABLE
#define SET_WRITABLE
#define SET_READABLE
#define FD_IN_RANGE
#define IS_FD_VALID
#define NULLFS_LOGD
#define NULLFS_LOGD
g_fds
s_vfs_null_dir
s_vfs_null
esp_vfs_null_get_vfs()
esp_vfs_null_register()
vfs_null_write(int, const void *, size_t)
vfs_null_lseek(int, off_t, int)
vfs_null_read(int, void *, size_t)
vfs_null_pread(int, void *, size_t, off_t)
vfs_null_pwrite(int, const void *, size_t, off_t)
vfs_null_get_empty_fd()
vfs_null_open(const char *, int, int)
vfs_null_close(int)
vfs_null_fstat(int, struct stat *)
vfs_null_stat(const char *, struct stat *)
vfs_null_fcntl(int, int, int)
vfs_null_ioctl(int, int, va_list)
vfs_null_fsync(int)
esp_system_init_fn_init_vfs_nullfs
esp_vfs_include_nullfs_register()
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/vfs/nullfs.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "sdkconfig.h" #include <stdio.h> #include <sys/types.h> #include <stddef.h> #include <stdint.h> #include <string.h> #include <sys/errno.h> #include <sys/stat.h> #include <sys/ioctl.h> #include <sys/fcntl.h> #include <sys/types.h> #include <fcntl.h> #include "esp_vfs.h" #include "esp_vfs_ops.h" #include "esp_log.h" #include "esp_err.h" #include "esp_private/startup_internal.h" #include "esp_vfs_null.h"18 includes #define UNUSED(x) (void)(x) typedef enum { VFS_NULL_CLOSED = 0, VFS_NULL_READ = 1 << 0, VFS_NULL_WRITE = 1 << 1, }{ ... } vfs_null_flags_t; typedef uint32_t vfs_null_ctx_t; #define VFS_NULL_MAX_FDS (sizeof(vfs_null_ctx_t) * 4) #define GET_FLAGS(ctx, fd) ((ctx >> (fd * 2)) & 0x3) #define SET_FLAGS(ctx, fd, flags) (ctx |= (flags << (fd * 2))) #define WRITABLE(ctx, fd) (GET_FLAGS(ctx, fd) & VFS_NULL_WRITE) #define READABLE(ctx, fd) (GET_FLAGS(ctx, fd) & VFS_NULL_READ) #define SET_WRITABLE(ctx, fd) SET_FLAGS(ctx, fd, VFS_NULL_WRITE) #define SET_READABLE(ctx, fd) SET_FLAGS(ctx, fd, VFS_NULL_READ) #define FD_IN_RANGE(fd) (fd >= 0 && fd < VFS_NULL_MAX_FDS) #define IS_FD_VALID(fd) (FD_IN_RANGE(fd) && GET_FLAGS(g_fds, fd) != VFS_NULL_CLOSED)9 defines #ifdef CONFIG_ESP_CONSOLE_NONE // Prevents recursive logging static const char* TAG = "nullfs"; #define NULLFS_LOGD(TAG, fmt, ...) ESP_LOGD(TAG, fmt, ##__VA_ARGS__)/* ... */ #else #define NULLFS_LOGD(TAG, fmt, ...) #endif static vfs_null_ctx_t g_fds = 0; static ssize_t vfs_null_write(int fd, const void *data, size_t size); static off_t vfs_null_lseek(int fd, off_t offset, int whence); static ssize_t vfs_null_read(int fd, void *data, size_t size); static ssize_t vfs_null_pread(int fd, void *data, size_t size, off_t offset); static ssize_t vfs_null_pwrite(int fd, const void *data, size_t size, off_t offset); static int vfs_null_open(const char* path, int flags, int mode); static int vfs_null_close(int fd); static int vfs_null_fstat(int fd, struct stat *st); #if CONFIG_VFS_SUPPORT_DIR static int vfs_null_stat(const char* path, struct stat *st); #endif // CONFIG_VFS_SUPPORT_DIR static int vfs_null_fcntl(int fd, int cmd, int arg); static int vfs_null_ioctl(int fd, int cmd, va_list args); static int vfs_null_fsync(int fd); #if CONFIG_VFS_SUPPORT_DIR static const esp_vfs_dir_ops_t s_vfs_null_dir = { .stat = &vfs_null_stat, }{...}; /* ... */#endif // CONFIG_VFS_SUPPORT_DIR static const esp_vfs_fs_ops_t s_vfs_null = { .write = &vfs_null_write, .lseek = &vfs_null_lseek, .read = &vfs_null_read, .pread = &vfs_null_pread, .pwrite = &vfs_null_pwrite, .open = &vfs_null_open, .close = &vfs_null_close, .fstat = &vfs_null_fstat, .fcntl = &vfs_null_fcntl, .ioctl = &vfs_null_ioctl, .fsync = &vfs_null_fsync, #if CONFIG_VFS_SUPPORT_DIR .dir = &s_vfs_null_dir, #endif // CONFIG_VFS_SUPPORT_DIR }{...}; const esp_vfs_fs_ops_t *esp_vfs_null_get_vfs(void) { return &s_vfs_null; }{ ... } esp_err_t esp_vfs_null_register(void) { return esp_vfs_register_fs("/dev/null", &s_vfs_null, ESP_VFS_FLAG_STATIC, NULL); }{ ... } static ssize_t vfs_null_write(int fd, const void *data, size_t size) { UNUSED(data); if (FD_IN_RANGE(fd) && WRITABLE(g_fds, fd)) { return size; }{...} errno = EBADF; return -1; }{ ... } static off_t vfs_null_lseek(int fd, off_t offset, int whence) { UNUSED(offset); if (!IS_FD_VALID(fd)) { errno = EBADF; return -1; }{...} switch (whence) { case SEEK_SET: case SEEK_CUR: case SEEK_END: return 0;... default: errno = EINVAL; return -1;... }{...} }{ ... } static ssize_t vfs_null_read(int fd, void *data, size_t size) { UNUSED(data); NULLFS_LOGD(TAG, "read %u bytes", size); if (FD_IN_RANGE(fd) && READABLE(g_fds, fd)) { return 0; // EOF }{...} errno = EBADF; return -1; }{ ... } static int vfs_null_pread(int fd, void *data, size_t size, off_t offset) { UNUSED(data); UNUSED(size); UNUSED(offset); NULLFS_LOGD(TAG, "pread %u bytes at offset %ld", size, offset); if (!FD_IN_RANGE(fd) || !READABLE(g_fds, fd)) { errno = EBADF; return -1; }{...} return 0; // EOF }{ ... } static int vfs_null_pwrite(int fd, const void *data, size_t size, off_t offset) { UNUSED(data); UNUSED(offset); NULLFS_LOGD(TAG, "pwrite %u bytes at offset %ld", size, offset); if (!FD_IN_RANGE(fd) || !WRITABLE(g_fds, fd)) { errno = EBADF; return -1; }{...} return size; }{ ... } static int vfs_null_get_empty_fd(void) { for (int i = 0; i < VFS_NULL_MAX_FDS; i++) { if (GET_FLAGS(g_fds, i) == VFS_NULL_CLOSED) { return i; }{...} }{...} return -1; }{ ... } static int vfs_null_open(const char* path, int flags, int mode) { UNUSED(mode); NULLFS_LOGD(TAG, "open %s, flags %d", path, flags); // Possibly check if the flags are valid if (strcmp(path, "/") != 0) { errno = ENOENT; return -1; }{...} int fd = vfs_null_get_empty_fd(); if (fd == -1) { errno = EMFILE; return -1; }{...} int acc_mode = flags & O_ACCMODE; if (acc_mode == O_RDWR) { SET_READABLE(g_fds, fd); SET_WRITABLE(g_fds, fd); }{...} else if (acc_mode == O_WRONLY) { SET_WRITABLE(g_fds, fd); }{...} else if (acc_mode == O_RDONLY) { SET_READABLE(g_fds, fd); }{...} else { errno = EINVAL; return -1; }{...} return fd; }{ ... } static int vfs_null_close(int fd) { if (!FD_IN_RANGE(fd)) { errno = EBADF; return -1; }{...} SET_FLAGS(g_fds, fd, VFS_NULL_CLOSED); return 0; }{ ... } static int vfs_null_fstat(int fd, struct stat *st) { if (!FD_IN_RANGE(fd)) { errno = EBADF; return -1; }{...} memset(st, 0, sizeof(struct stat)); st->st_mode = S_IFCHR | 0666; // Special character device with read/write permissions for everyone st->st_nlink = 1; st->st_uid = 0; st->st_gid = 0; st->st_size = 0; return 0; }{ ... } #if CONFIG_VFS_SUPPORT_DIR static int vfs_null_stat(const char* path, struct stat *st) { if (strcmp(path, "/") != 0) { errno = ENOENT; return -1; }{...} memset(st, 0, sizeof(struct stat)); st->st_mode = S_IFCHR | 0666; // Special character device with read/write permissions for everyone st->st_nlink = 1; st->st_uid = 0; st->st_gid = 0; st->st_size = 0; return 0; }{ ... } /* ... */#endif // CONFIG_VFS_SUPPORT_DIR static int vfs_null_fcntl(int fd, int cmd, int arg) { UNUSED(arg); if (!FD_IN_RANGE(fd)) { errno = EBADF; return -1; }{...} switch (cmd) { default: errno = ENOSYS; return -1;... }{...} }{ ... } static int vfs_null_ioctl(int fd, int cmd, va_list args) { UNUSED(args); if (!FD_IN_RANGE(fd)) { errno = EBADF; return -1; }{...} switch (cmd) { default: errno = ENOSYS; return -1;... }{...} }{ ... } static int vfs_null_fsync(int fd) { if (!FD_IN_RANGE(fd)) { errno = EBADF; return -1; }{...} return 0; }{ ... } #if defined(CONFIG_VFS_INITIALIZE_DEV_NULL) || defined(CONFIG_ESP_CONSOLE_NONE) ESP_SYSTEM_INIT_FN(init_vfs_nullfs, CORE, BIT(0), 113) { return esp_vfs_null_register(); }{ ... } #endif // CONFIG_VFS_INITIALIZE_DEV_NULL void esp_vfs_include_nullfs_register(void) { // Linker hook function, exists to make the linker examine this file }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.