-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathkeyagent.go
703 lines (617 loc) · 22.5 KB
/
keyagent.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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
/*
* Teleport
* Copyright (C) 2023 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package client
import (
"context"
"crypto/x509"
"fmt"
"io"
"net"
"os"
"runtime"
"slices"
"strings"
"github.com/gravitational/trace"
"github.com/sirupsen/logrus"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/api/constants"
"github.com/gravitational/teleport/api/utils/prompt"
"github.com/gravitational/teleport/api/utils/sshutils"
"github.com/gravitational/teleport/lib/auth/authclient"
"github.com/gravitational/teleport/lib/tlsca"
)
// LocalKeyAgent holds Teleport certificates for a user connected to a cluster.
type LocalKeyAgent struct {
// log holds the structured logger.
log *logrus.Entry
// ExtendedAgent is the teleport agent
agent.ExtendedAgent
// clientStore is the local storage backend for the client.
clientStore *Store
// systemAgent is the system ssh agent
systemAgent agent.ExtendedAgent
// noHosts is a in-memory map used in tests to track which hosts a user has
// manually (via keyboard input) refused connecting to.
noHosts map[string]bool
// function which asks a user to trust host/key combination (during host auth)
hostPromptFunc func(host string, k ssh.PublicKey) error
// username is the Teleport username for who the keys will be loaded in the
// local agent.
username string
// proxyHost is the proxy for the cluster that his key agent holds keys for.
proxyHost string
// insecure allows to accept public host keys.
insecure bool
// siteName specifies the site to execute operation.
siteName string
// loadAllCAs allows the agent to load all host CAs when checking a host
// signature.
loadAllCAs bool
}
func agentIsPresent() bool {
return os.Getenv(teleport.SSHAuthSock) != ""
}
// agentSupportsSSHCertificates checks if the running agent supports SSH certificates.
// This detection implementation is as described in RFD 18 and works by simply checking for
// presence of gpg-agent which is a common agent known to not support SSH certificates.
func agentSupportsSSHCertificates() bool {
agent := os.Getenv(teleport.SSHAuthSock)
return !strings.Contains(agent, "gpg-agent")
}
func shouldAddKeysToAgent(addKeysToAgent string) bool {
return (addKeysToAgent == AddKeysToAgentAuto && agentSupportsSSHCertificates()) || addKeysToAgent == AddKeysToAgentOnly || addKeysToAgent == AddKeysToAgentYes
}
// LocalAgentConfig contains parameters for creating the local keys agent.
type LocalAgentConfig struct {
ClientStore *Store
Agent agent.ExtendedAgent
ProxyHost string
Username string
KeysOption string
Insecure bool
Site string
LoadAllCAs bool
}
// NewLocalAgent reads all available credentials from the provided LocalKeyStore
// and loads them into the local and system agent
func NewLocalAgent(conf LocalAgentConfig) (a *LocalKeyAgent, err error) {
if conf.Agent == nil {
keyring, ok := agent.NewKeyring().(agent.ExtendedAgent)
if !ok {
return nil, trace.Errorf("unexpected keyring type: %T, expected agent.ExtendedKeyring", keyring)
}
conf.Agent = keyring
}
a = &LocalKeyAgent{
log: logrus.WithFields(logrus.Fields{
teleport.ComponentKey: teleport.ComponentKeyAgent,
}),
ExtendedAgent: conf.Agent,
clientStore: conf.ClientStore,
noHosts: make(map[string]bool),
username: conf.Username,
proxyHost: conf.ProxyHost,
insecure: conf.Insecure,
siteName: conf.Site,
loadAllCAs: conf.LoadAllCAs,
}
if shouldAddKeysToAgent(conf.KeysOption) {
a.systemAgent = connectToSSHAgent()
} else {
log.Debug("Skipping connection to the local ssh-agent.")
if !agentSupportsSSHCertificates() && agentIsPresent() {
log.Warn(`Certificate was not loaded into agent because the agent at SSH_AUTH_SOCK does not appear
to support SSH certificates. To force load the certificate into the running agent, use
the --add-keys-to-agent=yes flag.`)
}
}
return a, nil
}
// UpdateProxyHost changes the proxy host that the local agent operates on.
func (a *LocalKeyAgent) UpdateProxyHost(proxyHost string) {
a.proxyHost = proxyHost
}
// UpdateUsername changes username that the local agent operates on.
func (a *LocalKeyAgent) UpdateUsername(username string) {
a.username = username
}
// UpdateCluster changes the cluster that the local agent operates on.
func (a *LocalKeyAgent) UpdateCluster(cluster string) {
a.siteName = cluster
}
// UpdateLoadAllCAs changes whether or not the local agent should load all
// host CAs.
func (a *LocalKeyAgent) UpdateLoadAllCAs(loadAllCAs bool) {
a.loadAllCAs = loadAllCAs
}
// LoadKeyRingForCluster fetches a cluster-specific SSH key and loads it into the
// SSH agent.
func (a *LocalKeyAgent) LoadKeyRingForCluster(clusterName string) error {
keyRing, err := a.GetKeyRing(clusterName, WithSSHCerts{})
if err != nil {
return trace.Wrap(err)
}
return a.LoadKeyRing(*keyRing)
}
// LoadKeyRing adds a key ring into the local agent as well as the system agent.
// Some agent keys are only supported by the local agent, such as those
// for a YubiKeyPrivateKey. Any failures to add the key will be aggregated
// into the returned error to be handled by the caller if necessary.
func (a *LocalKeyAgent) LoadKeyRing(keyRing KeyRing) error {
// convert key into a format understood by x/crypto/ssh/agent
agentKey, err := keyRing.AsAgentKey()
if err != nil {
return trace.Wrap(err)
}
// remove any keys that the user may already have loaded
if err = a.UnloadKeyRing(keyRing.KeyRingIndex); err != nil {
return trace.Wrap(err)
}
a.log.Infof("Loading SSH key for user %q and cluster %q.", a.username, keyRing.ClusterName)
agents := []agent.ExtendedAgent{a.ExtendedAgent}
if a.systemAgent != nil {
if canAddToSystemAgent(agentKey) {
agents = append(agents, a.systemAgent)
} else {
a.log.Infof("Skipping adding key to SSH system agent for non-standard key type %T", agentKey.PrivateKey)
}
}
// On all OS'es, load the certificate with the private key embedded.
agentKeys := []agent.AddedKey{agentKey}
if runtime.GOOS != constants.WindowsOS {
// On Unix, also load a lone private key.
//
// (2016-08-01) have a bug in how they use certificates that have been lo
// This is done because OpenSSH clients older than OpenSSH 7.3/7.3p1aded
// in an agent. Specifically when you add a certificate to an agent, you can't
// just embed the private key within the certificate, you have to add the
// certificate and private key to the agent separately. Teleport works around
// this behavior to ensure OpenSSH interoperability.
//
// For more details see the following: https://bugzilla.mindrot.org/show_bug.cgi?id=2550
// WARNING: callers expect the returned slice to be __exactly as it is__
agentKey.Certificate = nil
agentKeys = append(agentKeys, agentKey)
}
// iterate over all teleport and system agent and load key
var errs []error
for _, agent := range agents {
for _, agentKey := range agentKeys {
if err = agent.Add(agentKey); err != nil {
errs = append(errs, trace.Wrap(err))
}
}
}
return trace.Wrap(trace.NewAggregate(errs...), "failed to add one or more keys to the agent.")
}
// UnloadKeyRing will unload key rings matching the given KeyRingIndex from the
// teleport ssh agent and the system agent.
func (a *LocalKeyAgent) UnloadKeyRing(keyRing KeyRingIndex) error {
agents := []agent.Agent{a.ExtendedAgent}
if a.systemAgent != nil {
agents = append(agents, a.systemAgent)
}
// iterate over all agents we have and unload keys matching the given key
for _, agent := range agents {
// get a list of all keys in the agent
keyList, err := agent.List()
if err != nil {
a.log.Warnf("Unable to communicate with agent and list keys: %v", err)
}
// remove any teleport keys we currently have loaded in the agent for this user and proxy
for _, agentKey := range keyList {
if agentKeyIdx, ok := parseTeleportAgentKeyComment(agentKey.Comment); ok && agentKeyIdx.Match(keyRing) {
if err = agent.Remove(agentKey); err != nil {
a.log.Warnf("Unable to communicate with agent and remove key: %v", err)
}
}
}
}
return nil
}
// UnloadKeys will unload all Teleport keys from the teleport agent as well as
// the system agent.
func (a *LocalKeyAgent) UnloadKeys() error {
agents := []agent.ExtendedAgent{a.ExtendedAgent}
if a.systemAgent != nil {
agents = append(agents, a.systemAgent)
}
// iterate over all agents we have and unload keys
for _, agent := range agents {
// get a list of all keys in the agent
keyList, err := agent.List()
if err != nil {
a.log.Warnf("Unable to communicate with agent and list keys: %v", err)
}
// remove any teleport keys we currently have loaded in the agent
for _, key := range keyList {
if isTeleportAgentKey(key) {
if err = agent.Remove(key); err != nil {
a.log.Warnf("Unable to communicate with agent and remove key: %v", err)
}
}
}
}
return nil
}
// GetKeyRing returns the key ring for the given cluster of the proxy from the
// backing keystore.
func (a *LocalKeyAgent) GetKeyRing(clusterName string, opts ...CertOption) (*KeyRing, error) {
idx := KeyRingIndex{a.proxyHost, a.username, clusterName}
keyRing, err := a.clientStore.GetKeyRing(idx, opts...)
if err != nil {
return nil, trace.Wrap(err)
}
return keyRing, nil
}
// GetCoreKeyRing returns the key ring without any cluster-dependent certificates,
// i.e. including only the private key and the Teleport TLS certificate.
func (a *LocalKeyAgent) GetCoreKeyRing() (*KeyRing, error) {
return a.GetKeyRing("")
}
// SaveTrustedCerts saves trusted TLS certificates and host keys of certificate authorities.
// SaveTrustedCerts adds the given trusted CA TLS certificates and SSH host keys to the store.
// Existing TLS certificates for the given trusted certs will be overwritten, while host keys
// will be appended to existing entries.
func (a *LocalKeyAgent) SaveTrustedCerts(certAuthorities []authclient.TrustedCerts) error {
return a.clientStore.SaveTrustedCerts(a.proxyHost, certAuthorities)
}
// GetTrustedCertsPEM returns trusted TLS certificates of certificate authorities PEM
// blocks.
func (a *LocalKeyAgent) GetTrustedCertsPEM() ([][]byte, error) {
return a.clientStore.GetTrustedCertsPEM(a.proxyHost)
}
// UserRefusedHosts returns 'true' if a user refuses connecting to remote hosts
// when prompted during host authorization
func (a *LocalKeyAgent) UserRefusedHosts() bool {
return len(a.noHosts) > 0
}
// HostKeyCallback checks if the given host key was signed by a Teleport
// certificate authority (CA) or a host certificate the user has seen before.
func (a *LocalKeyAgent) HostKeyCallback(addr string, remote net.Addr, hostKey ssh.PublicKey) error {
keyRing, err := a.GetCoreKeyRing()
if err != nil {
return trace.Wrap(err)
}
rootCluster, err := keyRing.RootClusterName()
if err != nil {
return trace.Wrap(err)
}
clusters := []string{rootCluster}
if a.loadAllCAs {
clusters, err = a.GetClusterNames()
if err != nil {
return trace.Wrap(err)
}
} else if rootCluster != a.siteName {
// In case of establishing connection to leaf cluster the client validate ssh cert against root
// cluster proxy cert and leaf cluster cert.
clusters = append(clusters, a.siteName)
}
certChecker := sshutils.CertChecker{
CertChecker: ssh.CertChecker{
IsHostAuthority: a.checkHostCertificateForClusters(clusters...),
HostKeyFallback: a.checkHostKey,
},
FIPS: isFIPS(),
}
a.log.Debugf("Checking key: %s.", ssh.MarshalAuthorizedKey(hostKey))
err = certChecker.CheckHostKey(addr, remote, hostKey)
if err != nil {
a.log.Debugf("Host validation failed: %v.", err)
return trace.Wrap(err)
}
a.log.Debugf("Validated host %v.", addr)
return nil
}
// checkHostCertificateForClusters validates a host certificate and check if remote key matches the know
// trusted cluster key based on ~/.tsh/known_hosts. If server key is not known, the users is prompted to accept or
// reject the server key.
func (a *LocalKeyAgent) checkHostCertificateForClusters(clusters ...string) func(key ssh.PublicKey, addr string) bool {
return func(key ssh.PublicKey, addr string) bool {
// Check the local cache (where all Teleport CAs are placed upon login) to
// see if any of them match.
var keys []ssh.PublicKey
trustedCerts, err := a.clientStore.GetTrustedCerts(a.proxyHost)
if err != nil {
a.log.Errorf("Failed to get trusted certs: %v.", err)
return false
}
// In case of a know host entry added by insecure flow (checkHostKey function)
// the parsed know_hosts entry (trustedCerts.ClusterName) contains node address.
clusters = append(clusters, addr)
for _, cert := range trustedCerts {
if !a.loadAllCAs && !slices.Contains(clusters, cert.ClusterName) {
continue
}
key, err := sshutils.ParseAuthorizedKeys(cert.AuthorizedKeys)
if err != nil {
a.log.Errorf("Failed to parse authorized keys: %v.", err)
return false
}
keys = append(keys, key...)
}
for i := range keys {
if sshutils.KeysEqual(key, keys[i]) {
return true
}
}
// If this certificate was not seen before, prompt the user essentially
// treating it like a key.
err = a.checkHostKey(addr, nil, key)
return err == nil
}
}
// checkHostKey validates a host key. First checks the
// ~/.tsh/known_hosts cache and if not found, prompts the user to accept
// or reject.
func (a *LocalKeyAgent) checkHostKey(addr string, remote net.Addr, key ssh.PublicKey) error {
var err error
// Unless --insecure flag was given, prohibit public keys or host certs
// not signed by Teleport.
if !a.insecure {
a.log.Debugf("Host %s presented a public key not signed by Teleport. Rejecting due to insecure mode being OFF.", addr)
return trace.BadParameter("host %s presented a public key not signed by Teleport", addr)
}
a.log.Warnf("Host %s presented a public key not signed by Teleport. Proceeding due to insecure mode being ON.", addr)
// Check if this exact host is in the local cache.
keys, err := a.clientStore.GetTrustedHostKeys(addr)
if err != nil {
a.log.WithError(err).Debugf("Failed to retrieve client's trusted host keys.")
} else {
for _, trustedHostKey := range keys {
if sshutils.KeysEqual(key, trustedHostKey) {
a.log.Debugf("Verified host %s.", addr)
return nil
}
}
}
// If this key was not seen before, prompt the user with a fingerprint.
if a.hostPromptFunc != nil {
err = a.hostPromptFunc(addr, key)
} else {
err = a.defaultHostPromptFunc(addr, key, os.Stdout, os.Stdin)
}
if err != nil {
a.noHosts[addr] = true
return trace.Wrap(err)
}
// If the user trusts the key, store the key in the client trusted certs store.
err = a.clientStore.AddTrustedHostKeys(a.proxyHost, addr, key)
if err != nil {
a.log.Warnf("Failed to save the host key: %v.", err)
return trace.Wrap(err)
}
return nil
}
// defaultHostPromptFunc is the default host key/certificates prompt.
func (a *LocalKeyAgent) defaultHostPromptFunc(host string, key ssh.PublicKey, writer io.Writer, reader io.Reader) error {
var err error
ok := false
if !a.noHosts[host] {
cr := prompt.NewContextReader(reader)
defer cr.Close()
ok, err = prompt.Confirmation(context.Background(), writer, cr,
fmt.Sprintf("The authenticity of host '%s' can't be established. Its public key is:\n%s\nAre you sure you want to continue?",
host,
ssh.MarshalAuthorizedKey(key),
),
)
if err != nil {
return trace.Wrap(err)
}
}
if !ok {
return trace.BadParameter("not trusted")
}
return nil
}
// AddKeyRing activates a new signed session key by adding it into the keystore and also
// by loading it into the SSH agent.
func (a *LocalKeyAgent) AddKeyRing(keyRing *KeyRing) error {
if err := a.addKeyRing(keyRing); err != nil {
return trace.Wrap(err)
}
// Load key into the teleport agent and system agent.
if err := a.LoadKeyRing(*keyRing); err != nil {
return trace.Wrap(err)
}
return nil
}
// AddDatabaseKeyRing activates a new signed database key by adding it into the keystore.
// key must contain at least one db cert. ssh cert is not required.
func (a *LocalKeyAgent) AddDatabaseKeyRing(keyRing *KeyRing) error {
if len(keyRing.DBTLSCredentials) == 0 {
return trace.BadParameter("key ring must contain at least one Database access certificate")
}
return a.addKeyRing(keyRing)
}
// AddKubeKeyRing activates a new signed Kubernetes key by adding it into the keystore.
// key must contain at least one Kubernetes cert. ssh cert is not required.
func (a *LocalKeyAgent) AddKubeKeyRing(keyRing *KeyRing) error {
if len(keyRing.KubeTLSCredentials) == 0 {
return trace.BadParameter("key ring must contain at least one Kubernetes access certificate")
}
return a.addKeyRing(keyRing)
}
// AddAppKeyRing activates a new signed app key by adding it into the keystore.
// key must contain at least one app credential. ssh cert is not required.
func (a *LocalKeyAgent) AddAppKeyRing(keyRing *KeyRing) error {
if len(keyRing.AppTLSCredentials) == 0 {
return trace.BadParameter("key ring must contain at least one App access certificate")
}
return a.addKeyRing(keyRing)
}
// addKeyRing activates a new signed session key ring by adding it into the keystore.
func (a *LocalKeyAgent) addKeyRing(keyRing *KeyRing) error {
if keyRing == nil {
return trace.BadParameter("key ring is nil")
}
if keyRing.ProxyHost == "" {
keyRing.ProxyHost = a.proxyHost
}
if keyRing.Username == "" {
keyRing.Username = a.username
}
// In order to prevent unrelated key data to be left over after the new
// key is added, delete any already stored key with the same index if their
// RSA private keys do not match.
storedKeyRing, err := a.clientStore.GetKeyRing(keyRing.KeyRingIndex)
if err != nil {
if !trace.IsNotFound(err) {
return trace.Wrap(err)
}
} else {
if !keyRing.EqualPrivateKey(storedKeyRing) {
a.log.Debugf("Deleting obsolete stored keyring with index %+v.", storedKeyRing.KeyRingIndex)
if err := a.clientStore.DeleteKeyRing(storedKeyRing.KeyRingIndex); err != nil {
return trace.Wrap(err)
}
}
}
// Save the new key to the keystore (usually into ~/.tsh).
if err := a.clientStore.AddKeyRing(keyRing); err != nil {
return trace.Wrap(err)
}
return nil
}
// DeleteKey removes the key with all its certs from the key store
// and unloads the key from the agent.
func (a *LocalKeyAgent) DeleteKey() error {
// remove key from key store
err := a.clientStore.DeleteKeyRing(KeyRingIndex{ProxyHost: a.proxyHost, Username: a.username})
if err != nil {
return trace.Wrap(err)
}
// remove any keys that are loaded for this user from the teleport and
// system agents
err = a.UnloadKeyRing(KeyRingIndex{ProxyHost: a.proxyHost, Username: a.username})
if err != nil {
return trace.Wrap(err)
}
return nil
}
// DeleteUserCerts deletes only the specified certs of the user's key,
// keeping the private key intact.
func (a *LocalKeyAgent) DeleteUserCerts(clusterName string, opts ...CertOption) error {
err := a.clientStore.DeleteUserCerts(KeyRingIndex{a.proxyHost, a.username, clusterName}, opts...)
return trace.Wrap(err)
}
// DeleteKeys removes all keys from the keystore as well as unloads keys
// from the agent.
func (a *LocalKeyAgent) DeleteKeys() error {
// Remove keys from the filesystem.
err := a.clientStore.DeleteKeys()
if err != nil {
return trace.Wrap(err)
}
// Remove all keys from the Teleport and system agents.
err = a.UnloadKeys()
if err != nil {
return trace.Wrap(err)
}
return nil
}
// Signers returns a set of ssh.Signers using all certificates
// for the current proxy and user.
func (a *LocalKeyAgent) Signers() ([]ssh.Signer, error) {
var signers []ssh.Signer
// If we find a valid key ring, load all valid ssh certificates as signers.
if k, err := a.GetCoreKeyRing(); err == nil {
certs, err := a.clientStore.GetSSHCertificates(a.proxyHost, a.username)
if err != nil {
return nil, trace.Wrap(err)
}
for _, cert := range certs {
if err := k.checkCert(cert); err != nil {
return nil, trace.Wrap(err)
}
signer, err := sshutils.SSHSigner(cert, k.SSHPrivateKey.Signer)
if err != nil {
return nil, trace.Wrap(err)
}
signers = append(signers, signer)
}
}
// Load all agent certs, including the ones from a local SSH agent.
agentSigners, err := a.ExtendedAgent.Signers()
if err != nil {
return nil, trace.Wrap(err)
}
if a.systemAgent != nil {
sshAgentSigners, err := a.systemAgent.Signers()
if err != nil {
return nil, trace.Wrap(err)
}
agentSigners = append(signers, sshAgentSigners...)
}
// Filter out non-certificates (like regular public SSH keys stored in the SSH agent).
for _, s := range agentSigners {
if _, ok := s.PublicKey().(*ssh.Certificate); ok {
signers = append(signers, s)
} else if k, ok := s.PublicKey().(*agent.Key); ok && sshutils.IsSSHCertType(k.Type()) {
signers = append(signers, s)
}
}
return signers, nil
}
// signersForCluster returns a set of ssh.Signers using certificates for a specific cluster.
func (a *LocalKeyAgent) signersForCluster(clusterName string) ([]ssh.Signer, error) {
k, err := a.GetKeyRing(clusterName, WithSSHCerts{})
if err != nil {
return nil, trace.Wrap(err)
}
signer, err := k.SSHSigner()
if err != nil {
return nil, trace.Wrap(err)
}
return []ssh.Signer{signer}, nil
}
// ClientCertPool returns x509.CertPool containing trusted CA.
func (a *LocalKeyAgent) ClientCertPool(cluster string) (*x509.CertPool, error) {
pool := x509.NewCertPool()
keyRing, err := a.GetKeyRing(cluster)
if err != nil {
return nil, trace.Wrap(err)
}
for _, caPEM := range keyRing.TLSCAs() {
if !pool.AppendCertsFromPEM(caPEM) {
return nil, trace.BadParameter("failed to parse TLS CA certificate")
}
}
return pool, nil
}
// GetClusterNames gets the names of the Teleport clusters this
// key agent knows about.
func (a *LocalKeyAgent) GetClusterNames() ([]string, error) {
certs, err := a.GetTrustedCertsPEM()
if err != nil {
return nil, trace.Wrap(err)
}
var clusters []string
for _, cert := range certs {
cert, err := tlsca.ParseCertificatePEM(cert)
if err != nil {
return nil, trace.Wrap(err)
}
clusters = append(clusters, cert.Subject.CommonName)
}
return clusters, nil
}