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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
//! AWS API request signatures verification routines.
//!
//! This is essentially the server-side complement of [rusoto_signature](https://crates.io/crates/rusoto_signature)
//! but follows the implementation of [python-aws-sig](https://github.com/dacut/python-aws-sig).
//!
//! This implements the AWS [SigV4](http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html)
//! and [SigV4S3](https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html)
//! algorithms.
//!
use std::{
    any::type_name,
    collections::{BTreeMap, HashMap},
    convert::{From, Into},
    error::Error,
    fmt::{Debug, Display, Formatter, Result as FmtResult},
    future::Future,
    io::{Error as IOError, Write},
    str::from_utf8,
    task::{Context, Poll},
};

use chrono::{Date, DateTime, Duration, Utc};
use http::{
    header::{HeaderMap, HeaderValue},
    request::Parts,
    Uri,
};
use lazy_static::lazy_static;
use log::trace;
use regex::Regex;
use ring::digest::{digest, SHA256};
use scratchstack_aws_principal::PrincipalActor;
use tower::{BoxError, Service};

use crate::chronoutil::parse_date_str;
use crate::hmac::hmac_sha256;

/// Content-Type string for HTML forms
const APPLICATION_X_WWW_FORM_URLENCODED: &str = "application/x-www-form-urlencoded";

/// Algorithm for AWS SigV4
const AWS4_HMAC_SHA256: &str = "AWS4-HMAC-SHA256";

/// String included at the end of the AWS SigV4 credential scope
const AWS4_REQUEST: &str = "aws4_request";

/// Header parameter for the authorization
const AUTHORIZATION: &str = "authorization";

/// Content-Type parameter for specifying the character set
const CHARSET: &str = "charset";

/// Signature field for the access key
const CREDENTIAL: &str = "Credential";

/// Header field for the content type
const CONTENT_TYPE: &str = "content-type";

/// Header parameter for the date
const DATE: &str = "date";

/// Compact ISO8601 format used for the string to sign
const ISO8601_COMPACT_FORMAT: &str = "%Y%m%dT%H%M%SZ";

/// SHA-256 of an empty string.
const SHA256_EMPTY: &str = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";

/// Signature field for the signature itself
const SIGNATURE: &str = "Signature";

/// Authorization header parameter specifying the signed headers
const SIGNEDHEADERS: &str = "SignedHeaders";

/// Query parameter for delivering the access key
const X_AMZ_CREDENTIAL: &str = "X-Amz-Credential";

/// Query parameter for delivering the date
const X_AMZ_DATE: &str = "X-Amz-Date";

/// Header for delivering the alternate date
const X_AMZ_DATE_LOWER: &str = "x-amz-date";

/// Query parameter for delivering the session token
const X_AMZ_SECURITY_TOKEN: &str = "X-Amz-Security-Token";

/// Header for delivering the session token
const X_AMZ_SECURITY_TOKEN_LOWER: &str = "x-amz-security-token";

/// Query parameter for delivering the signature
const X_AMZ_SIGNATURE: &str = "X-Amz-Signature";

/// Query parameter specifying the signed headers
const X_AMZ_SIGNEDHEADERS: &str = "X-Amz-SignedHeaders";

lazy_static! {
    /// Multiple slash pattern for condensing URIs
    static ref MULTISLASH: Regex = Regex::new("//+").unwrap();

    /// Multiple space pattern for condensing header values
    static ref MULTISPACE: Regex = Regex::new("  +").unwrap();

    /// Pattern for the start of an AWS4 signature Authorization header.
    static ref AWS4_HMAC_SHA256_RE: Regex = Regex::new(r"\s*AWS4-HMAC-SHA256(?:\s+|$)").unwrap();
}

/// Error returned when an attempt at validating an AWS SigV4 signature fails.
#[derive(Debug)]
pub enum SignatureError {
    /// Validation failed due to an underlying I/O error.
    IO(IOError),

    /// The request body used an unsupported character set encoding. Currently only UTF-8 is supported.
    InvalidBodyEncoding {
        message: String,
    },

    /// The request signature specified an invalid credential -- either the access key was not specified, or the
    /// credential scope (in the form `<code>_date_/_region_/_service_/aws4_request</code>`) did not match the
    /// expected value for the server.
    InvalidCredential {
        message: String,
    },

    /// The secret key contains invalid bytes.
    InvalidSecretKey,

    /// The signature passed in the request did not match the calculated signature value.
    InvalidSignature {
        message: String,
    },

    /// The type of signing key is incorrect for this operation.
    InvalidSigningKeyKind {
        message: String,
    },

    /// The URI path includes invalid components. This can be a malformed hex encoding (e.g. `%0J`), a non-absolute
    /// URI path (`foo/bar`), or a URI path that attempts to navigate above the root (`/x/../../../y`).
    InvalidURIPath {
        message: String,
    },

    /// An HTTP header was malformed -- the value could not be decoded as UTF-8, or the header was empty and this is
    /// not allowed (e.g. the `content-type` header), or the header could not be parsed (e.g., the `date` header is
    /// not a valid date).
    MalformedHeader {
        message: String,
    },

    /// A query parameter was malformed -- the value could not be decoded as UTF-8, or the parameter was empty and
    /// this is not allowed (e.g. a signature parameter), or the parameter could not be parsed (e.g., the `X-Amz-Date`
    ///  parameter is not a valid date).
    MalformedParameter {
        message: String,
    },

    /// The AWS SigV4 signature was malformed in some way. This can include invalid timestamp formats, missing
    /// authorization components, or unparseable components.
    MalformedSignature {
        message: String,
    },

    /// A required HTTP header (and its equivalent in the query string) is missing.
    MissingHeader {
        header: String,
    },

    /// A required query parameter is missing. This is used internally in the library; external callers only see
    /// `MissingHeader`.
    MissingParameter {
        parameter: String,
    },

    /// An HTTP header that can be specified only once was specified multiple times.
    MultipleHeaderValues {
        header: String,
    },

    /// A query parameter that can be specified only once was specified multiple times.
    MultipleParameterValues {
        parameter: String,
    },

