Skip to content

Commit 1cf657b

Browse files
committedOct 10, 2023
fix: upload, download and listing of objects with "+" in their keys
When uploading an object containing several + in their keys, nginx considers the "+" as being a "valid" url charcter, then it is not re-encoding it when proxy_pass the url. This ends up in signature validation issues on cloudserver side, because cloud server receives the request with a plain "+" character instead of its urlencode counterpart "%2B". To solve the issue, we create a new variable named "urlencore_proxy_uri" where we urlencode the "+" and give that URL to the proxy_pass, this way nginx is not re-encoding it. We had to introduce lua to do this operation via a set_by_lua_block because a simple map module in nginx is not replacing ALL the occurences but only the last match. Ref: ZKUI-317
1 parent 1a37f88 commit 1cf657b

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed
 

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ARG NGINX_IMAGE_VERSION=1.23.3-alpine
1+
ARG TAG=1.21.4.2-1-alpine-fat
22

3-
FROM nginx:${NGINX_IMAGE_VERSION}
3+
FROM openresty/openresty:${TAG}
44

55
EXPOSE 8383
66

‎nginx.conf.gotempl

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
map $request_uri $proxy_uri {
2-
"~^/s3/(?<path>.*)$" "/$path";
3-
}
4-
5-
map $proxy_uri $encoded_uri {
6-
~(.*)\+(.*) $1%2B$2;
7-
default $proxy_uri;
8-
}
9-
10-
111
server {
122
listen {{ .Port }};
133
server_name _;
@@ -36,7 +26,15 @@ server {
3626
location /s3 {
3727
resolver {{ .DNSAddress }};
3828
{{ .AdditionalS3LocationsRules }}
39-
proxy_pass {{ .S3Endpoint }}$encoded_uri;
29+
30+
set_by_lua_block $urlencore_proxy_uri {
31+
local uri = ngx.var.request_uri
32+
local proxy_uri = ngx.re.gsub(uri, "^/s3", "")
33+
local encoded_uri = ngx.re.gsub(proxy_uri, "\\+", "%2B", "jo")
34+
return encoded_uri
35+
}
36+
37+
proxy_pass {{ .S3Endpoint }}$urlencore_proxy_uri;
4038
proxy_redirect off;
4139
}
4240

0 commit comments

Comments
 (0)
Please sign in to comment.