mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-08-07 12:30:36 +00:00
Picks up: - kubernetes/kube-openapi#625: update the go-openapi/swag family to v0.27.1 - kubernetes/kube-openapi#622: propagate nullable field between SMD and OpenAPI schemas Transitive dependency changes: - github.com/go-openapi/swag (and submodules) v0.25.4 -> v0.27.1 - github.com/go-openapi/jsonpointer v0.22.4 -> v1.0.0 - github.com/go-openapi/jsonreference v0.21.4 -> v1.0.0 - github.com/go-openapi/swag/jsonname removed (package now provided by jsonpointer) - github.com/go-openapi/swag/pools added No changes to hack/unwanted-dependencies.json needed.
171 lines
4.3 KiB
Go
171 lines
4.3 KiB
Go
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package loading
|
|
|
|
import (
|
|
"errors"
|
|
"io/fs"
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
type (
|
|
// Option provides options for loading a file over HTTP or from a file.
|
|
Option func(*options)
|
|
|
|
httpOptions struct {
|
|
httpTimeout time.Duration
|
|
basicAuthUsername string
|
|
basicAuthPassword string
|
|
customHeaders map[string]string
|
|
client *http.Client
|
|
}
|
|
|
|
fileOptions struct {
|
|
fs fs.ReadFileFS
|
|
root string // when non-empty, local reads are confined to this directory via os.Root
|
|
}
|
|
|
|
options struct {
|
|
httpOptions
|
|
fileOptions
|
|
}
|
|
)
|
|
|
|
func (fo fileOptions) ReadFileFunc() func(string) ([]byte, error) {
|
|
if fo.root != "" {
|
|
root := fo.root
|
|
|
|
return func(name string) ([]byte, error) {
|
|
r, err := os.OpenRoot(root)
|
|
if err != nil {
|
|
return nil, errors.Join(err, ErrLoader)
|
|
}
|
|
defer func() { _ = r.Close() }()
|
|
|
|
return r.ReadFile(name)
|
|
}
|
|
}
|
|
|
|
if fo.fs == nil {
|
|
return os.ReadFile
|
|
}
|
|
|
|
return fo.fs.ReadFile
|
|
}
|
|
|
|
// WithTimeout sets a timeout for the remote file loader.
|
|
//
|
|
// The default timeout is 30s.
|
|
func WithTimeout(timeout time.Duration) Option {
|
|
return func(o *options) {
|
|
o.httpTimeout = timeout
|
|
}
|
|
}
|
|
|
|
// WithBasicAuth sets a basic authentication scheme for the remote file loader.
|
|
func WithBasicAuth(username, password string) Option {
|
|
return func(o *options) {
|
|
o.basicAuthUsername = username
|
|
o.basicAuthPassword = password
|
|
}
|
|
}
|
|
|
|
// WithCustomHeaders sets custom headers for the remote file loader.
|
|
func WithCustomHeaders(headers map[string]string) Option {
|
|
return func(o *options) {
|
|
if o.customHeaders == nil {
|
|
o.customHeaders = make(map[string]string, len(headers))
|
|
}
|
|
|
|
for header, value := range headers {
|
|
o.customHeaders[header] = value
|
|
}
|
|
}
|
|
}
|
|
|
|
// WithHTTPClient overrides the default HTTP client used to fetch a remote file.
|
|
//
|
|
// By default, [http.DefaultClient] is used.
|
|
func WithHTTPClient(client *http.Client) Option {
|
|
return func(o *options) {
|
|
o.client = client
|
|
}
|
|
}
|
|
|
|
// WithFS sets a file system for the local file loader.
|
|
//
|
|
// If the provided file system is a [fs.ReadFileFS], the ReadFile function is used.
|
|
// Otherwise, ReadFile is wrapped using [fs.ReadFile].
|
|
//
|
|
// By default, the file system is the one provided by the os package.
|
|
//
|
|
// For example, this may be set to consume from an embedded file system, or a rooted FS.
|
|
//
|
|
// WithFS and [WithRoot] are mutually exclusive: the last one applied wins.
|
|
//
|
|
// Security note: a file system built from [os.DirFS] confines paths but does NOT protect
|
|
// against symlinks that escape the root. To load from a directory derived from untrusted
|
|
// input, prefer [WithRoot], which is symlink-escape resistant.
|
|
func WithFS(filesystem fs.FS) Option {
|
|
return func(o *options) {
|
|
o.root = "" // last-wins vs WithRoot
|
|
if rfs, ok := filesystem.(fs.ReadFileFS); ok {
|
|
o.fs = rfs
|
|
|
|
return
|
|
}
|
|
o.fs = readFileFS{FS: filesystem}
|
|
}
|
|
}
|
|
|
|
// WithRoot confines local file loading to dir.
|
|
//
|
|
// Every requested path is resolved relative to dir, and any path that would escape dir —
|
|
// whether through an absolute path, ".." traversal, or a symlink pointing outside dir — is
|
|
// rejected. This is built on [os.Root] and is therefore resistant to the symlink escapes
|
|
// that a plain [os.DirFS] does not prevent.
|
|
//
|
|
// WithRoot is the recommended option when loading specs from a location derived from
|
|
// untrusted input. It applies to local loading only and has no effect on remote
|
|
// (http/https) loading. WithRoot and [WithFS] are mutually exclusive: the last one applied
|
|
// wins.
|
|
//
|
|
// Note: [os.Root] confines path resolution but does not, by itself, protect against
|
|
// traversal of mount/bind boundaries, /proc special files, or device files. Point WithRoot
|
|
// at a directory that holds only the documents you intend to expose.
|
|
func WithRoot(dir string) Option {
|
|
return func(o *options) {
|
|
o.root = dir
|
|
o.fs = nil // last-wins vs WithFS
|
|
}
|
|
}
|
|
|
|
type readFileFS struct {
|
|
fs.FS
|
|
}
|
|
|
|
func (r readFileFS) ReadFile(name string) ([]byte, error) {
|
|
return fs.ReadFile(r.FS, name)
|
|
}
|
|
|
|
func optionsWithDefaults(opts []Option) options {
|
|
const defaultTimeout = 30 * time.Second
|
|
|
|
o := options{
|
|
// package level defaults
|
|
httpOptions: httpOptions{
|
|
httpTimeout: defaultTimeout,
|
|
client: http.DefaultClient,
|
|
},
|
|
}
|
|
|
|
for _, apply := range opts {
|
|
apply(&o)
|
|
}
|
|
|
|
return o
|
|
}
|