-
Notifications
You must be signed in to change notification settings - Fork 16
/
options.go
324 lines (288 loc) · 10.3 KB
/
options.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
// Copyright 2020 Google LLC
//
// 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
//
// https://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 alloydbconn
import (
"context"
"crypto/rsa"
"io"
"net"
"net/http"
"os"
"time"
"cloud.google.com/go/alloydbconn/debug"
"cloud.google.com/go/alloydbconn/errtype"
"cloud.google.com/go/alloydbconn/internal/alloydb"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
apiopt "google.golang.org/api/option"
)
// CloudPlatformScope is the default OAuth2 scope set on the API client.
const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
// An Option is an option for configuring a Dialer.
type Option func(d *dialerConfig)
type dialerConfig struct {
rsaKey *rsa.PrivateKey
adminOpts []apiopt.ClientOption
dialOpts []DialOption
dialFunc func(ctx context.Context, network, addr string) (net.Conn, error)
refreshTimeout time.Duration
tokenSource oauth2.TokenSource
userAgents []string
useIAMAuthN bool
logger debug.ContextLogger
lazyRefresh bool
// disableMetadataExchange is a temporary addition and will be removed in
// future versions.
disableMetadataExchange bool
staticConnInfo io.Reader
// err tracks any dialer options that may have failed.
err error
}
// WithOptions turns a list of Option's into a single Option.
func WithOptions(opts ...Option) Option {
return func(d *dialerConfig) {
for _, opt := range opts {
opt(d)
}
}
}
// WithCredentialsFile returns an Option that specifies a service account
// or refresh token JSON credentials file to be used as the basis for
// authentication.
func WithCredentialsFile(filename string) Option {
return func(d *dialerConfig) {
b, err := os.ReadFile(filename)
if err != nil {
d.err = errtype.NewConfigError(err.Error(), "n/a")
return
}
opt := WithCredentialsJSON(b)
opt(d)
}
}
// WithCredentialsJSON returns an Option that specifies a service account
// or refresh token JSON credentials to be used as the basis for authentication.
func WithCredentialsJSON(b []byte) Option {
return func(d *dialerConfig) {
// TODO: Use AlloyDB-specfic scope
c, err := google.CredentialsFromJSON(context.Background(), b, CloudPlatformScope)
if err != nil {
d.err = errtype.NewConfigError(err.Error(), "n/a")
return
}
d.tokenSource = c.TokenSource
d.adminOpts = append(d.adminOpts, apiopt.WithCredentials(c))
}
}
// WithUserAgent returns an Option that sets the User-Agent.
func WithUserAgent(ua string) Option {
return func(d *dialerConfig) {
d.userAgents = append(d.userAgents, ua)
}
}
// WithDefaultDialOptions returns an Option that specifies the default
// DialOptions used.
func WithDefaultDialOptions(opts ...DialOption) Option {
return func(d *dialerConfig) {
d.dialOpts = append(d.dialOpts, opts...)
}
}
// WithTokenSource returns an Option that specifies an OAuth2 token source
// to be used as the basis for authentication.
func WithTokenSource(s oauth2.TokenSource) Option {
return func(d *dialerConfig) {
d.tokenSource = s
d.adminOpts = append(d.adminOpts, apiopt.WithTokenSource(s))
}
}
// WithRSAKey returns an Option that specifies a rsa.PrivateKey used to
// represent the client.
func WithRSAKey(k *rsa.PrivateKey) Option {
return func(d *dialerConfig) {
d.rsaKey = k
}
}
// WithRefreshTimeout returns an Option that sets a timeout on refresh
// operations. Defaults to 60s.
func WithRefreshTimeout(t time.Duration) Option {
return func(d *dialerConfig) {
d.refreshTimeout = t
}
}
// WithHTTPClient configures the underlying AlloyDB Admin API client with the
// provided HTTP client. This option is generally unnecessary except for
// advanced use-cases.
func WithHTTPClient(client *http.Client) Option {
return func(d *dialerConfig) {
d.adminOpts = append(d.adminOpts, apiopt.WithHTTPClient(client))
}
}
// WithAdminAPIEndpoint configures the underlying AlloyDB Admin API client to
// use the provided URL.
func WithAdminAPIEndpoint(url string) Option {
return func(d *dialerConfig) {
d.adminOpts = append(d.adminOpts, apiopt.WithEndpoint(url))
}
}
// WithDialFunc configures the function used to connect to the address on the
// named network. This option is generally unnecessary except for advanced
// use-cases. The function is used for all invocations of Dial. To configure
// a dial function per individual calls to dial, use WithOneOffDialFunc.
func WithDialFunc(dial func(ctx context.Context, network, addr string) (net.Conn, error)) Option {
return func(d *dialerConfig) {
d.dialFunc = dial
}
}
// WithIAMAuthN enables automatic IAM Authentication. If no token source has
// been configured (such as with WithTokenSource, WithCredentialsFile, etc),
// the dialer will use the default token source as defined by
// https://pkg.go.dev/golang.org/x/oauth2/google#FindDefaultCredentialsWithParams.
func WithIAMAuthN() Option {
return func(d *dialerConfig) {
d.useIAMAuthN = true
}
}
type debugLoggerWithoutContext struct {
logger debug.Logger
}
// Debugf implements debug.ContextLogger.
func (d *debugLoggerWithoutContext) Debugf(_ context.Context, format string, args ...interface{}) {
d.logger.Debugf(format, args...)
}
var _ debug.ContextLogger = new(debugLoggerWithoutContext)
// WithDebugLogger configures a debug logger for reporting on internal
// operations. By default the debug logger is disabled.
// Prefer WithContextLogger.
func WithDebugLogger(l debug.Logger) Option {
return func(d *dialerConfig) {
d.logger = &debugLoggerWithoutContext{l}
}
}
// WithContextLogger configures a debug lgoger for reporting on internal
// operations. By default the debug logger is disabled.
func WithContextLogger(l debug.ContextLogger) Option {
return func(d *dialerConfig) {
d.logger = l
}
}
// WithLazyRefresh configures the dialer to refresh certificates on an
// as-needed basis. If a certificate is expired when a connection request
// occurs, the Go Connector will block the attempt and refresh the certificate
// immediately. This option is useful when running the Go Connector in
// environments where the CPU may be throttled, thus preventing a background
// goroutine from running consistently (e.g., in Cloud Run the CPU is throttled
// outside of a request context causing the background refresh to fail).
func WithLazyRefresh() Option {
return func(d *dialerConfig) {
d.lazyRefresh = true
}
}
// WithStaticConnectionInfo specifies an io.Reader from which to read static
// connection info. This is a *dev-only* option and should not be used in
// production as it will result in failed connections after the client
// certificate expires. It is also subject to breaking changes in the format.
// NOTE: The static connection info is not refreshed by the dialer. The JSON
// format supports multiple instances, regardless of cluster.
//
// The reader should hold JSON with the following format:
//
// {
// "publicKey": "<PEM Encoded public RSA key>",
// "privateKey": "<PEM Encoded private RSA key>",
// "projects/<PROJECT>/locations/<REGION>/clusters/<CLUSTER>/instances/<INSTANCE>": {
// "ipAddress": "<PSA-based private IP address>",
// "publicIpAddress": "<public IP address>",
// "pscInstanceConfig": {
// "pscDnsName": "<PSC DNS name>"
// },
// "pemCertificateChain": [
// "<client cert>", "<intermediate cert>", "<CA cert>"
// ],
// "caCert": "<CA cert>"
// }
// }
func WithStaticConnectionInfo(r io.Reader) Option {
return func(d *dialerConfig) {
d.staticConnInfo = r
}
}
// WithOptOutOfAdvancedConnectionCheck disables the dataplane permission check.
// It is intended only for clients who are running in an environment where the
// workload's IP address is otherwise unknown and cannot be allow-listed in a
// VPC Service Control security perimeter. This option is incompatible with IAM
// Authentication.
//
// NOTE: This option is for internal usage only and is meant to ease the
// migration when the advanced check will be required on the server. In future
// versions this will revert to a no-op and should not be used. If you think
// you need this option, open an issue on
// https://github.com/GoogleCloudPlatform/alloydb-go-connector for design
// advice.
func WithOptOutOfAdvancedConnectionCheck() Option {
return func(d *dialerConfig) {
d.disableMetadataExchange = true
}
}
// A DialOption is an option for configuring how a Dialer's Dial call is
// executed.
type DialOption func(d *dialCfg)
type dialCfg struct {
dialFunc func(ctx context.Context, network, addr string) (net.Conn, error)
ipType string
tcpKeepAlive time.Duration
}
// DialOptions turns a list of DialOption instances into an DialOption.
func DialOptions(opts ...DialOption) DialOption {
return func(cfg *dialCfg) {
for _, opt := range opts {
opt(cfg)
}
}
}
// WithOneOffDialFunc configures the dial function on a one-off basis for an
// individual call to Dial. To configure a dial function across all invocations
// of Dial, use WithDialFunc.
func WithOneOffDialFunc(dial func(ctx context.Context, network, addr string) (net.Conn, error)) DialOption {
return func(c *dialCfg) {
c.dialFunc = dial
}
}
// WithTCPKeepAlive returns a DialOption that specifies the tcp keep alive
// period for the connection returned by Dial.
func WithTCPKeepAlive(d time.Duration) DialOption {
return func(cfg *dialCfg) {
cfg.tcpKeepAlive = d
}
}
// WithPublicIP returns a DialOption that specifies a public IP will be used to
// connect.
func WithPublicIP() DialOption {
return func(cfg *dialCfg) {
cfg.ipType = alloydb.PublicIP
}
}
// WithPrivateIP returns a DialOption that specifies a private IP (VPC) will be
// used to connect.
func WithPrivateIP() DialOption {
return func(cfg *dialCfg) {
cfg.ipType = alloydb.PrivateIP
}
}
// WithPSC returns a DialOption that specifies a PSC endpoint will be used to
// connect.
func WithPSC() DialOption {
return func(cfg *dialCfg) {
cfg.ipType = alloydb.PSC
}
}