-
Notifications
You must be signed in to change notification settings - Fork 0
/
read.go
196 lines (181 loc) · 5.87 KB
/
read.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
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"encoding/base64"
"encoding/json"
"fmt"
"net/http"
"path"
"strings"
"github.com/emicklei/go-restful"
"github.com/golang/glog"
"gopkg.in/square/go-jose.v2/jwt"
certutil "k8s.io/client-go/util/cert"
)
var publicKeys []interface{}
func prepareRead() {
for _, keyFile := range options.SAKeyFiles {
publicKey, err := certutil.PublicKeysFromFile(keyFile)
if err != nil {
panic(err)
}
publicKeys = append(publicKeys, publicKey...)
glog.Info("Successfully loaded public key ", keyFile)
}
}
type legacyPrivateClaims struct {
ServiceAccountName string `json:"kubernetes.io/serviceaccount/service-account.name"`
ServiceAccountUID string `json:"kubernetes.io/serviceaccount/service-account.uid"`
SecretName string `json:"kubernetes.io/serviceaccount/secret.name"`
Namespace string `json:"kubernetes.io/serviceaccount/namespace"`
}
func (l legacyPrivateClaims) String() string {
return fmt.Sprintf("ServiceAccount: %s, UID: %s, Secret: %s, Namespace: %s", l.ServiceAccountName, l.ServiceAccountUID, l.SecretName, l.Namespace)
}
// authenticateToken parses the jwt token
// this function is modified from:
// https://github.com/kubernetes/kubernetes/blob/ba791275ce5fa45a807820031b815055312f335d/pkg/serviceaccount/jwt.go#L139
func authenticateToken(token string) (*legacyPrivateClaims, error) {
parts := strings.Split(token, ".")
if len(parts) != 3 {
return nil, fmt.Errorf("invalid token format")
}
payload, err := base64.RawURLEncoding.DecodeString(parts[1])
if err != nil {
return nil, err
}
claims := struct {
// WARNING: this JWT is not verified. Do not trust these claims.
Issuer string `json:"iss"`
}{}
if err := json.Unmarshal(payload, &claims); err != nil {
return nil, err
}
// https://github.com/kubernetes/kubernetes/blob/ba791275ce5fa45a807820031b815055312f335d/pkg/serviceaccount/legacy.go#L37
if claims.Issuer != "kubernetes/serviceaccount" {
return nil, fmt.Errorf("invalid iss user provided")
}
tok, err := jwt.ParseSigned(token)
if err != nil {
return nil, err
}
public := &jwt.Claims{}
private := &legacyPrivateClaims{}
var (
found bool
errlist []error
)
for _, key := range publicKeys {
if err := tok.Claims(key, public, private); err != nil {
errlist = append(errlist, err)
continue
}
found = true
break
}
if found {
return private, nil
} else {
result := fmt.Sprintf("[%s", errlist[0].Error())
for i := 1; i < len(errlist); i++ {
result += fmt.Sprintf(", %s", errlist[i].Error())
}
result += "]"
glog.Infof("failed to check service account. errors: %s.", result)
return nil, fmt.Errorf(result)
}
}
// authenRead checks service account token
func authenRead(req *restful.Request, resp *restful.Response, chain *restful.FilterChain) {
auth := strings.TrimSpace(req.Request.Header.Get("Authorization"))
if len(auth) == 0 {
resp.WriteErrorString(401, "Service account token is required.")
return
}
parts := strings.Split(auth, " ")
if len(parts) < 2 || strings.ToLower(parts[0]) != "bearer" {
resp.WriteErrorString(401, "Invalid token format")
return
}
token := parts[1]
// Empty bearer tokens aren't valid
if len(token) == 0 {
resp.WriteErrorString(401, "Service account token is required.")
return
}
user, err := authenticateToken(token)
if err != nil {
resp.WriteErrorString(401, "Failed to validate service account token: "+err.Error())
return
}
glog.Info("Successfully validated service account info: ", user)
ctx := req.Request.Context()
ctx = context.WithValue(ctx, "user", user)
req.Request = req.Request.WithContext(ctx)
chain.ProcessFilter(req, resp)
}
func authorRead(req *restful.Request, resp *restful.Response, chain *restful.FilterChain) {
user, ok := req.Request.Context().Value("user").(*legacyPrivateClaims)
if !ok || user == nil {
resp.WriteErrorString(500, "Failed to read service account info")
return
}
ns := req.PathParameter("ns")
isAdmin := false
if ns != user.Namespace {
for _, adminNs := range options.AdminNamespaces {
if user.Namespace == adminNs {
isAdmin = true
break
}
}
if !isAdmin {
scope := ""
if len(ns) != 0 && ns != "{cluster-scope}" {
scope = "in namespace '" + ns + "'"
} else {
scope = "in cluster scope"
}
resp.WriteErrorString(403, "Service account in namespaces '"+user.Namespace+"' are not allowed to access audits "+scope+".")
return
}
}
chain.ProcessFilter(req, resp)
}
// readHandler is the http handler for reqeust URL `read/{ns}/{subpath:*}`
func readHandler(req *restful.Request, resp *restful.Response) {
actual := path.Join(auditDir, req.PathParameter("ns"), req.PathParameter("subpath"))
glog.Infof("serving %s ... (from %s)\n", actual, req.Request.URL)
http.ServeFile(
resp.ResponseWriter,
req.Request,
actual)
}
// readListHandler is the http handler for reqeust URL `read/{ns}/`
func readListHandler(req *restful.Request, resp *restful.Response) {
actual := path.Join(auditDir, req.PathParameter("ns"))
glog.Infof("serving %s ... (from %s)\n", actual, req.Request.URL)
http.ServeFile(
resp.ResponseWriter,
req.Request,
actual)
}
// readRootListHandler is the http handler for reqeust URL `read/`
func readRootListHandler(req *restful.Request, resp *restful.Response) {
glog.Infof("serving %s ... (from %s)\n", auditDir, req.Request.URL)
http.ServeFile(
resp.ResponseWriter,
req.Request,
auditDir)
}