    /// The timestamp in the request is out of the allowed range.
    TimestampOutOfRange {
        minimum: DateTime<Utc>,
        maximum: DateTime<Utc>,
        received: DateTime<Utc>,
    },

    /// The access key specified in the request is unknown.
    UnknownAccessKey {
        access_key: String,
    },

    /// The signature algorithm requested by the caller is unknown. This library only supports the `AWS4-HMAC-SHA256`
    /// algorithm.
    UnknownSignatureAlgorithm {
        algorithm: String,
    },
}

impl Display for SignatureError {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        match self {
            Self::IO(ref e) => Display::fmt(e, f),
            Self::InvalidBodyEncoding {
                message,
            } => write!(f, "Invalid body encoding: {}", message),
            Self::InvalidCredential {
                message,
            } => write!(f, "Invalid credential: {}", message),
            Self::InvalidSecretKey => write!(f, "Invalid secret key"),
            Self::InvalidSignature {
                message,
            } => write!(f, "Invalid request signature: {}", message),
            Self::InvalidSigningKeyKind {
                message,
            } => write!(f, "Invalid signing key kind: {}", message),
            Self::InvalidURIPath {
                message,
            } => write!(f, "Invalid URI path: {}", message),
            Self::MalformedHeader {
                message,
            } => write!(f, "Malformed header: {}", message),
            Self::MalformedParameter {
                message,
            } => write!(f, "Malformed query parameter: {}", message),
            Self::MalformedSignature {
                message,
            } => write!(f, "Malformed signature: {}", message),
            Self::MissingHeader {
                header,
            } => write!(f, "Missing header: {}", header),
            Self::MissingParameter {
                parameter,
            } => write!(f, "Missing query parameter: {}", parameter),
            Self::MultipleHeaderValues {
                header,
            } => write!(f, "Multiple values for header: {}", header),
            Self::MultipleParameterValues {
                parameter,
            } => write!(f, "Multiple values for query parameter: {}", parameter),
            Self::TimestampOutOfRange {
                minimum,
                maximum,
                received,
            } => {
                write!(
                    f,
                    "Request timestamp out of range: minimum={}, maximum={}, received={}",
                    minimum, maximum, received
                )
            }
            Self::UnknownAccessKey {
                access_key,
            } => write!(f, "Unknown access key: {}", access_key),
            Self::UnknownSignatureAlgorithm {
                algorithm,
            } => write!(f, "Unknown signature algorithm: {}", algorithm),
        }
    }
}

impl Error for SignatureError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match self {
            Self::IO(ref e) => Some(e),
            _ => None,
        }
    }
}

impl From<IOError> for SignatureError {
    fn from(e: IOError) -> SignatureError {
        SignatureError::IO(e)
    }
}

/// The types of signing key available.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SigningKeyKind {
    /// KSecret: secret key prepended with "AWS4". Avoid using.
    KSecret,

    /// KDate: HMAC(KSecret, requestDate)
    KDate,

    /// KRegion: HMAC(KDate, region)
    KRegion,

    /// KService: HMAC(KRegion, service)
    KService,

    /// KSigning: HMAC(KService, "aws4_request"). Preferred.
    KSigning,
}

impl Display for SigningKeyKind {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        match self {
            SigningKeyKind::KSecret => write!(f, "KSecret"),
            SigningKeyKind::KDate => write!(f, "KDate"),
            SigningKeyKind::KRegion => write!(f, "KRegion"),
            SigningKeyKind::KService => write!(f, "KService"),
            SigningKeyKind::KSigning => write!(f, "KSigning"),
        }
    }
}

/// A signing key of some type.
#[derive(Clone)]
pub struct SigningKey {
    pub kind: SigningKeyKind,
    pub key: Vec<u8>,
}

impl Debug for SigningKey {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        f.debug_struct("SigningKey")
            .field("kind", &self.kind)
            .field("key", &format!("<{} bytes>", self.key.len()))
            .finish()
    }
}

impl SigningKey {
    /// Convert this key into the specified kind of key.
    ///
    /// This function returns an error if the existing key cannot be derived into the dervied key kind.
    pub fn try_derive<R, S>(
        &self,
        derived_key_kind: SigningKeyKind,
        req_date: &Date<Utc>,
        region: R,
        service: S,
    ) -> Result<Self, SignatureError>
    where
        R: AsRef<str>,
        S: AsRef<str>,
    {
        match derived_key_kind {
            SigningKeyKind::KSigning => Ok(self.to_ksigning_key(req_date, &region, &service)),
            SigningKeyKind::KService => self.try_to_kservice_key(req_date, &region, &service),
            SigningKeyKind::KRegion => self.try_to_kregion_key(req_date, &region),
            SigningKeyKind::KDate => self.try_to_kdate_key(req_date),
            SigningKeyKind::KSecret => match self.kind {
                SigningKeyKind::KSecret => Ok(self.clone()),
                _ => Err(SignatureError::InvalidSigningKeyKind {
                    message: format!("Cannot derive {} key from {} key", derived_key_kind, self.kind),
                }),
            },
        }
    }

    /// Return a KService key given a KService, KRegion, KDate, or KSecret key.
    ///
    /// This function returns an error if given a KSigning key.
    pub fn try_to_kservice_key<R, S>(&self, req_date: &Date<Utc>, region: R, service: S) -> Result<Self, SignatureError>
    where
        R: AsRef<str>,
        S: AsRef<str>,
    {
        match self.kind {
            SigningKeyKind::KService => Ok(self.clone()),
            SigningKeyKind::KRegion | SigningKeyKind::KDate | SigningKeyKind::KSecret => {
                let k_region = self.to_kregion_key(req_date, &region);
                Ok(Self {
                    kind: SigningKeyKind::KService,
                    key: hmac_sha256(&k_region.key, service.as_ref().as_bytes()).as_ref().to_vec(),
                })
            }
            _ => Err(SignatureError::InvalidSigningKeyKind {
                message: format!("Can't derive KService key from {}", self.kind),
            }),
        }
    }

