Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
fix(s3-v4) Invalid v4 signature w/ chunked non-ASCII key (#1632)
Browse files Browse the repository at this point in the history
closes #1630
  • Loading branch information
e-tip authored and rnicholus committed Sep 22, 2016
1 parent 1f4c7e1 commit 2c73fdb
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/js/s3/request-signer.js
Expand Up @@ -148,7 +148,7 @@ qq.s3.RequestSigner = function(o) {
if (queryParamIdx > 0) {
path = endOfUri.substr(0, queryParamIdx);
}
return escape("/" + decodeURIComponent(path));
return "/" + path;
},

getEncodedHashedPayload: function(body) {
Expand Down
4 changes: 2 additions & 2 deletions client/js/s3/s3.xhr.upload.handler.js
Expand Up @@ -456,8 +456,8 @@ qq.s3.XhrUploadHandler = function(spec, proxy) {
},

urlSafe: function(id) {
var encodedKey = encodeURIComponent(handler.getThirdPartyFileId(id));
return encodedKey.replace(/%2F/g, "/");
var encodedKey = handler.getThirdPartyFileId(id);
return qq.s3.util.uriEscapePath(encodedKey);
}
},

Expand Down
23 changes: 23 additions & 0 deletions client/js/s3/util.js
Expand Up @@ -491,6 +491,29 @@ qq.s3.util = qq.s3.util || (function() {

// replace percent-encoded spaces with a "+"
return percentEncoded.replace(/%20/g, "+");
},
/**
* Escapes url part as for AWS requirements
* AWS uriEscapePath function pulled from aws-sdk-js licensed under Apache 2.0 - http://github.com/aws/aws-sdk-js
*/
uriEscape: function(string) {
var output = encodeURIComponent(string);
output = output.replace(/[^A-Za-z0-9_.~\-%]+/g, escape);
output = output.replace(/[*]/g, function(ch) {
return "%" + ch.charCodeAt(0).toString(16).toUpperCase();
});
return output;
},
/**
* Escapes a path as for AWS requirement
* AWS uriEscapePath function pulled from aws-sdk-js licensed under Apache 2.0 - http://github.com/aws/aws-sdk-js
*/
uriEscapePath: function(path) {
var parts = [];
qq.each(path.split("/"), function(idx, item) {
parts.push(qq.s3.util.uriEscape(item));
});
return parts.join("/");
}
};
}());
10 changes: 10 additions & 0 deletions test/unit/s3/util.js
Expand Up @@ -153,6 +153,16 @@ describe("s3/util.js", function () {
assert.equal(response.etag, "789");
});
});

describe("uriEscapePath",function(){
it("encodes params following s3 directives",function(){
assert.equal(qq.s3.util.uriEscapePath("pippo/pluto e topolino.jpg"),"pippo/pluto%20e%20topolino.jpg");
assert.equal(qq.s3.util.uriEscapePath("pippo/pluto & mickey+mouse.jpg"),"pippo/pluto%20%26%20mickey%2Bmouse.jpg");
assert.equal(qq.s3.util.uriEscapePath("pluto & àòè.jpg"),"pluto%20%26%20a%CC%80o%CC%80e%CC%80.jpg");
assert.equal(qq.s3.util.uriEscapePath("pluto & micke#22.jpg"),"pluto%20%26%20micke%2322.jpg");
assert.equal(qq.s3.util.uriEscapePath("pluto_lkjhàò=23£"),"pluto_lkjha%CC%80o%CC%80%3D23%C2%A3");
});
});

describe("encodeQueryStringParam", function() {
it("handles params with spaces correctly", function() {
Expand Down

0 comments on commit 2c73fdb

Please sign in to comment.