blob: b238c03a3575399c9c1ad86076aa3ba52ae4c834 (
plain) (
blame)
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
|
#pragma once
#include <stdint.h>
#include <stddef.h>
#define FT_REGULAR 0 // no flags = regular file
#define FT_DIR (0x01)
#define FT_DEV (0x02)
#define FT_BLOCKDEV (0x04)
#define FT_CHARDEV (0x08)
#define FT_FIFO (0x10)
// #define FT_SOCKET (0x20) // Not yet! Semantics not defined. (TODO)
// FM_* enum describes modes for opening a file as well as authorized operations in stat_t
// (some flags are used only for open() or only in stat_t.access)
#define FM_READ (0x01)
#define FM_WRITE (0x02)
#define FM_READDIR (0x04)
#define FM_MMAP (0x08)
#define FM_CREATE (0x10)
#define FM_TRUNC (0x20)
#define FM_APPEND (0x40)
#define FM_IOCTL (0x100)
#define FM_BLOCKING (0x200)
#define FM_DCREATE (0x1000) // create file in directory
#define FM_DMOVE (0x2000) // move file from directory
#define FM_DUNLINK (0x4000) // delete file from directory
typedef struct {
int type;
int access;
size_t size;
// TODO : times & more metadata
} stat_t;
#define DIR_MAX 128 // maximum length for a filename
typedef struct {
char name[DIR_MAX];
stat_t st;
} dirent_t;
#define IOCTL_BLOCKDEV_GET_BLOCK_SIZE 40
#define IOCTL_BLOCKDEV_GET_BLOCK_COUNT 41
/* vim: set ts=4 sw=4 tw=0 noet :*/
|