forked from matrix-org/gomatrixserverlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
563 lines (496 loc) · 16.3 KB
/
client.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
/* Copyright 2016-2017 Vector Creations Ltd
*
* 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 gomatrixserverlib
import (
"bytes"
"context"
"crypto/tls"
"encoding/json"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/matrix-org/gomatrix"
"github.com/matrix-org/util"
"github.com/sirupsen/logrus"
)
// Default HTTPS request timeout
const requestTimeout time.Duration = time.Duration(30) * time.Second
// A Client makes request to the federation listeners of matrix
// homeservers
type Client struct {
client http.Client
userAgent string
}
// UserInfo represents information about a user.
type UserInfo struct {
Sub string `json:"sub"`
}
type clientOptions struct {
transport http.RoundTripper
dnsCache *DNSCache
timeout time.Duration
skipVerify bool
keepAlives bool
}
// ClientOption are supplied to NewClient or NewFederationClient.
type ClientOption func(*clientOptions)
// NewClient makes a new Client. You can supply zero or more ClientOptions
// which control the transport, timeout, TLS validation etc - see
// WithTransport, WithTimeout, WithSkipVerify, WithDNSCache etc.
func NewClient(options ...ClientOption) *Client {
clientOpts := &clientOptions{
timeout: requestTimeout,
}
for _, option := range options {
option(clientOpts)
}
if clientOpts.transport == nil {
clientOpts.transport = newFederationTripper(
clientOpts.skipVerify,
clientOpts.dnsCache,
clientOpts.keepAlives,
)
}
client := &Client{
client: http.Client{
Transport: clientOpts.transport,
Timeout: clientOpts.timeout,
},
}
return client
}
// WithTransport is an option that can be supplied to either NewClient or
// NewFederationClient. Supplying this option will render WithDNSCache and
// WithSkipVerify ineffective.
func WithTransport(transport http.RoundTripper) ClientOption {
return func(options *clientOptions) {
options.transport = transport
}
}
// WithTimeout is an option that can be supplied to either NewClient or
// NewFederationClient.
func WithTimeout(duration time.Duration) ClientOption {
return func(options *clientOptions) {
options.timeout = duration
}
}
// WithDNSCache is an option that can be supplied to either NewClient or
// NewFederationClient. This option will be ineffective if WithTransport
// has already been supplied.
func WithDNSCache(cache *DNSCache) ClientOption {
return func(options *clientOptions) {
options.dnsCache = cache
}
}
// WithSkipVerify is an option that can be supplied to either NewClient or
// NewFederationClient. This option will be ineffective if WithTransport
// has already been supplied.
func WithSkipVerify(skipVerify bool) ClientOption {
return func(options *clientOptions) {
options.skipVerify = skipVerify
}
}
// WithKeepAlives is an option that can be supplied to either NewClient or
// NewFederationClient. This option will be ineffective if WithTransport
// has already been supplied.
func WithKeepAlives(keepAlives bool) ClientOption {
return func(options *clientOptions) {
options.keepAlives = keepAlives
}
}
const federationTripperLifetime = time.Minute * 5 // how long to keep an entry
const federationTripperReapInterval = time.Minute // how often to check for dead entries
// nolint:maligned
type federationTripper struct {
// transports maps an TLS server name with an HTTP transport.
transports map[string]*federationTripperTransport
transportsMutex sync.Mutex
skipVerify bool
resolutionCache sync.Map // serverName -> []ResolutionResult
dnsCache *DNSCache
keepAlives bool
}
func newFederationTripper(skipVerify bool, dnsCache *DNSCache, keepAlives bool) *federationTripper {
tripper := &federationTripper{
transports: make(map[string]*federationTripperTransport),
skipVerify: skipVerify,
dnsCache: dnsCache,
keepAlives: keepAlives,
}
time.AfterFunc(federationTripperReapInterval, tripper.reaper)
return tripper
}
// reaper will remove round-trippers for remote servers that haven't been used
// in a while, otherwise we will just collect these in memory forever.
func (f *federationTripper) reaper() {
f.transportsMutex.Lock()
defer f.transportsMutex.Unlock()
for serverName, transport := range f.transports {
since := transport.lastUsed.Load().(time.Time)
if time.Since(since) > federationTripperLifetime {
delete(f.transports, serverName)
}
}
time.AfterFunc(federationTripperReapInterval, f.reaper)
}
// federationTripperDialer enforces dial timeouts on the federation requests. If
// the TCP connection doesn't complete within 5 seconds, it's probably just not
// going to.
var federationTripperDialer = &net.Dialer{
Timeout: time.Second * 5,
}
type federationTripperTransport struct {
*http.Transport
lastUsed atomic.Value // time.Time
}
// getTransport returns a http.Transport instance with a TLS configuration using
// the given server name for SNI. It also creates the instance if there isn't
// any for this server name.
// We need to use one transport per TLS server name (instead of giving our round
// tripper a single transport) because there is no way to specify the TLS
// ServerName on a per-connection basis.
func (f *federationTripper) getTransport(tlsServerName string) http.RoundTripper {
f.transportsMutex.Lock()
defer f.transportsMutex.Unlock()
// Create the transport if we don't have any for this TLS server name.
transport, ok := f.transports[tlsServerName]
if !ok {
tr := &federationTripperTransport{
Transport: &http.Transport{
DisableKeepAlives: !f.keepAlives,
MaxIdleConnsPerHost: 1, // only used if keepalives enabled
IdleConnTimeout: federationTripperLifetime, // only used if keepalives enabled
TLSClientConfig: &tls.Config{
ServerName: tlsServerName,
InsecureSkipVerify: f.skipVerify,
ClientSessionCache: tls.NewLRUClientSessionCache(0), // 0 = use default
},
Dial: federationTripperDialer.Dial, // nolint: staticcheck
DialContext: federationTripperDialer.DialContext,
Proxy: http.ProxyFromEnvironment,
ForceAttemptHTTP2: true, // if we can multiplex requests over HTTP/2, we should
},
}
if f.dnsCache != nil {
tr.DialContext = f.dnsCache.DialContext
}
transport, f.transports[tlsServerName] = tr, tr
}
transport.lastUsed.Store(time.Now())
return transport
}
func makeHTTPSURL(u *url.URL, addr string) (httpsURL url.URL) {
httpsURL = *u
httpsURL.Scheme = "https"
httpsURL.Host = addr
return
}
func (f *federationTripper) RoundTrip(r *http.Request) (*http.Response, error) {
var err error
serverName := ServerName(r.URL.Host)
resolutionRetried := false
resolutionResults := []ResolutionResult{}
retryResolution:
if cached, ok := f.resolutionCache.Load(serverName); ok {
if results, ok := cached.([]ResolutionResult); ok {
resolutionResults = results
}
}
// If the cache returned nothing then we'll have no results here,
// so go and hit the network.
if len(resolutionResults) == 0 {
resolutionResults, err = ResolveServer(r.Context(), serverName)
if err != nil {
return nil, err
}
f.resolutionCache.Store(serverName, resolutionResults)
}
// If we still have no results at this point, even after possibly
// hitting the network, then give up.
if len(resolutionResults) == 0 {
return nil, fmt.Errorf("no address found for matrix host %v", serverName)
}
var resp *http.Response
// TODO: respect the priority and weight fields from the SRV record
for _, result := range resolutionResults {
u := makeHTTPSURL(r.URL, result.Destination)
r.URL = &u
r.Host = string(result.Host)
resp, err = f.getTransport(result.TLSServerName).RoundTrip(r)
if err == nil {
return resp, nil
}
util.GetLogger(r.Context()).Debugf("Error sending request to %s: %v",
u.String(), err)
}
// We failed to reach any of the locations in the resolution results,
// so clear the cache and mark that we're retrying, then give it a
// try again.
f.resolutionCache.Delete(serverName)
if !resolutionRetried {
resolutionRetried = true
goto retryResolution
}
// just return the most recent error
return nil, err
}
// SetUserAgent sets the user agent string that is sent in the headers of
// outbound HTTP requests.
func (fc *Client) SetUserAgent(ua string) {
fc.userAgent = ua
}
// LookupUserInfo gets information about a user from a given matrix homeserver
// using a bearer access token.
func (fc *Client) LookupUserInfo(
ctx context.Context, matrixServer ServerName, token string,
) (u UserInfo, err error) {
url := url.URL{
Scheme: "matrix",
Host: string(matrixServer),
Path: "/_matrix/federation/v1/openid/userinfo",
RawQuery: url.Values{"access_token": []string{token}}.Encode(),
}
req, err := http.NewRequest("GET", url.String(), nil)
if err != nil {
return
}
var response *http.Response
response, err = fc.DoHTTPRequest(ctx, req)
if response != nil {
defer response.Body.Close() // nolint: errcheck
}
if err != nil {
return
}
if response.StatusCode < 200 || response.StatusCode >= 300 {
var errorOutput []byte
errorOutput, err = ioutil.ReadAll(response.Body)
if err != nil {
return
}
err = fmt.Errorf("HTTP %d : %s", response.StatusCode, errorOutput)
return
}
err = json.NewDecoder(response.Body).Decode(&u)
if err != nil {
return
}
userParts := strings.SplitN(u.Sub, ":", 2)
if len(userParts) != 2 || userParts[1] != string(matrixServer) {
err = fmt.Errorf("userID doesn't match server name '%v' != '%v'", u.Sub, matrixServer)
return
}
return
}
// GetServerKeys asks a matrix server for its signing keys and TLS cert
func (fc *Client) GetServerKeys(
ctx context.Context, matrixServer ServerName,
) (ServerKeys, error) {
url := url.URL{
Scheme: "matrix",
Host: string(matrixServer),
Path: "/_matrix/key/v2/server",
}
var body ServerKeys
req, err := http.NewRequest("GET", url.String(), nil)
if err != nil {
return body, err
}
err = fc.DoRequestAndParseResponse(
ctx, req, &body,
)
return body, err
}
// GetVersion gets the version information of a homeserver.
// See https://matrix.org/docs/spec/server_server/r0.1.1.html#get-matrix-federation-v1-version
func (fc *Client) GetVersion(
ctx context.Context, s ServerName,
) (res Version, err error) {
// Construct a request for version information
url := url.URL{
Scheme: "matrix",
Host: string(s),
Path: "/_matrix/federation/v1/version",
}
req, err := http.NewRequest("GET", url.String(), nil)
if err != nil {
return
}
// Make the request and parse the response
err = fc.DoRequestAndParseResponse(ctx, req, &res)
return
}
// LookupServerKeys looks up the keys for a matrix server from a matrix server.
// The first argument is the name of the matrix server to download the keys from.
// The second argument is a map from (server name, key ID) pairs to timestamps.
// The (server name, key ID) pair identifies the key to download.
// The timestamps tell the server when the keys need to be valid until.
// Perspective servers can use that timestamp to determine whether they can
// return a cached copy of the keys or whether they will need to retrieve a fresh
// copy of the keys.
// Returns the keys returned by the server, or an error if there was a problem talking to the server.
func (fc *Client) LookupServerKeys(
ctx context.Context, matrixServer ServerName, keyRequests map[PublicKeyLookupRequest]Timestamp,
) ([]ServerKeys, error) {
url := url.URL{
Scheme: "matrix",
Host: string(matrixServer),
Path: "/_matrix/key/v2/query",
}
// The request format is:
// { "server_keys": { "<server_name>": { "<key_id>": { "minimum_valid_until_ts": <ts> }}}
type keyreq struct {
MinimumValidUntilTS Timestamp `json:"minimum_valid_until_ts"`
}
request := struct {
ServerKeyMap map[ServerName]map[KeyID]keyreq `json:"server_keys"`
}{map[ServerName]map[KeyID]keyreq{}}
for k, ts := range keyRequests {
server := request.ServerKeyMap[k.ServerName]
if server == nil {
server = map[KeyID]keyreq{}
request.ServerKeyMap[k.ServerName] = server
}
if k.KeyID != "" {
server[k.KeyID] = keyreq{ts}
}
}
requestBytes, err := json.Marshal(request)
if err != nil {
return nil, err
}
var body struct {
ServerKeyList []json.RawMessage `json:"server_keys"`
}
var res struct {
ServerKeyList []ServerKeys
}
req, err := http.NewRequest("POST", url.String(), bytes.NewBuffer(requestBytes))
if err != nil {
return nil, err
}
req.Header.Add("Content-Type", "application/json")
err = fc.DoRequestAndParseResponse(
ctx, req, &body,
)
if err != nil {
return nil, err
}
for _, field := range body.ServerKeyList {
var keys ServerKeys
if err := json.Unmarshal(field, &keys); err == nil {
res.ServerKeyList = append(res.ServerKeyList, keys)
}
}
return res.ServerKeyList, nil
}
// CreateMediaDownloadRequest creates a request for media on a homeserver and returns the http.Response or an error
func (fc *Client) CreateMediaDownloadRequest(
ctx context.Context, matrixServer ServerName, mediaID string,
) (*http.Response, error) {
// Set allow_remote=false here so that we avoid loops:
// https://github.com/matrix-org/synapse/pull/1992
requestURL := "matrix://" + string(matrixServer) + "/_matrix/media/v1/download/" + string(matrixServer) + "/" + mediaID + "?allow_remote=false"
req, err := http.NewRequest("GET", requestURL, nil)
if err != nil {
return nil, err
}
return fc.DoHTTPRequest(ctx, req)
}
// DoRequestAndParseResponse calls DoHTTPRequest and then decodes the response.
//
// If the HTTP response is not a 200, an attempt is made to parse the response
// body into a gomatrix.RespError. In any case, a non-200 response will result
// in a gomatrix.HTTPError.
//
func (fc *Client) DoRequestAndParseResponse(
ctx context.Context,
req *http.Request,
result interface{},
) error {
response, err := fc.DoHTTPRequest(ctx, req)
if response != nil {
defer response.Body.Close() // nolint: errcheck
}
if err != nil {
return err
}
if response.StatusCode/100 != 2 { // not 2xx
// Adapted from https://github.com/matrix-org/gomatrix/blob/master/client.go
var contents []byte
contents, err = ioutil.ReadAll(response.Body)
if err != nil {
return err
}
var wrap error
var respErr gomatrix.RespError
if _ = json.Unmarshal(contents, &respErr); respErr.ErrCode != "" {
wrap = respErr
}
// If we failed to decode as RespError, don't just drop the HTTP body, include it in the
// HTTP error instead (e.g proxy errors which return HTML).
msg := fmt.Sprintf("Failed to %s JSON (hostname %q path %q)", req.Method, req.Host, req.URL.Path)
if wrap == nil {
msg += ": " + string(contents)
}
return gomatrix.HTTPError{
Code: response.StatusCode,
Message: msg,
WrappedError: wrap,
Contents: contents,
}
}
if err = json.NewDecoder(response.Body).Decode(result); err != nil {
return err
}
return nil
}
// DoHTTPRequest creates an outgoing request ID and adds it to the context
// before sending off the request and awaiting a response.
//
// If the returned error is nil, the Response will contain a non-nil
// Body which the caller is expected to close.
//
func (fc *Client) DoHTTPRequest(ctx context.Context, req *http.Request) (*http.Response, error) {
reqID := util.RandomString(12)
logger := util.GetLogger(ctx).WithFields(logrus.Fields{
"out.req.ID": reqID,
"out.req.method": req.Method,
"out.req.uri": req.URL,
})
logger.Trace("Outgoing request")
newCtx := util.ContextWithLogger(ctx, logger)
if fc.userAgent != "" {
req.Header.Set("User-Agent", fc.userAgent)
}
start := time.Now()
resp, err := fc.client.Do(req.WithContext(newCtx))
if err != nil {
logger.WithContext(ctx).WithField("error", err).Debug("Outgoing request failed")
return nil, err
}
// we haven't yet read the body, so this is slightly premature, but it's the easiest place.
logger.WithFields(logrus.Fields{
"out.req.code": resp.StatusCode,
"out.req.duration_ms": int(time.Since(start) / time.Millisecond),
}).Trace("Outgoing request returned")
return resp, nil
}