    /// Return a KRegion key given a KRegion, KDate, or KSecret key.
    ///
    /// This function returns an error if given a KSigning or KService key.
    pub fn try_to_kregion_key<R>(&self, req_date: &Date<Utc>, region: R) -> Result<Self, SignatureError>
    where
        R: AsRef<str>,
    {
        match self.kind {
            SigningKeyKind::KRegion => Ok(self.clone()),
            SigningKeyKind::KDate | SigningKeyKind::KSecret => {
                let k_date = self.to_kdate_key(req_date);
                Ok(Self {
                    kind: SigningKeyKind::KRegion,
                    key: hmac_sha256(&k_date.key, region.as_ref().as_bytes()).as_ref().to_vec(),
                })
            }
            _ => Err(SignatureError::InvalidSigningKeyKind {
                message: format!("Can't derive KRegion key from {}", self.kind),
            }),
        }
    }

    /// Return a KDate key given a KDate or KSecret key.
    ///
    /// This function returns an error if given a KRegion, KSigning, or KService key.
    pub fn try_to_kdate_key(&self, req_date: &Date<Utc>) -> Result<Self, SignatureError> {
        match self.kind {
            // Already the same type.
            SigningKeyKind::KDate => Ok(self.clone()),

            // key is KSecret == AWS4 + secret key.
            // KDate = HMAC(KSecret + req_date)
            SigningKeyKind::KSecret => {
                let ymd = format!("{}", req_date.format("%Y%m%d"));
                let k_secret_str = match from_utf8(&self.key) {
                    Ok(s) => s,
                    Err(_) => return Err(SignatureError::InvalidSecretKey),
                };
                Ok(SigningKey {
                    kind: SigningKeyKind::KDate,
                    key: hmac_sha256(format!("AWS4{}", k_secret_str).as_bytes(), ymd.as_bytes()).as_ref().to_vec(),
                })
            }

            _ => Err(SignatureError::InvalidSigningKeyKind {
                message: format!("Can't derive KDate key from {}", self.kind),
            }),
        }
    }

    /// Convert this key into the specified kind of key.
    ///
    /// This function panics if the existing key cannot be derived into the dervied key kind. Use `try_derive` for
    /// a non-panicking version.
    pub fn derive<R, S>(&self, derived_key_kind: SigningKeyKind, req_date: &Date<Utc>, region: R, service: S) -> Self
    where
        R: AsRef<str>,
        S: AsRef<str>,
    {
        match self.try_derive(derived_key_kind, req_date, &region, &service) {
            Ok(s) => s,
            Err(e) => panic!("{}", e),
        }
    }

    /// Return a KSigning key given a KSigning, KService, KRegion, KDate, or KSecret key.
    ///
    /// This function is infallible (does not panic).
    pub fn to_ksigning_key<R, S>(&self, req_date: &Date<Utc>, region: R, service: S) -> Self
    where
        R: AsRef<str>,
        S: AsRef<str>,
    {
        match self.kind {
            SigningKeyKind::KSigning => self.clone(),
            _ => {
                let k_service = self.to_kservice_key(req_date, &region, &service);
                Self {
                    kind: SigningKeyKind::KSigning,
                    key: hmac_sha256(&k_service.key, AWS4_REQUEST.as_bytes()).as_ref().to_vec(),
                }
            }
        }
    }

    /// Return a KService key given a KService, KRegion, KDate, or KSecret key.
    ///
    /// This function panics an error if given a KSigning key. Use `try_to_kservice_key` for a non-panicking version,.
    pub fn to_kservice_key<R, S>(&self, req_date: &Date<Utc>, region: R, service: S) -> Self
    where
        R: AsRef<str>,
        S: AsRef<str>,
    {
        match self.try_to_kservice_key(req_date, &region, &service) {
            Ok(s) => s,
            Err(e) => panic!("{}", e),
        }
    }

    /// Return a KRegion key given a KRegion, KDate, or KSecret key.
    ///
    /// This function panics if given a KSigning or KService key. Use `try_to_kregion_key` for a for a non-panicking
    /// version.
    pub fn to_kregion_key<R>(&self, req_date: &Date<Utc>, region: R) -> Self
    where
        R: AsRef<str>,
    {
        match self.try_to_kregion_key(req_date, &region) {
            Ok(s) => s,
            Err(e) => panic!("{}", e),
        }
    }

    /// Return a KDate key given a KDate or KSecret key.
    ///
    /// This function panics if given a KRegion, KSigning, or KService key. Use `try_to_kdate_key` for a non-panicking
    /// version.
    pub fn to_kdate_key(&self, req_date: &Date<Utc>) -> Self {
        match self.try_to_kdate_key(req_date) {
            Ok(s) => s,
            Err(e) => panic!("{}", e),
        }
    }
}

/// A trait bound that describes how we obtain a signing key of a given type given a request. If you need to encapsulate
/// additional data (e.g. a database connection) to look up a key, use this to implement a struct.
pub trait GetSigningKey {}

pub struct GetSigningKeyRequest {
    pub signing_key_kind: SigningKeyKind,
    pub access_key: String,
    pub session_token: Option<String>,
    pub request_date: Date<Utc>,
    pub region: String,
    pub service: String,
}

impl<F, E> GetSigningKey
    for dyn Service<GetSigningKeyRequest, Response = (PrincipalActor, SigningKey), Error = E, Future = F>
where
    F: Future<Output = Result<(PrincipalActor, SigningKey), SignatureError>> + Send + Sync,
    E: Into<BoxError>,
{
}

#[derive(Clone, Copy)]
pub struct GetSigningKeyFn<F> {
    f: F,
}

/// Wrap an async function taking a signing request and returns a result into a `GetSigningKey` trait implementation.
///
/// The function signature should look like:
/// `async fn ..(kind: SigningKeyKind, access_key: String, session_token: Option<String>, request_date: Date<Utc>,
/// region: String, service: String) -> Result<(PrincipalActor, SigningKey), SignatureError>`
pub fn get_signing_key_fn<F>(f: F) -> GetSigningKeyFn<F> {
    GetSigningKeyFn {
        f,
    }
}

