aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/fastos/linux_file.cpp
blob: 0f32aa953a81f1ad20e74245d8ade01b509ab3f8 (plain) (blame)
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
******************************************************************************
* @author  Oivind H. Danielsen
* @date    Creation date: 2000-09-21
* @file
* Implementation of FastOS_Linux_File methods.
*****************************************************************************/

#ifdef __linux__
#include "file.h"
#include "file_rw_ops.h"
#include <sstream>
#include <dirent.h>
#include <unistd.h>
#include <fcntl.h>
#include <cstdio>
#include <cstring>
#include <system_error>
#include <cassert>

using fastos::File_RW_Ops;

const size_t FastOS_Linux_File::_directIOFileAlign = 4096;
const size_t FastOS_Linux_File::_directIOMemAlign = 4096;

FastOS_Linux_File::FastOS_Linux_File(const char *filename)
    : FastOS_UNIX_File(filename),
      _cachedSize(-1),
      _filePointer(-1)
{
}

FastOS_Linux_File::~FastOS_Linux_File () {
    bool ok = Close();
    assert(ok);
}

#define DIRECTIOPOSSIBLE(buf, len, off) \
 (((off) & (_directIOFileAlign - 1)) == 0 && \
  ((len) & (_directIOFileAlign - 1)) == 0 && \
  (reinterpret_cast<unsigned long>(buf) & (_directIOMemAlign - 1)) == 0)

ssize_t
FastOS_Linux_File::readInternal(int fh, void *buffer, size_t length, int64_t readOffset)
{
    char * data = static_cast<char *>(buffer);
    ssize_t has_read(0);
    while (has_read < ssize_t(length)) {
        size_t lenNow = std::min(getChunkSize(), length - has_read);
        ssize_t readNow = File_RW_Ops::pread(fh, data + has_read, lenNow, readOffset + has_read);
        if (readNow > 0) {
            has_read += readNow;
        } else {
            return (has_read > 0) ? has_read : readNow;
        }
    }
    return has_read;
}


ssize_t
FastOS_Linux_File::readInternal(int fh, void *buffer, size_t length)
{
    char * data = static_cast<char *>(buffer);
    ssize_t has_read(0);
    while (has_read < ssize_t(length)) {
        size_t lenNow = std::min(getChunkSize(), length - has_read);
        ssize_t readNow = File_RW_Ops::read(fh, data + has_read, lenNow);
        if (readNow > 0) {
            has_read += readNow;
        } else {
            return (has_read > 0) ? has_read : readNow;
        }
    }
    return has_read;
}


ssize_t
FastOS_Linux_File::writeInternal(int fh, const void *buffer, size_t length, int64_t writeOffset)
{
    return File_RW_Ops::pwrite(fh, buffer, length, writeOffset);
}

ssize_t
FastOS_Linux_File::writeInternal(int fh, const void *buffer, size_t length)
{
    return File_RW_Ops::write(fh, buffer, length);
}


ssize_t FastOS_Linux_File::readUnalignedEnd(void *buffer, size_t length, int64_t readOffset)
{
    if (length == 0) { return 0; }
    int fh = open(GetFileName(), O_RDONLY, 0664);
    if (fh < 0) {
        std::ostringstream os;
        os << "Failed opening file " << GetFileName() << " for reading the unaligend end due to : " << getLastErrorString();
        throw std::runtime_error(os.str());
    }
    ssize_t readResult = readInternal(fh, buffer, length, readOffset);
    close(fh);
    return readResult;
}

ssize_t FastOS_Linux_File::writeUnalignedEnd(const void *buffer, size_t length, int64_t writeOffset)
{
    if (length == 0) { return 0; }
    int fh = open(GetFileName(), O_WRONLY | O_SYNC, 0664);
    if (fh < 0) {
        std::ostringstream os;
        os << "Failed opening file " << GetFileName() << " for reading the unaligend end due to : " << getLastErrorString();
        throw std::runtime_error(os.str());
    }
    ssize_t writeResult = writeInternal(fh, buffer, length, writeOffset);
    close(fh);
    return writeResult;
}

