1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
99
100
104
105
106
107
108
109
112
113
114
115
116
117
118
119
120
121
125
126
135
136
137
138
139
140
141
142
143
146
147
148
149
150
151
152
153
154
155
156
157
158
159
163
164
165
166
167
168
169
170
171
172
173
174
175
179
180
181
182
183
193
194
195
196
197
198
199
200
201
202
206
207
208
212
213
214
225
226
227
228
229
239
240
241
242
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
286
287
292
293
294
295
296
297
298
302
303
308
309
310
319
320
321
325
326
327
/* ... */
#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
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
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
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
}{...};
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;
}{...}
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;
}{ ... }
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);
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;
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;
st->st_nlink = 1;
st->st_uid = 0;
st->st_gid = 0;
st->st_size = 0;
return 0;
}{ ... }
/* ... */#endif
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
void esp_vfs_include_nullfs_register(void)
{
}{ ... }