Kernel - VFS API Update - ReadDir caller provided buffer
[tpg/acess2.git] / KernelLand / Kernel / vfs / dir.c
1 /*
2  * Acess2 VFS
3  * - Directory Management Functions
4  */
5 #define DEBUG   0
6 #include <acess.h>
7 #include <vfs.h>
8 #include <vfs_int.h>
9
10 // === IMPORTS ===
11 extern tVFS_Mount       *gRootMount;
12
13 // === PROTOTYPES ===
14 #if 0
15  int    VFS_MkDir(const char *Path);
16  int    VFS_MkNod(const char *Path, Uint Flags);
17  int    VFS_Symlink(const char *Name, const char *Link);
18 #endif
19
20 // === CODE ===
21 /**
22  * \fn int VFS_MkDir(char *Path)
23  * \brief Create a new node
24  * \param Path  Path of directory to create
25  */
26 int VFS_MkDir(const char *Path)
27 {
28         return VFS_MkNod(Path, VFS_FFLAG_DIRECTORY);
29 }
30
31 /**
32  * \fn int VFS_MkNod(char *Path, Uint Flags)
33  * \brief Create a new node in a directory
34  * \param Path  Path of new node
35  * \param Flags Flags to apply to the node
36  */
37 int VFS_MkNod(const char *Path, Uint Flags)
38 {
39         tVFS_Mount      *mountpt;
40         char    *absPath, *name;
41          int    pos = 0, oldpos = 0;
42          int    next = 0;
43         tVFS_Node       *parent;
44         tVFS_Node       *ret;
45         
46         ENTER("sPath xFlags", Path, Flags);
47         
48         absPath = VFS_GetAbsPath(Path);
49         LOG("absPath = '%s'", absPath);
50         
51         while( (next = strpos(&absPath[pos+1], '/')) != -1 ) {
52                 LOG("next = %i", next);
53                 pos += next+1;
54                 LOG("pos = %i", pos);
55                 oldpos = pos;
56         }
57         absPath[oldpos] = '\0'; // Mutilate path
58         name = &absPath[oldpos+1];
59         
60         LOG("absPath = '%s', name = '%s'", absPath, name);
61         
62         // Check for root
63         if(absPath[0] == '\0')
64                 parent = VFS_ParsePath("/", NULL, &mountpt);
65         else
66                 parent = VFS_ParsePath(absPath, NULL, &mountpt);
67         
68         LOG("parent = %p", parent);
69         
70         if(!parent) {
71                 LEAVE('i', -1);
72                 return -1;      // Error Check
73         }
74
75         // Permissions Check
76         if( !VFS_CheckACL(parent, VFS_PERM_EXECUTE|VFS_PERM_WRITE) ) {
77                 _CloseNode(parent);
78                 mountpt->OpenHandleCount --;
79                 free(absPath);
80                 LEAVE('i', -1);
81                 return -1;
82         }
83         
84         LOG("parent = %p", parent);
85         
86         if(!parent->Type || !parent->Type->MkNod) {
87                 Log_Warning("VFS", "VFS_MkNod - Directory has no MkNod method");
88                 mountpt->OpenHandleCount --;
89                 LEAVE('i', -1);
90                 return -1;
91         }
92         
93         // Create node
94         ret = parent->Type->MkNod(parent, name, Flags);
95         _CloseNode(ret);
96         
97         // Free allocated string
98         free(absPath);
99         
100         // Free Parent
101         mountpt->OpenHandleCount --;
102         _CloseNode(parent);
103
104         // Return whatever the driver said      
105         LEAVE('i', ret==NULL);
106         return ret==NULL;
107 }
108
109 /**
110  * \fn int VFS_Symlink(const char *Name, const char *Link)
111  * \brief Creates a symlink called \a Name to \a Link
112  * \param Name  Name of symbolic link
113  * \param Link  Destination of symbolic link
114  */
115 int VFS_Symlink(const char *Name, const char *Link)
116 {
117         char    *realLink;
118          int    fp;
119         
120         ENTER("sName sLink", Name, Link);
121         
122         // Get absolue path name
123         realLink = VFS_GetAbsPath( Link );
124         if(!realLink) {
125                 Log_Warning("VFS", "Path '%s' is badly formed", Link);
126                 LEAVE('i', -1);
127                 return -1;
128         }
129
130         LOG("realLink = '%s'", realLink);
131
132         // Make node
133         if( VFS_MkNod(Name, VFS_FFLAG_SYMLINK) != 0 ) {
134                 Log_Warning("VFS", "Unable to create link node '%s'", Name);
135                 free(realLink);
136                 LEAVE('i', -2);
137                 return -2;      // Make link node
138         }
139         
140         // Write link address
141         fp = VFS_Open(Name, VFS_OPENFLAG_WRITE|VFS_OPENFLAG_NOLINK);
142         VFS_Write(fp, strlen(realLink), realLink);
143         VFS_Close(fp);
144         
145         free(realLink);
146         
147         LEAVE('i', 1);
148         return 1;
149 }
150
151 /**
152  * \fn int VFS_ReadDir(int FD, char *Dest)
153  * \brief Read from a directory
154  */
155 int VFS_ReadDir(int FD, char *Dest)
156 {
157         tVFS_Handle     *h = VFS_GetHandle(FD);
158          int    rv;
159         
160         //ENTER("ph pDest", h, Dest);
161         
162         if(!h || !h->Node->Type || !h->Node->Type->ReadDir) {
163                 //LEAVE('i', 0);
164                 return 0;
165         }
166         
167         if(h->Node->Size != (Uint64)-1 && h->Position >= h->Node->Size) {
168                 //LEAVE('i', 0);
169                 return 0;
170         }
171         
172         do {
173                 rv = h->Node->Type->ReadDir(h->Node, h->Position, Dest);
174                 if(rv > 0)
175                         h->Position += rv;
176                 else
177                         h->Position ++;
178         } while(rv > 0);
179         
180         if(rv < 0) {
181                 //LEAVE('i', 0);
182                 return 0;
183         }
184         
185         //LEAVE('i', 1);
186         return 1;
187 }

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