-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrestore.go
More file actions
258 lines (218 loc) · 5.99 KB
/
restore.go
File metadata and controls
258 lines (218 loc) · 5.99 KB
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
package pitreos
import (
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"sync"
"github.com/abourget/llerrgroup"
"github.com/avast/retry-go"
humanize "github.com/dustin/go-humanize"
"github.com/ghodss/yaml"
"go.uber.org/zap"
"golang.org/x/crypto/sha3"
)
var counterLock sync.Mutex
func (p *PITR) RestoreFromBackup(dest string, backupName string, filter Filter) error {
bm, err := p.downloadBackupIndex(backupName)
if err != nil {
return err
}
if bm.Version != p.filemetaVersion {
return fmt.Errorf("incompatible version of backupIndex, expected %s got %s", p.filemetaVersion, bm.Version)
}
matchingFiles, err := bm.FindFilesMatching(filter)
if err != nil {
return err
}
for _, file := range matchingFiles {
err := p.downloadFileFromChunks(file, dest)
if err != nil {
return fmt.Errorf("retrieve chunk %q: %s", file.FileName, err)
}
}
return nil
}
func (p *PITR) downloadFileFromChunks(fm *FileIndex, localFolder string) error {
zlog.Info("restoring file with size from snapshot",
zap.String("file_name", fm.FileName),
zap.String("bytes", humanize.Bytes(uint64(fm.TotalSize))),
zap.Time("date", fm.Date),
)
filePath := filepath.Join(localFolder, fm.FileName)
err := os.MkdirAll(path.Dir(filePath), 0755)
if err != nil {
return fmt.Errorf("mkdirall: %s", err)
}
f := NewFileOps(filePath, true)
if err := f.Open(); err != nil {
return fmt.Errorf("new fileops: %s", err)
}
defer f.Close()
if stringarrayContains(p.AppendonlyFiles, fm.FileName) {
f.isAppendOnly = true
}
fstats, err := f.file.Stat()
if err != nil {
return err
}
f.originalSize = fstats.Size()
if err = f.Truncate(fm.TotalSize); err != nil {
return err
}
if f.isAppendOnly && f.originalSize >= fm.TotalSize {
zlog.Info("file treated as 'appendonly'",
zap.String("file_name", fm.FileName),
zap.String("truncated_to", humanize.Bytes(uint64(fm.TotalSize))),
)
return nil
}
skippedChunks := 0
emptyChunks := 0
correctChunks := 0
eg := llerrgroup.New(p.threads)
numChunks := len(fm.Chunks)
for n, chunkMeta := range fm.Chunks {
if f.isAppendOnly && f.originalSize > chunkMeta.End {
counterLock.Lock()
skippedChunks++
counterLock.Unlock()
continue
}
if eg.Stop() {
break
}
n := n
chunkMeta := chunkMeta
eg.Go(func() error {
partBuffer, localChunkEmpty, err := f.getLocalChunk(int64(chunkMeta.Start), int64(chunkMeta.End-chunkMeta.Start+1))
if err != nil {
return fmt.Errorf("getting local chunk: %s", err)
}
if localChunkEmpty && chunkMeta.IsEmpty {
counterLock.Lock()
emptyChunks++
counterLock.Unlock()
return nil
}
if !localChunkEmpty && chunkMeta.IsEmpty {
zlog.Debug("punching a hole (empty chunk)", zap.Int("chunk_index", n+1), zap.Int("num_chunks", numChunks))
err := f.wipeChunk(chunkMeta.Start, chunkMeta.End-chunkMeta.Start+1)
if err != nil {
return err
}
return nil
}
numBytes := humanize.Bytes(uint64(chunkMeta.End - chunkMeta.Start - 1))
if localChunkEmpty && !chunkMeta.IsEmpty {
zlog.Info("chunk invalid",
zap.Int("chunk_index", n+1),
zap.Int("num_chunks", numChunks),
zap.Any("sha3_sum", chunkMeta.ContentSHA),
zap.Any("num_bytes", numBytes),
)
} else {
readSHASum := sha3.Sum256(partBuffer)
shasum := fmt.Sprintf("%x", readSHASum)
if shasum == chunkMeta.ContentSHA {
counterLock.Lock()
correctChunks++
counterLock.Unlock()
return nil
}
zlog.Debug("chunk valid",
zap.Int("chunk_index", n+1),
zap.Int("num_chunks", numChunks),
zap.Any("sha3_sum", shasum),
zap.Any("chunk_meta_content_sha", chunkMeta.ContentSHA),
zap.Any("num_bytes", numBytes),
)
}
return retry.Do(func() error {
//try from cache first
var openChunk io.ReadCloser
var inCache bool
if p.cacheStorage != nil {
// Try this first
found, err := p.cacheStorage.ChunkExists(chunkMeta.ContentSHA)
if err != nil {
return err
}
if found {
openChunk, err = p.cacheStorage.OpenChunk(chunkMeta.ContentSHA)
inCache = true
}
}
if openChunk == nil {
openChunk, err = p.storage.OpenChunk(chunkMeta.ContentSHA)
}
if err != nil {
return fmt.Errorf("open chunk: %s", err)
}
defer openChunk.Close()
newData, err := ioutil.ReadAll(openChunk)
if err != nil {
return err
}
if p.cacheStorage != nil && !inCache {
err := p.cacheStorage.WriteChunk(chunkMeta.ContentSHA, newData)
if err != nil {
return err
}
}
newSHASum := fmt.Sprintf("%x", sha3.Sum256(newData))
if chunkMeta.ContentSHA != newSHASum {
return fmt.Errorf("invalid sha3sum from downloaded blob, got %s, expected %s", newSHASum, chunkMeta.ContentSHA)
}
zlog.Debug("chunk download finished",
zap.Int("chunk_index", n+1),
zap.Any("num_chunks", numChunks),
zap.Any("new_sha3_sum", newSHASum),
)
return f.writeChunkToFile(int64(chunkMeta.Start), newData)
})
})
}
if err := eg.Wait(); err != nil {
return err
}
if skippedChunks > 0 {
zlog.Debug("skipped chunks",
zap.Any("skipped_chunk_count", skippedChunks),
zap.Any("total_chunk_count", numChunks),
zap.Any("file_name", fm.FileName),
)
}
if correctChunks > 0 {
zlog.Debug("correct chunks",
zap.Any("correct_chunk_count", correctChunks),
zap.Any("total_chunk_count", numChunks),
zap.Any("file_name", fm.FileName),
)
}
if emptyChunks > 0 {
zlog.Debug("empty chunks",
zap.Any("empty_chunk_count", emptyChunks),
zap.Any("total_chunk_count", numChunks),
zap.Any("file_name", fm.FileName),
)
}
return nil
}
func (p *PITR) downloadBackupIndex(name string) (out *BackupIndex, err error) {
y, err := p.storage.OpenBackupIndex(name)
if err != nil {
return nil, fmt.Errorf("open index: %w", err)
}
defer y.Close()
cnt, err := ioutil.ReadAll(y)
if err != nil {
return nil, fmt.Errorf("read index: %w", err)
}
if err = yaml.Unmarshal(cnt, &out); err != nil {
return nil, fmt.Errorf("unmarshal index: %w", err)
}
return
}