summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mmap_v1/durable_mapped_file.cpp
blob: 92cc7e84ef977ecdb702ef5614952d71107a0b62 (plain)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// durable_mapped_file.cpp

/**
*    Copyright (C) 2010 10gen Inc.
*
*    This program is free software: you can redistribute it and/or  modify
*    it under the terms of the GNU Affero General Public License, version 3,
*    as published by the Free Software Foundation.
*
*    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/>.
*
*    As a special exception, the copyright holders give permission to link the
*    code of portions of this program with the OpenSSL library under certain
*    conditions as described in each individual source file and distribute
*    linked combinations including the program with the OpenSSL library. You
*    must comply with the GNU Affero General Public License in all respects for
*    all of the code used other than as permitted herein. If you modify file(s)
*    with this exception, you may extend this exception to your version of the
*    file(s), but you are not obligated to do so. If you do not wish to do so,
*    delete this exception statement from your version. If you delete this
*    exception statement from all source files in the program, then also delete
*    it in the license file.
*/

/* this module adds some of our layers atop memory mapped files - specifically our handling of
 * private views & such
   if you don't care about journaling/durability (temp sort files & such) use MemoryMappedFile
   class, not this.
*/

#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kStorage

#include "mongo/platform/basic.h"

#include "mongo/db/storage/mmap_v1/durable_mapped_file.h"

#include <utility>

#include "mongo/db/concurrency/d_concurrency.h"
#include "mongo/db/storage_options.h"
#include "mongo/db/storage/mmap_v1/dur.h"
#include "mongo/db/storage/mmap_v1/dur_journalformat.h"
#include "mongo/db/storage_options.h"
#include "mongo/util/mongoutils/str.h"
#include "mongo/util/log.h"
#include "mongo/util/processinfo.h"

using namespace mongoutils;

