-
Notifications
You must be signed in to change notification settings - Fork 0
/
methods.go
315 lines (287 loc) · 10.3 KB
/
methods.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
/*
Copyright 2017 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 (
"time"
"golang.org/x/crypto/ssh"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/lib/events"
"github.com/gravitational/teleport/lib/services"
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/trace"
"github.com/tstranex/u2f"
)
// AuthenticateUserRequest is a request to authenticate interactive user
type AuthenticateUserRequest struct {
// Username is a user name
Username string `json:"username"`
// Pass is a password used in local authentication schemes
Pass *PassCreds `json:"pass,omitempty"`
// U2F is a sign response crdedentials used to authenticate via U2F
U2F *U2FSignResponseCreds `json:"u2f,omitempty"`
// OTP is a password and second factor, used in two factor authentication
OTP *OTPCreds `json:"otp,omitempty"`
// Session is a web session credential used to authenticate web sessions
Session *SessionCreds `json:"session,omitempty"`
}
// CheckAndSetDefaults checks and sets defaults
func (a *AuthenticateUserRequest) CheckAndSetDefaults() error {
if a.Username == "" {
return trace.BadParameter("missing parameter 'username'")
}
if a.Pass == nil && a.U2F == nil && a.OTP == nil && a.Session == nil {
return trace.BadParameter("at least one authentication method is required")
}
return nil
}
// PassCreds is a password credential
type PassCreds struct {
// Password is a user password
Password []byte `json:"password"`
}
// U2FSignResponseCreds is a U2F signature sent by U2F device
type U2FSignResponseCreds struct {
// SignResponse is a U2F sign resposne
SignResponse u2f.SignResponse `json:"sign_response"`
}
// OTPCreds is a two factor authencication credentials
type OTPCreds struct {
// Password is a user password
Password []byte `json:"password"`
// Token is a user second factor token
Token string `json:"token"`
}
// SessionCreds is a web session credentials
type SessionCreds struct {
// ID is a web session id
ID string `json:"id"`
}
// AuthenticateUser authenticates user based on the request type
func (s *AuthServer) AuthenticateUser(req AuthenticateUserRequest) error {
err := s.authenticateUser(req)
if err != nil {
s.EmitAuditEvent(events.UserLoginEvent, events.EventFields{
events.EventUser: req.Username,
events.LoginMethod: events.LoginMethodLocal,
events.AuthAttemptSuccess: false,
events.AuthAttemptErr: err.Error(),
})
} else {
s.EmitAuditEvent(events.UserLoginEvent, events.EventFields{
events.EventUser: req.Username,
events.LoginMethod: events.LoginMethodLocal,
events.AuthAttemptSuccess: true,
})
}
return err
}
func (s *AuthServer) authenticateUser(req AuthenticateUserRequest) error {
if err := req.CheckAndSetDefaults(); err != nil {
return trace.Wrap(err)
}
authPreference, err := s.GetAuthPreference()
if err != nil {
return trace.Wrap(err)
}
switch {
case req.Pass != nil:
// authenticate using password only, make sure
// that auth preference does not require second factor
// otherwise users can bypass the second factor
if authPreference.GetSecondFactor() != teleport.OFF {
return trace.AccessDenied("missing second factor")
}
err := s.WithUserLock(req.Username, func() error {
return s.CheckPasswordWOToken(req.Username, req.Pass.Password)
})
if err != nil {
// provide obscure message on purpose, while logging the real
// error server side
log.Debugf("Failed to authenticate: %v.", err)
return trace.AccessDenied(err.Error())
}
return nil
case req.U2F != nil:
// authenticate using U2F - code checks challenge response
// signed by U2F device of the user
err := s.WithUserLock(req.Username, func() error {
return s.CheckU2FSignResponse(req.Username, &req.U2F.SignResponse)
})
if err != nil {
// provide obscure message on purpose, while logging the real
// error server side
log.Debugf("Failed to authenticate: %v.", err)
return trace.AccessDenied("invalid U2F response")
}
return nil
case req.OTP != nil:
err := s.WithUserLock(req.Username, func() error {
return s.CheckPassword(req.Username, req.OTP.Password, req.OTP.Token)
})
if err != nil {
// provide obscure message on purpose, while logging the real
// error server side
log.Debugf("Failed to authenticate: %v.", err)
return trace.AccessDenied("invalid username, password or second factor")
}
return nil
default:
return trace.AccessDenied("unsupported authentication method")
}
}
// AuthenticateWebUser authenticates web user, creates and returns web session
// in case if authentication is successful. In case if existing session id
// is used to authenticate, returns session associated with the existing session id
// instead of creating the new one
func (s *AuthServer) AuthenticateWebUser(req AuthenticateUserRequest) (services.WebSession, error) {
if req.Session != nil {
session, err := s.GetWebSession(req.Username, req.Session.ID)
if err != nil {
return nil, trace.AccessDenied("session is invalid or has expired")
}
return session, nil
}
if err := s.AuthenticateUser(req); err != nil {
return nil, trace.Wrap(err)
}
sess, err := s.NewWebSession(req.Username)
if err != nil {
return nil, trace.Wrap(err)
}
if err := s.UpsertWebSession(req.Username, sess); err != nil {
return nil, trace.Wrap(err)
}
sess, err = services.GetWebSessionMarshaler().GenerateWebSession(sess)
if err != nil {
return nil, trace.Wrap(err)
}
return sess, nil
}
// AuthenticateSSHRequest is a request to authenticate SSH client user via CLI
type AuthenticateSSHRequest struct {
// AuthenticateUserRequest is a request with credentials
AuthenticateUserRequest
// PublicKey is a public key in ssh authorized_keys format
PublicKey []byte `json:"public_key"`
// TTL is a requested TTL for certificates to be issues
TTL time.Duration `json:"ttl"`
// CompatibilityMode sets certificate compatibility mode with old SSH clients
CompatibilityMode string `json:"compatibility_mode"`
}
// CheckAndSetDefaults checks and sets default certificate values
func (a *AuthenticateSSHRequest) CheckAndSetDefaults() error {
if err := a.AuthenticateUserRequest.CheckAndSetDefaults(); err != nil {
return trace.Wrap(err)
}
if len(a.PublicKey) == 0 {
return trace.BadParameter("missing parameter 'public_key'")
}
certificateFormat, err := utils.CheckCertificateFormatFlag(a.CompatibilityMode)
if err != nil {
return trace.Wrap(err)
}
a.CompatibilityMode = certificateFormat
return nil
}
// SSHLoginResponse is a response returned by web proxy, it preserves backwards compatibility
// on the wire, which is the primary reason for non-matching json tags
type SSHLoginResponse struct {
// User contains a logged in user informationn
Username string `json:"username"`
// Cert is a PEM encoded signed certificate
Cert []byte `json:"cert"`
// TLSCertPEM is a PEM encoded TLS certificate signed by TLS certificate authority
TLSCert []byte `json:"tls_cert"`
// HostSigners is a list of signing host public keys trusted by proxy
HostSigners []TrustedCerts `json:"host_signers"`
}
// TrustedCerts contains host certificates, it preserves backwards compatibility
// on the wire, which is the primary reason for non-matching json tags
type TrustedCerts struct {
// ClusterName identifies teleport cluster name this authority serves,
// for host authorities that means base hostname of all servers,
// for user authorities that means organization name
ClusterName string `json:"domain_name"`
// HostCertificates is a list of SSH public keys that can be used to check
// host certificate signatures
HostCertificates [][]byte `json:"checking_keys"`
// TLSCertificates is a list of TLS certificates of the certificate authoritiy
// of the authentication server
TLSCertificates [][]byte `json:"tls_certs"`
}
// SSHCertPublicKeys returns a list of trusted host SSH certificate authority public keys
func (c *TrustedCerts) SSHCertPublicKeys() ([]ssh.PublicKey, error) {
out := make([]ssh.PublicKey, 0, len(c.HostCertificates))
for _, keyBytes := range c.HostCertificates {
publicKey, _, _, _, err := ssh.ParseAuthorizedKey(keyBytes)
if err != nil {
return nil, trace.Wrap(err)
}
out = append(out, publicKey)
}
return out, nil
}
// AuthoritiesToTrustedCerts serializes authorities to TrustedCerts data structure
func AuthoritiesToTrustedCerts(authorities []services.CertAuthority) []TrustedCerts {
out := make([]TrustedCerts, len(authorities))
for i, ca := range authorities {
out[i] = TrustedCerts{
ClusterName: ca.GetClusterName(),
HostCertificates: ca.GetCheckingKeys(),
TLSCertificates: services.TLSCerts(ca),
}
}
return out
}
// AuthenticateSSHUser authenticates web user, creates and returns web session
// in case if authentication is successful
func (s *AuthServer) AuthenticateSSHUser(req AuthenticateSSHRequest) (*SSHLoginResponse, error) {
if err := s.AuthenticateUser(req.AuthenticateUserRequest); err != nil {
return nil, trace.Wrap(err)
}
user, err := s.GetUser(req.Username)
if err != nil {
return nil, trace.Wrap(err)
}
roles, err := services.FetchRoles(user.GetRoles(), s, user.GetTraits())
if err != nil {
return nil, trace.Wrap(err)
}
// Return the host CA for this cluster only.
authority, err := s.GetCertAuthority(services.CertAuthID{
Type: services.HostCA,
DomainName: s.clusterName.GetClusterName(),
}, false)
if err != nil {
return nil, trace.Wrap(err)
}
hostCertAuthorities := []services.CertAuthority{
authority,
}
certs, err := s.generateUserCert(certRequest{
user: user,
roles: roles,
ttl: req.TTL,
publicKey: req.PublicKey,
compatibility: req.CompatibilityMode,
})
if err != nil {
return nil, trace.Wrap(err)
}
return &SSHLoginResponse{
Username: req.Username,
Cert: certs.ssh,
TLSCert: certs.tls,
HostSigners: AuthoritiesToTrustedCerts(hostCertAuthorities),
}, nil
}