-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrepairDuplicateVersionsSuite.js
419 lines (396 loc) · 13.8 KB
/
repairDuplicateVersionsSuite.js
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
/* eslint-disable max-len */
/* eslint-disable no-console */
/* eslint-disable comma-dangle */
const async = require('async');
const crypto = require('crypto');
const fs = require('fs');
const http = require('http');
const https = require('https');
const { http: httpArsn, https: httpsArsn } = require('httpagent');
const { URL } = require('url');
const readline = require('readline');
const { jsutil, errors } = require('arsenal');
const { Logger } = require('werelogs');
const {
OBJECT_REPAIR_BUCKETD_HOSTPORT,
OBJECT_REPAIR_SPROXYD_HOSTPORT,
OBJECT_REPAIR_TLS_KEY_PATH,
OBJECT_REPAIR_TLS_CERT_PATH,
OBJECT_REPAIR_TLS_CA_PATH,
} = process.env;
const useHttps = (OBJECT_REPAIR_TLS_KEY_PATH !== undefined
&& OBJECT_REPAIR_TLS_KEY_PATH !== ''
&& OBJECT_REPAIR_TLS_CERT_PATH !== undefined
&& OBJECT_REPAIR_TLS_CERT_PATH !== '');
const log = new Logger('s3utils:repairDuplicateVersions');
const sproxydAgent = new http.Agent({
keepAlive: true,
});
const bucketdAgent = useHttps
? new httpsArsn.Agent({
key: fs.readFileSync(OBJECT_REPAIR_TLS_KEY_PATH),
cert: fs.readFileSync(OBJECT_REPAIR_TLS_CERT_PATH),
ca: OBJECT_REPAIR_TLS_CA_PATH
? [fs.readFileSync(OBJECT_REPAIR_TLS_CA_PATH)]
: undefined,
keepAlive: true,
})
: new httpArsn.Agent({
keepAlive: true,
});
let sproxydAlias;
const objectsToRepair = [];
const status = {
logLinesRead: 0,
objectsRepaired: 0,
objectsSkipped: 0,
objectsErrors: 0,
sproxydKeysCopied: 0,
sproxydKeysCopyErrors: 0,
sproxydBytesCopied: 0,
};
function logProgress(message) {
log.info(message, { ...status, objectsToRepair: objectsToRepair.length, });
}
function checkStatus(property) {
return status[property] > 0;
}
function httpRequest(method, url, reqBody, cb) {
const cbOnce = jsutil.once(cb);
const urlObj = new URL(url);
const transport = useHttps ? https : http;
const req = transport.request({
hostname: urlObj.hostname,
port: urlObj.port,
path: `${urlObj.pathname}${urlObj.search}`,
method,
agent: bucketdAgent,
}, res => {
if (method === 'HEAD') {
return cbOnce(null, res);
}
const chunks = [];
res.on('data', chunk => chunks.push(chunk));
res.once('end', () => {
const body = chunks.join('');
// eslint-disable-next-line no-param-reassign
res.body = body;
return cbOnce(null, res);
});
return res.once('error', err => cbOnce(new Error(
'error reading response from HTTP request '
+ `to ${url}: ${err.message}`
)));
});
req.once('error', err => cbOnce(new Error(
`error sending HTTP request to ${url}: ${err.message}`
)));
if (reqBody) {
req.setHeader('content-type', 'application/json');
req.setHeader('content-length', reqBody.length);
req.write(reqBody);
}
req.end();
}
function getSproxydAlias(cb) {
const url = `http://${OBJECT_REPAIR_SPROXYD_HOSTPORT}/.conf`;
httpRequest('GET', url, null, (err, res) => {
if (err) {
return cb(err);
}
if (res.statusCode !== 200) {
return cb(new Error(
`GET ${url} returned status ${res.statusCode}`
));
}
const resp = JSON.parse(res.body);
sproxydAlias = resp['ring_driver:0'].alias;
return cb();
});
}
function readVerifyLog(cb) {
const logLines = readline.createInterface({ input: process.stdin });
logProgress('start reading verify log');
logLines.on('line', line => {
status.logLinesRead += 1;
try {
const parsedLine = JSON.parse(line);
if (parsedLine.message !== 'duplicate sproxyd key found') {
return undefined;
}
if (!parsedLine.objectUrl || !parsedLine.objectUrl2) {
log.error('malformed verify log line: missing fields', {
lineNumber: status.logLinesRead,
});
return undefined;
}
objectsToRepair.push({
objectUrl: parsedLine.objectUrl,
objectUrl2: parsedLine.objectUrl2,
});
} catch (err) {
log.info('ignoring malformed JSON line');
}
return undefined;
});
logLines.on('close', () => {
logProgress('finished reading verify log');
cb();
});
}
function fetchObjectMetadata(objectUrl, cb) {
if (!objectUrl.startsWith('s3://')) {
return cb(new Error(`malformed object URL ${objectUrl}: must start with "s3://"`));
}
const bucketAndObject = objectUrl.slice(5);
const url = `${useHttps ? 'https' : 'http'}://${OBJECT_REPAIR_BUCKETD_HOSTPORT}/default/bucket/${bucketAndObject}`;
return httpRequest('GET', url, null, (err, res) => {
if (err) {
return cb(err);
}
if (res.statusCode !== 200) {
return cb(new Error(`GET ${url} returned status ${res.statusCode}`));
}
const md = JSON.parse(res.body);
return cb(null, md);
});
}
function putObjectMetadata(objectUrl, objMD, cb) {
if (!objectUrl.startsWith('s3://')) {
return cb(new Error(`malformed object URL ${objectUrl}: must start with "s3://"`));
}
const bucketAndObject = objectUrl.slice(5);
const url = `${useHttps ? 'https' : 'http'}://${OBJECT_REPAIR_BUCKETD_HOSTPORT}/default/bucket/${bucketAndObject}`;
return httpRequest('POST', url, JSON.stringify(objMD), (err, res) => {
if (err) {
return cb(err);
}
if (res.statusCode !== 200) {
return cb(new Error(`POST ${url} returned status ${res.statusCode}`));
}
return cb();
});
}
function genSproxydKey(fromKey) {
// See sproxydclient:lib/keygen.js for details on how sproxyd keys
// are generated.
//
// Here, instead of needing the original info to construct the
// key, we reuse the fields from the existing key and regenerate
// the random parts.
const rand = crypto.randomBytes(11);
return [rand.slice(0, 8).toString('hex').toUpperCase(),
fromKey.slice(16, 32),
rand.slice(8, 11).toString('hex').toUpperCase(),
fromKey.slice(38, 40)].join('');
}
function copySproxydKey(objectUrl, sproxydKey, cb) {
const cbOnce = jsutil.once((err, newKey) => {
if (err) {
status.sproxydKeysCopyErrors += 1;
} else {
status.sproxydKeysCopied += 1;
}
cb(err, newKey);
});
const newKey = genSproxydKey(sproxydKey);
const sproxydSourceUrl = new URL(`http://${OBJECT_REPAIR_SPROXYD_HOSTPORT}/${sproxydAlias}/${sproxydKey}`);
const sproxydDestUrl = new URL(`http://${OBJECT_REPAIR_SPROXYD_HOSTPORT}/${sproxydAlias}/${newKey}`);
const sourceReq = http.request({
hostname: sproxydSourceUrl.hostname,
port: sproxydSourceUrl.port,
path: sproxydSourceUrl.pathname,
method: 'GET',
agent: sproxydAgent,
}, sourceRes => {
const sourceLogData = {
objectUrl,
sproxydKey,
httpCode: sourceRes.statusCode,
sproxydSourceUrl,
sproxydDestUrl
};
if (sourceRes.statusCode === 404) {
log.info('object with sproxyd key deleted before repair', sourceLogData);
return cbOnce(errors.ObjNotFound);
}
if (sourceRes.statusCode !== 200) {
log.error('sproxyd returned HTTP error code', sourceLogData);
return sourceRes.resume().once('end', () => cbOnce(errors.InternalError));
}
const targetReq = http.request({
hostname: sproxydDestUrl.hostname,
port: sproxydDestUrl.port,
path: sproxydDestUrl.pathname,
method: 'PUT',
agent: sproxydAgent,
headers: {
'Content-Length': Number.parseInt(sourceRes.headers['content-length'], 10),
},
}, targetRes => {
const targetLogData = {
objectUrl,
sproxydKey: newKey,
httpCode: targetRes.statusCode,
sproxydSourceUrl,
sproxydDestUrl
};
if (targetRes.statusCode === 404) {
log.info('object with sproxyd key deleted before repair', targetLogData);
return cbOnce(errors.ObjNotFound);
}
if (targetRes.statusCode !== 200) {
log.error('sproxyd returned HTTP error code', targetLogData);
return cbOnce(errors.InternalError);
}
targetRes.once('error', err => {
log.error('error reading response from sproxyd', {
objectUrl,
sproxydKey: newKey,
error: { message: err.message },
});
return cbOnce(errors.InternalError);
});
return targetRes.resume().once('end', () => {
status.sproxydBytesCopied
+= Number.parseInt(sourceRes.headers['content-length'], 10);
cbOnce(null, newKey);
});
});
sourceRes.pipe(targetReq);
sourceRes.once('error', err => {
log.error('error reading data from sproxyd', {
objectUrl,
sproxydKey,
error: { message: err.message },
});
return cbOnce(errors.InternalError);
});
return targetReq.once('error', err => {
log.error('error sending data to sproxyd', {
objectUrl,
sproxydKey: newKey,
error: { message: err.message },
});
return cbOnce(errors.InternalError);
});
});
sourceReq.once('error', err => {
log.error('error sending request to sproxyd', {
objectUrl,
sproxydKey,
error: { message: err.message },
});
return cbOnce(errors.InternalError);
});
sourceReq.end();
}
function repairObject(objInfo, cb) {
async.mapValues({
objectUrl: objInfo.objectUrl,
objectUrl2: objInfo.objectUrl2,
}, (url, key, done) => {
fetchObjectMetadata(url, (err, md) => {
if (err) {
log.error('error fetching object location', {
objectUrl: url,
error: { message: err.message },
});
return done(err);
}
if (!Array.isArray(md.location)) {
const msg = 'location field is not an array';
log.error(msg, {
objectUrl: url,
});
return done(new Error(msg));
}
const locationKeys = new Set(md.location.map(loc => loc.key));
return done(null, { md, locationKeys });
});
}, (err, results) => {
if (err) {
return cb(err);
}
const copiedKeys = {};
return async.eachSeries(results.objectUrl.locationKeys, (sproxydKey, done) => {
if (!results.objectUrl2.locationKeys.has(sproxydKey)) {
// sproxyd key is not duplicated
return done();
}
// sproxyd key is duplicated, need to copy the data to a
// new key and update metadata for objectUrl
return copySproxydKey(objInfo.objectUrl, sproxydKey, (err, newKey) => {
if (err) {
return done(err);
}
log.info('sproxyd key copied', {
objectUrl: objInfo.objectUrl,
sproxydKey,
newKey,
});
copiedKeys[sproxydKey] = newKey;
return done();
});
}, err => {
if (err) {
return cb(err);
}
if (Object.keys(copiedKeys).length === 0) {
log.info('skip object already repaired', {
objectUrl: objInfo.objectUrl,
});
status.objectsSkipped += 1;
return cb();
}
const objMD = results.objectUrl.md;
objMD.location.forEach(loc => {
if (copiedKeys[loc.key]) {
// eslint-disable-next-line no-param-reassign
loc.key = copiedKeys[loc.key];
}
});
return putObjectMetadata(objInfo.objectUrl, objMD, err => {
if (err) {
log.error('error putting object metadata', {
objectUrl: objInfo.objectUrl,
error: { message: err.message },
});
return cb(err);
}
log.info('repaired object metadata', {
objectUrl: objInfo.objectUrl,
});
status.objectsRepaired += 1;
return cb(null, { copiedKeys, objectUrl: objInfo.objectUrl });
});
});
});
}
function repairObjects(cb) {
logProgress('start repairing objects');
async.eachSeries(objectsToRepair, (objInfo, done) => {
repairObject(objInfo, err => {
if (err) {
log.error('an error occurred repairing object', {
objectUrl: objInfo.objectUrl,
error: { message: err.message },
});
status.objectsErrors += 1;
}
done();
});
}, cb);
}
module.exports = {
fetchObjectMetadata,
putObjectMetadata,
copySproxydKey,
httpRequest,
repairObject,
repairObjects,
readVerifyLog,
getSproxydAlias,
checkStatus,
logProgress
};