-
Notifications
You must be signed in to change notification settings - Fork 15
/
pki.go
400 lines (362 loc) · 11.9 KB
/
pki.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
package cke
import (
"context"
"net"
"path"
"strings"
"sync"
"github.com/cybozu-go/log"
"github.com/cybozu-go/netutil"
vault "github.com/hashicorp/vault/api"
)
// CNAPIServer is the common name of API server for aggregation
const CNAPIServer = "front-proxy-client"
// CA keys for etcd storage.
const (
CAServer = "server"
CAEtcdPeer = "etcd-peer"
CAEtcdClient = "etcd-client"
CAKubernetes = "kubernetes"
CAKubernetesAggregation = "kubernetes-aggregation"
CAWebhook = "kubernetes-webhook"
)
// VaultPKIKey returns a key string for Vault corresponding to a CA.
func VaultPKIKey(caKey string) string {
return "cke/ca-" + caKey
}
// CAKeys is list of CA keys
var CAKeys = []string{
CAServer,
CAEtcdPeer,
CAEtcdClient,
CAKubernetes,
CAKubernetesAggregation,
CAWebhook,
}
// Role name in Vault
const (
RoleSystem = "system"
RoleAdmin = "admin"
RoleKubeScheduler = "kube-scheduler"
RoleKubeControllerManager = "kube-controller-manager"
RoleKubelet = "kubelet"
RoleKubeProxy = "kube-proxy"
RoleServiceAccount = "service-account"
)
// AdminGroup is the group name of cluster admin users
const AdminGroup = "system:masters"
// IssueResponse is cli output format.
type IssueResponse struct {
Cert string `json:"certificate"`
Key string `json:"private_key"`
CACert string `json:"ca_certificate"`
}
var roleLock sync.Mutex
// addRole adds a role to CA if not exists.
func addRole(client *vault.Client, ca, role string, data map[string]interface{}) error {
roleLock.Lock()
defer roleLock.Unlock()
l := client.Logical()
rpath := path.Join(ca, "roles", role)
secret, err := l.Read(rpath)
if err != nil {
return err
}
if secret != nil {
// already exists
return nil
}
_, err = l.Write(rpath, data)
if err != nil {
log.Error("failed to create vault role", map[string]interface{}{
log.FnError: err,
"ca": ca,
"role": role,
})
}
return err
}
// deleteRole deletes a role of CA.
func deleteRole(client *vault.Client, ca, role string) error {
roleLock.Lock()
defer roleLock.Unlock()
l := client.Logical()
rpath := path.Join(ca, "roles", role)
l.Delete(rpath)
_, err := l.Read(rpath)
if err != nil {
return err
}
return err
}
// EtcdCA is a certificate authority for etcd cluster.
type EtcdCA struct{}
// IssueServerCert issues TLS server certificates.
func (e EtcdCA) IssueServerCert(ctx context.Context, inf Infrastructure, node *Node) (crt, key string, err error) {
altNames := []string{
"localhost",
"cke-etcd",
"cke-etcd.kube-system",
"cke-etcd.kube-system.svc",
}
return issueCertificate(inf, CAServer, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"client_flag": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": node.Nodename(),
"alt_names": strings.Join(altNames, ","),
"ip_sans": "127.0.0.1," + node.Address,
})
}
// IssuePeerCert issues TLS certificates for mutual peer authentication.
func (e EtcdCA) IssuePeerCert(ctx context.Context, inf Infrastructure, node *Node) (crt, key string, err error) {
return issueCertificate(inf, CAEtcdPeer, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": node.Nodename(),
"ip_sans": "127.0.0.1," + node.Address,
"exclude_cn_from_sans": "true",
})
}
// IssueForAPIServer issues TLC client certificate for Kubernetes.
func (e EtcdCA) IssueForAPIServer(ctx context.Context, inf Infrastructure, node *Node) (crt, key string, err error) {
return issueCertificate(inf, CAEtcdClient, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"server_flag": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": "kube-apiserver",
"exclude_cn_from_sans": "true",
})
}
// IssueRoot issues certificate for root user.
func (e EtcdCA) IssueRoot(ctx context.Context, inf Infrastructure) (cert, key string, err error) {
return issueCertificate(inf, CAEtcdClient, RoleAdmin, false,
map[string]interface{}{
"ttl": "2h",
"max_ttl": "24h",
"server_flag": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": "root",
"exclude_cn_from_sans": "true",
"ttl": "1h",
})
}
// IssueEtcdClientCertificate issues TLS client certificate for a user.
func IssueEtcdClientCertificate(inf Infrastructure, username, ttl string) (cert, key string, err error) {
return issueCertificate(inf, CAEtcdClient, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"server_flag": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": username,
"exclude_cn_from_sans": "true",
"ttl": ttl,
})
}
// KubernetesCA is a certificate authority for k8s cluster.
type KubernetesCA struct{}
// IssueUserCert issues client certificate for user.
func (k KubernetesCA) IssueUserCert(ctx context.Context, inf Infrastructure, userName, groupName string, ttl string) (crt, key string, err error) {
return issueCertificate(inf, CAKubernetes, RoleAdmin, true,
map[string]interface{}{
"ttl": "2h",
"max_ttl": "48h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"organization": groupName,
},
map[string]interface{}{
"ttl": ttl,
"common_name": userName,
"exclude_cn_from_sans": "true",
})
}
// IssueForAPIServer issues TLS certificate for API servers.
func (k KubernetesCA) IssueForAPIServer(ctx context.Context, inf Infrastructure, n *Node, serviceSubnet, clusterDomain string) (crt, key string, err error) {
altNames := []string{
"localhost",
"kubernetes",
"kubernetes.default",
"kubernetes.default.svc",
"kubernetes.default.svc." + clusterDomain,
}
ip, _, err := net.ParseCIDR(serviceSubnet)
if err != nil {
return "", "", err
}
kubeSvcAddr := netutil.IPAdd(ip, 1)
return issueCertificate(inf, CAKubernetes, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"enforce_hostnames": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": "kubernetes",
"alt_names": strings.Join(altNames, ","),
"ip_sans": "127.0.0.1," + n.Address + "," + kubeSvcAddr.String(),
"exclude_cn_from_sans": "true",
})
}
// IssueForScheduler issues TLS certificate for kube-scheduler.
func (k KubernetesCA) IssueForScheduler(ctx context.Context, inf Infrastructure) (crt, key string, err error) {
return issueCertificate(inf, CAKubernetes, RoleKubeScheduler, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"organization": "system:kube-scheduler",
},
map[string]interface{}{
"common_name": "system:kube-scheduler",
"exclude_cn_from_sans": "true",
})
}
// IssueForControllerManager issues TLS certificate for kube-controller-manager.
func (k KubernetesCA) IssueForControllerManager(ctx context.Context, inf Infrastructure) (crt, key string, err error) {
return issueCertificate(inf, CAKubernetes, RoleKubeControllerManager, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"organization": "system:kube-controller-manager",
},
map[string]interface{}{
"common_name": "system:kube-controller-manager",
"exclude_cn_from_sans": "true",
})
}
// IssueForKubelet issues TLS certificate for kubelet.
func (k KubernetesCA) IssueForKubelet(ctx context.Context, inf Infrastructure, node *Node) (crt, key string, err error) {
nodename := node.Nodename()
altNames := "localhost"
if nodename != node.Address {
altNames = "localhost," + nodename
}
return issueCertificate(inf, CAKubernetes, RoleKubelet, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"organization": "system:nodes",
},
map[string]interface{}{
"common_name": "system:node:" + nodename,
"alt_names": altNames,
"ip_sans": "127.0.0.1," + node.Address,
"exclude_cn_from_sans": "true",
})
}
// IssueForProxy issues TLS certificate for kube-proxy.
func (k KubernetesCA) IssueForProxy(ctx context.Context, inf Infrastructure) (crt, key string, err error) {
return issueCertificate(inf, CAKubernetes, RoleKubeProxy, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"organization": "system:node-proxier",
},
map[string]interface{}{
"common_name": "system:kube-proxy",
"exclude_cn_from_sans": "true",
})
}
// IssueForServiceAccount issues TLS certificate to sign service account tokens.
func (k KubernetesCA) IssueForServiceAccount(ctx context.Context, inf Infrastructure) (crt, key string, err error) {
return issueCertificate(inf, CAKubernetes, RoleServiceAccount, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"allow_any_name": "true",
"client_flag": "false",
"server_flag": "false",
"key_usage": "DigitalSignature,CertSign",
"no_store": "true",
},
map[string]interface{}{
"common_name": "service-account",
"exclude_cn_from_sans": "true",
})
}
// AggregationCA is a certificate authority for kubernetes aggregation API server
type AggregationCA struct{}
// IssueClientCertificate issues TLS client certificate for API server
func (a AggregationCA) IssueClientCertificate(ctx context.Context, inf Infrastructure) (cert, key string, err error) {
return issueCertificate(inf, CAKubernetesAggregation, RoleSystem, false,
map[string]interface{}{
"ttl": "87600h",
"max_ttl": "87600h",
"server_flag": "false",
"allow_any_name": "true",
},
map[string]interface{}{
"common_name": CNAPIServer,
"exclude_cn_from_sans": "true",
})
}
// WebhookCA is a certificate authority for kubernetes admission webhooks
type WebhookCA struct{}
// IssueCertificate issues TLS server certificate
// `namespace` and `name` specifies the namespace/name of a webhook Service.
func (WebhookCA) IssueCertificate(ctx context.Context, inf Infrastructure, namespace, name string) (cert, key string, err error) {
altNames := []string{name, name + "." + namespace, name + "." + namespace + ".svc"}
return issueCertificate(inf, CAWebhook, RoleSystem, false,
map[string]interface{}{
"ttl": "175200h",
"max_ttl": "175200h",
"enforce_hostnames": "false",
"allow_any_name": "true",
"server_flag": "true",
"client_flag": "false",
},
map[string]interface{}{
"common_name": namespace + "/" + name,
"alt_names": strings.Join(altNames, ","),
"exclude_cn_from_sans": "true",
})
}
func issueCertificate(inf Infrastructure, ca, role string, onetime bool, roleOpts, certOpts map[string]interface{}) (crt, key string, err error) {
pkiKey := VaultPKIKey(ca)
client, err := inf.Vault()
if err != nil {
return "", "", err
}
err = addRole(client, pkiKey, role, roleOpts)
if err != nil {
return "", "", err
}
secret, err := client.Logical().Write(path.Join(pkiKey, "issue", role), certOpts)
if err != nil {
return "", "", err
}
crt = secret.Data["certificate"].(string)
if onetime {
if err := deleteRole(client, pkiKey, role); err != nil {
return "", "", err
}
}
key = secret.Data["private_key"].(string)
return crt, key, err
}