impl<F> Debug for GetSigningKeyFn<F> {
    fn fmt(&self, f: &mut Formatter) -> FmtResult {
        f.debug_struct("GetSigningKeyFn").field("f", &format_args!("{}", type_name::<F>())).finish()
    }
}

impl<F, Fut, E> Service<GetSigningKeyRequest> for GetSigningKeyFn<F>
where
    F: FnMut(SigningKeyKind, String, Option<String>, Date<Utc>, String, String) -> Fut,
    Fut: Future<Output = Result<(PrincipalActor, SigningKey), E>> + Send + Sync,
    E: Into<BoxError>,
{
    type Response = (PrincipalActor, SigningKey);
    type Error = E;
    type Future = Fut;

    fn poll_ready(&mut self, _cx: &mut Context) -> Poll<Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, req: GetSigningKeyRequest) -> Self::Future {
        (self.f)(req.signing_key_kind, req.access_key, req.session_token, req.request_date, req.region, req.service)
    }
}

/// A data structure containing the elements of the request (some client-supplied, some service-supplied) involved in
/// the SigV4 verification process.
#[derive(Debug)]
pub struct Request {
    /// The request method (GET, PUT, POST) (client).
    pub request_method: String,

    /// The URI path being accessed (client).
    pub uri: Uri,

    /// The HTTP headers sent with the request (client).
    pub headers: HeaderMap<HeaderValue>,

    /// The request body (if any) (client).
    pub body: Option<Vec<u8>>,
}

impl Request {
    /// Create a Request from an HTTP request.
    pub fn from_http_request_parts(parts: &Parts, body: Option<Vec<u8>>) -> Self {
        Self {
            request_method: parts.method.as_str().to_string(),
            uri: parts.uri.clone(),
            headers: parts.headers.clone(),
            body,
        }
    }

    pub fn to_get_signing_key_request<A1, A2>(
        &self,
        signing_key_kind: SigningKeyKind,
        region: A1,
        service: A2,
    ) -> Result<GetSigningKeyRequest, SignatureError>
    where
        A1: AsRef<str>,
        A2: AsRef<str>,
    {
        Ok(GetSigningKeyRequest {
            signing_key_kind,
            access_key: self.get_access_key(&region, &service)?,
            session_token: self.get_session_token()?,
            request_date: self.get_request_date()?,
            region: region.as_ref().to_string(),
            service: service.as_ref().to_string(),
        })
    }

    /// Retrieve a header value, requiring exactly one value be present.
    pub(crate) fn get_header_one<S: Into<String>>(&self, header: S) -> Result<String, SignatureError> {
        let header = header.into();
        let mut iter = self.headers.get_all(&header).iter();
        match iter.next() {
            None => Err(SignatureError::MissingHeader {
                header: header.to_string(),
            }),
            Some(value) => match iter.next() {
                None => match from_utf8(value.as_bytes()) {
                    Ok(ref s) => Ok(s.to_string()),
                    Err(_) => Err(SignatureError::MalformedHeader {
                        message: format!("{} cannot does not contain valid UTF-8", header),
                    }),
                },
                Some(_) => Err(SignatureError::MultipleHeaderValues {
                    header: header.to_string(),
                }),
            },
        }
    }

    /// The query parameters from the request, normalized, in a mapping format.
    pub(crate) fn get_query_parameters(&self) -> Result<HashMap<String, Vec<String>>, SignatureError> {
        match self.uri.query() {
            Some(s) => normalize_query_parameters(s),
            None => Ok(HashMap::new()),
        }
    }

    /// Retrieve a query parameter, requiring exactly one value be present.
    pub(crate) fn get_query_param_one(&self, parameter: &str) -> Result<String, SignatureError> {
        match self.get_query_parameters()?.get(parameter) {
            None => Err(SignatureError::MissingParameter {
                parameter: parameter.to_string(),
            }),
            Some(values) => match values.len() {
                0 => Err(SignatureError::MissingParameter {
                    parameter: parameter.to_string(),
                }),
                1 => Ok(values[0].to_string()),
                _ => Err(SignatureError::MultipleParameterValues {
                    parameter: parameter.to_string(),
                }),
            },
        }
    }

    /// Get the content type and character set used in the body
    pub(crate) fn get_content_type_and_charset(&self) -> Result<(String, String), SignatureError> {
        let content_type_opts = self.get_header_one(CONTENT_TYPE)?;

        let mut parts = content_type_opts.split(';');
        let content_type = match parts.next() {
            Some(s) => s.trim(),
            None => {
                return Err(SignatureError::MalformedHeader {
                    message: "content-type header is empty".to_string(),
                })
            }
        };

        for option in parts {
            let opt_trim = option.trim();
            let opt_parts: Vec<&str> = opt_trim.splitn(2, '=').collect();

            if opt_parts.len() == 2 && opt_parts[0] == CHARSET {
                return Ok((content_type.to_string(), opt_parts[1].trim().to_lowercase()));
            }
        }

        Ok((content_type.to_string(), "utf-8".to_string()))
    }

    /// The canonicalized URI path for a request.
    pub(crate) fn get_canonical_uri_path(&self) -> Result<String, SignatureError> {
        canonicalize_uri_path(self.uri.path())
    }

