3 * - Root Filesystem Driver
12 #define MAX_FILE_SIZE 1024
15 tVFS_Node *Root_InitDevice(const char *Device, const char **Options);
16 tVFS_Node *Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags);
17 tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name);
18 int Root_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]);
19 size_t Root_Read(tVFS_Node *Node, off_t Offset, size_t Length, void *Buffer);
20 size_t Root_Write(tVFS_Node *Node, off_t Offset, size_t Length, const void *Buffer);
21 tRamFS_File *Root_int_AllocFile(void);
24 tVFS_Driver gRootFS_Info = {
26 .InitDevice = Root_InitDevice
28 tRamFS_File RootFS_Files[MAX_FILES];
29 tVFS_ACL RootFS_DirACLs[3] = {
30 {{0,0}, {0,VFS_PERM_ALL}}, // Owner (Root)
31 {{1,0}, {0,VFS_PERM_ALL}}, // Group (Root)
32 {{0,-1}, {0,VFS_PERM_ALL^VFS_PERM_WRITE}} // World (Nobody)
34 tVFS_ACL RootFS_FileACLs[3] = {
35 {{0,0}, {0,VFS_PERM_ALL^VFS_PERM_EXECUTE}}, // Owner (Root)
36 {{1,0}, {0,VFS_PERM_ALL^VFS_PERM_EXECUTE}}, // Group (Root)
37 {{0,-1}, {0,VFS_PERM_READ}} // World (Nobody)
39 tVFS_NodeType gRootFS_DirType = {
40 .TypeName = "RootFS-Dir",
41 .ReadDir = Root_ReadDir,
42 .FindDir = Root_FindDir,
45 tVFS_NodeType gRootFS_FileType = {
46 .TypeName = "RootFS-File",
53 * \brief Initialise the root filesystem
55 tVFS_Node *Root_InitDevice(const char *Device, const char **Options)
58 if(strcmp(Device, "root") != 0) {
63 root = &RootFS_Files[0];
67 root->Node.ImplPtr = root;
71 = root->Node.ATime = now();
72 root->Node.NumACLs = 3;
73 root->Node.ACLs = RootFS_DirACLs;
75 root->Node.Flags = VFS_FFLAG_DIRECTORY;
76 root->Node.Type = &gRootFS_DirType;
82 * \fn int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
83 * \brief Create an entry in the root directory
85 tVFS_Node *Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
87 tRamFS_File *parent = Node->ImplPtr;
89 tRamFS_File *prev = NULL;
91 ENTER("pNode sName xFlags", Node, Name, Flags);
93 LOG("Sanity check name length - %i > %i", strlen(Name)+1, sizeof(child->Name));
94 if(strlen(Name) + 1 > sizeof(child->Name)) {
99 // Find last child, while we're at it, check for duplication
100 for( child = parent->Data.FirstChild; child; prev = child, child = child->Next )
102 if(strcmp(child->Name, Name) == 0) {
105 LEAVE_RET('n', NULL);
109 child = Root_int_AllocFile();
110 memset(child, 0, sizeof(tRamFS_File));
112 strcpy(child->Name, Name);
113 LOG("Name = '%s'", child->Name);
115 child->Parent = parent;
117 child->Data.FirstChild = NULL;
119 child->Node.ImplPtr = child;
120 child->Node.Flags = Flags;
121 child->Node.NumACLs = 3;
122 child->Node.Size = 0;
124 if(Flags & VFS_FFLAG_DIRECTORY)
126 child->Node.ACLs = RootFS_DirACLs;
127 child->Node.Type = &gRootFS_DirType;
129 if(Flags & VFS_FFLAG_SYMLINK)
130 child->Node.ACLs = RootFS_DirACLs;
132 child->Node.ACLs = RootFS_FileACLs;
133 child->Node.Type = &gRootFS_FileType;
140 parent->Data.FirstChild = child;
142 parent->Node.Size ++;
144 LEAVE('n', &child->Node);
149 * \fn tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
150 * \brief Find an entry in the filesystem
152 tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
154 tRamFS_File *parent = Node->ImplPtr;
155 tRamFS_File *child = parent->Data.FirstChild;
157 ENTER("pNode sName", Node, Name);
159 for( child = parent->Data.FirstChild; child; child = child->Next )
161 LOG("child->Name = '%s'", child->Name);
162 if(strcmp(child->Name, Name) == 0)
164 LEAVE('p', &child->Node);
174 * \fn char *Root_ReadDir(tVFS_Node *Node, int Pos)
175 * \brief Get an entry from the filesystem
177 int Root_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX])
179 tRamFS_File *parent = Node->ImplPtr;
180 tRamFS_File *child = parent->Data.FirstChild;
182 for( ; child && Pos--; child = child->Next ) ;
185 strncpy(Dest, child->Name, FILENAME_MAX);
193 * \brief Read from a file in the root directory
195 size_t Root_Read(tVFS_Node *Node, off_t Offset, size_t Length, void *Buffer)
197 tRamFS_File *file = Node->ImplPtr;
199 if(Offset > Node->Size) return 0;
201 if(Length > Node->Size)
203 if(Offset+Length > Node->Size)
204 Length = Node->Size - Offset;
206 memcpy(Buffer, file->Data.Bytes+Offset, Length);
212 * \brief Write to a file in the root directory
214 size_t Root_Write(tVFS_Node *Node, off_t Offset, size_t Length, const void *Buffer)
216 tRamFS_File *file = Node->ImplPtr;
218 ENTER("pNode XOffset xLength pBuffer", Node, Offset, Length, Buffer);
220 if(Offset > Node->Size) {
225 if(Offset + Length > MAX_FILE_SIZE)
227 Length = MAX_FILE_SIZE - Offset;
230 LOG("Buffer = '%.*s'", (int)Length, Buffer);
232 // Check if buffer needs to be expanded
233 if(Offset + Length > Node->Size)
235 void *tmp = realloc( file->Data.Bytes, Offset + Length );
237 Warning("Root_Write - Increasing buffer size failed");
241 file->Data.Bytes = tmp;
242 Node->Size = Offset + Length;
243 LOG("Expanded buffer to %i bytes", (int)Node->Size);
246 memcpy(file->Data.Bytes+Offset, Buffer, Length);
247 LOG("File - '%.*s'", Node->Size, file->Data.Bytes);
254 * \fn tRamFS_File *Root_int_AllocFile(void)
255 * \brief Allocates a file from the pool
257 tRamFS_File *Root_int_AllocFile(void)
260 for( i = 0; i < MAX_FILES; i ++ )
262 if( RootFS_Files[i].Name[0] == '\0' )
264 return &RootFS_Files[i];