d4c153096f6ad94d43ce081a3f0de27f51554875
[tpg/acess2.git] / 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         char    *absPath, *name;
40          int    pos = 0, oldpos = 0;
41          int    next = 0;
42         tVFS_Node       *parent;
43          int    ret;
44         
45         ENTER("sPath xFlags", Path, Flags);
46         
47         absPath = VFS_GetAbsPath(Path);
48         LOG("absPath = '%s'", absPath);
49         
50         while( (next = strpos(&absPath[pos+1], '/')) != -1 ) {
51                 LOG("next = %i", next);
52                 pos += next+1;
53                 LOG("pos = %i", pos);
54                 oldpos = pos;
55         }
56         absPath[oldpos] = '\0'; // Mutilate path
57         name = &absPath[oldpos+1];
58         
59         LOG("absPath = '%s', name = '%s'", absPath, name);
60         
61         // Check for root
62         if(absPath[0] == '\0')
63                 parent = VFS_ParsePath("/", NULL, NULL);
64         else
65                 parent = VFS_ParsePath(absPath, NULL, NULL);
66         
67         LOG("parent = %p", parent);
68         
69         if(!parent) {
70                 LEAVE('i', -1);
71                 return -1;      // Error Check
72         }
73         
74         // Permissions Check
75         if( !VFS_CheckACL(parent, VFS_PERM_EXECUTE|VFS_PERM_WRITE) ) {
76                 _CloseNode(parent);
77                 free(absPath);
78                 LEAVE('i', -1);
79                 return -1;
80         }
81         
82         LOG("parent = %p", parent);
83         
84         if(!parent->Type || !parent->Type->MkNod) {
85                 Warning("VFS_MkNod - Directory has no MkNod method");
86                 LEAVE('i', -1);
87                 return -1;
88         }
89         
90         // Create node
91         ret = parent->Type->MkNod(parent, name, Flags);
92         
93         // Free allocated string
94         free(absPath);
95         
96         // Free Parent
97         _CloseNode(parent);
98         
99         // Error Check
100         if(ret == 0) {
101                 LEAVE('i', -1);
102                 return -1;
103         }
104         
105         LEAVE('i', 0);
106         return 0;
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         char    *tmp;
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 != -1 && h->Position >= h->Node->Size) {
168                 //LEAVE('i', 0);
169                 return 0;
170         }
171         
172         do {
173                 tmp = h->Node->Type->ReadDir(h->Node, h->Position);
174                 if((Uint)tmp < (Uint)VFS_MAXSKIP)
175                         h->Position += (Uint)tmp;
176                 else
177                         h->Position ++;
178         } while(tmp != NULL && (Uint)tmp < (Uint)VFS_MAXSKIP);
179         
180         //LOG("tmp = '%s'", tmp);
181         
182         if(!tmp) {
183                 //LEAVE('i', 0);
184                 return 0;
185         }
186         
187         strcpy(Dest, tmp);
188         free(tmp);
189         
190         //LEAVE('i', 1);
191         return 1;
192 }

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