    /// The canonical query string from the query parameters.
    ///
    /// This takes the query_string from the request, merges it with the body if the request has a body of type
    /// `application/x-www-form-urlencoded`, and orders the parameters.
    pub(crate) fn get_canonical_query_string(&self) -> Result<String, SignatureError> {
        let query_parameters = self.get_query_parameters()?;
        let mut results = Vec::new();

        for (key, values) in query_parameters.iter() {
            // Don't include the signature itself.
            if key != X_AMZ_SIGNATURE {
                for value in values.iter() {
                    results.push(format!("{}={}", key, value));
                }
            }
        }

        if let Ok((content_type, charset)) = self.get_content_type_and_charset() {
            if content_type == APPLICATION_X_WWW_FORM_URLENCODED {
                if charset != "utf-8" && charset != "utf8" {
                    return Err(SignatureError::InvalidBodyEncoding {
                        message: format!("application/x-www-form-urlencoded body uses unsupported charset {}", charset),
                    });
                }

                // Parse the body as a URL string
                let body_utf8 = match &self.body {
                    None => "",
                    Some(body) => match from_utf8(body) {
                        Ok(s) => s,
                        Err(_) => {
                            return Err(SignatureError::InvalidBodyEncoding {
                                message: "application/x-www-form-urlencoded body contains invalid UTF-8 characters"
                                    .to_string(),
                            });
                        }
                    },
                };

                let body_normalized = normalize_query_parameters(body_utf8)?;
                for (key, values) in body_normalized.iter() {
                    for value in values.iter() {
                        results.push(format!("{}={}", key, value));
                    }
                }
            }
        }

        results.sort_unstable();
        Ok(results.join("&"))
    }

    /// The parameters from the Authorization header (only -- not the query parameter). If the Authorization header is not present
    /// or is not an AWS SigV4 header, an Err(SignatureError) is returned.
    pub(crate) fn get_authorization_header_parameters(&self) -> Result<HashMap<String, String>, SignatureError> {
        let auth_headers = self.headers.get_all(AUTHORIZATION);
        let mut parameters_opt: Option<&str> = None;

        let mut auth_iter = auth_headers.iter();
        loop {
            match auth_iter.next() {
                None => break,
                Some(auth_header) => {
                    if let Ok(auth_header) = auth_header.to_str() {
                        if let Some(captures) = AWS4_HMAC_SHA256_RE.captures(auth_header) {
                            if parameters_opt.is_some() {
                                return Err(SignatureError::MultipleHeaderValues {
                                    header: AUTHORIZATION.to_string(),
                                });
                            }

                            parameters_opt = Some(auth_header.split_at(captures.get(0).unwrap().end()).1);
                            trace!("parameters_opt set to {:?}; captures={:?}", parameters_opt, captures);
                        } else {
                            trace!("Not SigV4: {:?}", auth_header);
                        }
                    }
                }
            }
        }

        match parameters_opt {
            None => Err(SignatureError::MissingHeader {
                header: AUTHORIZATION.to_string(),
            }),
            Some(parameters) => {
                if parameters.is_empty() {
                    Err(SignatureError::MalformedSignature {
                        message: "invalid Authorization header: missing parameters".to_string(),
                    })
                } else {
                    let result = split_authorization_header_parameters(parameters)?;
                    if result.get(CREDENTIAL).is_none() {
                        Err(SignatureError::MalformedSignature {
                            message: "invalid Authorization header: missing Credential".to_string(),
                        })
                    } else if result.get(SIGNATURE).is_none() {
                        Err(SignatureError::MalformedSignature {
                            message: "invalid Authorization header: missing Signature".to_string(),
                        })
                    } else if result.get(SIGNEDHEADERS).is_none() {
                        Err(SignatureError::MalformedSignature {
                            message: "invalid Authorization header: missing SignedHeaders".to_string(),
                        })
                    } else {
                        Ok(result)
                    }
                }
            }
        }
    }

    /// Returns a sorted dictionary containing the signed header names and their values.
    pub(crate) fn get_signed_headers(&self) -> Result<BTreeMap<String, Vec<Vec<u8>>>, SignatureError> {
        // See if the signed headers are listed in the query string.
        let qp_result = self.get_query_param_one(X_AMZ_SIGNEDHEADERS);
        let ah_result;
        let ah_signedheaders;

        let signed_headers = match qp_result {
            Ok(ref sh) => sh,
            Err(e) => match e {
                SignatureError::MissingParameter {
                    ..
                } => {
                    ah_result = self.get_authorization_header_parameters();
                    match ah_result {
                        Err(e) => return Err(e),
                        Ok(ref ahp) => {
                            ah_signedheaders = ahp.get(SIGNEDHEADERS);
                            match ah_signedheaders {
                                None => {
                                    return Err(SignatureError::MalformedSignature {
                                        message: "invalid Authorization header: missing SignedHeaders".to_string(),
                                    })
                                }
                                Some(headers) => headers,
                            }
                        }
                    }
                }
                _ => return Err(e),
            },
        };

        // Header names are separated by semicolons.
        let parts: Vec<String> = signed_headers.split(';').map(|s| s.to_string()).collect();

        // Make sure the signed headers list is canonicalized. For security reasons, we consider it an error if it isn't.
        let mut canonicalized = parts.clone();
        canonicalized.sort_unstable_by(|a, b| a.to_lowercase().partial_cmp(&b.to_lowercase()).unwrap());

        if parts != canonicalized {
            return Err(SignatureError::MalformedSignature {
                message: "SignedHeaders is not canonicalized".to_string(),
            });
        }

        let mut result = BTreeMap::<String, Vec<Vec<u8>>>::new();
        for header in canonicalized.iter() {
            let mut header_values = Vec::new();
            let v_iter = self.headers.get_all(header).iter();

            for value in v_iter {
                match from_utf8(value.as_bytes()) {
                    Ok(value) => header_values.push(value.as_bytes().to_vec()),
                    Err(_) => {
                        return Err(SignatureError::MalformedHeader {
                            message: format!("Header {} contains invalid UTF-8 characters", header),
                        })
                    }
                }
            }
            if header_values.is_empty() {
                return Err(SignatureError::MissingHeader {
                    header: header.to_string(),
                });
            }

            result.insert(header.to_string(), header_values);
        }

        Ok(result)
    }

    /// The date of the request.
    pub(crate) fn get_request_date(&self) -> Result<Date<Utc>, SignatureError> {
        let timestamp = self.get_request_timestamp()?;
        Ok(timestamp.date())
    }