namespace mongo {

using std::dec;
using std::endl;
using std::hex;
using std::map;
using std::pair;
using std::string;

void DurableMappedFile::remapThePrivateView() {
    verify(storageGlobalParams.dur);

    _willNeedRemap = false;

    // todo 1.9 : it turns out we require that we always remap to the same address.
    // so the remove / add isn't necessary and can be removed?
    void* old = _view_private;
    // privateViews.remove(_view_private);
    _view_private = remapPrivateView(_view_private);
    // privateViews.add(_view_private, this);
    fassert(16112, _view_private == old);
}

/** register view. threadsafe */
void PointerToDurableMappedFile::add_inlock(void* view, DurableMappedFile* f) {
    verify(view);
    verify(f);
    clearWritableBits_inlock(view, f->length());
    _views.insert(pair<void*, DurableMappedFile*>(view, f));
}

/** de-register view. threadsafe */
void PointerToDurableMappedFile::remove(void* view, size_t len) {
    if (view) {
        mutex::scoped_lock lk(_m);
        clearWritableBits_inlock(view, len);
        _views.erase(view);
    }
}

#ifdef _WIN32
void PointerToDurableMappedFile::clearWritableBits(void* privateView, size_t len) {
    mutex::scoped_lock lk(_m);
    clearWritableBits_inlock(privateView, len);
}

/** notification on unmapping so we can clear writable bits */
void PointerToDurableMappedFile::clearWritableBits_inlock(void* privateView, size_t len) {
    for (unsigned i = reinterpret_cast<size_t>(privateView) / MemoryMappedCOWBitset::ChunkSize;
         i <= (reinterpret_cast<size_t>(privateView) + len) / MemoryMappedCOWBitset::ChunkSize;
         ++i) {
        writable.clear(i);
        dassert(!writable.get(i));
    }
}

extern mutex mapViewMutex;

__declspec(noinline) void PointerToDurableMappedFile::makeChunkWritable(size_t chunkno) {
    mutex::scoped_lock lkPrivateViews(_m);

    if (writable.get(chunkno))  // double check lock
        return;

    // remap all maps in this chunk.
    // common case is a single map, but could have more than one with smallfiles or .ns files
    size_t chunkStart = chunkno * MemoryMappedCOWBitset::ChunkSize;
    size_t chunkNext = chunkStart + MemoryMappedCOWBitset::ChunkSize;

    scoped_lock lkMapView(mapViewMutex);

    map<void*, DurableMappedFile*>::iterator i = _views.upper_bound((void*)(chunkNext - 1));
    while (1) {
        const pair<void*, DurableMappedFile*> x = *(--i);
        DurableMappedFile* mmf = x.second;
        if (mmf == 0)
            break;

        size_t viewStart = reinterpret_cast<size_t>(x.first);
        size_t viewEnd = viewStart + mmf->length();
        if (viewEnd <= chunkStart)
            break;

        size_t protectStart = std::max(viewStart, chunkStart);
        dassert(protectStart < chunkNext);

        size_t protectEnd = std::min(viewEnd, chunkNext);
        size_t protectSize = protectEnd - protectStart;
        dassert(protectSize > 0 && protectSize <= MemoryMappedCOWBitset::ChunkSize);

        DWORD oldProtection;
        bool ok = VirtualProtect(
            reinterpret_cast<void*>(protectStart), protectSize, PAGE_WRITECOPY, &oldProtection);
        if (!ok) {
            DWORD dosError = GetLastError();

            if (dosError == ERROR_COMMITMENT_LIMIT) {
                // System has run out of memory between physical RAM & page file, tell the user
                BSONObjBuilder bb;

                ProcessInfo p;
                p.getExtraInfo(bb);

                severe() << "MongoDB has exhausted the system memory capacity.";
                severe() << "Current Memory Status: " << bb.obj().toString();
            }

            severe() << "VirtualProtect for " << mmf->filename() << " chunk " << chunkno
                     << " failed with " << errnoWithDescription(dosError) << " (chunk size is "
                     << protectSize << ", address is " << hex << protectStart << dec << ")"
                     << " in mongo::makeChunkWritable, terminating" << endl;

            fassertFailed(16362);
        }
    }

    writable.set(chunkno);
}
#else
void PointerToDurableMappedFile::clearWritableBits(void* privateView, size_t len) {}

void PointerToDurableMappedFile::clearWritableBits_inlock(void* privateView, size_t len) {}
#endif

PointerToDurableMappedFile::PointerToDurableMappedFile() : _m("PointerToDurableMappedFile") {
#if defined(SIZE_MAX)
    size_t max = SIZE_MAX;
#else
    size_t max = ~((size_t)0);
#endif
    verify(max > (size_t) this);  // just checking that no one redef'd SIZE_MAX and that it is sane

    // this way we don't need any boundary checking in _find()
    _views.insert(pair<void*, DurableMappedFile*>((void*)0, (DurableMappedFile*)0));
    _views.insert(pair<void*, DurableMappedFile*>((void*)max, (DurableMappedFile*)0));
}

/** underscore version of find is for when you are already locked
    @param ofs out return our offset in the view
    @return the DurableMappedFile to which this pointer belongs
*/
DurableMappedFile* PointerToDurableMappedFile::find_inlock(void* p, /*out*/ size_t& ofs) {
    //
    // .................memory..........................
    //    v1       p                      v2
    //    [--------------------]          [-------]
    //
    // e.g., _find(p) == v1
    //
    const pair<void*, DurableMappedFile*> x = *(--_views.upper_bound(p));
    DurableMappedFile* mmf = x.second;
    if (mmf) {
        size_t o = ((char*)p) - ((char*)x.first);
        if (o < mmf->length()) {
            ofs = o;
            return mmf;
        }
    }
    return 0;
}

/** find associated MMF object for a given pointer.
    threadsafe
    @param ofs out returns offset into the view of the pointer, if found.
    @return the DurableMappedFile to which this pointer belongs. null if not found.
*/
DurableMappedFile* PointerToDurableMappedFile::find(void* p, /*out*/ size_t& ofs) {
    mutex::scoped_lock lk(_m);
    return find_inlock(p, ofs);
}

PointerToDurableMappedFile privateViews;

// here so that it is precomputed...
void DurableMappedFile::setPath(const std::string& f) {
    string suffix;
    string prefix;
    bool ok = str::rSplitOn(f, '.', prefix, suffix);
    uassert(13520,
            str::stream() << "DurableMappedFile only supports filenames in a certain format " << f,
            ok);
    if (suffix == "ns")
        _fileSuffixNo = dur::JEntry::DotNsSuffix;
    else
        _fileSuffixNo = (int)str::toUnsigned(suffix);

    _p = RelativePath::fromFullPath(storageGlobalParams.dbpath, prefix);
}

bool DurableMappedFile::open(const std::string& fname, bool sequentialHint) {
    LOG(3) << "mmf open " << fname;
    invariant(!_view_write);

    setPath(fname);
    _view_write = mapWithOptions(fname.c_str(), sequentialHint ? SEQUENTIAL : 0);
    return finishOpening();
}

bool DurableMappedFile::create(const std::string& fname,
                               unsigned long long& len,
                               bool sequentialHint) {
    LOG(3) << "mmf create " << fname;
    invariant(!_view_write);

    setPath(fname);
    _view_write = map(fname.c_str(), len, sequentialHint ? SEQUENTIAL : 0);
    return finishOpening();
}

bool DurableMappedFile::finishOpening() {
    LOG(3) << "mmf finishOpening " << (void*)_view_write << ' ' << filename()
           << " len:" << length();
    if (_view_write) {
        if (storageGlobalParams.dur) {
            scoped_lock lk2(privateViews._mutex());

            _view_private = createPrivateMap();
            if (_view_private == 0) {
                msgasserted(13636,
                            str::stream() << "file " << filename() << " open/create failed "
                                                                      "in createPrivateMap "
                                                                      "(look in log for "
                                                                      "more information)");
            }
            // note that testIntent builds use this, even though it points to view_write then...
            privateViews.add_inlock(_view_private, this);
        } else {
            _view_private = _view_write;
        }
        return true;
    }
    return false;
}

DurableMappedFile::DurableMappedFile() : _willNeedRemap(false) {
    _view_write = _view_private = 0;
}

DurableMappedFile::~DurableMappedFile() {
    try {
        LOG(3) << "mmf close " << filename();

        // If _view_private was not set, this means file open failed
        if (_view_private) {
            // Notify the durability system that we are closing a file so it can ensure we
            // will not have journaled operations with no corresponding file.
            getDur().closingFileNotification();
        }

        LockMongoFilesExclusive lk;
        privateViews.remove(_view_private, length());

        MemoryMappedFile::close();
    } catch (...) {
        error() << "exception in ~DurableMappedFile";
    }
}
}