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
|
#include "debug.h"
#include "sandbox_impl.h"
namespace playground {
int Sandbox::sandbox_munmap(void* start, size_t length) {
Debug::syscall(__NR_munmap, "Executing handler");
struct {
int sysnum;
long long cookie;
MUnmap munmap_req;
} __attribute__((packed)) request;
request.sysnum = __NR_munmap;
request.cookie = cookie();
request.munmap_req.start = start;
request.munmap_req.length = length;
long rc;
SysCalls sys;
if (write(sys, processFdPub(), &request, sizeof(request)) !=
sizeof(request) ||
read(sys, threadFdPub(), &rc, sizeof(rc)) != sizeof(rc)) {
die("Failed to forward munmap() request [sandbox]");
}
return static_cast<int>(rc);
}
bool Sandbox::process_munmap(int parentProc, int sandboxFd, int threadFdPub,
int threadFd, SecureMem::Args* mem) {
// Read request
SysCalls sys;
MUnmap munmap_req;
if (read(sys, sandboxFd, &munmap_req, sizeof(munmap_req)) !=
sizeof(munmap_req)) {
die("Failed to read parameters for munmap() [process]");
}
// Cannot unmap any memory region that was part of the original memory
// mappings.
int rc = -EINVAL;
void *stop = reinterpret_cast<void *>(
reinterpret_cast<char *>(munmap_req.start) + munmap_req.length);
ProtectedMap::const_iterator iter = protectedMap_.lower_bound(
munmap_req.start);
if (iter != protectedMap_.begin()) {
--iter;
}
for (; iter != protectedMap_.end() && iter->first < stop; ++iter) {
if (munmap_req.start < reinterpret_cast<void *>(
reinterpret_cast<char *>(iter->first) + iter->second) &&
stop > iter->first) {
SecureMem::abandonSystemCall(threadFd, rc);
return false;
}
}
// Unmapping memory regions that were newly mapped inside of the sandbox
// is OK.
SecureMem::sendSystemCall(threadFdPub, false, -1, mem, __NR_munmap,
munmap_req.start, munmap_req.length);
return true;
}
} // namespace
|