    /// The timestamp of the request.
    ///
    /// This returns the first value found from:
    ///
    /// * The `X-Amz-Date` query parameter.
    /// * The `X-Amz-Date` HTTP header.
    /// * The `Date` HTTP header.
    ///
    /// The timestamp _should_ be in ISO 8601 `YYYYMMDDTHHMMSSZ` format
    /// without milliseconds (_must_ per [AWS documentation](https://docs.aws.amazon.com/general/latest/gr/sigv4-date-handling.html)).
    /// However, the AWS SigV4 test suite includes a variety of date formats,
    /// including RFC 2822, RFC 3339, and ISO 8601. This routine allows all
    /// of these formats.
    pub(crate) fn get_request_timestamp(&self) -> Result<DateTime<Utc>, SignatureError> {
        // It turns out that unrolling this logic is the most straightforward way to return sensible error messages.

        match self.get_query_param_one(X_AMZ_DATE) {
            Ok(date_str) => parse_date_str(
                &date_str,
                SignatureError::MalformedParameter {
                    message: "X-Amz-Date is not a valid timestamp".to_string(),
                },
            ),
            Err(e) => match e {
                SignatureError::MissingParameter {
                    ..
                } => match self.get_header_one(X_AMZ_DATE_LOWER) {
                    Ok(date_str) => parse_date_str(
                        &date_str,
                        SignatureError::MalformedHeader {
                            message: "X-Amz-Date is not a valid timestamp".to_string(),
                        },
                    ),
                    Err(e) => match e {
                        SignatureError::MissingHeader {
                            ..
                        } => match self.get_header_one(DATE) {
                            Ok(date_str) => parse_date_str(
                                &date_str,
                                SignatureError::MalformedHeader {
                                    message: "Date is not a valid timestamp".to_string(),
                                },
                            ),
                            Err(e) => Err(e),
                        },
                        _ => Err(e),
                    },
                },
                _ => Err(e),
            },
        }
    }

    /// The scope of the credentials to use, as calculated by the service's region and name, but using the timestamp
    /// of the request.
    ///
    /// The result is a string in the form `YYYYMMDD/region/service/aws4_request`.
    pub(crate) fn get_credential_scope<A1, A2>(&self, region: A1, service: A2) -> Result<String, SignatureError>
    where
        A1: AsRef<str>,
        A2: AsRef<str>,
    {
        let ts = self.get_request_timestamp()?;
        let date = ts.date().format("%Y%m%d");
        Ok(format!("{}/{}/{}/{}", date, region.as_ref(), service.as_ref(), AWS4_REQUEST))
    }

    /// The access key used to sign the request.
    ///
    /// If the credential scope does not match our expected credential scope, a SignatureError is returned.
    pub(crate) fn get_access_key<A1, A2>(&self, region: A1, service: A2) -> Result<String, SignatureError>
    where
        A1: AsRef<str>,
        A2: AsRef<str>,
    {
        let qp_result = self.get_query_param_one(X_AMZ_CREDENTIAL);
        let auth_headers;

        let credential = match qp_result {
            Ok(ref c) => c,
            Err(e) => match e {
                SignatureError::MissingParameter {
                    ..
                } => {
                    auth_headers = self.get_authorization_header_parameters()?;
                    match auth_headers.get(CREDENTIAL) {
                        Some(c) => c,
                        None => {
                            trace!("auth_headers={:?}", auth_headers);
                            return Err(SignatureError::MalformedSignature {
                                message: "invalid Authorization header: missing Credential".to_string(),
                            });
                        }
                    }
                }
                _ => return Err(e),
            },
        };

        let parts: Vec<&str> = credential.splitn(2, '/').collect();
        if parts.len() != 2 {
            return Err(SignatureError::InvalidCredential {
                message: "Malformed credential".to_string(),
            });
        }

        let access_key = parts[0];
        let request_scope = parts[1];
        let server_scope = self.get_credential_scope(region, service)?;
        if request_scope == server_scope {
            Ok(access_key.to_string())
        } else {
            Err(SignatureError::InvalidCredential {
                message: format!("Invalid credential scope: Expected {} instead of {}", server_scope, request_scope),
            })
        }
    }

    /// The session token sent with the access key.
    ///
    /// Session tokens are used only for temporary credentials. If a long-term credential was used, the result
    /// is `Ok(None)`.
    pub(crate) fn get_session_token(&self) -> Result<Option<String>, SignatureError> {
        let qp_result = self.get_query_param_one(X_AMZ_SECURITY_TOKEN);

        match qp_result {
            Ok(token) => Ok(Some(token)),
            Err(e) => match e {
                SignatureError::MissingParameter {
                    ..
                } => match self.get_header_one(X_AMZ_SECURITY_TOKEN_LOWER) {
                    Ok(token) => Ok(Some(token)),
                    Err(e) => match e {
                        SignatureError::MissingHeader {
                            ..
                        } => Ok(None),
                        _ => Err(e),
                    },
                },
                _ => Err(e),
            },
        }
    }

    /// The signature passed into the request.
    pub(crate) fn get_request_signature(&self) -> Result<String, SignatureError> {
        match self.get_query_param_one(X_AMZ_SIGNATURE) {
            Ok(sig) => Ok(sig),
            Err(e) => match e {
                SignatureError::MissingParameter {
                    ..
                } => {
                    let ah: HashMap<String, String> = self.get_authorization_header_parameters()?;
                    match ah.get(SIGNATURE) {
                        Some(c) => Ok(c.to_string()),
                        None => Err(SignatureError::MalformedSignature {
                            message: "invalid Authorization header: missing Signature".to_string(),
                        }),
                    }
                }
                _ => Err(e),
            },
        }
    }

