abe594576bf62d071164a098e4ff6f050bd9f910
[tpg/acess2.git] / KernelLand / Kernel / vfs / fs / root.c
1 /* 
2  * AcessMicro VFS
3  * - Root Filesystem Driver
4  */
5 #define DEBUG   0
6 #include <acess.h>
7 #include <vfs.h>
8 #include <vfs_ramfs.h>
9
10 // === CONSTANTS ===
11 #define MAX_FILES       64
12 #define MAX_FILE_SIZE   1024
13
14 // === PROTOTYPES ===
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 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);
22
23 // === GLOBALS ===
24 tVFS_Driver     gRootFS_Info = {
25         .Name = "rootfs", 
26         .InitDevice = Root_InitDevice
27         };
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)
33 };
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)
38 };
39 tVFS_NodeType   gRootFS_DirType = {
40         .TypeName = "RootFS-Dir",
41         .ReadDir = Root_ReadDir,
42         .FindDir = Root_FindDir,
43         .MkNod = Root_MkNod
44 };
45 tVFS_NodeType   gRootFS_FileType = {
46         .TypeName = "RootFS-File",
47         .Read = Root_Read,
48         .Write = Root_Write,
49 };
50
51 // === CODE ===
52 /**
53  * \brief Initialise the root filesystem
54  */
55 tVFS_Node *Root_InitDevice(const char *Device, const char **Options)
56 {
57         tRamFS_File     *root;
58         if(strcmp(Device, "root") != 0) {
59                 return NULL;
60         }
61         
62         // Create Root Node
63         root = &RootFS_Files[0];
64
65         root->Name[0] = '/';
66         root->Name[1] = '\0';
67         root->Node.ImplPtr = root;
68         
69         root->Node.CTime
70                 = root->Node.MTime
71                 = root->Node.ATime = now();
72         root->Node.NumACLs = 3;
73         root->Node.ACLs = RootFS_DirACLs;
74
75         root->Node.Flags = VFS_FFLAG_DIRECTORY;
76         root->Node.Type = &gRootFS_DirType;
77         
78         return &root->Node;
79 }
80
81 /**
82  * \fn int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
83  * \brief Create an entry in the root directory
84  */
85 int Root_MkNod(tVFS_Node *Node, const char *Name, Uint Flags)
86 {
87         tRamFS_File     *parent = Node->ImplPtr;
88         tRamFS_File     *child;
89         tRamFS_File     *prev = NULL;
90         
91         ENTER("pNode sName xFlags", Node, Name, Flags);
92         
93         LOG("Sanity check name length - %i > %i", strlen(Name)+1, sizeof(child->Name));
94         if(strlen(Name) + 1 > sizeof(child->Name))
95                 LEAVE_RET('i', EINVAL);
96         
97         // Find last child, while we're at it, check for duplication
98         for( child = parent->Data.FirstChild; child; prev = child, child = child->Next )
99         {
100                 if(strcmp(child->Name, Name) == 0) {
101                         LOG("Duplicate");
102                         LEAVE('i', EEXIST);
103                         return EEXIST;
104                 }
105         }
106         
107         child = Root_int_AllocFile();
108         memset(child, 0, sizeof(tRamFS_File));
109         
110         strcpy(child->Name, Name);
111         LOG("Name = '%s'", child->Name);
112         
113         child->Parent = parent;
114         child->Next = NULL;
115         child->Data.FirstChild = NULL;
116         
117         child->Node.ImplPtr = child;
118         child->Node.Flags = Flags;
119         child->Node.NumACLs = 3;
120         child->Node.Size = 0;
121         
122         if(Flags & VFS_FFLAG_DIRECTORY)
123         {
124                 child->Node.ACLs = RootFS_DirACLs;
125                 child->Node.Type = &gRootFS_DirType;
126         } else {
127                 if(Flags & VFS_FFLAG_SYMLINK)
128                         child->Node.ACLs = RootFS_DirACLs;
129                 else
130                         child->Node.ACLs = RootFS_FileACLs;
131                 child->Node.Type = &gRootFS_FileType;
132         }
133         
134         // Append!
135         if( prev )
136                 prev->Next = child;
137         else
138                 parent->Data.FirstChild = child;
139         
140         parent->Node.Size ++;
141         
142         LEAVE('i', EOK);
143         return EOK;
144 }
145
146 /**
147  * \fn tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
148  * \brief Find an entry in the filesystem
149  */
150 tVFS_Node *Root_FindDir(tVFS_Node *Node, const char *Name)
151 {
152         tRamFS_File     *parent = Node->ImplPtr;
153         tRamFS_File     *child = parent->Data.FirstChild;
154         
155         ENTER("pNode sName", Node, Name);
156         
157         for( child = parent->Data.FirstChild; child; child = child->Next )
158         {
159                 LOG("child->Name = '%s'", child->Name);
160                 if(strcmp(child->Name, Name) == 0)
161                 {
162                         LEAVE('p', &child->Node);
163                         return &child->Node;
164                 }
165         }
166         
167         LEAVE('n');
168         return NULL;
169 }
170
171 /**
172  * \fn char *Root_ReadDir(tVFS_Node *Node, int Pos)
173  * \brief Get an entry from the filesystem
174  */
175 char *Root_ReadDir(tVFS_Node *Node, int Pos)
176 {
177         tRamFS_File     *parent = Node->ImplPtr;
178         tRamFS_File     *child = parent->Data.FirstChild;
179         
180         for( ; child && Pos--; child = child->Next ) ;
181         
182         if(child)       return strdup(child->Name);
183         
184         return NULL;
185 }
186
187 /**
188  * \brief Read from a file in the root directory
189  */
190 size_t Root_Read(tVFS_Node *Node, off_t Offset, size_t Length, void *Buffer)
191 {
192         tRamFS_File     *file = Node->ImplPtr;
193         
194         if(Offset > Node->Size) return 0;
195
196         if(Length > Node->Size)
197                 Length = Node->Size;
198         if(Offset+Length > Node->Size)
199                 Length = Node->Size - Offset;
200         
201         memcpy(Buffer, file->Data.Bytes+Offset, Length);
202         
203         return Length;
204 }
205
206 /**
207  * \brief Write to a file in the root directory
208  */
209 size_t Root_Write(tVFS_Node *Node, off_t Offset, size_t Length, const void *Buffer)
210 {
211         tRamFS_File     *file = Node->ImplPtr;
212
213         ENTER("pNode XOffset xLength pBuffer", Node, Offset, Length, Buffer);
214
215         if(Offset > Node->Size) {
216                 LEAVE('i', -1);
217                 return -1;
218         }       
219
220         if(Offset + Length > MAX_FILE_SIZE)
221         {
222                 Length = MAX_FILE_SIZE - Offset;
223         }
224
225         LOG("Buffer = '%.*s'", (int)Length, Buffer);
226         
227         // Check if buffer needs to be expanded
228         if(Offset + Length > Node->Size)
229         {
230                 void *tmp = realloc( file->Data.Bytes, Offset + Length );
231                 if(tmp == NULL) {
232                         Warning("Root_Write - Increasing buffer size failed");
233                         LEAVE('i', -1);
234                         return -1;
235                 }
236                 file->Data.Bytes = tmp;
237                 Node->Size = Offset + Length;
238                 LOG("Expanded buffer to %i bytes", (int)Node->Size);
239         }
240         
241         memcpy(file->Data.Bytes+Offset, Buffer, Length);
242         LOG("File - '%.*s'", Node->Size, file->Data.Bytes);
243         
244         LEAVE('i', Length);
245         return Length;
246 }
247
248 /**
249  * \fn tRamFS_File *Root_int_AllocFile(void)
250  * \brief Allocates a file from the pool
251  */
252 tRamFS_File *Root_int_AllocFile(void)
253 {
254          int    i;
255         for( i = 0; i < MAX_FILES; i ++ )
256         {
257                 if( RootFS_Files[i].Name[0] == '\0' )
258                 {
259                         return &RootFS_Files[i];
260                 }
261         }
262         return NULL;
263 }

UCC git Repository :: git.ucc.asn.au