forked from hashicorp/go-getter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_http.go
622 lines (533 loc) · 16.9 KB
/
get_http.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
package getter
import (
"context"
"crypto/tls"
"encoding/xml"
"fmt"
"io"
"net/http"
"net/url"
"os"
"path/filepath"
"regexp"
"strings"
"time"
"github.com/hashicorp/go-cleanhttp"
safetemp "github.com/hashicorp/go-safetemp"
)
// HttpGetter is a Getter implementation that will download from an HTTP
// endpoint.
//
// For file downloads, HTTP is used directly.
//
// The protocol for downloading a directory from an HTTP endpoint is as follows:
//
// An HTTP GET request is made to the URL with the additional GET parameter
// "terraform-get=1". This lets you handle that scenario specially if you
// wish. The response must be a 2xx.
//
// First, a header is looked for "X-Terraform-Get" which should contain
// a source URL to download. This source must use one of the configured
// protocols and getters for the client, or "http"/"https" if using
// the HttpGetter directly.
//
// If the header is not present, then a meta tag is searched for named
// "terraform-get" and the content should be a source URL.
//
// The source URL, whether from the header or meta tag, must be a fully
// formed URL. The shorthand syntax of "github.com/foo/bar" or relative
// paths are not allowed.
type HttpGetter struct {
getter
// Netrc, if true, will lookup and use auth information found
// in the user's netrc file if available.
Netrc bool
// Client is the http.Client to use for Get requests.
// This defaults to a cleanhttp.DefaultClient if left unset.
Client *http.Client
// Header contains optional request header fields that should be included
// with every HTTP request. Note that the zero value of this field is nil,
// and as such it needs to be initialized before use, via something like
// make(http.Header).
Header http.Header
// DoNotCheckHeadFirst configures the client to NOT check if the server
// supports HEAD requests.
DoNotCheckHeadFirst bool
// HeadFirstTimeout configures the client to enforce a timeout when
// the server supports HEAD requests.
//
// The zero value means no timeout.
HeadFirstTimeout time.Duration
// ReadTimeout configures the client to enforce a timeout when
// making a request to an HTTP server and reading its response body.
//
// The zero value means no timeout.
ReadTimeout time.Duration
// MaxBytes limits the number of bytes that will be ready from an HTTP
// response body returned from a server. The zero value means no limit.
MaxBytes int64
// XTerraformGetLimit configures how many times the client with follow
// the " X-Terraform-Get" header value.
//
// The zero value means no limit.
XTerraformGetLimit int
// XTerraformGetDisabled disables the client's usage of the "X-Terraform-Get"
// header value.
XTerraformGetDisabled bool
}
func (g *HttpGetter) ClientMode(u *url.URL) (ClientMode, error) {
if strings.HasSuffix(u.Path, "/") {
return ClientModeDir, nil
}
return ClientModeFile, nil
}
type contextKey int
const (
xTerraformGetDisable contextKey = 0
xTerraformGetLimit contextKey = 1
xTerraformGetLimitCurrentValue contextKey = 2
httpClientValue contextKey = 3
httpMaxBytesValue contextKey = 4
)
func xTerraformGetDisabled(ctx context.Context) bool {
value, ok := ctx.Value(xTerraformGetDisable).(bool)
if !ok {
return false
}
return value
}
func xTerraformGetLimitCurrentValueFromContext(ctx context.Context) int {
value, ok := ctx.Value(xTerraformGetLimitCurrentValue).(int)
if !ok {
return 1
}
return value
}
func xTerraformGetLimiConfiguredtFromContext(ctx context.Context) int {
value, ok := ctx.Value(xTerraformGetLimit).(int)
if !ok {
return 0
}
return value
}
func httpClientFromContext(ctx context.Context) *http.Client {
value, ok := ctx.Value(httpClientValue).(*http.Client)
if !ok {
return nil
}
return value
}
func httpMaxBytesFromContext(ctx context.Context) int64 {
value, ok := ctx.Value(httpMaxBytesValue).(int64)
if !ok {
return 0 // no limit
}
return value
}
type limitedWrappedReaderCloser struct {
underlying io.Reader
closeFn func() error
}
func (l *limitedWrappedReaderCloser) Read(p []byte) (n int, err error) {
return l.underlying.Read(p)
}
func (l *limitedWrappedReaderCloser) Close() (err error) {
return l.closeFn()
}
func newLimitedWrappedReaderCloser(r io.ReadCloser, limit int64) io.ReadCloser {
return &limitedWrappedReaderCloser{
underlying: io.LimitReader(r, limit),
closeFn: r.Close,
}
}
func (g *HttpGetter) Get(dst string, u *url.URL) error {
ctx := g.Context()
// Optionally disable any X-Terraform-Get redirects. This is reccomended for usage of
// this client outside of Terraform's. This feature is likely not required if the
// source server can provider normal HTTP redirects.
if g.XTerraformGetDisabled {
ctx = context.WithValue(ctx, xTerraformGetDisable, g.XTerraformGetDisabled)
}
// Optionally enforce a limit on X-Terraform-Get redirects. We check this for every
// invocation of this function, because the value is not passed down to subsequent
// client Get function invocations.
if g.XTerraformGetLimit > 0 {
ctx = context.WithValue(ctx, xTerraformGetLimit, g.XTerraformGetLimit)
}
// If there was a limit on X-Terraform-Get redirects, check what the current count value.
//
// If the value is greater than the limit, return an error. Otherwise, increment the value,
// and include it in the the context to be passed along in all the subsequent client
// Get function invocations.
if limit := xTerraformGetLimiConfiguredtFromContext(ctx); limit > 0 {
currentValue := xTerraformGetLimitCurrentValueFromContext(ctx)
if currentValue > limit {
return fmt.Errorf("too many X-Terraform-Get redirects: %d", currentValue)
}
currentValue++
ctx = context.WithValue(ctx, xTerraformGetLimitCurrentValue, currentValue)
}
// Optionally enforce a maxiumum HTTP response body size.
if g.MaxBytes > 0 {
ctx = context.WithValue(ctx, httpMaxBytesValue, g.MaxBytes)
}
// Copy the URL so we can modify it
var newU url.URL = *u
u = &newU
if g.Netrc {
// Add auth from netrc if we can
if err := addAuthFromNetrc(u); err != nil {
return err
}
}
// If the HTTP client is nil, check if there is one available in the context,
// otherwise create one using cleanhttp's default transport.
if g.Client == nil {
if client := httpClientFromContext(ctx); client != nil {
g.Client = client
} else {
client := httpClient
if g.client != nil && g.client.Insecure {
insecureTransport := cleanhttp.DefaultTransport()
insecureTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
client.Transport = insecureTransport
}
g.Client = client
}
}
// Pass along the configured HTTP client in the context for usage with the X-Terraform-Get feature.
ctx = context.WithValue(ctx, httpClientValue, g.Client)
// Add terraform-get to the parameter.
q := u.Query()
q.Add("terraform-get", "1")
u.RawQuery = q.Encode()
readCtx := ctx
if g.ReadTimeout > 0 {
var cancel context.CancelFunc
readCtx, cancel = context.WithTimeout(ctx, g.ReadTimeout)
defer cancel()
}
// Get the URL
req, err := http.NewRequestWithContext(readCtx, "GET", u.String(), nil)
if err != nil {
return err
}
if g.Header != nil {
req.Header = g.Header.Clone()
}
resp, err := g.Client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
body := resp.Body
if maxBytes := httpMaxBytesFromContext(ctx); maxBytes > 0 {
body = newLimitedWrappedReaderCloser(body, maxBytes)
}
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
return fmt.Errorf("bad response code: %d", resp.StatusCode)
}
if disabled := xTerraformGetDisabled(ctx); disabled {
return nil
}
// Extract the source URL,
var source string
if v := resp.Header.Get("X-Terraform-Get"); v != "" {
source = v
} else {
source, err = g.parseMeta(readCtx, body)
if err != nil {
return err
}
}
if source == "" {
return fmt.Errorf("no source URL was returned")
}
// If there is a subdir component, then we download the root separately
// into a temporary directory, then copy over the proper subdir.
source, subDir := SourceDirSubdir(source)
var opts []ClientOption
// Check if the protocol was switched to one which was not configured.
if g.client != nil && g.client.Getters != nil {
// We must first use the Detectors provided, because `X-Terraform-Get does
// not necessarily return a valid URL. We can replace the source string
// here, since the detectors would have been called immediately during the
// next Get anyway.
source, err = Detect(source, g.client.Pwd, g.client.Detectors)
if err != nil {
return err
}
protocol := ""
// X-Terraform-Get allows paths relative to the previous request too,
// which won't have a protocol.
if !relativeGet(source) {
protocol = strings.Split(source, ":")[0]
}
// Otherwise, all default getters are allowed.
if protocol != "" {
_, allowed := g.client.Getters[protocol]
if !allowed {
return fmt.Errorf("no getter available for X-Terraform-Get source protocol: %q", protocol)
}
}
}
// Add any getter client options.
if g.client != nil {
opts = g.client.Options
}
// If the client is nil, we know we're using the HttpGetter directly. In
// this case, we don't know exactly which protocols are configured, but we
// can make a good guess.
//
// This prevents all default getters from being allowed when only using the
// HttpGetter directly. To enable protocol switching, a client "wrapper" must
// be used.
if g.client == nil {
switch {
case subDir != "":
// If there's a subdirectory, we will also need a file getter to
// unpack it.
opts = append(opts, WithGetters(map[string]Getter{
"file": new(FileGetter),
"http": g,
"https": g,
}))
default:
opts = append(opts, WithGetters(map[string]Getter{
"http": g,
"https": g,
}))
}
}
// Ensure we pass along the context we constructed in this function.
//
// This is especially important to enforce a limit on X-Terraform-Get redirects
// which could be setup, if configured, at the top of this function.
opts = append(opts, WithContext(ctx))
if subDir != "" {
// We have a subdir, time to jump some hoops
return g.getSubdir(ctx, dst, source, subDir, opts...)
}
// Note: this allows the protocol to be switched to another configured getters.
return Get(dst, source, opts...)
}
// GetFile fetches the file from src and stores it at dst.
// If the server supports Accept-Range, HttpGetter will attempt a range
// request. This means it is the caller's responsibility to ensure that an
// older version of the destination file does not exist, else it will be either
// falsely identified as being replaced, or corrupted with extra bytes
// appended.
func (g *HttpGetter) GetFile(dst string, src *url.URL) error {
ctx := g.Context()
// Optionally enforce a maxiumum HTTP response body size.
if g.MaxBytes > 0 {
ctx = context.WithValue(ctx, httpMaxBytesValue, g.MaxBytes)
}
if g.Netrc {
// Add auth from netrc if we can
if err := addAuthFromNetrc(src); err != nil {
return err
}
}
// Create all the parent directories if needed
if err := os.MkdirAll(filepath.Dir(dst), g.client.mode(0755)); err != nil {
return err
}
f, err := os.OpenFile(dst, os.O_RDWR|os.O_CREATE, g.client.mode(0666))
if err != nil {
return err
}
defer f.Close()
if g.Client == nil {
g.Client = httpClient
if g.client != nil && g.client.Insecure {
insecureTransport := cleanhttp.DefaultTransport()
insecureTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
g.Client.Transport = insecureTransport
}
}
var (
currentFileSize int64
req *http.Request
)
if !g.DoNotCheckHeadFirst {
headCtx := ctx
if g.HeadFirstTimeout > 0 {
var cancel context.CancelFunc
headCtx, cancel = context.WithTimeout(ctx, g.HeadFirstTimeout)
defer cancel()
}
// We first make a HEAD request so we can check
// if the server supports range queries. If the server/URL doesn't
// support HEAD requests, we just fall back to GET.
req, err = http.NewRequestWithContext(headCtx, "HEAD", src.String(), nil)
if err != nil {
return err
}
if g.Header != nil {
req.Header = g.Header.Clone()
}
headResp, err := g.Client.Do(req)
if err == nil {
headResp.Body.Close()
if headResp.StatusCode == 200 {
// If the HEAD request succeeded, then attempt to set the range
// query if we can.
if headResp.Header.Get("Accept-Ranges") == "bytes" && headResp.ContentLength >= 0 {
if fi, err := f.Stat(); err == nil {
if _, err = f.Seek(0, io.SeekEnd); err == nil {
currentFileSize = fi.Size()
if currentFileSize >= headResp.ContentLength {
// file already present
return nil
}
}
}
}
}
}
}
readCtx := ctx
if g.ReadTimeout > 0 {
var cancel context.CancelFunc
readCtx, cancel = context.WithTimeout(ctx, g.ReadTimeout)
defer cancel()
}
req, err = http.NewRequestWithContext(readCtx, "GET", src.String(), nil)
if err != nil {
return err
}
if g.Header != nil {
req.Header = g.Header.Clone()
}
if currentFileSize > 0 {
req.Header.Set("Range", fmt.Sprintf("bytes=%d-", currentFileSize))
}
resp, err := g.Client.Do(req)
if err != nil {
return err
}
switch resp.StatusCode {
case http.StatusOK, http.StatusPartialContent:
// all good
default:
resp.Body.Close()
return fmt.Errorf("bad response code: %d", resp.StatusCode)
}
body := resp.Body
if maxBytes := httpMaxBytesFromContext(ctx); maxBytes > 0 {
body = newLimitedWrappedReaderCloser(body, maxBytes)
}
if g.client != nil && g.client.ProgressListener != nil {
// track download
fn := filepath.Base(src.EscapedPath())
body = g.client.ProgressListener.TrackProgress(fn, currentFileSize, currentFileSize+resp.ContentLength, resp.Body)
}
defer body.Close()
n, err := Copy(readCtx, f, body)
if err == nil && n < resp.ContentLength {
err = io.ErrShortWrite
}
return err
}
// getSubdir downloads the source into the destination, but with
// the proper subdir.
func (g *HttpGetter) getSubdir(ctx context.Context, dst, source, subDir string, opts ...ClientOption) error {
// Create a temporary directory to store the full source. This has to be
// a non-existent directory.
td, tdcloser, err := safetemp.Dir("", "getter")
if err != nil {
return err
}
defer tdcloser.Close()
// Download that into the given directory
if err := Get(td, source, opts...); err != nil {
return err
}
// Process any globbing
sourcePath, err := SubdirGlob(td, subDir)
if err != nil {
return err
}
// Make sure the subdir path actually exists
if _, err := os.Stat(sourcePath); err != nil {
return fmt.Errorf(
"Error downloading %s: %s", source, err)
}
// Copy the subdirectory into our actual destination.
if err := os.RemoveAll(dst); err != nil {
return err
}
// Make the final destination
if err := os.MkdirAll(dst, g.client.mode(0755)); err != nil {
return err
}
var disableSymlinks bool
if g.client != nil && g.client.DisableSymlinks {
disableSymlinks = true
}
return copyDir(ctx, dst, sourcePath, false, disableSymlinks, g.client.umask())
}
// parseMeta looks for the first meta tag in the given reader that
// will give us the source URL.
func (g *HttpGetter) parseMeta(ctx context.Context, r io.Reader) (string, error) {
d := xml.NewDecoder(r)
d.CharsetReader = charsetReader
d.Strict = false
var err error
var t xml.Token
for {
if ctx.Err() != nil {
return "", fmt.Errorf("context error while parsing meta tag: %w", ctx.Err())
}
t, err = d.Token()
if err != nil {
if err == io.EOF {
err = nil
}
return "", err
}
if e, ok := t.(xml.StartElement); ok && strings.EqualFold(e.Name.Local, "body") {
return "", nil
}
if e, ok := t.(xml.EndElement); ok && strings.EqualFold(e.Name.Local, "head") {
return "", nil
}
e, ok := t.(xml.StartElement)
if !ok || !strings.EqualFold(e.Name.Local, "meta") {
continue
}
if attrValue(e.Attr, "name") != "terraform-get" {
continue
}
if f := attrValue(e.Attr, "content"); f != "" {
return f, nil
}
}
}
// X-Terraform-Get allows paths relative to the previous request
var relativeGet = regexp.MustCompile(`^\.{0,2}/`).MatchString
// attrValue returns the attribute value for the case-insensitive key
// `name', or the empty string if nothing is found.
func attrValue(attrs []xml.Attr, name string) string {
for _, a := range attrs {
if strings.EqualFold(a.Name.Local, name) {
return a.Value
}
}
return ""
}
// charsetReader returns a reader for the given charset. Currently
// it only supports UTF-8 and ASCII. Otherwise, it returns a meaningful
// error which is printed by go get, so the user can find why the package
// wasn't downloaded if the encoding is not supported. Note that, in
// order to reduce potential errors, ASCII is treated as UTF-8 (i.e. characters
// greater than 0x7f are not rejected).
func charsetReader(charset string, input io.Reader) (io.Reader, error) {
switch strings.ToLower(charset) {
case "ascii":
return input, nil
default:
return nil, fmt.Errorf("can't decode XML document using charset %q", charset)
}
}