Skip to content

Commit 9cd098e

Browse files
authored
skip tls verification if default transport is used with insecure option (#1559)
Signed-off-by: Jose R. Gonzalez <[email protected]>
1 parent eb7d746 commit 9cd098e

File tree

6 files changed

+121
-650
lines changed

6 files changed

+121
-650
lines changed

go.sum

-619
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/crane/options.go

+23-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ package crane
1616

1717
import (
1818
"context"
19+
"crypto/tls"
1920
"net/http"
2021

2122
"github.com/google/go-containerregistry/pkg/authn"
@@ -30,6 +31,9 @@ type Options struct {
3031
Remote []remote.Option
3132
Platform *v1.Platform
3233
Keychain authn.Keychain
34+
35+
transport http.RoundTripper
36+
insecure bool
3337
}
3438

3539
// GetOptions exposes the underlying []remote.Option, []name.Option, and
@@ -47,26 +51,44 @@ func makeOptions(opts ...Option) Options {
4751
},
4852
Keychain: authn.DefaultKeychain,
4953
}
54+
5055
for _, o := range opts {
5156
o(&opt)
5257
}
58+
59+
// Allow for untrusted certificates if the user
60+
// passed Insecure but no custom transport.
61+
if opt.insecure && opt.transport == nil {
62+
transport := remote.DefaultTransport.(*http.Transport).Clone()
63+
transport.TLSClientConfig = &tls.Config{
64+
InsecureSkipVerify: true, //nolint: gosec
65+
}
66+
67+
WithTransport(transport)(&opt)
68+
}
69+
5370
return opt
5471
}
5572

5673
// Option is a functional option for crane.
5774
type Option func(*Options)
5875

5976
// WithTransport is a functional option for overriding the default transport
60-
// for remote operations.
77+
// for remote operations. Setting a transport will override the Insecure option's
78+
// configuration allowing for image registries to use untrusted certificates.
6179
func WithTransport(t http.RoundTripper) Option {
6280
return func(o *Options) {
6381
o.Remote = append(o.Remote, remote.WithTransport(t))
82+
o.transport = t
6483
}
6584
}
6685

6786
// Insecure is an Option that allows image references to be fetched without TLS.
87+
// This will also allow for untrusted (e.g. self-signed) certificates in cases where
88+
// the default transport is used (i.e. when WithTransport is not used).
6889
func Insecure(o *Options) {
6990
o.Name = append(o.Name, name.Insecure)
91+
o.insecure = true
7092
}
7193

7294
// WithPlatform is an Option to specify the platform.

pkg/crane/options_test.go

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
// Copyright 2023 Google LLC All Rights Reserved.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package crane
16+
17+
import (
18+
"errors"
19+
"net/http"
20+
"testing"
21+
22+
"github.com/google/go-containerregistry/pkg/v1/remote"
23+
)
24+
25+
func TestInsecureOptionTracking(t *testing.T) {
26+
want := true
27+
opts := GetOptions(Insecure)
28+
29+
if got := opts.insecure; got != want {
30+
t.Errorf("got %t\nwant: %t", got, want)
31+
}
32+
}
33+
34+
func TestTransportSetting(t *testing.T) {
35+
opts := GetOptions(WithTransport(remote.DefaultTransport))
36+
37+
if opts.transport == nil {
38+
t.Error("expected crane transport to be set when user passes WithTransport")
39+
}
40+
}
41+
42+
func TestInsecureTransport(t *testing.T) {
43+
want := true
44+
opts := GetOptions(Insecure)
45+
var transport *http.Transport
46+
var ok bool
47+
if transport, ok = opts.transport.(*http.Transport); !ok {
48+
t.Fatal("Unable to successfully assert default transport")
49+
}
50+
51+
if transport.TLSClientConfig == nil {
52+
t.Fatal(errors.New("TLSClientConfig was nil and should be set"))
53+
}
54+
55+
if got := transport.TLSClientConfig.InsecureSkipVerify; got != want {
56+
t.Errorf("got: %t\nwant: %t", got, want)
57+
}
58+
}

pkg/v1/fake/image.go

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/v1/fake/index.go

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/v1/zz_deepcopy_generated.go

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)