    /// The AWS SigV4 canonical request given parameters from the HTTP request, as outlined in the
    /// [AWS documentation](http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html).
    ///
    /// The canonical request is:
    /// ```text
    ///     request_method + '\n' +
    ///     canonical_uri_path + '\n' +
    ///     canonical_query_string + '\n' +
    ///     signed_headers + '\n' +
    ///     sha256(body).hexdigest()
    /// ```
    pub(crate) fn get_canonical_request(&self) -> Result<Vec<u8>, SignatureError> {
        let mut result = Vec::<u8>::new();
        let mut header_keys = Vec::<u8>::new();
        let canonical_uri_path = self.get_canonical_uri_path()?;
        let canonical_query_string = self.get_canonical_query_string()?;
        let body_hex_digest = self.get_body_digest()?;

        result.write_all(self.request_method.as_bytes())?;
        result.push(b'\n');
        result.write_all(canonical_uri_path.as_bytes())?;
        result.push(b'\n');
        result.write_all(canonical_query_string.as_bytes())?;
        result.push(b'\n');

        let mut is_first_key = true;

        for (key, values) in self.get_signed_headers()? {
            let key_bytes = key.as_bytes();

            result.write_all(key_bytes)?;
            result.push(b':');

            let mut is_first_value = true;
            for ref value in values {
                if is_first_value {
                    is_first_value = false;
                } else {
                    result.push(b',');
                }

                let value_collapsed_space = MULTISPACE.replace_all(from_utf8(value).unwrap(), " ");
                result.write_all(value_collapsed_space.as_bytes())?;
            }
            result.push(b'\n');

            if is_first_key {
                is_first_key = false;
            } else {
                header_keys.push(b';');
            }

            header_keys.write_all(key_bytes)?;
        }

        result.push(b'\n');
        result.append(&mut header_keys);
        result.push(b'\n');

        match self.get_content_type_and_charset() {
            Ok((content_type, _)) if content_type == APPLICATION_X_WWW_FORM_URLENCODED => {
                result.write(SHA256_EMPTY.as_bytes())?
            }
            _ => result.write(body_hex_digest.as_bytes())?,
        };

        Ok(result)
    }

    /// The SHA-256 hex digest of the body.
    pub(crate) fn get_body_digest(&self) -> Result<String, SignatureError> {
        match &self.body {
            None => Ok(SHA256_EMPTY.to_string()),
            Some(body) => Ok(hex::encode(digest(&SHA256, body).as_ref())),
        }
    }

    /// The string to sign for the request.
    pub(crate) fn get_string_to_sign<A1, A2>(&self, region: A1, service: A2) -> Result<Vec<u8>, SignatureError>
    where
        A1: AsRef<str>,
        A2: AsRef<str>,
    {
        let mut result = Vec::new();
        let timestamp = self.get_request_timestamp()?;
        let credential_scope = self.get_credential_scope(region, service)?;
        let canonical_request = self.get_canonical_request()?;
        trace!("Credential scope: {:?}", credential_scope);
        trace!("Canonical request: {:?}", from_utf8(canonical_request.as_ref()));

        result.write_all(AWS4_HMAC_SHA256.as_bytes())?;
        result.push(b'\n');
        write!(&mut result, "{}", timestamp.format(ISO8601_COMPACT_FORMAT))?;
        result.push(b'\n');
        result.write_all(credential_scope.as_bytes())?;
        result.push(b'\n');
        result.write_all(hex::encode(digest(&SHA256, &canonical_request).as_ref()).as_bytes())?;

        Ok(result)
    }
}

/// Return the expected signature for a request.
pub fn sigv4_get_expected_signature<A1, A2>(
    req: &Request,
    signing_key: &SigningKey,
    region: A1,
    service: A2,
) -> Result<String, SignatureError>
where
    A1: AsRef<str>,
    A2: AsRef<str>,
{
    let k_signing = signing_key.to_ksigning_key(&(req.get_request_date()?), &region, &service);
    let string_to_sign = req.get_string_to_sign(&region, &service)?;
    trace!("String to sign: {:?}", from_utf8(string_to_sign.as_ref()));

    Ok(hex::encode(hmac_sha256(&k_signing.key, &string_to_sign).as_ref()))
}

/// Verify a SigV4 request at a particular point-in-time. This verifies that the request timestamp is not beyond the
/// allowed timestamp mismatch against the specified point-in-time, and that the request signature matches our expected
/// signature.
///
/// This is mainly for unit testing. For general purpose use, use `sigv4_verify`.
pub fn sigv4_verify_at<A1, A2>(
    req: &Request,
    signing_key: &SigningKey,
    server_timestamp: &DateTime<Utc>,
    allowed_mismatch: Option<Duration>,
    region: A1,
    service: A2,
) -> Result<(), SignatureError>
where
    A1: AsRef<str>,
    A2: AsRef<str>,
{
    if let Some(mm) = allowed_mismatch {
        let req_ts = req.get_request_timestamp()?;
        let min_ts = server_timestamp.checked_sub_signed(mm).unwrap_or(*server_timestamp);
        let max_ts = server_timestamp.checked_add_signed(mm).unwrap_or(*server_timestamp);

        if req_ts < min_ts || req_ts > max_ts {
            return Err(SignatureError::TimestampOutOfRange {
                minimum: min_ts,
                maximum: max_ts,
                received: req_ts,
            });
        }
    }

    let request_sig = req.get_request_signature()?;
    let expected_sig = sigv4_get_expected_signature(req, signing_key, &region, &service)?;

    if expected_sig != request_sig {
        Err(SignatureError::InvalidSignature {
            message: format!("Expected {} instead of {}", expected_sig, request_sig),
        })
    } else {
        Ok(())
    }
}

/// Verify a SigV4 request. This verifies that the request timestamp is not beyond the allowed timestamp mismatch
/// against the current time, and that the request signature matches our expected signature.
pub fn sigv4_verify<A1, A2>(
    req: &Request,
    signing_key: &SigningKey,
    allowed_mismatch: Option<Duration>,
    region: A1,
    service: A2,
) -> Result<(), SignatureError>
where
    A1: AsRef<str>,
    A2: AsRef<str>,
{
    sigv4_verify_at(req, signing_key, &Utc::now(), allowed_mismatch, region, service)
}

/// Indicates whether the specified byte is RFC3986 unreserved -- i.e., can be represented without being
/// percent-encoded, e.g. '?' -> '%3F'.
pub fn is_rfc3986_unreserved(c: u8) -> bool {
    c.is_ascii_alphanumeric() || c == b'-' || c == b'.' || c == b'_' || c == b'~'
}