ssize_t
FastOS_Linux_File::ReadBufInternal(void *buffer, size_t length, int64_t readOffset)
{
    if (length == 0) { return 0; }
    ssize_t readResult;

    if (_directIOEnabled) {
        if (DIRECTIOPOSSIBLE(buffer, length, readOffset)) {
            readResult = readInternal(_filedes, buffer, length, readOffset);
        } else {
            size_t alignedLength(length & ~(_directIOFileAlign - 1));
            if (DIRECTIOPOSSIBLE(buffer, alignedLength, readOffset)) {
                size_t remain(length - alignedLength);
                if (alignedLength > 0) {
                    readResult = readInternal(_filedes, buffer, alignedLength, readOffset);
                } else {
                    readResult = 0;
                }
                if (static_cast<size_t>(readResult) == alignedLength && (remain != 0)) {
                    ssize_t readResult2 = readUnalignedEnd(static_cast<char *>(buffer) + alignedLength,
                                                           remain, readOffset + alignedLength);
                    if (readResult == 0) {
                        readResult = readResult2;
                    } else if (readResult2 > 0) {
                        readResult += readResult2;
                    }
                }
            } else {
                throw DirectIOException(GetFileName(), buffer, length, readOffset);
            }
        }
    } else {
        readResult = readInternal(_filedes, buffer, length, readOffset);
    }

    if (readResult < 0) {
        perror("pread error");
    }

    return readResult;
}

void
FastOS_Linux_File::ReadBuf(void *buffer, size_t length, int64_t readOffset)
{
    ssize_t readResult(ReadBufInternal(buffer, length, readOffset));
    if (static_cast<size_t>(readResult) != length) {
        std::string errorString = (readResult != -1)
                                  ? std::string("short read")
                                  : getLastErrorString();
        std::ostringstream os;
        os << "Fatal: Reading " << length << " bytes, got " << readResult << " from '"
           << GetFileName() << "' failed: " << errorString;
        throw std::runtime_error(os.str());
    }
}


ssize_t
FastOS_Linux_File::Read(void *buffer, size_t len)
{
    if (_directIOEnabled) {
        ssize_t readResult = ReadBufInternal(buffer, len, _filePointer);
        if (readResult > 0) {
            _filePointer += readResult;
        }
        return readResult;
    } else {
        return readInternal(_filedes, buffer, len);
    }
}


ssize_t
FastOS_Linux_File::Write2(const void *buffer, size_t length)
{
    const char * data = static_cast<const char *>(buffer);
    ssize_t written(0);
    while (written < ssize_t(length)) {
        size_t lenNow = std::min(getChunkSize(), length - written);
        ssize_t writtenNow = internalWrite2(data + written, lenNow);
        if (writtenNow > 0) {
            written += writtenNow;
        } else {
            return (written > 0) ? written : writtenNow;
        }
    }
    return written;
}

ssize_t
FastOS_Linux_File::internalWrite2(const void *buffer, size_t length)
{
    ssize_t writeRes;
    if (_directIOEnabled) {
        if (DIRECTIOPOSSIBLE(buffer, length, _filePointer)) {
            writeRes = writeInternal(_filedes, buffer, length, _filePointer);
        } else {
            size_t alignedLength(length & ~(_directIOFileAlign - 1));
            if (DIRECTIOPOSSIBLE(buffer, alignedLength, _filePointer)) {
                size_t remain(length - alignedLength);
                if (alignedLength > 0) {
                    writeRes = writeInternal(_filedes, buffer, alignedLength, _filePointer);
                } else {
                    writeRes = 0;
                }
                if (static_cast<size_t>(writeRes) == alignedLength && remain != 0) {
                    ssize_t writeRes2 = writeUnalignedEnd(static_cast<const char *>(buffer) + alignedLength,
                                                          remain, _filePointer + alignedLength);
                    if (writeRes == 0) {
                        writeRes = writeRes2;
                    } else if (writeRes2 > 0) {
                        writeRes += writeRes2;
                    }
                }
            } else {
                throw DirectIOException(GetFileName(), buffer, length, _filePointer);
            }
        }
        if (writeRes > 0) {
            _filePointer += writeRes;
            if (_filePointer > _cachedSize.load(std::memory_order_relaxed)) {
                _cachedSize.store(_filePointer, std::memory_order_relaxed);
            }
        }
    } else {
        writeRes = writeInternal(_filedes, buffer, length);
    }

    return writeRes;
}


bool
FastOS_Linux_File::SetPosition(int64_t desiredPosition)
{
    bool rc = FastOS_UNIX_File::SetPosition(desiredPosition);

    if (rc && _directIOEnabled) {
        _filePointer = desiredPosition;
    }

    return rc;
}


int64_t
FastOS_Linux_File::getPosition() const
{
    return _directIOEnabled ? _filePointer : FastOS_UNIX_File::getPosition();
}


bool
FastOS_Linux_File::SetSize(int64_t newSize)
{
    bool rc = FastOS_UNIX_File::SetSize(newSize);

    if (rc) {
        _cachedSize.store(newSize, std::memory_order_relaxed);
    }
    return rc;
}


namespace {
    void * align(void * p, size_t alignment) {
        const size_t alignMask(alignment-1);
        return reinterpret_cast<void *>((reinterpret_cast<unsigned long>(p) + alignMask) & ~alignMask);
    }
}

