-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathhandler.go
398 lines (338 loc) · 11.5 KB
/
handler.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
/*
Copyright 2020 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 app connections to applications over a reverse tunnel and forwards
// HTTP requests to them.
package app
import (
"context"
"crypto/tls"
"fmt"
"net"
"net/http"
"net/url"
"github.com/gravitational/teleport"
"github.com/gravitational/teleport/api/types"
"github.com/gravitational/teleport/lib/auth"
"github.com/gravitational/teleport/lib/reversetunnel"
"github.com/gravitational/teleport/lib/tlsca"
"github.com/gravitational/teleport/lib/utils"
oxyutils "github.com/gravitational/oxy/utils"
"github.com/gravitational/trace"
"github.com/jonboulle/clockwork"
"github.com/julienschmidt/httprouter"
"github.com/sirupsen/logrus"
)
// HandlerConfig is the configuration for an application handler.
type HandlerConfig struct {
// Clock is used to control time in tests.
Clock clockwork.Clock
// AuthClient is a direct client to auth.
AuthClient auth.ClientI
// AccessPoint is caching client to auth.
AccessPoint auth.ProxyAccessPoint
// ProxyClient holds connections to leaf clusters.
ProxyClient reversetunnel.Tunnel
// CipherSuites is the list of TLS cipher suites that have been configured
// for this process.
CipherSuites []uint16
// WebPublicAddr
WebPublicAddr string
}
// CheckAndSetDefaults validates configuration.
func (c *HandlerConfig) CheckAndSetDefaults() error {
if c.Clock == nil {
c.Clock = clockwork.NewRealClock()
}
if c.AuthClient == nil {
return trace.BadParameter("auth client missing")
}
if c.AccessPoint == nil {
return trace.BadParameter("access point missing")
}
if len(c.CipherSuites) == 0 {
return trace.BadParameter("ciphersuites missing")
}
return nil
}
// Handler is an application handler.
type Handler struct {
c *HandlerConfig
closeContext context.Context
router *httprouter.Router
cache *sessionCache
clusterName string
log *logrus.Entry
}
// NewHandler returns a new application handler.
func NewHandler(ctx context.Context, c *HandlerConfig) (*Handler, error) {
err := c.CheckAndSetDefaults()
if err != nil {
return nil, trace.Wrap(err)
}
h := &Handler{
c: c,
closeContext: ctx,
log: logrus.WithFields(logrus.Fields{
trace.Component: teleport.ComponentAppProxy,
}),
}
// Create a new session cache, this holds sessions that can be used to
// forward requests.
h.cache, err = newSessionCache(ctx, h.log)
if err != nil {
return nil, trace.Wrap(err)
}
// Get the name of this cluster.
cn, err := h.c.AccessPoint.GetClusterName()
if err != nil {
return nil, trace.Wrap(err)
}
h.clusterName = cn.GetClusterName()
// Create the application routes.
h.router = httprouter.New()
h.router.UseRawPath = true
h.router.GET("/x-teleport-auth", makeRouterHandler(h.handleFragment))
h.router.POST("/x-teleport-auth", makeRouterHandler(h.handleFragment))
h.router.GET("/teleport-logout", h.withRouterAuth(h.handleLogout))
h.router.NotFound = h.withAuth(h.handleForward)
return h, nil
}
// ServeHTTP hands the request to the request router.
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.router.ServeHTTP(w, r)
}
// HandleConnection handles connections from plain TCP applications.
func (h *Handler) HandleConnection(ctx context.Context, clientConn net.Conn) error {
tlsConn, ok := clientConn.(*tls.Conn)
if !ok {
return trace.BadParameter("expected *tls.Conn, got: %T", clientConn)
}
certs := tlsConn.ConnectionState().PeerCertificates
if len(certs) != 1 {
return trace.BadParameter("expected 1 client certificate: %+v", tlsConn.ConnectionState())
}
identity, err := tlsca.FromSubject(certs[0].Subject, certs[0].NotAfter)
if err != nil {
return trace.Wrap(err)
}
ws, err := h.c.AccessPoint.GetAppSession(ctx, types.GetAppSessionRequest{
SessionID: identity.RouteToApp.SessionID,
})
if err != nil {
return trace.Wrap(err)
}
session, err := h.getSession(ctx, ws)
if err != nil {
return trace.Wrap(err)
}
serverConn, err := session.tr.DialContext(ctx, "", "")
if err != nil {
return trace.Wrap(err)
}
defer serverConn.Close()
serverConn = tls.Client(serverConn, session.tr.clientTLSConfig)
err = utils.ProxyConn(ctx, clientConn, serverConn)
if err != nil {
return trace.Wrap(err)
}
return nil
}
// handleForward forwards the request to the application service.
func (h *Handler) handleForward(w http.ResponseWriter, r *http.Request, session *session) error {
session.fwd.ServeHTTP(w, r)
return nil
}
// handleForwardError when the forwarder has an error during the `ServeHTTP` it
// will call this function. This handler will then renew the session in order
// to get "fresh" app servers, and then will forwad the request to the newly
// created session.
func (h *Handler) handleForwardError(w http.ResponseWriter, req *http.Request, err error) {
// if it is not an agent connection problem, return without creating a new
// session.
if !trace.IsConnectionProblem(err) {
oxyutils.DefaultHandler.ServeHTTP(w, req, err)
return
}
session, err := h.renewSession(req)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(http.StatusText(http.StatusInternalServerError)))
return
}
session.fwd.ServeHTTP(w, req)
}
// authenticate will check if request carries a session cookie matching a
// session in the backend.
func (h *Handler) authenticate(ctx context.Context, r *http.Request) (*session, error) {
ws, err := h.getAppSession(r)
if err != nil {
h.log.Warnf("Failed to fetch application session: %v.", err)
return nil, trace.AccessDenied("invalid session")
}
// Fetch a cached session or create one if this is the first request this
// process has seen.
session, err := h.getSession(ctx, ws)
if err != nil {
h.log.Warnf("Failed to get session: %v.", err)
return nil, trace.AccessDenied("invalid session")
}
return session, nil
}
// renewSession based on the request removes the session from cache (if present)
// and generates a new one using the `getSession` flow (same as in
// `authenticate`).
func (h *Handler) renewSession(r *http.Request) (*session, error) {
ws, err := h.getAppSession(r)
if err != nil {
h.log.Debugf("Failed to fetch application session: not found.")
return nil, trace.AccessDenied("invalid session")
}
// Remove the session from the cache, this will force a new session to be
// generated and cached.
h.cache.remove(ws.GetName())
// Fetches a new session using the same flow as `authenticate`.
session, err := h.getSession(r.Context(), ws)
if err != nil {
h.log.Warnf("Failed to get session: %v.", err)
return nil, trace.AccessDenied("invalid session")
}
return session, nil
}
// getAppSession retrieves the `types.WebSession` using the provided
// `http.Request`.
func (h *Handler) getAppSession(r *http.Request) (types.WebSession, error) {
sessionID, err := h.extractSessionID(r)
if err != nil {
h.log.Warnf("Failed to extract session id: %v.", err)
return nil, trace.AccessDenied("invalid session")
}
// Check that the session exists in the backend cache. This allows the user
// to logout and invalidate their application session immediately. This
// lookup should also be fast because it's in the local cache.
return h.c.AccessPoint.GetAppSession(r.Context(), types.GetAppSessionRequest{
SessionID: sessionID,
})
}
// extractSessionID extracts application access session ID from either the
// cookie or the client certificate of the provided request.
func (h *Handler) extractSessionID(r *http.Request) (sessionID string, err error) {
// We have a client certificate with encoded session id in application
// access CLI flow i.e. when users log in using "tsh app login" and
// then connect to the apps with the issued certs.
if HasClientCert(r) {
certificate := r.TLS.PeerCertificates[0]
identity, err := tlsca.FromSubject(certificate.Subject, certificate.NotAfter)
if err != nil {
return "", trace.Wrap(err)
}
sessionID = identity.RouteToApp.SessionID
} else {
sessionID, err = extractCookie(r)
if err != nil {
return "", trace.Wrap(err)
}
}
if sessionID == "" {
return "", trace.NotFound("empty session id")
}
return sessionID, nil
}
// getSession returns a request session used to proxy the request to the
// application service. Always checks if the session is valid first and if so,
// will return a cached session, otherwise will create one.
func (h *Handler) getSession(ctx context.Context, ws types.WebSession) (*session, error) {
// If a cached session exists, return it right away.
session, err := h.cache.get(ws.GetName())
if err == nil {
return session, nil
}
// Create a new session with a forwarder in it.
session, err = h.newSession(ctx, ws)
if err != nil {
return nil, trace.Wrap(err)
}
// Put the session in the cache so the next request can use it.
err = h.cache.set(ws.GetName(), session, ws.Expiry().Sub(h.c.Clock.Now()))
if err != nil {
return nil, trace.Wrap(err)
}
return session, nil
}
// extractCookie extracts the cookie from the *http.Request.
func extractCookie(r *http.Request) (string, error) {
rawCookie, err := r.Cookie(CookieName)
if err != nil {
return "", trace.Wrap(err)
}
if rawCookie != nil && rawCookie.Value == "" {
return "", trace.BadParameter("cookie missing")
}
return rawCookie.Value, nil
}
// HasFragment checks if the request is coming to the fragment authentication
// endpoint.
func HasFragment(r *http.Request) bool {
return r.URL.Path == "/x-teleport-auth"
}
// HasSession checks if an application specific cookie exists.
func HasSession(r *http.Request) bool {
_, err := r.Cookie(CookieName)
return err == nil
}
// HasClientCert checks if the request has a client certificate.
func HasClientCert(r *http.Request) bool {
return r.TLS != nil && len(r.TLS.PeerCertificates) > 0
}
// HasName checks if the client is attempting to connect to a
// host that is different than the public address of the proxy. If it is, it
// redirects back to the application launcher in the Web UI.
func HasName(r *http.Request, proxyPublicAddrs []utils.NetAddr) (string, bool) {
raddr, err := utils.ParseAddr(r.Host)
if err != nil {
return "", false
}
for _, paddr := range proxyPublicAddrs {
// The following requests can not be for an application:
//
// * The request is for localhost or loopback.
// * The request is for an IP address.
// * The request is for the public address of the proxy.
if utils.IsLocalhost(raddr.Host()) {
return "", false
}
if net.ParseIP(raddr.Host()) != nil {
return "", false
}
if raddr.Host() == paddr.Host() {
return "", false
}
}
if len(proxyPublicAddrs) == 0 {
return "", false
}
// At this point, it is assumed the caller is requesting an application and
// not the proxy, redirect the caller to the application launcher.
u := url.URL{
Scheme: "https",
Host: proxyPublicAddrs[0].String(),
Path: fmt.Sprintf("/web/launch/%v?path=%v", raddr.Host(), r.URL.Path),
}
return u.String(), true
}
const (
// CookieName is the name of the application session cookie.
CookieName = "__Host-grv_app_session"
// AuthStateCookieName is the name of the state cookie used during the
// initial authentication flow.
AuthStateCookieName = "__Host-grv_app_auth_state"
)