-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaws-functions
executable file
·383 lines (349 loc) · 12.2 KB
/
aws-functions
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
#!/usr/bin/env bash
# vim: set tabstop=2 softtabstop=2 shiftwidth=2 expandtab:
# Common AWS functions
if command -v libressl >/dev/null 2>&1; then
export OPENSSL=libressl
elif command -v openssl >/dev/null 2>&1; then
export OPENSSL=openssl
else
echo "OpenSSL executable not found, but required for this tool!">&2
exit 2
fi
if [[ -z "$AWS_CONFIG_FILE" ]]; then
export AWS_CONFIG_FILE="$HOME/.aws/config"
fi
if [[ -z "$AWS_SHARED_CREDENTIALS_FILE" ]]; then
export AWS_SHARED_CREDENTIALS_FILE="$HOME/.aws/credentials"
fi
if [[ -z "$AWS_ACCESS_KEY_ID" ]] || [[ -z "$AWS_SECRET_ACCESS_KEY" ]]; then
if [[ ! -f "$AWS_SHARED_CREDENTIALS_FILE" ]]; then
echo "AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY and credentials file ($AWS_SHARED_CREDENTIALS_FILE) missing." >&2
exit 3
fi
AWS_KEY_PROFILE="$AWS_PROFILE"
if [[ -z "$AWS_KEY_PROFILE" ]]; then
AWS_KEY_PROFILE="default"
fi
export AWS_ACCESS_KEY_ID=$(cat "$AWS_SHARED_CREDENTIALS_FILE" | fgrep -A100 "[$AWS_KEY_PROFILE]" | fgrep "aws_access_key_id = " | head -n1 | cut -f2 -d= | tr -d '[:space:]')
export AWS_SECRET_ACCESS_KEY=$(cat "$AWS_SHARED_CREDENTIALS_FILE" | fgrep -A100 "[$AWS_KEY_PROFILE]" | fgrep "aws_secret_access_key = " | head -n1 | cut -f2 -d= | tr -d '[:space:]')
fi
if [[ -z "$AWS_ACCESS_KEY_ID" ]] || [[ -z "$AWS_SECRET_ACCESS_KEY" ]]; then
echo "You need to specify either AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY or provide a shared credentials file (usually ~/.aws/credentials) and possibly define AWS_PROFILE." >&2
exit 1
fi
if [[ -z "$AWS_REGION" ]]; then
if [[ ! -f "$AWS_CONFIG_FILE" ]]; then
echo "AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY and config file ($AWS_CONFIG_FILE) missing." >&2
exit 4
fi
export AWS_REGION="$AWS_DEFAULT_REGION"
AWS_REGION_PROFILE="$AWS_PROFILE"
if [[ -z "$AWS_REGION_PROFILE" ]]; then
AWS_REGION_PROFILE="default"
fi
if [[ "$AWS_REGION_PROFILE" == "default" ]] && [[ -z "$AWS_REGION" ]]; then
AWS_PROFILE_REGION=$(cat "$AWS_CONFIG_FILE" | fgrep -A1 "[default]" | fgrep "region = " | head -n1 | cut -f2 -d= | tr -d '[:space:]')
if [[ -n "$AWS_PROFILE_REGION" ]]; then
export AWS_REGION="$AWS_PROFILE_REGION"
fi
else
AWS_PROFILE_REGION=$(cat "$AWS_CONFIG_FILE" | fgrep -A1 "[profile $AWS_REGION_PROFILE]" | fgrep "region = " | head -n1 | cut -f2 -d= | tr -d '[:space:]')
if [[ -n "$AWS_PROFILE_REGION" ]]; then
export AWS_REGION="$AWS_PROFILE_REGION"
else
export AWS_REGION=$(cat "$AWS_CONFIG_FILE" | fgrep -A1 "[default]" | fgrep "region = " | head -n1 | cut -f2 -d= | tr -d '[:space:]')
if [[ -n "$AWS_PROFILE_REGION" ]]; then
export AWS_REGION="$AWS_PROFILE_REGION"
fi
fi
fi
fi
if [[ -z "$AWS_REGION" ]]; then
echo "You need to specify either AWS_REGION, AWS_DEFAULT_REGION or provide a region in config file (usually ~/.aws/config) and possibly define AWS_PROFILE." >&2
exit 1
fi
export timestamp=$(date -u "+%Y-%m-%d %H:%M:%S")
export signed_headers="date;host;x-amz-content-sha256;x-amz-date"
if [[ $(uname) == "Darwin" ]]; then
export format="%Y-%m-%d %H:%M:%S"
export iso_timestamp=$(date -ujf "${format}" "${timestamp}" "+%Y%m%dT%H%M%SZ")
export date_scope=$(date -ujf "${format}" "${timestamp}" "+%Y%m%d")
export date_header=$(date -ujf "${format}" "${timestamp}" "+%a, %d %h %Y %T %Z")
else
export iso_timestamp=$(date -ud "${timestamp}" "+%Y%m%dT%H%M%SZ")
export date_scope=$(date -ud "${timestamp}" "+%Y%m%d")
export date_header=$(date -ud "${timestamp}" "+%a, %d %h %Y %T %Z")
fi
payload_hash() {
set +e
local output=$(echo -n "${payload}" | $OPENSSL dgst -sha256)
echo "${output##* }"
set -e
}
all_signed_headers() {
local sig_headers="${signed_headers}"
if [[ -n "$x_amz_target" ]]; then
sig_headers="${sig_headers};x-amz-target"
fi
echo "${sig_headers}"
}
canonical_request() {
echo "${method}"
echo "/${src}"
echo ""
echo "date:${date_header}"
echo "host:${host}"
echo "x-amz-content-sha256:$(payload_hash)"
echo "x-amz-date:${iso_timestamp}"
if [[ -n "$x_amz_target" ]]; then
echo "x-amz-target:$x_amz_target"
fi
echo ""
echo "$(all_signed_headers)"
printf "$(payload_hash)"
}
canonical_request_hash() {
set +e
local output=$(canonical_request | $OPENSSL dgst -sha256)
echo "${output##* }"
set -e
}
string_to_sign() {
echo "AWS4-HMAC-SHA256"
echo "${iso_timestamp}"
echo "${date_scope}/${AWS_REGION}/${service}/aws4_request"
printf "$(canonical_request_hash)"
}
signature_key() {
local secret=$(printf "AWS4${AWS_SECRET_ACCESS_KEY?}" | hex_key)
local date_key=$(printf ${date_scope} | hmac_sha256 "${secret}" | hex_key)
local region_key=$(printf ${AWS_REGION?} | hmac_sha256 "${date_key}" | hex_key)
local service_key=$(printf "${service}" | hmac_sha256 "${region_key}" | hex_key)
printf "aws4_request" | hmac_sha256 "${service_key}" | hex_key
}
hex_key() {
xxd -p -c 256
}
hmac_sha256() {
local hexkey=$1
$OPENSSL dgst -binary -sha256 -mac HMAC -macopt hexkey:${hexkey}
}
signature() {
string_to_sign | hmac_sha256 $(signature_key) | hex_key | sed "s/^.* //"
}
curl_error_to_string() {
code="$1"
if [ "$code" == "0" ]; then
echo "CURLE_OK (0)"
elif [ "$code" == "1" ]; then
echo "CURLE_UNSUPPORTED_PROTOCOL (1)"
elif [ "$code" == "2" ]; then
echo "CURLE_FAILED_INIT (2)"
elif [ "$code" == "3" ]; then
echo "CURLE_URL_MALFORMAT (3)"
elif [ "$code" == "4" ]; then
echo "CURLE_NOT_BUILT_IN (4)"
elif [ "$code" == "5" ]; then
echo "CURLE_COULDNT_RESOLVE_PROXY (5)"
elif [ "$code" == "6" ]; then
echo "CURLE_COULDNT_RESOLVE_HOST (6)"
elif [ "$code" == "7" ]; then
echo "CURLE_COULDNT_CONNECT (7)"
elif [ "$code" == "8" ]; then
echo "CURLE_WEIRD_SERVER_REPLY (8)"
elif [ "$code" == "9" ]; then
echo "CURLE_REMOTE_ACCESS_DENIED (9)"
elif [ "$code" == "10" ]; then
echo "CURLE_FTP_ACCEPT_FAILED (10)"
elif [ "$code" == "11" ]; then
echo "CURLE_FTP_WEIRD_PASS_REPLY (11)"
elif [ "$code" == "12" ]; then
echo "CURLE_FTP_ACCEPT_TIMEOUT (12)"
elif [ "$code" == "13" ]; then
echo "CURLE_FTP_WEIRD_PASV_REPLY (13)"
elif [ "$code" == "14" ]; then
echo "CURLE_FTP_WEIRD_227_FORMAT (14)"
elif [ "$code" == "15" ]; then
echo "CURLE_FTP_CANT_GET_HOST (15)"
elif [ "$code" == "16" ]; then
echo "CURLE_HTTP2 (16)"
elif [ "$code" == "17" ]; then
echo "CURLE_FTP_COULDNT_SET_TYPE (17)"
elif [ "$code" == "18" ]; then
echo "CURLE_PARTIAL_FILE (18)"
elif [ "$code" == "19" ]; then
echo "CURLE_FTP_COULDNT_RETR_FILE (19)"
elif [ "$code" == "21" ]; then
echo "CURLE_QUOTE_ERROR (21)"
elif [ "$code" == "22" ]; then
echo "CURLE_HTTP_RETURNED_ERROR (22)"
elif [ "$code" == "23" ]; then
echo "CURLE_WRITE_ERROR (23)"
elif [ "$code" == "25" ]; then
echo "CURLE_UPLOAD_FAILED (25)"
elif [ "$code" == "26" ]; then
echo "CURLE_READ_ERROR (26)"
elif [ "$code" == "27" ]; then
echo "CURLE_OUT_OF_MEMORY (27)"
elif [ "$code" == "28" ]; then
echo "CURLE_OPERATION_TIMEDOUT (28)"
elif [ "$code" == "30" ]; then
echo "CURLE_FTP_PORT_FAILED (30)"
elif [ "$code" == "31" ]; then
echo "CURLE_FTP_COULDNT_USE_REST (31)"
elif [ "$code" == "33" ]; then
echo "CURLE_RANGE_ERROR (33)"
elif [ "$code" == "34" ]; then
echo "CURLE_HTTP_POST_ERROR (34)"
elif [ "$code" == "35" ]; then
echo "CURLE_SSL_CONNECT_ERROR (35)"
elif [ "$code" == "36" ]; then
echo "CURLE_BAD_DOWNLOAD_RESUME (36)"
elif [ "$code" == "37" ]; then
echo "CURLE_FILE_COULDNT_READ_FILE (37)"
elif [ "$code" == "38" ]; then
echo "CURLE_LDAP_CANNOT_BIND (38)"
elif [ "$code" == "39" ]; then
echo "CURLE_LDAP_SEARCH_FAILED (39)"
elif [ "$code" == "41" ]; then
echo "CURLE_FUNCTION_NOT_FOUND (41)"
elif [ "$code" == "42" ]; then
echo "CURLE_ABORTED_BY_CALLBACK (42)"
elif [ "$code" == "43" ]; then
echo "CURLE_BAD_FUNCTION_ARGUMENT (43)"
elif [ "$code" == "45" ]; then
echo "CURLE_INTERFACE_FAILED (45)"
elif [ "$code" == "47" ]; then
echo "CURLE_TOO_MANY_REDIRECTS (47)"
elif [ "$code" == "48" ]; then
echo "CURLE_UNKNOWN_OPTION (48)"
elif [ "$code" == "49" ]; then
echo "CURLE_TELNET_OPTION_SYNTAX (49)"
elif [ "$code" == "52" ]; then
echo "CURLE_GOT_NOTHING (52)"
elif [ "$code" == "53" ]; then
echo "CURLE_SSL_ENGINE_NOTFOUND (53)"
elif [ "$code" == "53" ]; then
echo "CURLE_SSL_ENGINE_SETFAILED (54)"
elif [ "$code" == "55" ]; then
echo "CURLE_SEND_ERROR (55)"
elif [ "$code" == "56" ]; then
echo "CURLE_RECV_ERROR (56)"
elif [ "$code" == "58" ]; then
echo "CURLE_SSL_CERTPROBLEM (58)"
elif [ "$code" == "59" ]; then
echo "CURLE_SSL_CIPHER (59)"
elif [ "$code" == "60" ]; then
echo "CURLE_PEER_FAILED_VERIFICATION (60)"
elif [ "$code" == "61" ]; then
echo "CURLE_BAD_CONTENT_ENCODING (61)"
elif [ "$code" == "62" ]; then
echo "CURLE_LDAP_INVALID_URL (62)"
elif [ "$code" == "63" ]; then
echo "CURLE_FILESIZE_EXCEEDED (63)"
elif [ "$code" == "64" ]; then
echo "CURLE_USE_SSL_FAILED (64)"
elif [ "$code" == "65" ]; then
echo "CURLE_SEND_FAIL_REWIND (65)"
elif [ "$code" == "66" ]; then
echo "CURLE_SSL_ENGINE_INITFAILED (66)"
elif [ "$code" == "67" ]; then
echo "CURLE_LOGIN_DENIED (67)"
elif [ "$code" == "68" ]; then
echo "CURLE_TFTP_NOTFOUND (68)"
elif [ "$code" == "69" ]; then
echo "CURLE_TFTP_PERM (69)"
elif [ "$code" == "70" ]; then
echo "CURLE_REMOTE_DISK_FULL (70)"
elif [ "$code" == "71" ]; then
echo "CURLE_TFTP_ILLEGAL (71)"
elif [ "$code" == "72" ]; then
echo "CURLE_TFTP_UNKNOWNID (72)"
elif [ "$code" == "73" ]; then
echo "CURLE_REMOTE_FILE_EXISTS (73)"
elif [ "$code" == "74" ]; then
echo "CURLE_TFTP_NOSUCHUSER (74)"
elif [ "$code" == "75" ]; then
echo "CURLE_CONV_FAILED (75)"
elif [ "$code" == "76" ]; then
echo "CURLE_CONV_REQD (76)"
elif [ "$code" == "77" ]; then
echo "CURLE_SSL_CACERT_BADFILE (77)"
elif [ "$code" == "78" ]; then
echo "CURLE_REMOTE_FILE_NOT_FOUND (78)"
elif [ "$code" == "79" ]; then
echo "CURLE_SSH (79)"
elif [ "$code" == "80" ]; then
echo "CURLE_SSL_SHUTDOWN_FAILED (80)"
elif [ "$code" == "81" ]; then
echo "CURLE_AGAIN (81)"
elif [ "$code" == "82" ]; then
echo "CURLE_SSL_CRL_BADFILE (82)"
elif [ "$code" == "83" ]; then
echo "CURLE_SSL_ISSUER_ERROR (83)"
elif [ "$code" == "84" ]; then
echo "CURLE_FTP_PRET_FAILED (84)"
elif [ "$code" == "85" ]; then
echo "CURLE_RTSP_CSEQ_ERROR (85)"
elif [ "$code" == "86" ]; then
echo "CURLE_RTSP_SESSION_ERROR (86)"
elif [ "$code" == "87" ]; then
echo "CURLE_FTP_BAD_FILE_LIST (87)"
elif [ "$code" == "88" ]; then
echo "CURLE_CHUNK_FAILED (88)"
elif [ "$code" == "89" ]; then
echo "CURLE_NO_CONNECTION_AVAILABLE (89)"
elif [ "$code" == "90" ]; then
echo "CURLE_SSL_PINNEDPUBKEYNOTMATCH (90)"
elif [ "$code" == "91" ]; then
echo "CURLE_SSL_INVALIDCERTSTATUS (91)"
elif [ "$code" == "92" ]; then
echo "CURLE_HTTP2_STREAM (92)"
elif [ "$code" == "93" ]; then
echo "CURLE_RECURSIVE_API_CALL (93)"
elif [ "$code" == "94" ]; then
echo "CURLE_AUTH_ERROR (94)"
elif [ "$code" == "95" ]; then
echo "CURLE_HTTP3 (95)"
elif [ "$code" == "96" ]; then
echo "CURLE_QUIC_CONNECT_ERROR (96)"
else
echo "CURLE_UNKNOWN_ERROR ($code)"
fi
}
parse_curl_response() {
error="$1"
out="$2"
head=$(echo "$out" | awk '/^\r$/{exit} {print $0}')
http_status=$(echo "$head" | head -n1)
body=$(echo "$out" | awk 'BEGIN{ BODY=0 } /^\r$/{BODY=1} { if (BODY==1) { BODY=2 } else if (BODY==2) { print $0 }}')
if [[ "$error" == "0" ]]; then
code=$(echo "$head" | head -n1 | cut -f2 -d\ )
if [[ $code -ge 400 ]]; then
error="22"
fi
fi
if [[ "$error" == "22" ]]; then
# echo "$head" | grep -q "application/x-amz-json-1.1" &&
type=$(echo "$body" | jq '.__type')
message=$(echo "$body" | jq '.message')
echo "An error occurred ($type) when calling the PutImage operation: $message" >&2
exit 255
fi
if [[ "$error" != "0" ]]; then
echo "Error: $(curl_error_to_string $error)" >&2
echo "$out" >&2
exit $error
fi
if [[ -n "$QUERY" ]]; then
if [[ "$OUTPUT" == "text" ]]; then
body=$(echo "$body" | jq "$QUERY" --raw-output)
else
body=$(echo "$body" | jq "$QUERY")
fi
fi
if [[ "$OUTPUT" == "text" ]]; then
body=$(echo "$body" | sed 's/\\n/\n/g')
fi
echo "$body"
}