void *
FastOS_Linux_File::AllocateDirectIOBuffer (size_t byteSize, void *&realPtr)
{
    size_t dummy1, dummy2;
    size_t memoryAlignment;

    GetDirectIORestrictions(memoryAlignment, dummy1, dummy2);

    realPtr = malloc(byteSize + memoryAlignment - 1);
    return align(realPtr, memoryAlignment);
}

size_t
FastOS_Linux_File::getMaxDirectIOMemAlign()
{
    return _directIOMemAlign;
}


bool
FastOS_Linux_File::GetDirectIORestrictions (size_t &memoryAlignment, size_t &transferGranularity, size_t &transferMaximum)
{
    if (_directIOEnabled) {
        memoryAlignment = _directIOMemAlign;
        transferGranularity = _directIOFileAlign;
        transferMaximum = 0x7FFFFFFF;
        return true;
    } else {
        return FastOS_UNIX_File::GetDirectIORestrictions(memoryAlignment, transferGranularity, transferMaximum);
    }
}


bool
FastOS_Linux_File::DirectIOPadding (int64_t offset, size_t length, size_t &padBefore, size_t &padAfter)
{
    if (_directIOEnabled) {

        padBefore = offset & (_directIOFileAlign - 1);
        padAfter = _directIOFileAlign - ((padBefore + length) & (_directIOFileAlign - 1));

        if (padAfter == _directIOFileAlign) {
            padAfter = 0;
        }
        int64_t fileSize = _cachedSize.load(std::memory_order_relaxed);
        if (int64_t(offset+length+padAfter) > fileSize) {
            // _cachedSize is not really trustworthy, so if we suspect it is not correct, we correct it.
            // The main reason is that it will not reflect the file being extended by another filedescriptor.
            fileSize = getSize();
            _cachedSize.store(fileSize, std::memory_order_relaxed);
        }
        if ((padAfter != 0) &&
            (static_cast<int64_t>(offset + length + padAfter) > fileSize) &&
            (static_cast<int64_t>(offset + length) <= fileSize))
        {
            padAfter = fileSize - (offset + length);
        }

        if (static_cast<uint64_t>(offset + length + padAfter) <= static_cast<uint64_t>(fileSize)) {
            return true;
        }
    }

    padAfter = 0;
    padBefore = 0;

    return false;
}


void
FastOS_Linux_File::EnableDirectIO()
{
    if (!IsOpened()) {
        _directIOEnabled = true;
    }
}


bool
FastOS_Linux_File::Open(unsigned int openFlags, const char *filename)
{
    bool rc;
    _cachedSize = -1;
    _filePointer = -1;
    if (_syncWritesEnabled) {
        openFlags |= FASTOS_FILE_OPEN_SYNCWRITES;
    }
    if (_directIOEnabled) {
        rc = FastOS_UNIX_File::Open(openFlags | FASTOS_FILE_OPEN_DIRECTIO, filename);
        if ( ! rc ) {  //Retry without directIO.
            rc = FastOS_UNIX_File::Open(openFlags | FASTOS_FILE_OPEN_SYNCWRITES, filename);
        }
        if (rc) {
            int fadviseOptions = getFAdviseOptions();
            if (POSIX_FADV_NORMAL != fadviseOptions) {
                rc = (posix_fadvise(_filedes, 0, 0, fadviseOptions) == 0);
                if (!rc) {
                    bool close_ok = Close();
                    assert(close_ok);
                }
            }
        }
        if (rc) {
            bool sync_ok = Sync();
            assert(sync_ok);
            _cachedSize = getSize();
            _filePointer = 0;
        }
    } else {
        rc = FastOS_UNIX_File::Open(openFlags, filename);
        if (rc && (POSIX_FADV_NORMAL != getFAdviseOptions())) {
            rc = (posix_fadvise(_filedes, 0, 0, getFAdviseOptions()) == 0);
            if (!rc) {
                bool close_ok = Close();
                assert(close_ok);
            }
        }
    }
    return rc;
}

int
FastOS_Linux_File::count_open_files()
{
    static const char * const fd_dir_name = "/proc/self/fd";
    int count = 0;
    DIR *dp = opendir(fd_dir_name);
    if (dp != nullptr) {
        struct dirent *ptr;
        while ((ptr = readdir(dp)) != nullptr) {
            if ((strcmp(".", ptr->d_name) != 0) && (strcmp("..", ptr->d_name) != 0)) {
                ++count;
            }
        }
        closedir(dp);
    } else {
        std::error_code ec(errno, std::system_category());
        fprintf(stderr, "could not scan directory %s: %s\n", fd_dir_name, ec.message().c_str());
    }
    return count;
}

#endif