-
Notifications
You must be signed in to change notification settings - Fork 11
/
auth.go
161 lines (131 loc) · 4.1 KB
/
auth.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
package auth
import (
"context"
"encoding/base64"
"strings"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/peer"
"google.golang.org/grpc/status"
)
// Authenticator exposes a function for authenticating requests.
type Authenticator struct {
Username string
Password string
Token string
}
// Authenticate checks that a token exists and is valid. It stores the user
// metadata in the returned context and removes the token from the context.
func (a Authenticator) Authenticate(ctx context.Context) (newCtx context.Context, err error) {
defer func() {
if err == nil {
// Store user metadata
userMD := &UserMetadata{
ID: a.Username,
}
newCtx = context.WithValue(newCtx, userMDKey{}, userMD)
}
}()
err = a.tryTLSAuth(ctx)
if err == nil {
return ctx, nil
}
newCtx, err = a.tryTokenAuth(ctx)
if err == nil {
return newCtx, nil
}
return a.tryBasicAuth(ctx)
}
func (a Authenticator) tryTLSAuth(ctx context.Context) error {
p, ok := peer.FromContext(ctx)
if !ok {
return status.Error(codes.Unauthenticated, "no peer found")
}
tlsAuth, ok := p.AuthInfo.(credentials.TLSInfo)
if !ok {
return status.Error(codes.Unauthenticated, "unexpected peer transport credentials")
}
if len(tlsAuth.State.VerifiedChains) == 0 || len(tlsAuth.State.VerifiedChains[0]) == 0 {
return status.Error(codes.Unauthenticated, "could not verify peer certificate")
}
if tlsAuth.State.VerifiedChains[0][0].Subject.CommonName != a.Username {
return status.Error(codes.Unauthenticated, "invalid subject common name")
}
return nil
}
func (a Authenticator) tryBasicAuth(ctx context.Context) (context.Context, error) {
auth, err := extractHeader(ctx, "authorization")
if err != nil {
return ctx, err
}
const prefix = "Basic "
if !strings.HasPrefix(auth, prefix) {
return ctx, status.Error(codes.Unauthenticated, `missing "Basic " prefix in "Authorization" header`)
}
c, err := base64.StdEncoding.DecodeString(auth[len(prefix):])
if err != nil {
return ctx, status.Error(codes.Unauthenticated, `invalid base64 in header`)
}
cs := string(c)
s := strings.IndexByte(cs, ':')
if s < 0 {
return ctx, status.Error(codes.Unauthenticated, `invalid basic auth format`)
}
user, password := cs[:s], cs[s+1:]
if user != a.Username || password != a.Password {
return ctx, status.Error(codes.Unauthenticated, "invalid user or password")
}
// Remove token from headers from here on
return purgeHeader(ctx, "authorization"), nil
}
func (a Authenticator) tryTokenAuth(ctx context.Context) (context.Context, error) {
auth, err := extractHeader(ctx, "authorization")
if err != nil {
return ctx, err
}
const prefix = "Bearer "
if !strings.HasPrefix(auth, prefix) {
return ctx, status.Error(codes.Unauthenticated, `missing "Bearer " prefix in "Authorization" header`)
}
if strings.TrimPrefix(auth, prefix) != a.Token {
return ctx, status.Error(codes.Unauthenticated, "invalid token")
}
// Remove token from headers from here on
return purgeHeader(ctx, "authorization"), nil
}
func extractHeader(ctx context.Context, header string) (string, error) {
md, ok := metadata.FromIncomingContext(ctx)
if !ok {
return "", status.Error(codes.Unauthenticated, "no headers in request")
}
authHeaders, ok := md[header]
if !ok {
return "", status.Error(codes.Unauthenticated, "no header in request")
}
if len(authHeaders) != 1 {
return "", status.Error(codes.Unauthenticated, "more than 1 header in request")
}
return authHeaders[0], nil
}
func purgeHeader(ctx context.Context, header string) context.Context {
md, _ := metadata.FromIncomingContext(ctx)
mdCopy := md.Copy()
mdCopy[header] = nil
return metadata.NewIncomingContext(ctx, mdCopy)
}
type userMDKey struct{}
// UserMetadata contains metadata about a user.
type UserMetadata struct {
ID string
}
// GetUserMetadata can be used to extract user metadata stored in a context.
func GetUserMetadata(ctx context.Context) (*UserMetadata, bool) {
userMD := ctx.Value(userMDKey{})
switch md := userMD.(type) {
case *UserMetadata:
return md, true
default:
return nil, false
}
}