/// Normalize the path component according to RFC 3986.  This performs the following operations:
/// * Alpha, digit, and the symbols `-`, `.`, `_`, and `~` (unreserved characters) are left alone.
/// * Characters outside this range are percent-encoded.
/// * Percent-encoded values are upper-cased (`%2a` becomes `%2A`)
/// * Percent-encoded values in the unreserved space (`%41`-`%5A`, `%61`-`%7A`, `%30`-`%39`, `%2D`, `%2E`, `%5F`,
///   `%7E`) are converted to normal characters.
///
/// If a percent encoding is incomplete, an error is returned.
pub fn normalize_uri_path_component(path_component: &str) -> Result<String, SignatureError> {
    let path_component = path_component.as_bytes();
    let mut i = 0;
    let result = &mut Vec::<u8>::new();

    while i < path_component.len() {
        let c = path_component[i];

        if is_rfc3986_unreserved(c) {
            result.push(c);
            i += 1;
        } else if c == b'%' {
            if i + 2 >= path_component.len() {
                // % encoding would go beyond end of string; return an error.
                return Err(SignatureError::InvalidURIPath {
                    message: "Incomplete hex encoding".to_string(),
                });
            }

            let hex_digits = &path_component[i + 1..i + 3];
            match hex::decode(hex_digits) {
                Ok(value) => {
                    assert_eq!(value.len(), 1);
                    let c = value[0];

                    if is_rfc3986_unreserved(c) {
                        result.push(c);
                    } else {
                        // Rewrite the hex-escape so it's always upper-cased.
                        write!(result, "%{:02X}", c)?;
                    }
                    i += 3;
                }
                Err(_) => {
                    return Err(SignatureError::InvalidURIPath {
                        message: format!("Invalid hex encoding: {:?}", hex_digits),
                    })
                }
            }
        } else if c == b'+' {
            // Plus-encoded space. Convert this to %20.
            result.write_all(b"%20")?;
            i += 1;
        } else {
            // Character should have been encoded.
            write!(result, "%{:02X}", c)?;
            i += 1;
        }
    }

    Ok(from_utf8(result.as_slice()).unwrap().to_string())
}

/// Normalizes the specified URI path, removing redundant slashes and relative path components.
pub fn canonicalize_uri_path(uri_path: &str) -> Result<String, SignatureError> {
    // Special case: empty path is converted to '/'; also short-circuit the usual '/' path here.
    if uri_path.is_empty() || uri_path == "/" {
        return Ok("/".to_string());
    }

    // All other paths must be abolute.
    if !uri_path.starts_with('/') {
        return Err(SignatureError::InvalidURIPath {
            message: format!("Path is not absolute: {}", uri_path),
        });
    }

    // Replace double slashes; this makes it easier to handle slashes at the end.
    let uri_path = MULTISLASH.replace_all(uri_path, "/");

    // Examine each path component for relative directories.
    let mut components: Vec<String> = uri_path.split('/').map(|s| s.to_string()).collect();
    let mut i = 1; // Ignore the leading "/"
    while i < components.len() {
        let component = normalize_uri_path_component(&components[i])?;

        if component == "." {
            // Relative path: current directory; remove this.
            components.remove(i);

            // Don't increment i; with the deletion, we're now pointing to the next element in the path.
        } else if component == ".." {
            // Relative path: parent directory.  Remove this and the previous component.

            if i <= 1 {
                // This isn't allowed at the beginning!
                return Err(SignatureError::InvalidURIPath {
                    message: format!("Relative path entry '..' navigates above root: {}", uri_path),
                });
            }

            components.remove(i - 1);
            components.remove(i - 1);

            // Since we've deleted two components, we need to back up one to examine what's now the next component.
            i -= 1;
        } else {
            // Leave it alone; proceed to the next component.
            components[i] = component;
            i += 1;
        }
    }

    assert!(!components.is_empty());
    match components.len() {
        1 => Ok("/".to_string()),
        _ => Ok(components.join("/")),
    }
}

/// Normalize the query parameters by normalizing the keys and values of each parameter and return a `HashMap` mapping
/// each key to a *vector* of values (since it is valid for a query parameters to appear multiple times).
///
/// The order of the values matches the order that they appeared in the query string -- this is important for SigV4
/// validation.
pub fn normalize_query_parameters(query_string: &str) -> Result<HashMap<String, Vec<String>>, SignatureError> {
    if query_string.is_empty() {
        return Ok(HashMap::new());
    }

    // Split the query string into parameters on '&' boundaries.
    let components = query_string.split('&');
    let mut result = HashMap::<String, Vec<String>>::new();

    for component in components {
        if component.is_empty() {
            // Empty component; skip it.
            continue;
        }

        // Split the parameter into key and value portions on the '='
        let parts: Vec<&str> = component.splitn(2, '=').collect();
        let key = parts[0];
        let value = if parts.len() > 1 {
            parts[1]
        } else {
            ""
        };

        // Normalize the key and value.
        let norm_key = normalize_uri_path_component(key)?;
        let norm_value = normalize_uri_path_component(value)?;

        // If we already have a value for this key, append to it; otherwise, create a new vector containing the value.
        if let Some(result_value) = result.get_mut(&norm_key) {
            result_value.push(norm_value);
        } else {
            result.insert(norm_key, vec![norm_value]);
        }
    }

    Ok(result)
}

/// Split Authorization header parameters from key=value parts into a HashMap.
pub fn split_authorization_header_parameters(parameters: &str) -> Result<HashMap<String, String>, SignatureError> {
    trace!("split_authorization_header_parameters: parameters={:?}", parameters);
    let mut result = HashMap::<String, String>::new();
    for parameter in parameters.split(',') {
        let parts: Vec<&str> = parameter.splitn(2, '=').collect();
        if parts.len() != 2 {
            return Err(SignatureError::MalformedSignature {
                message: "invalid Authorization header: missing '='".to_string(),
            });
        }

        let key = parts[0].trim_start().to_string();
        let value = parts[1].trim_end().to_string();

        if result.contains_key(&key) {
            return Err(SignatureError::MalformedSignature {
                message: format!("invalid Authorization header: duplicate field {}", key),
            });
        }

        result.insert(key, value);
    }

    Ok(result)
}