-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy.go
220 lines (192 loc) · 5.32 KB
/
proxy.go
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
package main
import (
"net/url"
"net/http"
"strings"
"log"
"os/user"
"s3gw/ranger"
"time"
"net/http/httputil"
)
type Proxy struct {
target *url.URL
proxy *httputil.ReverseProxy
}
type Transport struct {
}
func NewProxy(target string) *Proxy {
u, _ := url.Parse(target)
return &Proxy{target: u, proxy: httputil.NewSingleHostReverseProxy(u)}
}
func (p *Proxy) handle(w http.ResponseWriter, r *http.Request){
header := r.Header.Get("Authorization")
p.proxy.Transport = &Transport{}
var username string
var fwdAddresses []string
var clientIp string
// get remote client ip
fwdHeader := r.Header.Get("X-Forwarded-For")
remoteAddress := strings.Split(r.RemoteAddr, ":")[0]
if fwdHeader != "" {
// Accessed via proxy
fwdAddresses = strings.Split(fwdHeader, ",")
if len(fwdAddresses) > 0 {
// hope the first one in the list is the client ip
clientIp = fwdAddresses[1]
}
newFwdAddresses := append(fwdAddresses, remoteAddress)
w.Header().Set("X-Forwarded-For", strings.Join(newFwdAddresses, ","))
} else {
w.Header().Set("X-Forwarded-For", remoteAddress)
clientIp = remoteAddress
}
if len(header) > 0 {
pos1 := strings.Index(header, "Credential") + 11
pos2 := strings.Index(header, ",") - 1
credentials := strings.Split(header[pos1:pos2], "/")
if name, ok := accessKey2Username[credentials[0]]; !ok {
log.Printf("Access denied accessKey=%s due to not found\n", credentials[0])
http.Error(w, "Access denied", http.StatusForbidden)
return
} else {
username = name
}
} else {
log.Printf("No 'Authorization' header found\n")
http.Error(w, "No 'Authorization' header found. Access denied", http.StatusForbidden)
return
}
o, k := GetBucketObjectKey(r.URL.String())
location := "/" + o
if len(k) > 0 {
location += "/" + k
}
// get owner of the bucket
owner := ""
if len(o) > 0 {
item, found := ownerCache.Get(o)
if !found {
log.Printf("Cached owner not found for bucket=%s\n", o)
item, _ = radosClient.GetBucketOwner(o)
ownerCache.SetDefault(o, item)
}
owner = item.(string)
}
// load groups of the user from local system
my_user, err := user.Lookup(username)
var groups []string
if err == nil {
gids, _ := my_user.GroupIds()
for _, gid := range gids {
groupName, _ := user.LookupGroupId(gid)
groups = append(groups, groupName.Name)
}
}
// get tags for this bucket
err, tags := s3Client.GetBucketTags(location)
if err != nil {
log.Printf("Cannot load tags for bucket=%s due to error=%s\n", location, err)
}
log.Printf("Tags: %s", tags)
log.Printf("user=%s, bucket=%s, key=%s, method=%s\n", username, o, k, r.Method)
query := r.URL.Query()
req := &ranger.AccessRequest{
User: username,
UserGroups: groups,
Resource: ranger.AccessResource{
Owner: owner,
Location: location,
},
Action: r.Method,
AccessTime: time.Now(),
RemoteIpAddress: remoteAddress,
ClientIpAddress: clientIp,
ForwardedAdresses: fwdAddresses,
}
switch strings.ToUpper(r.Method) {
case "DELETE":
if len(query.Get("uploadId")) > 0 {
log.Printf("Skip notification for multipart ABORT")
}
req.AccessType = ranger.Write
if !service.IsAccessAllowed(req) {
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, "write")
http.Error(w, "Access denied", http.StatusForbidden)
return
}
break
case "HEAD":
req.AccessType = ranger.Read
if !service.IsAccessAllowed(req) {
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, "read")
http.Error(w, "Access denied", http.StatusForbidden)
return
}
break
case "PUT":
req.AccessType = ranger.Write
if len(query.Get("acl")) > 0 {
req.AccessType = ranger.WriteAcp
}
if !service.IsAccessAllowed(req) {
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, req.AccessType)
http.Error(w, "Access denied", http.StatusForbidden)
return
}
break
case "GET":
req.AccessType = ranger.Read
if len(query.Get("acl")) > 0 {
req.AccessType = ranger.ReadAcp
}
if !service.IsAccessAllowed(req) {
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, req.AccessType)
http.Error(w, "Access denied", http.StatusForbidden)
return
}
break
case "POST":
if len(query.Get("uploads")) > 0 {
log.Printf("skip notification for multipart INITIATE")
}
req.AccessType = ranger.Write
if !service.IsAccessAllowed(req) {
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, req.AccessType)
http.Error(w, "Access denied", http.StatusForbidden)
return
}
break
default:
log.Printf("Access denied location=%s, user=%s, groups=%s, accessType=%s",
location, username, groups, "unkown")
http.Error(w, "Access denied", http.StatusForbidden)
return
}
p.proxy.ServeHTTP(w, r)
}
func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) {
resp, err := http.DefaultTransport.RoundTrip(req)
return resp, err
}
func GetBucketObjectKey(s string) (string, string) {
pos := strings.Index(s, "?")
if pos > 0 {
s = s[0:pos-1]
}
split := strings.Split(s,"/")
switch len(split) {
case 1:
return "", ""
case 2:
return split[1], ""
default:
return split[1], split[2]
}
return "", ""
}