3 * - Root Filesystem Driver
12 #define MAX_FILE_SIZE 1024
15 tVFS_Node *Root_InitDevice(const char *Device, const char **Options);
16 int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags);
17 tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name);
18 char *Root_ReadDir(tVFS_Node *Node, int Pos);
19 Uint64 Root_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer);
20 Uint64 Root_Write(tVFS_Node *Node, Uint64 Offset, Uint64 Length, const void *Buffer);
21 tRamFS_File *Root_int_AllocFile(void);
24 tVFS_Driver gRootFS_Info = {
25 "rootfs", 0, Root_InitDevice, NULL, NULL
27 tRamFS_File RootFS_Files[MAX_FILES];
28 tVFS_ACL RootFS_DirACLs[3] = {
29 {{0,0}, {0,VFS_PERM_ALL}}, // Owner (Root)
30 {{1,0}, {0,VFS_PERM_ALL}}, // Group (Root)
31 {{0,-1}, {0,VFS_PERM_ALL^VFS_PERM_WRITE}} // World (Nobody)
33 tVFS_ACL RootFS_FileACLs[3] = {
34 {{0,0}, {0,VFS_PERM_ALL^VFS_PERM_EXECUTE}}, // Owner (Root)
35 {{1,0}, {0,VFS_PERM_ALL^VFS_PERM_EXECUTE}}, // Group (Root)
36 {{0,-1}, {0,VFS_PERM_READ}} // World (Nobody)
38 tVFS_NodeType gRootFS_DirType = {
39 .TypeName = "RootFS-Dir",
40 .ReadDir = Root_ReadDir,
41 .FindDir = Root_FindDir,
44 tVFS_NodeType gRootFS_FileType = {
45 .TypeName = "RootFS-File",
52 * \brief Initialise the root filesystem
54 tVFS_Node *Root_InitDevice(const char *Device, const char **Options)
57 if(strcmp(Device, "root") != 0) {
62 root = &RootFS_Files[0];
64 root->Node.ImplPtr = root;
68 = root->Node.ATime = now();
69 root->Node.NumACLs = 3;
70 root->Node.ACLs = RootFS_DirACLs;
72 root->Node.Type = &gRootFS_DirType;
78 * \fn int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
79 * \brief Create an entry in the root directory
81 int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
83 tRamFS_File *parent = Node->ImplPtr;
85 tRamFS_File *prev = (tRamFS_File *) &parent->Data.FirstChild;
87 ENTER("pNode sName xFlags", Node, Name, Flags);
89 LOG("%i > %i", strlen(Name)+1, sizeof(child->Name));
90 if(strlen(Name) + 1 > sizeof(child->Name))
93 // Find last child, while we're at it, check for duplication
94 for( child = parent->Data.FirstChild; child; prev = child, child = child->Next )
96 if(strcmp(child->Name, Name) == 0) {
102 child = Root_int_AllocFile();
103 memset(child, 0, sizeof(tRamFS_File));
105 strcpy(child->Name, Name);
107 child->Parent = parent;
109 child->Data.FirstChild = NULL;
111 child->Node.ImplPtr = child;
112 child->Node.Flags = Flags;
113 child->Node.NumACLs = 3;
114 child->Node.Size = 0;
116 if(Flags & VFS_FFLAG_DIRECTORY)
118 child->Node.ACLs = RootFS_DirACLs;
119 child->Node.Type = &gRootFS_DirType;
121 if(Flags & VFS_FFLAG_SYMLINK)
122 child->Node.ACLs = RootFS_DirACLs;
124 child->Node.ACLs = RootFS_FileACLs;
125 child->Node.Type = &gRootFS_FileType;
130 parent->Node.Size ++;
137 * \fn tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
138 * \brief Find an entry in the filesystem
140 tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
142 tRamFS_File *parent = Node->ImplPtr;
143 tRamFS_File *child = parent->Data.FirstChild;
145 ENTER("pNode sName", Node, Name);
146 //Log("Root_FindDir: (Node=%p, Name='%s')", Node, Name);
148 for(;child;child = child->Next)
150 //Log(" Root_FindDir: strcmp('%s', '%s')", child->Node.Name, Name);
151 LOG("child->Name = '%s'", child->Name);
152 if(strcmp(child->Name, Name) == 0) {
153 LEAVE('p', &child->Node);
163 * \fn char *Root_ReadDir(tVFS_Node *Node, int Pos)
164 * \brief Get an entry from the filesystem
166 char *Root_ReadDir(tVFS_Node *Node, int Pos)
168 tRamFS_File *parent = Node->ImplPtr;
169 tRamFS_File *child = parent->Data.FirstChild;
171 for( ; child && Pos--; child = child->Next ) ;
173 if(child) return strdup(child->Name);
179 * \fn Uint64 Root_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
180 * \brief Read from a file in the root directory
182 Uint64 Root_Read(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
184 tRamFS_File *file = Node->ImplPtr;
185 ENTER("pNode XOffset XLength pBuffer", Node, Offset, Length, Buffer);
187 if(Offset > Node->Size) {
191 if(Length > Node->Size) Length = Node->Size;
193 if(Offset+Length > Node->Size)
194 Length = Node->Size - Offset;
196 memcpy(Buffer, file->Data.Bytes+Offset, Length);
197 LOG("Buffer = '%.*s'", (int)Length, Buffer);
204 * \fn Uint64 Root_Write(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
205 * \brief Write to a file in the root directory
207 Uint64 Root_Write(tVFS_Node *Node, Uint64 Offset, Uint64 Length, const void *Buffer)
209 tRamFS_File *file = Node->ImplPtr;
211 ENTER("pNode XOffset XLength pBuffer", Node, Offset, Length, Buffer);
213 if(Offset > Node->Size) {
218 if(Offset + Length > MAX_FILE_SIZE)
220 Length = MAX_FILE_SIZE - Offset;
223 LOG("Buffer = '%.*s'", (int)Length, Buffer);
225 // Check if buffer needs to be expanded
226 if(Offset + Length > Node->Size)
228 void *tmp = realloc( file->Data.Bytes, Offset + Length );
230 Warning("Root_Write - Increasing buffer size failed");
234 file->Data.Bytes = tmp;
235 Node->Size = Offset + Length;
236 LOG("Expanded buffer to %i bytes", (int)Node->Size);
239 memcpy(file->Data.Bytes+Offset, Buffer, Length);
240 LOG("File - '%.*s'", Node->Size, file->Data.Bytes);
247 * \fn tRamFS_File *Root_int_AllocFile(void)
248 * \brief Allocates a file from the pool
250 tRamFS_File *Root_int_AllocFile(void)
253 for( i = 0; i < MAX_FILES; i ++ )
255 if( RootFS_Files[i].Name[0] == '\0' )
257 return &RootFS_Files[i];