-
Notifications
You must be signed in to change notification settings - Fork 129
/
awssig4.js
294 lines (262 loc) · 11.9 KB
/
awssig4.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
/*
* Copyright 2023 F5, Inc.
*
* 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 awssig4
* @alias AwsSig4
*/
import awscred from "./awscredentials.js";
import utils from "./utils.js";
const mod_hmac = require('crypto');
/**
* Constant defining the headers being signed.
* @type {string}
*/
const DEFAULT_SIGNED_HEADERS = 'host;x-amz-content-sha256;x-amz-date';
/**
* Create HTTP Authorization header for authenticating with an AWS compatible
* v4 API.
*
* @param r {NginxHTTPRequest} HTTP request object
* @param timestamp {Date} timestamp associated with request (must fall within a skew)
* @param region {string} API region associated with request
* @param service {string} service code (for example, s3, lambda)
* @param uri {string} The URI-encoded version of the absolute path component URL to create a canonical request
* @param queryParams {string} The URL-encoded query string parameters to create a canonical request
* @param host {string} HTTP host header value
* @param credentials {Credentials} Credential object with AWS credentials in it (AccessKeyId, SecretAccessKey, SessionToken)
* @returns {string} HTTP Authorization header value
*/
function signatureV4(r, timestamp, region, service, uri, queryParams, host, credentials) {
const eightDigitDate = utils.getEightDigitDate(timestamp);
const amzDatetime = utils.getAmzDatetime(timestamp, eightDigitDate);
const canonicalRequest = _buildCanonicalRequest(r,
r.method, uri, queryParams, host, amzDatetime, credentials.sessionToken);
const signature = _buildSignatureV4(r, amzDatetime, eightDigitDate,
credentials, region, service, canonicalRequest);
const authHeader = 'AWS4-HMAC-SHA256 Credential='
.concat(credentials.accessKeyId, '/', eightDigitDate, '/', region, '/', service, '/aws4_request,',
'SignedHeaders=', _signedHeaders(r, credentials.sessionToken), ',Signature=', signature);
utils.debug_log(r, 'AWS v4 Auth header: [' + authHeader + ']');
return authHeader;
}
/**
* Creates a canonical request that will later be signed
*
* @see {@link https://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html | Creating a Canonical Request}
* @param method {string} HTTP method
* @param uri {string} URI associated with request
* @param queryParams {string} query parameters associated with request
* @param host {string} HTTP Host header value
* @param amzDatetime {string} ISO8601 timestamp string to sign request with
* @returns {string} string with concatenated request parameters
* @private
*/
function _buildCanonicalRequest(r,
method, uri, queryParams, host, amzDatetime, sessionToken) {
const payloadHash = awsHeaderPayloadHash(r);
let canonicalHeaders = 'host:' + host + '\n' +
'x-amz-content-sha256:' + payloadHash + '\n' +
'x-amz-date:' + amzDatetime + '\n';
if (sessionToken && sessionToken.length > 0) {
canonicalHeaders += 'x-amz-security-token:' + sessionToken + '\n'
}
let canonicalRequest = method + '\n';
canonicalRequest += uri + '\n';
canonicalRequest += queryParams + '\n';
canonicalRequest += canonicalHeaders + '\n';
canonicalRequest += _signedHeaders(r, sessionToken) + '\n';
canonicalRequest += payloadHash;
return canonicalRequest;
}
/**
* Creates a signature for use authenticating against an AWS compatible API.
*
* @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 amzDatetime {string} ISO8601 timestamp string to sign request with
* @param eightDigitDate {string} date in the form of 'YYYYMMDD'
* @param creds {object} AWS credentials
* @param region {string} API region associated with request
* @param service {string} service code (for example, s3, lambda)
* @param canonicalRequest {string} string with concatenated request parameters
* @returns {string} hex encoded hash of signature HMAC value
* @private
*/
function _buildSignatureV4(
r, amzDatetime, eightDigitDate, creds, region, service, canonicalRequest) {
utils.debug_log(r, 'AWS v4 Auth Canonical Request: [' + canonicalRequest + ']');
const canonicalRequestHash = mod_hmac.createHash('sha256')
.update(canonicalRequest)
.digest('hex');
utils.debug_log(r, 'AWS v4 Auth Canonical Request Hash: [' + canonicalRequestHash + ']');
const stringToSign = _buildStringToSign(
amzDatetime, eightDigitDate, region, service, canonicalRequestHash);
utils.debug_log(r, 'AWS v4 Auth Signing String: [' + stringToSign + ']');
let kSigningHash;
/* If we have a keyval zone and key defined for caching the signing key hash,
* then signing key caching will be enabled. By caching signing keys we can
* accelerate the signing process because we will have four less HMAC
* operations that have to be performed per incoming request. The signing
* key expires every day, so our cache key can persist for 24 hours safely.
*/
if ("variables" in r && r.variables.cache_signing_key_enabled == 1) {
// cached value is in the format: [eightDigitDate]:[signingKeyHash]
const cached = "signing_key_hash" in r.variables ? r.variables.signing_key_hash : "";
const fields = _splitCachedValues(cached);
const cachedEightDigitDate = fields[0];
const cacheIsValid = fields.length === 2 && eightDigitDate === cachedEightDigitDate;
// If true, use cached value
if (cacheIsValid) {
utils.debug_log(r, 'AWS v4 Using cached Signing Key Hash');
/* We are forced to JSON encode the string returned from the HMAC
* operation because it is in a very specific format that include
* binary data and in order to preserve that data when persisting
* we encode it as JSON. By doing so we can gracefully decode it
* when reading from the cache. */
kSigningHash = Buffer.from(JSON.parse(fields[1]));
// Otherwise, generate a new signing key hash and store it in the cache
} else {
kSigningHash = _buildSigningKeyHash(creds.secretAccessKey, eightDigitDate, region, service);
utils.debug_log(r, 'Writing key: ' + eightDigitDate + ':' + kSigningHash.toString('hex'));
r.variables.signing_key_hash = eightDigitDate + ':' + JSON.stringify(kSigningHash);
}
// Otherwise, don't use caching at all (like when we are using NGINX OSS)
} else {
kSigningHash = _buildSigningKeyHash(creds.secretAccessKey, eightDigitDate, region, service);
}
utils.debug_log(r, 'AWS v4 Signing Key Hash: [' + kSigningHash.toString('hex') + ']');
const signature = mod_hmac.createHmac('sha256', kSigningHash)
.update(stringToSign).digest('hex');
utils.debug_log(r, 'AWS v4 Authorization Header: [' + signature + ']');
return signature;
}
/**
* Creates a string to sign by concatenating together multiple parameters required
* by the signatures algorithm.
*
* @see {@link https://docs.aws.amazon.com/general/latest/gr/sigv4-create-string-to-sign.html | String to Sign}
* @param amzDatetime {string} ISO8601 timestamp string to sign request with
* @param eightDigitDate {string} date in the form of 'YYYYMMDD'
* @param region {string} region associated with server API
* @param service {string} service code (for example, s3, lambda)
* @param canonicalRequestHash {string} hex encoded hash of canonical request string
* @returns {string} a concatenated string of the passed parameters formatted for signatures
* @private
*/
function _buildStringToSign(amzDatetime, eightDigitDate, region, service, canonicalRequestHash) {
return 'AWS4-HMAC-SHA256\n' +
amzDatetime + '\n' +
eightDigitDate + '/' + region + '/' + service + '/aws4_request\n' +
canonicalRequestHash;
}
/**
* Creates a string containing the headers that need to be signed as part of v4
* signature authentication.
*
* @param r {NginxHTTPRequest} HTTP request object
* @param sessionToken {string|undefined} AWS session token if present
* @returns {string} semicolon delimited string of the headers needed for signing
* @private
*/
function _signedHeaders(r, sessionToken) {
let headers = DEFAULT_SIGNED_HEADERS;
if (sessionToken && sessionToken.length > 0) {
headers += ';x-amz-security-token';
}
return headers;
}
/**
* Creates a signing key HMAC. This value is used to sign the request made to
* the API.
*
* @param kSecret {string} secret access key
* @param eightDigitDate {string} date in the form of 'YYYYMMDD'
* @param region {string} region associated with server API
* @param service {string} name of service that request is for e.g. s3, lambda
* @returns {ArrayBuffer} signing HMAC
* @private
*/
function _buildSigningKeyHash(kSecret, eightDigitDate, region, service) {
const kDate = mod_hmac.createHmac('sha256', 'AWS4'.concat(kSecret))
.update(eightDigitDate).digest();
const kRegion = mod_hmac.createHmac('sha256', kDate)
.update(region).digest();
const kService = mod_hmac.createHmac('sha256', kRegion)
.update(service).digest();
const kSigning = mod_hmac.createHmac('sha256', kService)
.update('aws4_request').digest();
return kSigning;
}
/**
* Splits the cached values into an array with two elements or returns an
* empty array if the input string is invalid. The first element contains
* the eight digit date string and the second element contains a JSON string
* of the kSigningHash.
*
* @param cached {string} input string to parse
* @returns {Array<string>} array containing eight digit date and kSigningHash or empty
* @private
*/
function _splitCachedValues(cached) {
const matchedPos = cached.indexOf(':', 0);
// Do a sanity check on the position returned, if it isn't sane, return
// an empty array and let the caller logic process it.
if (matchedPos < 0 || matchedPos + 1 > cached.length) {
return []
}
const eightDigitDate = cached.substring(0, matchedPos);
const kSigningHash = cached.substring(matchedPos + 1);
return [eightDigitDate, kSigningHash]
}
/**
* Outputs the timestamp used to sign the request, so that it can be added to
* the 'x-amz-date' header and sent by NGINX. The output format is
* ISO 8601: YYYYMMDD'T'HHMMSS'Z'.
* @see {@link https://docs.aws.amazon.com/general/latest/gr/sigv4-date-handling.html | Handling dates in Signature Version 4}
*
* @param _r {NginxHTTPRequest} HTTP request object (not used, but required for NGINX configuration)
* @returns {string} ISO 8601 timestamp
*/
function awsHeaderDate(_r) {
return utils.getAmzDatetime(
awscred.Now(),
utils.getEightDigitDate(awscred.Now())
);
}
/**
* Return a payload hash in the header
*
* @param r {NginxHTTPRequest} HTTP request object
* @returns {string} payload hash
*/
function awsHeaderPayloadHash(r) {
const reqBody = r.variables.request_body ? r.variables.request_body: '';
const payloadHash = mod_hmac.createHash('sha256', 'utf8')
.update(reqBody)
.digest('hex');
return payloadHash;
}
export default {
awsHeaderDate,
awsHeaderPayloadHash,
signatureV4,
// These functions do not need to be exposed, but they are exposed so that
// unit tests can run against them.
_buildCanonicalRequest,
_buildSignatureV4,
_buildSigningKeyHash,
_splitCachedValues
}