aboutsummaryrefslogtreecommitdiff
path: root/src/restore.cpp
blob: 8a5b29f2eea5b90d29ae2656964039fa093f0edd (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
/* Copyright 2021 Ján Sučan <jan@jansucan.com>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "restore.h"
#include "buffered_file.h"

#include <filesystem>
#include <fstream>

static void
check_diff_file(const OptionsRestore &opts)
{
    size_t diff_size{0};
    try {
        diff_size = std::filesystem::file_size(opts.getDiffFilePath());
    } catch (const std::exception &e) {
        throw RestoreError("cannot get size of diff file: " +
                           std::string(e.what()));
    }

    if (diff_size == 0) {
        throw RestoreError("diff file is empty");
    } else if ((diff_size % (sizeof(uint64_t) + opts.getSectorSize())) != 0) {
        /* The diff file must hold equally sized sectors and the
         * offset of each of them
         */
        throw RestoreError(
            "diff file has size that cannot contain valid diff data");
    }

    size_t out_size{0};
    try {
        out_size = std::filesystem::file_size(opts.getOutFilePath());
    } catch (const std::exception &e) {
        throw RestoreError("cannot get size of output file: " +
                           std::string(e.what()));
    }

    std::ifstream diff_file;
    diff_file.open(opts.getDiffFilePath(), std::ios::in | std::ios::binary);
    if (!diff_file) {
        throw RestoreError("cannot open diff file");
    }

    uint64_t prev_out_offset = 0;
    bool is_first_reading = true;

    /* Scan the diff file and check  */
    for (;;) {
        uint64_t out_offset;
        /* Read the next offset */
        diff_file.read(reinterpret_cast<char *>(&out_offset),
                       sizeof(out_offset));

        if (diff_file.eof() && diff_file.fail() && !diff_file.bad()) {
            break;
        } else if (!diff_file.good() && !diff_file.eof()) {
            throw RestoreError("cannot read from file");
        }
        out_offset = le64toh(out_offset);

        if (!is_first_reading && (out_offset <= prev_out_offset)) {
            throw RestoreError(
                "a sector offset points behind the previous offset");
        } else if ((out_offset + opts.getSectorSize()) > out_size) {
            throw RestoreError(
                "a sector offset points past the end of the output file");
        } else if (!diff_file.seekg(opts.getSectorSize(), std::ios_base::cur)) {
            throw RestoreError("cannot seek in diff file");
        }

        is_first_reading = false;
        prev_out_offset = out_offset;
    }

    /* The diff file must be read completely */
    char c;
    diff_file.read(&c, 1);
    if (diff_file.gcount() != 0) {
        throw RestoreError("diff file is not valid");
    }
    diff_file.clear();

    diff_file.close();
}

void
restore(const OptionsRestore &opts)
{
    check_diff_file(opts);

    BufferedFileReader diff_file(opts.getDiffFilePath(), opts.getBufferSize());

    std::fstream out_file;
    out_file.open(opts.getOutFilePath(),
                  std::ios::in | std::ios::out | std::ios::binary);
    if (!out_file) {
        throw RestoreError("cannot open output file");
    }

    const size_t diff_buffer_size = sizeof(uint64_t) + opts.getSectorSize();
    std::unique_ptr<char[]> diff_buffer;
    try {
        diff_buffer = std::make_unique<char[]>(diff_buffer_size);
    } catch (const std::bad_alloc &e) {
        throw RestoreError("cannot allocate sector buffer for diff file data");
    }

    /* Restore data from the differential image */
    size_t diff_read_size = {0};
    for (;;) {
        diff_read_size = diff_file.read(diff_buffer.get(), diff_buffer_size);

        if (diff_read_size == 0) {
            break;
        } else if (diff_read_size != diff_buffer_size) {
            throw RestoreError("cannot read from diff file");
        }

        const uint64_t out_offset =
            le64toh(*reinterpret_cast<uint64_t *>(diff_buffer.get()));

        if (!out_file.seekp(out_offset, std::ios_base::beg)) {
            throw RestoreError("cannot seek in output file");
        }

        if (!out_file.write(reinterpret_cast<char *>(diff_buffer.get()) +
                                sizeof(uint64_t),
                            opts.getSectorSize())) {
            throw RestoreError("cannot write to output file");
        }
    }

    out_file.close();

    /* The diff file must be read completely */
    char c;
    diff_read_size = diff_file.read(&c, 1);
    if (diff_read_size != 0) {
        throw RestoreError("diff file is not valid");
    }
}