This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userauth.go
205 lines (177 loc) · 6.22 KB
/
userauth.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
package main
import (
"crypto/x509"
"encoding/json"
"encoding/pem"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"regexp"
"strings"
"github.com/golang-jwt/jwt/v4"
"github.com/lestrrat/go-jwx/jwk"
log "github.com/sirupsen/logrus"
)
// Authenticator is an interface that takes care of authenticating users to the
// S3 proxy. It contains only one method, Authenticate.
type Authenticator interface {
// Authenticate inspects an http.Request and returns nil if the user is
// authenticated, otherwise an error is returned.
Authenticate(r *http.Request) (jwt.MapClaims, error)
}
// AlwaysAllow is an Authenticator that always authenticates
type AlwaysAllow struct{}
// NewAlwaysAllow returns a new AlwaysAllow authenticator.
func NewAlwaysAllow() *AlwaysAllow {
return &AlwaysAllow{}
}
// Authenticate authenticates everyone.
func (u *AlwaysAllow) Authenticate(r *http.Request) (jwt.MapClaims, error) {
return nil, nil
}
// ValidateFromToken is an Authenticator that reads the public key from
// supplied file
type ValidateFromToken struct {
pubkeys map[string][]byte
}
// NewValidateFromToken returns a new ValidateFromToken, reading the key from
// the supplied file.
func NewValidateFromToken(pubkeys map[string][]byte) *ValidateFromToken {
return &ValidateFromToken{pubkeys}
}
// Authenticate verifies that the token included in the http.Request
// is valid
func (u *ValidateFromToken) Authenticate(r *http.Request) (claims jwt.MapClaims, err error) {
var ok bool
// Verify signature by parsing the token with the given key
tokenStr := r.Header.Get("X-Amz-Security-Token")
if tokenStr == "" {
return nil, fmt.Errorf("no access token supplied")
}
token, err := jwt.Parse(tokenStr, func(tokenStr *jwt.Token) (interface{}, error) { return nil, nil })
// Return error if token is broken (without claims)
if claims, ok = token.Claims.(jwt.MapClaims); !ok {
return nil, fmt.Errorf("broken token (claims are empty): %v\nerror: %s", claims, err)
}
strIss := fmt.Sprintf("%v", claims["iss"])
// Poor string unescaper for elixir
strIss = strings.ReplaceAll(strIss, "\\", "")
log.Debugf("Looking for key for %s", strIss)
re := regexp.MustCompile(`//([^/]*)`)
keyMatch := re.FindStringSubmatch(strIss)
if len(keyMatch) < 2 || keyMatch[1] == "" {
return nil, fmt.Errorf("failed to get issuer from token iss (%v)", strIss)
}
switch token.Header["alg"] {
case "ES256":
key, err := jwt.ParseECPublicKeyFromPEM(u.pubkeys[keyMatch[1]])
if err != nil {
return nil, fmt.Errorf("failed to parse EC public key (%v)", err)
}
_, err = jwt.Parse(tokenStr, func(tokenStr *jwt.Token) (interface{}, error) { return key, nil })
if err != nil {
return nil, fmt.Errorf("signed token (ES256) not valid: %v, (token was %s)", err, tokenStr)
}
case "RS256":
key, err := jwt.ParseRSAPublicKeyFromPEM(u.pubkeys[keyMatch[1]])
if err != nil {
return nil, fmt.Errorf("failed to parse RSA256 public key (%v)", err)
}
_, err = jwt.Parse(tokenStr, func(tokenStr *jwt.Token) (interface{}, error) { return key, nil })
if err != nil {
return nil, fmt.Errorf("signed token (RS256) not valid: %v, (token was %s)", err, tokenStr)
}
default:
return nil, fmt.Errorf("unsupported algorithm %s", token.Header["alg"])
}
// Check whether token username and filepath match
re = regexp.MustCompile("/([^/]+)/")
username := re.FindStringSubmatch(r.URL.Path)[1]
// Case for Elixir and CEGA usernames: Replace @ with _ character
if strings.Contains(fmt.Sprintf("%v", claims["sub"]), "@") {
claimString := fmt.Sprintf("%v", claims["sub"])
if strings.ReplaceAll(claimString, "@", "_") != username {
return nil, fmt.Errorf("token supplied username %s but URL had %s", claims["sub"], username)
}
} else if claims["sub"] != username {
return nil, fmt.Errorf("token supplied username %s but URL had %s", claims["sub"], username)
}
return claims, nil
}
// Function for reading the ega key in []byte
func (u *ValidateFromToken) getjwtkey(jwtpubkeypath string) error {
re := regexp.MustCompile(`(.*)\.+`)
err := filepath.Walk(jwtpubkeypath,
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.Mode().IsRegular() {
log.Debug("Reading file: ", filepath.Join(filepath.Clean(jwtpubkeypath), info.Name()))
keyData, err := os.ReadFile(filepath.Join(filepath.Clean(jwtpubkeypath), info.Name()))
if err != nil {
return fmt.Errorf("token file error: %v", err)
}
nameMatch := re.FindStringSubmatch(info.Name())
if nameMatch == nil || len(nameMatch) < 2 {
return fmt.Errorf("unexpected lack of substring match in filename %s", info.Name())
}
u.pubkeys[nameMatch[1]] = keyData
}
return nil
})
if err != nil {
return fmt.Errorf("failed to get public key files (%v)", err)
}
return nil
}
// Function for fetching the elixir key from the JWK and transform it to []byte
func (u *ValidateFromToken) getjwtpubkey(jwtpubkeyurl string) error {
re := regexp.MustCompile("/([^/]+)/")
keyMatch := re.FindStringSubmatch(jwtpubkeyurl)
if keyMatch == nil {
return fmt.Errorf("not valid link for key %s", jwtpubkeyurl)
}
if len(keyMatch) < 2 {
return fmt.Errorf("unexpected lack of submatches in %s", jwtpubkeyurl)
}
key := keyMatch[1]
set, err := jwk.Fetch(jwtpubkeyurl)
if err != nil {
return fmt.Errorf("jwk.Fetch failed (%v) for %s", err, jwtpubkeyurl)
}
keyEl, err := set.Keys[0].Materialize()
if err != nil {
return fmt.Errorf("failed to materialize public key (%v)", err)
}
pkeyBytes, err := x509.MarshalPKIXPublicKey(keyEl)
if err != nil {
return fmt.Errorf("failed to marshal public key (%v)", err)
}
log.Debugf("Getting key from %s", jwtpubkeyurl)
r, err := http.Get(jwtpubkeyurl)
if err != nil {
return fmt.Errorf("failed to get JWK (%v)", err)
}
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("failed to read key response (%v)", err)
}
defer r.Body.Close()
var keytype map[string][]map[string]string
err = json.Unmarshal(b, &keytype)
if err != nil {
return fmt.Errorf("failed to unmarshal key response (%v, response was %s)", err, b)
}
keyData := pem.EncodeToMemory(
&pem.Block{
Type: keytype["keys"][0]["kty"] + " PUBLIC KEY",
Bytes: pkeyBytes,
},
)
u.pubkeys[key] = keyData
log.Debugf("Registered public key for %s", key)
return nil
}