-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathfile_memory.cpp
283 lines (244 loc) · 5.97 KB
/
file_memory.cpp
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2016 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "Server.h"
#include "file_memory.h"
#include <algorithm>
#include <assert.h>
#ifndef _WIN32
#include <unistd.h>
#include <memory.h>
#include <sys/mman.h>
#include <pthread.h>
#endif
#include "stringtools.h"
int CMemoryFile::page_size = 0;
CMemoryFile::CMemoryFile(const std::string& name, bool mlock_mem)
:mutex(Server->createSharedMutex()),
mlock_mem(mlock_mem), name(name), mprotect_mutex(Server->createMutex()), memory_protected(0)
{
pos=0;
#ifndef _WIN32
if (page_size == 0)
{
page_size = sysconf(_SC_PAGE_SIZE);
if (page_size <= 0)
{
Server->Log("Invalid page size " + convert(page_size) + " errno " + convert((int64)errno), LL_ERROR);
page_size = 4096;
}
}
#endif
}
CMemoryFile::~CMemoryFile()
{
#ifndef _WIN32
if (mlock_mem && !data.empty())
munlock(data.data(), data.size());
#endif
}
std::string CMemoryFile::Read(_u32 tr, bool *has_error)
{
std::string ret = Read(pos, tr, has_error);
pos += ret.size();
return ret;
}
_u32 CMemoryFile::Read(char* buffer, _u32 bsize, bool *has_error)
{
_u32 read = Read(pos, buffer, bsize, has_error);
pos += read;
return read;
}
_u32 CMemoryFile::Write(const std::string &tw, bool *has_error)
{
return Write(tw.c_str(), (_u32)tw.size(), has_error);
}
_u32 CMemoryFile::Write(const char* buffer, _u32 bsize, bool *has_error)
{
_u32 written = Write(pos, buffer, bsize, has_error);
pos += written;
return written;
}
bool CMemoryFile::Seek(_i64 spos)
{
if(spos>=0)
{
pos=(size_t)spos;
return true;
}
else
{
return false;
}
}
_i64 CMemoryFile::Size(void)
{
IScopedReadLock lock(mutex.get());
return data.size();
}
_i64 CMemoryFile::RealSize()
{
return Size();
}
std::string CMemoryFile::getFilename()
{
return name;
}
void CMemoryFile::resetSparseExtentIter()
{
}
IFsFile::SSparseExtent CMemoryFile::nextSparseExtent()
{
return SSparseExtent();
}
bool CMemoryFile::Resize(int64 new_size, bool set_sparse)
{
if (new_size < 0)
{
return false;
}
IScopedWriteLock lock(mutex.get());
unprotect_mem();
data.resize(new_size);
#ifndef _WIN32
if(mlock_mem)
mlock(data.data(), data.size());
#endif
protect_mem();
return true;
}
std::vector<IFsFile::SFileExtent> CMemoryFile::getFileExtents(int64 starting_offset, int64 block_size, bool & more_data, unsigned int flags)
{
return std::vector<IFsFile::SFileExtent>();
}
IFsFile::os_file_handle CMemoryFile::getOsHandle(bool release_handle)
{
return os_file_handle();
}
char * CMemoryFile::getDataPtr()
{
return data.data();
}
void CMemoryFile::protect_mem()
{
#ifndef _WIN32
IScopedLock lock(mprotect_mutex.get());
if (memory_protected<=1)
{
if (!data.empty()
&& mprotect(data.data(), data.size(), PROT_READ) != 0)
{
Server->Log("mprotect(r) failed at " + convert((int64)data.data()) + " size " + convert(data.size()) + " errno " + convert((int64)errno), LL_WARNING);
}
--memory_protected;
}
else
{
--memory_protected;
}
#endif
}
void CMemoryFile::unprotect_mem()
{
#ifndef _WIN32
IScopedLock lock(mprotect_mutex.get());
if (memory_protected==0)
{
if (!data.empty()
&& mprotect(data.data(), data.size(), PROT_READ|PROT_WRITE) != 0)
{
Server->Log("mprotect(w) failed at " + convert((int64)data.data()) + " size " + convert(data.size()) + " errno " + convert((int64)errno), LL_WARNING);
}
++memory_protected;
}
else
{
++memory_protected;
}
#endif
}
IVdlVolCache* CMemoryFile::createVdlVolCache()
{
return nullptr;
}
int64 CMemoryFile::getValidDataLength(IVdlVolCache* vol_cache)
{
return -1;
}
std::string CMemoryFile::Read(int64 spos, _u32 tr, bool * has_error)
{
IScopedReadLock lock(mutex.get());
if (spos >= static_cast<int64>(data.size()))
return "";
size_t rtr = static_cast<size_t>((std::min)(static_cast<int64>(tr), static_cast<int64>(data.size()) - spos));
std::string ret;
ret.assign(&data[spos], rtr);
return ret;
}
_u32 CMemoryFile::Read(int64 spos, char * buffer, _u32 bsize, bool * has_error)
{
IScopedReadLock lock(mutex.get());
if (spos >= static_cast<int64>(data.size()))
return 0;
size_t rtr = static_cast<size_t>((std::min)(static_cast<int64>(bsize), static_cast<int64>(data.size()) - spos));
memcpy(buffer, &data[spos], rtr);
return (_u32)rtr;
}
_u32 CMemoryFile::Write(int64 spos, const std::string & tw, bool * has_error)
{
return Write(spos, tw.data(), static_cast<_u32>(tw.size()), has_error);
}
_u32 CMemoryFile::Write(int64 spos, const char * buffer, _u32 bsize, bool * has_error)
{
IScopedReadLock lock(mutex.get());
if (spos + bsize>static_cast<int64>(data.size()))
{
lock.relock(NULL);
IScopedWriteLock wrlock(mutex.get());
unprotect_mem();
if (spos + bsize > static_cast<int64>(data.size()))
{
#ifndef _WIN32
if (mlock_mem && !data.empty())
munlock(data.data(), data.size());
#endif
data.resize(spos + bsize);
#ifndef _WIN32
if (mlock_mem)
mlock(data.data(), data.size());
#endif
}
memcpy(&data[spos], buffer, bsize);
protect_mem();
return bsize;
}
else
{
unprotect_mem();
memcpy(&data[spos], buffer, bsize);
protect_mem();
return bsize;
}
}
bool CMemoryFile::PunchHole( _i64 spos, _i64 size )
{
return false;
}
bool CMemoryFile::Sync()
{
return false;
}