forked from nginxinc/nginx-s3-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
s3gateway.js
550 lines (492 loc) · 17.6 KB
/
s3gateway.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/*
* Copyright 2020 F5 Networks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @module s3gateway
* @alias S3Gateway
*/
/**
* @typedef {Object} S3ReqParams
* @property {string} uri - URI to use for S3 request
* @property {string|undefined} httpDate - RFC2616 timestamp used to sign the request
* @property {string|undefined} host - S3 host to use for request
* @property {string|undefined} queryParams - query parameters to use with S3 request
*/
import awscred from "./awscredentials.js";
import awssig2 from "./awssig2.js";
import awssig4 from "./awssig4.js";
import utils from "./utils.js";
_requireEnvVars('S3_BUCKET_NAME');
_requireEnvVars('S3_SERVER');
_requireEnvVars('S3_SERVER_PROTO');
_requireEnvVars('S3_SERVER_PORT');
_requireEnvVars('S3_REGION');
_requireEnvVars('AWS_SIGS_VERSION');
_requireEnvVars('S3_STYLE');
/**
* Flag indicating debug mode operation. If true, additional information
* about signature generation will be logged.
* @type {boolean}
*/
const ALLOW_LISTING = utils.parseBoolean(process.env['ALLOW_DIRECTORY_LIST']);
/**
* Flag indicating if index pages should be provided for directories.
* @type {boolean}
* */
const PROVIDE_INDEX_PAGE = utils.parseBoolean(process.env['PROVIDE_INDEX_PAGE']);
/**
* Flag that when enabled checks if requesting a folder is without trailing slash, and return 302
* appending a slash to it when using for static site hosting.
* @type {boolean}
* */
const APPEND_SLASH = utils.parseBoolean(process.env['APPEND_SLASH_FOR_POSSIBLE_DIRECTORY']);
/**
* Flag indicating if 404 should be returned when requesting an empty bucket.
* @type {boolean}
* */
const FOUR_O_FOUR_ON_EMPTY_BUCKET = utils.parseBoolean(process.env['FOUR_O_FOUR_ON_EMPTY_BUCKET']);
/**
* Flag indicating why type of S3 URI to use. Valid values are 'virtual' and
* 'path'. If not set, 'virtual' is assumed.
* @type {string}
* */
const S3_STYLE = process.env['S3_STYLE'];
/**
* Additional header prefixes to strip from the response before sending to the
* client. This is useful for removing headers that may contain sensitive
* information.
* @type {Array<String>}
* */
const ADDITIONAL_HEADER_PREFIXES_TO_STRIP = utils.parseArray(process.env['HEADER_PREFIXES_TO_STRIP']);
/**
* Additional header prefixes to allow from the response before sending to the
* client. This is opposite to HEADER_PREFIXES_TO_STRIP.
* @type {Array<String>}
* */
const ADDITIONAL_HEADER_PREFIXES_ALLOWED = utils.parseArray(process.env['HEADER_PREFIXES_ALLOWED']);
/**
* Default filename for index pages to be read off of the backing object store.
* @type {string}
* */
const INDEX_PAGE = "index.html";
/**
* Constant defining the service requests are being signed for.
* @type {string}
*/
const SERVICE = process.env['S3_SERVICE'] || "s3";
/**
* Transform the headers returned from S3 such that there isn't information
* leakage about S3 and do other tasks needed for appropriate gateway output.
* @param r {NginxHTTPRequest} HTTP request
*/
function editHeaders(r) {
const isDirectoryHeadRequest =
ALLOW_LISTING &&
r.method === 'HEAD' &&
_isDirectory(decodeURIComponent(r.variables.uri_path));
/* Strips all x-amz- (if x-amz- is not in ADDITIONAL_HEADER_PREFIXES_ALLOWED) headers from the output HTTP headers so that the
* requesters to the gateway will not know you are proxying S3. */
if ('headersOut' in r) {
for (const key in r.headersOut) {
const headerName = key.toLowerCase()
/* We delete all headers when it is a directory head request because
* none of the information is relevant for passing on via a gateway. */
if (isDirectoryHeadRequest) {
delete r.headersOut[key];
} else if (
!_isHeaderToBeAllowed(headerName, ADDITIONAL_HEADER_PREFIXES_ALLOWED)
&& _isHeaderToBeStripped(headerName, ADDITIONAL_HEADER_PREFIXES_TO_STRIP)
) {
delete r.headersOut[key];
}
}
/* Transform content type returned on HEAD requests for directories
* if directory listing is enabled. If you change the output format
* for the XSL stylesheet from HTML to something else, you will
* want to change the content type below. */
if (isDirectoryHeadRequest) {
r.headersOut['Content-Type'] = 'text/html; charset=utf-8'
}
}
}
/**
* Determines if a given HTTP header should be removed before being
* sent on to the requesting client.
* @param headerName {string} Lowercase HTTP header name
* @param additionalHeadersToStrip {Array<string>} array of additional headers to remove
* @returns {boolean} true if header should be removed
*/
function _isHeaderToBeStripped(headerName, additionalHeadersToStrip) {
if (headerName.indexOf('x-amz-', 0) >= 0) {
return true;
}
for (let i = 0; i < additionalHeadersToStrip.length; i++) {
const headerToStrip = additionalHeadersToStrip[i];
if (headerName.indexOf(headerToStrip, 0) >= 0) {
return true;
}
}
return false;
}
/**
* Determines if a given HTTP header should be force allowed from requesting client.
* @param headerName {string} Lowercase HTTP header name
* @param additionalHeadersToAllow {Array<string>} array of additional headers to allow
* @returns {boolean} true if header should be removed
*/
function _isHeaderToBeAllowed(headerName, additionalHeadersToAllow) {
for (let i = 0; i < additionalHeadersToAllow.length; i++) {
const headerToAllow = additionalHeadersToAllow[i];
if (headerName.indexOf(headerToAllow, 0) >= 0) {
return true;
}
}
return false;
}
/**
* Outputs the timestamp used to sign the request, so that it can be added to
* the 'Date' header and sent by NGINX.
*
* @param r {NginxHTTPRequest} HTTP request object (not used, but required for NGINX configuration)
* @returns {string} RFC2616 timestamp
*/
function s3date(r) {
return awscred.Now().toUTCString();
}
/**
* Creates an AWS authentication signature based on the global settings and
* the passed request parameter.
*
* @param r {NginxHTTPRequest} HTTP request object
* @returns {string} AWS authentication signature
*/
function s3auth(r) {
const bucket = process.env['S3_BUCKET_NAME'];
const region = process.env['S3_REGION'];
const host = r.variables.s3_host;
const sigver = process.env['AWS_SIGS_VERSION'];
let signature;
const credentials = awscred.readCredentials(r);
if (sigver == '2') {
let req = _s3ReqParamsForSigV2(r, bucket);
signature = awssig2.signatureV2(r, req.uri, req.httpDate, credentials);
} else {
let req = _s3ReqParamsForSigV4(r, bucket, host);
signature = awssig4.signatureV4(r, awscred.Now(), region, SERVICE,
req.uri, req.queryParams, req.host, credentials);
}
return signature;
}
/**
* Generate request parameters for AWS signature version 2
*
* @see {@link https://docs.aws.amazon.com/AmazonS3/latest/userguide/auth-request-sig-v2.html | AWS signature version 2}
* @param r {NginxHTTPRequest} HTTP request object
* @param bucket {string} S3 bucket associated with request
* @returns {S3ReqParams} s3ReqParams object (host, method, uri, queryParams)
* @private
*/
function _s3ReqParamsForSigV2(r, bucket) {
/* If the source URI is a directory, we are sending to S3 a query string
* local to the root URI, so this is what we need to encode within the
* string to sign. For example, if we are requesting /bucket/dir1/ from
* nginx, then in S3 we need to request /?delimiter=/&prefix=dir1/
* Thus, we can't put the path /dir1/ in the string to sign. */
let uri = _isDirectory(r.variables.uri_path) ? '/' : r.variables.uri_path;
// To return index pages + index.html
if (utils.parseBoolean(r.variables.forIndexPage) && _isDirectory(r.variables.uri_path)){
uri = r.variables.uri_path + INDEX_PAGE
}
return {
uri: '/' + bucket + uri,
httpDate: s3date(r)
};
}
/**
* Generate request parameters for AWS signature version 4
*
* @see {@link https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html | AWS V4 Signing Process}
* @param r {NginxHTTPRequest} HTTP request object
* @param bucket {string} S3 bucket associated with request
* @param host {string} S3 host associated with request
* @returns {S3ReqParams} s3ReqParams object (host, uri, queryParams)
* @private
*/
function _s3ReqParamsForSigV4(r, bucket, host) {
const baseUri = s3BaseUri(r);
const computed_url = !utils.parseBoolean(r.variables.forIndexPage)
? r.variables.uri_path
: r.variables.uri_path + INDEX_PAGE;
const queryParams = _s3DirQueryParams(computed_url, r.method);
let uri;
if (queryParams.length > 0) {
if (baseUri.length > 0) {
uri = baseUri;
} else {
uri = '/';
}
} else {
uri = s3uri(r);
}
return {
host: host,
uri: uri,
queryParams: queryParams
};
}
/**
* Build the base file path for a S3 request URI. This function allows for
* path style S3 URIs to be created that do not use a subdomain to specify
* the bucket name.
*
* @param r {NginxHTTPRequest} HTTP request object (not used, but required for NGINX configuration)
* @returns {string} start of the file path for the S3 object URI
*/
function s3BaseUri(r) {
const bucket = process.env['S3_BUCKET_NAME'];
let basePath;
if (S3_STYLE === 'path') {
utils.debug_log(r, 'Using path style uri : ' + '/' + bucket);
basePath = '/' + bucket;
} else {
basePath = '';
}
return basePath;
}
/**
* Returns the s3 path given the incoming request
*
* @param r {NginxHTTPRequest} HTTP request
* @returns {string} uri for s3 request
*/
function s3uri(r) {
let uriPath = r.variables.uri_path;
const basePath = s3BaseUri(r);
let path;
// Create query parameters only if directory listing is enabled.
if (ALLOW_LISTING && !utils.parseBoolean(r.variables.forIndexPage)) {
const queryParams = _s3DirQueryParams(uriPath, r.method);
if (queryParams.length > 0) {
path = basePath + '?' + queryParams;
} else {
path = _escapeURIPath(basePath + uriPath);
}
} else {
// This is a path that will resolve to an index page
if (PROVIDE_INDEX_PAGE && _isDirectory(uriPath) ) {
uriPath += INDEX_PAGE;
}
path = _escapeURIPath(basePath + uriPath);
}
utils.debug_log(r, 'S3 Request URI: ' + r.method + ' ' + path);
return path;
}
/**
* Create and encode the query parameters needed to query S3 for an object
* listing.
*
* @param uriPath request URI path
* @param method request HTTP method
* @returns {string} query parameters to use with S3 request
* @private
*/
function _s3DirQueryParams(uriPath, method) {
if (!_isDirectory(uriPath) || method !== 'GET') {
return '';
}
/* Return if static website. We don't want to list the files in the
directory, we want to append the index page and get the fil. */
if (uriPath.endsWith(INDEX_PAGE)){
return '';
}
let path = 'delimiter=%2F'
if (uriPath !== '/') {
let decodedUriPath = decodeURIComponent(uriPath);
let without_leading_slash = decodedUriPath.charAt(0) === '/' ?
decodedUriPath.substring(1, decodedUriPath.length) : decodedUriPath;
path += '&prefix=' + _encodeURIComponent(without_leading_slash);
}
return path;
}
/**
* Redirects the request to the appropriate location. If the request is not
* a read (GET/HEAD) request, then we reject the request outright by returning
* a HTTP 405 error with a list of allowed methods.
*
* @param r {NginxHTTPRequest} HTTP request object
*/
function redirectToS3(r) {
// This is a read-only S3 gateway, so we do not support any other methods
if (!(r.method === 'GET' || r.method === 'HEAD')) {
utils.debug_log(r, 'Invalid method requested: ' + r.method);
r.internalRedirect("@error405");
return;
}
const uriPath = r.variables.uri_path;
const isDirectoryListing = ALLOW_LISTING && _isDirectory(uriPath);
if (isDirectoryListing && (r.method === 'GET' || r.method === 'HEAD')) {
r.internalRedirect("@s3PreListing");
} else if (PROVIDE_INDEX_PAGE === true) {
r.internalRedirect("@s3");
} else if (!ALLOW_LISTING && !PROVIDE_INDEX_PAGE && uriPath === "/") {
r.internalRedirect("@error404");
} else {
if (r.headersIn["Range"]) {
r.internalRedirect("@s3_sliced");
} else {
r.internalRedirect("@s3");
}
}
}
function trailslashControl(r) {
if (APPEND_SLASH) {
// For the purposes of understanding whether this is a directory,
// consider the uri without query params or anchors
const path = r.variables.uri_path.split(/[?#]/)[0];
const hasExtension = /\/[^.\/]+\.[^.]+$/;
if (!hasExtension.test(path) && !_isDirectory(path)){
return r.internalRedirect("@trailslash");
}
}
r.internalRedirect("@error404");
}
/**
* Checks if there is an index.html file in the directory.
* Redirects appropriately. Before that, it checks if
* directory listing is enforced or not.
*
* @param {Object} r - The HTTP request object.
*/
async function loadContent(r) {
if (!PROVIDE_INDEX_PAGE) {
r.internalRedirect("@s3Directory");
return;
}
const uri = s3uri(r);
let reply = await ngx.fetch(
`http://127.0.0.1:80${uri}`
);
if (reply.status === 200) {
utils.debug_log(r, `Found index file, redirecting to: ${uri}`);
r.internalRedirect(uri);
} else if (reply.status === 404) {
// As there was no index file found, just list the contents of the directory
r.internalRedirect("@s3Directory");
} else {
r.internalRedirect("@error500");
}
}
/**
* Processes the directory listing output as returned from S3. If
* FOUR_O_FOUR_ON_EMPTY_BUCKET is enabled, this function will corrupt the
* XML output by inserting the string 'junk' into the output thereby causing
* nginx to return a 404 for empty directory listings.
*
* If anyone finds a better way to do this, please submit a PR.
*
* @param r {NginxHTTPRequest} HTTP request object (not used, but required for NGINX configuration)
* @param data {NjsStringOrBuffer} chunked data buffer
* @param flags {NginxHTTPSendBufferOptions} contains field that indicates that a chunk is last
*/
function filterListResponse(r, data, flags) {
if (FOUR_O_FOUR_ON_EMPTY_BUCKET) {
let indexIsEmpty = utils.parseBoolean(r.variables.indexIsEmpty);
if (indexIsEmpty && data.indexOf('<Contents') >= 0) {
r.variables.indexIsEmpty = false;
indexIsEmpty = false;
}
if (indexIsEmpty && data.indexOf('<CommonPrefixes') >= 0) {
r.variables.indexIsEmpty = false;
indexIsEmpty = false;
}
if (flags.last && indexIsEmpty) {
r.sendBuffer('junk', flags);
} else {
r.sendBuffer(data, flags);
}
} else {
r.sendBuffer(data, flags);
}
}
/**
* Adds additional encoding to a URI component
*
* @param string {string} string to encode
* @returns {string} an encoded string
* @private
*/
function _encodeURIComponent(string) {
return encodeURIComponent(string)
.replace(/[!*'()]/g, (c) =>
`%${c.charCodeAt(0).toString(16).toUpperCase()}`);
}
/**
* Escapes the path portion of a URI without escaping the path separator
* characters (/).
*
* @param uri {string} unescaped URI
* @returns {string} URI with each path component separately escaped
* @private
*/
function _escapeURIPath(uri) {
// Check to see if the URI path was already encoded. If so, we decode it.
let decodedUri = (uri.indexOf('%') >= 0) ? decodeURIComponent(uri) : uri;
let components = [];
decodedUri.split('/').forEach(function (item, i) {
components[i] = _encodeURIComponent(item);
});
return components.join('/');
}
/**
* Determines if a given path is a directory based on whether or not the last
* character in the path is a forward slash (/).
*
* @param path {string} path to parse
* @returns {boolean} true if path is a directory
* @private
*/
function _isDirectory(path) {
if (!path) return false;
return path.slice(-1) === '/';
}
/**
* Checks to see if the given environment variable is present. If not, an error
* is thrown.
* @param envVarName {string} environment variable to check for
* @private
*/
function _requireEnvVars(envVarName) {
const isSet = envVarName in process.env;
if (!isSet) {
throw(`Required environment variable ${envVarName} is missing`);
}
}
export default {
s3date,
s3auth,
s3uri,
trailslashControl,
redirectToS3,
editHeaders,
filterListResponse,
loadContent,
// These functions do not need to be exposed, but they are exposed so that
// unit tests can run against them.
_s3ReqParamsForSigV2,
_s3ReqParamsForSigV4,
_encodeURIComponent,
_escapeURIPath,
_isHeaderToBeStripped
};