-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfilesystem.cpp
More file actions
236 lines (193 loc) · 4.27 KB
/
filesystem.cpp
File metadata and controls
236 lines (193 loc) · 4.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include "filesystem.h"
#include "kernel.h"
#include "line.h"
//#define DEBUG
using namespace std;
struct FileSystemMount
{
const char* path;
const char* dest;
};
FileSystem::FileSystem() : Logger("FileSystem")
{
}
FileSystem::~FileSystem()
{
}
bool FileSystem::init(Config* config)
{
m_mounts = config->getMounts();
return true;
}
int FileSystem::openat(int dfd, const char* path, int oflags, int mode)
{
char* osxPath = path2osx(path);
if (osxPath == NULL)
{
errno = ENOENT;
return -1;
}
int res = ::openat(dfd, osxPath, oflags, mode);
int err = errno;
free(osxPath);
errno = err;
return res;
}
int FileSystem::access(const char* path, int mode)
{
char* osxPath = path2osx(path);
if (osxPath == NULL)
{
errno = ENOENT;
return -1;
}
int res = ::access(osxPath, mode);
int err = errno;
free(osxPath);
errno = err;
return res;
}
int FileSystem::chdir(const char* path)
{
char* osxPath = path2osx(path);
if (osxPath == NULL)
{
errno = ENOENT;
return -1;
}
int res = ::chdir(osxPath);
int err = errno;
free(osxPath);
errno = err;
return res;
}
int FileSystem::link(const char* oldname, const char* newname)
{
char* osxOldName = path2osx(oldname);
if (osxOldName == NULL)
{
errno = ENOENT;
return -1;
}
char* osxNewName = path2osx(newname);
if (osxNewName == NULL)
{
free(osxOldName);
errno = ENOENT;
return -1;
}
int res = ::link(osxOldName, osxNewName);
int err = errno;
free(osxOldName);
free(osxNewName);
errno = err;
return res;
}
int FileSystem::unlink(const char* path)
{
char* osxPath = path2osx(path);
if (osxPath == NULL)
{
errno = ENOENT;
return -1;
}
int res = ::unlink(osxPath);
int err = errno;
free(osxPath);
errno = err;
return res;
}
int FileSystem::rename(const char* oldname, const char* newname)
{
char* osxOldName = path2osx(oldname);
if (osxOldName == NULL)
{
errno = ENOENT;
return -1;
}
char* osxNewName = path2osx(newname);
if (osxNewName == NULL)
{
free(osxOldName);
errno = ENOENT;
return -1;
}
int res = ::rename(osxOldName, osxNewName);
int err = errno;
free(osxOldName);
free(osxNewName);
errno = err;
return res;
}
char* FileSystem::path2linux(const char* path)
{
return NULL;
}
char* FileSystem::path2osx(const char* path)
{
if (path == NULL)
{
return NULL;
}
log("path2osx: path=%s", path);
string pathstr = string(path);
if (!strncmp(path, "/dev/pts/", 9))
{
int id = atoi(path + 9);
char* result = (char*)malloc(30);
sprintf(result, "/dev/ttys%03d", id);
log("path2osx: %s -> %s", path, result);
return result;
}
if (pathstr.length() > 0 && pathstr[0] == '/')
{
std::vector<pair<std::string, std::string> >::iterator it;
for (it = m_mounts.begin(); it != m_mounts.end(); it++)
{
string mountPath = it->first;
string mountDest = it->second;
#ifdef DEBUG
log("path2osx: %s -> %s",
mountPath.c_str(),
mountDest.c_str());
#endif
int pathlen = mountPath.length();
if (!strncmp(path, mountPath.c_str(), pathlen))
{
#ifdef DEBUG
log("path2osx: -> Matched");
#endif
string osx = mountDest + "/" + pathstr.substr(pathlen);
#ifdef DEBUG
log("path2osx: -> osx path=%s", osx.c_str());
#endif
return strdup(osx.c_str());
}
}
}
else
{
char cwd[1024];
getcwd(cwd, 1024);
string newpath = string(cwd) + "/" + string(path);
return path2osx(newpath.c_str());
}
return NULL;
}
#ifdef TEST
int main(int argc, char** argv)
{
FileSystem fileSystem;
char* result;
result = fileSystem.path2osx("/usr/bin/base64");
printf("%s\n", result);
result = fileSystem.path2osx("README.md");
printf("%s\n", result);
return 0;
}
#endif