-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
init.go
481 lines (421 loc) · 14.7 KB
/
init.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
/*
Copyright 2015 Gravitational, Inc.
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 auth
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/backend"
"github.com/gravitational/teleport/lib/services"
"github.com/gravitational/teleport/lib/services/local"
"github.com/gravitational/teleport/lib/utils"
log "github.com/Sirupsen/logrus"
"github.com/gravitational/trace"
"golang.org/x/crypto/ssh"
)
// InitConfig is auth server init config
type InitConfig struct {
// Backend is auth backend to use
Backend backend.Backend
// Authority is key generator that we use
Authority Authority
// HostUUID is a UUID of this host
HostUUID string
// DomainName stores the FQDN of the signing CA (its certificate will have this
// name embedded). It is usually set to the GUID of the host the Auth service runs on
DomainName string
// Authorities is a list of pre-configured authorities to supply on first start
Authorities []services.CertAuthority
// AuthServiceName is a human-readable name of this CA. If several Auth services are running
// (managing multiple teleport clusters) this field is used to tell them apart in UIs
// It usually defaults to the hostname of the machine the Auth service runs on.
AuthServiceName string
// DataDir is the full path to the directory where keys, events and logs are kept
DataDir string
// ReverseTunnels is a list of reverse tunnels statically supplied
// in configuration, so auth server will init the tunnels on the first start
ReverseTunnels []services.ReverseTunnel
// OIDCConnectors is a list of trusted OpenID Connect identity providers
// in configuration, so auth server will init the tunnels on the first start
OIDCConnectors []services.OIDCConnector
// Trust is a service that manages users and credentials
Trust services.Trust
// Lock is a distributed or local lock service
Lock services.Lock
// Presence service is a discovery and hearbeat tracker
Presence services.Presence
// Provisioner is a service that keeps track of provisioning tokens
Provisioner services.Provisioner
// Trust is a service that manages users and credentials
Identity services.Identity
// StaticTokens are pre-defined host provisioning tokens supplied via config file for
// environments where paranoid security is not needed
StaticTokens []services.ProvisionToken
}
// Init instantiates and configures an instance of AuthServer
func Init(cfg InitConfig, seedConfig bool) (*AuthServer, *Identity, error) {
if cfg.DataDir == "" {
return nil, nil, trace.BadParameter("DataDir: data dir can not be empty")
}
if cfg.HostUUID == "" {
return nil, nil, trace.BadParameter("HostUUID: host UUID can not be empty")
}
lockService := local.NewLockService(cfg.Backend)
err := lockService.AcquireLock(cfg.DomainName, 60*time.Second)
if err != nil {
return nil, nil, err
}
defer lockService.ReleaseLock(cfg.DomainName)
// check that user CA and host CA are present and set the certs if needed
asrv := NewAuthServer(&cfg)
// we determine if it's the first start by checking if the CA's are set
firstStart, err := isFirstStart(asrv, cfg)
if err != nil {
return nil, nil, trace.Wrap(err)
}
// we skip certain configuration if 'seed_config' is set to true
// and this is NOT the first time teleport starts on this machine
skipConfig := seedConfig && !firstStart
// add trusted authorities from the configuration into the trust backend:
keepMap := make(map[string]int, 0)
if !skipConfig {
for _, ca := range cfg.Authorities {
if err := asrv.Trust.UpsertCertAuthority(ca, backend.Forever); err != nil {
return nil, nil, trace.Wrap(err)
}
keepMap[ca.DomainName] = 1
}
}
// delete trusted authorities from the trust back-end if they're not
// in the configuration:
if !seedConfig {
hostCAs, err := asrv.Trust.GetCertAuthorities(services.HostCA, false)
if err != nil {
return nil, nil, trace.Wrap(err)
}
userCAs, err := asrv.Trust.GetCertAuthorities(services.UserCA, false)
if err != nil {
return nil, nil, trace.Wrap(err)
}
for _, ca := range append(hostCAs, userCAs...) {
_, configured := keepMap[ca.DomainName]
if ca.DomainName != cfg.DomainName && !configured {
if err = asrv.Trust.DeleteCertAuthority(*ca.ID()); err != nil {
return nil, nil, trace.Wrap(err)
}
log.Infof("removed old trusted CA: '%s'", ca.DomainName)
}
}
}
// this block will generate user CA authority on first start if it's
// not currently present, it will also use optional passed user ca keypair
// that can be supplied in configuration
if _, err := asrv.GetCertAuthority(services.CertAuthID{DomainName: cfg.DomainName, Type: services.HostCA}, false); err != nil {
if !trace.IsNotFound(err) {
return nil, nil, trace.Wrap(err)
}
log.Infof("FIRST START: Generating host CA on first start")
priv, pub, err := asrv.GenerateKeyPair("")
if err != nil {
return nil, nil, trace.Wrap(err)
}
hostCA := services.CertAuthority{
DomainName: cfg.DomainName,
Type: services.HostCA,
SigningKeys: [][]byte{priv},
CheckingKeys: [][]byte{pub},
}
if err := asrv.Trust.UpsertCertAuthority(hostCA, backend.Forever); err != nil {
return nil, nil, trace.Wrap(err)
}
}
// this block will generate user CA authority on first start if it's
// not currently present, it will also use optional passed user ca keypair
// that can be supplied in configuration
if _, err := asrv.GetCertAuthority(services.CertAuthID{DomainName: cfg.DomainName, Type: services.UserCA}, false); err != nil {
if !trace.IsNotFound(err) {
return nil, nil, trace.Wrap(err)
}
log.Infof("FIRST START: Generating user CA on first start")
priv, pub, err := asrv.GenerateKeyPair("")
if err != nil {
return nil, nil, trace.Wrap(err)
}
userCA := services.CertAuthority{
DomainName: cfg.DomainName,
Type: services.UserCA,
SigningKeys: [][]byte{priv},
CheckingKeys: [][]byte{pub},
}
if err := asrv.Trust.UpsertCertAuthority(userCA, backend.Forever); err != nil {
return nil, nil, trace.Wrap(err)
}
}
// add reverse runnels from the configuration into the backend
keepMap = make(map[string]int, 0)
if !skipConfig {
log.Infof("Initializing reverse tunnels")
for _, tunnel := range cfg.ReverseTunnels {
if err := asrv.UpsertReverseTunnel(tunnel, 0); err != nil {
return nil, nil, trace.Wrap(err)
}
keepMap[tunnel.DomainName] = 1
}
}
// remove the reverse tunnels from the backend if they're not
// present in the configuration
if !seedConfig {
tunnels, err := asrv.GetReverseTunnels()
if err != nil {
return nil, nil, trace.Wrap(err)
}
for _, tunnel := range tunnels {
_, configured := keepMap[tunnel.DomainName]
if !configured {
if err = asrv.DeleteReverseTunnel(tunnel.DomainName); err != nil {
return nil, nil, trace.Wrap(err)
}
log.Infof("removed reverse tunnel: '%s'", tunnel.DomainName)
}
}
}
// add OIDC connectors to the back-end:
keepMap = make(map[string]int, 0)
if !skipConfig {
log.Infof("Initializing OIDC connectors")
for _, connector := range cfg.OIDCConnectors {
if err := asrv.UpsertOIDCConnector(connector, 0); err != nil {
return nil, nil, trace.Wrap(err)
}
log.Infof("created ODIC connector '%s'", connector.ID)
keepMap[connector.ID] = 1
}
}
// remove OIDC connectors from the backend if they're not
// present in the configuration
if !seedConfig {
connectors, _ := asrv.GetOIDCConnectors(false)
for _, connector := range connectors {
_, configured := keepMap[connector.ID]
if !configured {
if err = asrv.DeleteOIDCConnector(connector.ID); err != nil {
return nil, nil, trace.Wrap(err)
}
log.Infof("removed OIDC connector '%s'", connector.ID)
}
}
}
identity, err := initKeys(asrv, cfg.DataDir,
IdentityID{HostUUID: cfg.HostUUID, Role: teleport.RoleAdmin})
if err != nil {
return nil, nil, trace.Wrap(err)
}
return asrv, identity, nil
}
// isFirstStart returns 'true' if the auth server is starting for the 1st time
// on this server.
func isFirstStart(authServer *AuthServer, cfg InitConfig) (bool, error) {
// check if the CA exists?
_, err := authServer.GetCertAuthority(
services.CertAuthID{
DomainName: cfg.DomainName,
Type: services.HostCA,
}, false)
if err != nil {
if !trace.IsNotFound(err) {
return false, trace.Wrap(err)
}
// CA not found? --> first start!
return true, nil
}
return false, nil
}
// initKeys initializes this node's host certificate signed by host authority
func initKeys(a *AuthServer, dataDir string, id IdentityID) (*Identity, error) {
kp, cp := keysPath(dataDir, id)
keyExists, err := pathExists(kp)
if err != nil {
return nil, trace.Wrap(err)
}
certExists, err := pathExists(cp)
if err != nil {
return nil, trace.Wrap(err)
}
if !keyExists || !certExists {
privateKey, publicKey, err := a.GenerateKeyPair("")
if err != nil {
return nil, trace.Wrap(err)
}
cert, err := a.GenerateHostCert(publicKey, id.HostUUID, a.DomainName, teleport.Roles{id.Role}, 0)
if err != nil {
return nil, trace.Wrap(err)
}
if err := writeKeys(dataDir, id, privateKey, cert); err != nil {
return nil, trace.Wrap(err)
}
}
i, err := ReadIdentity(dataDir, id)
if err != nil {
return nil, trace.Wrap(err)
}
return i, nil
}
// writeKeys saves the key/cert pair for a given domain onto disk. This usually means the
// domain trusts us (signed our public key)
func writeKeys(dataDir string, id IdentityID, key []byte, cert []byte) error {
kp, cp := keysPath(dataDir, id)
log.Debugf("write key to %v, cert from %v", kp, cp)
if err := ioutil.WriteFile(kp, key, 0600); err != nil {
return err
}
if err := ioutil.WriteFile(cp, cert, 0600); err != nil {
return err
}
return nil
}
// Identity is a collection of certificates and signers that represent identity
type Identity struct {
ID IdentityID
KeyBytes []byte
CertBytes []byte
KeySigner ssh.Signer
Cert *ssh.Certificate
AuthorityDomain string
}
// IdentityID is a combination of role and host UUID
type IdentityID struct {
Role teleport.Role
HostUUID string
}
// Equals returns true if two identities are equal
func (id *IdentityID) Equals(other IdentityID) bool {
return id.Role == other.Role && id.HostUUID == other.HostUUID
}
// String returns debug friendly representation of this identity
func (id *IdentityID) String() string {
return fmt.Sprintf("Identity(hostuuid=%v, role=%v)", id.HostUUID, id.Role)
}
// ReadIdentityFromKeyPair reads identity from initialized keypair
func ReadIdentityFromKeyPair(keyBytes, certBytes []byte) (*Identity, error) {
if len(keyBytes) == 0 {
return nil, trace.BadParameter("PrivateKey: missing private key")
}
if len(certBytes) == 0 {
return nil, trace.BadParameter("Cert: missing parameter")
}
pubKey, _, _, _, err := ssh.ParseAuthorizedKey(certBytes)
if err != nil {
return nil, trace.BadParameter("failed to parse server certificate: %v", err)
}
cert, ok := pubKey.(*ssh.Certificate)
if !ok {
return nil, trace.BadParameter("expected ssh.Certificate, got %v", pubKey)
}
signer, err := ssh.ParsePrivateKey(keyBytes)
if err != nil {
return nil, trace.BadParameter("failed to parse private key: %v", err)
}
// this signer authenticates using certificate signed by the cert authority
// not only by the public key
certSigner, err := ssh.NewCertSigner(cert, signer)
if err != nil {
return nil, trace.BadParameter("unsupported private key: %v", err)
}
if len(cert.ValidPrincipals) != 1 {
return nil, trace.BadParameter("valid principals: need exactly 1 valid principal: host uuid")
}
if len(cert.Permissions.Extensions) == 0 {
return nil, trace.BadParameter("extensions: misssing needed extensions for host roles")
}
roleString := cert.Permissions.Extensions[utils.CertExtensionRole]
if roleString == "" {
return nil, trace.BadParameter("misssing cert extension %v", utils.CertExtensionRole)
}
roles, err := teleport.ParseRoles(roleString)
if err != nil {
return nil, trace.Wrap(err)
}
foundRoles := len(roles)
if foundRoles != 1 {
return nil, trace.Errorf("expected one role per certificate. found %d: '%s'",
foundRoles, roles.String())
}
role := roles[0]
authorityDomain := cert.Permissions.Extensions[utils.CertExtensionAuthority]
if authorityDomain == "" {
return nil, trace.BadParameter("misssing cert extension %v", utils.CertExtensionAuthority)
}
if cert.ValidPrincipals[0] == "" {
return nil, trace.BadParameter("valid principal can not be empty")
}
return &Identity{
ID: IdentityID{HostUUID: cert.ValidPrincipals[0], Role: role},
AuthorityDomain: authorityDomain,
KeyBytes: keyBytes,
CertBytes: certBytes,
KeySigner: certSigner,
Cert: cert,
}, nil
}
// ReadIdentity reads, parses and returns the given pub/pri key + cert from the
// key storage (dataDir).
func ReadIdentity(dataDir string, id IdentityID) (i *Identity, err error) {
kp, cp := keysPath(dataDir, id)
log.Debugf("host identity: [key: %v, cert: %v]", kp, cp)
keyBytes, err := utils.ReadPath(kp)
if err != nil {
return nil, trace.Wrap(err)
}
certBytes, err := utils.ReadPath(cp)
if err != nil {
return nil, trace.Wrap(err)
}
return ReadIdentityFromKeyPair(keyBytes, certBytes)
}
// WriteIdentity writes identity keypair to disk
func WriteIdentity(dataDir string, identity *Identity) error {
return trace.Wrap(
writeKeys(dataDir, identity.ID, identity.KeyBytes, identity.CertBytes))
}
// HaveHostKeys checks either the host keys are in place
func HaveHostKeys(dataDir string, id IdentityID) (bool, error) {
kp, cp := keysPath(dataDir, id)
exists, err := pathExists(kp)
if !exists || err != nil {
return exists, err
}
exists, err = pathExists(cp)
if !exists || err != nil {
return exists, err
}
return true, nil
}
// keysPath returns two full file paths: to the host.key and host.cert
func keysPath(dataDir string, id IdentityID) (key string, cert string) {
return filepath.Join(dataDir, fmt.Sprintf("%s.key", strings.ToLower(string(id.Role)))),
filepath.Join(dataDir, fmt.Sprintf("%s.cert", strings.ToLower(string(id.Role))))
}
func pathExists(path string) (bool, error) {
_, err := os.Stat(path)
if err != nil {
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
return true, nil
}