mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 02:08:13 +00:00 
			
		
		
		
	 b5dd78da3d
			
		
	
	b5dd78da3d
	
	
	
		
			
			Main upgrades: - github.com/opencontainers/runc v1.0.0-rc93 - github.com/containerd/containerd v1.4.4 - github.com/docker/docker v20.10.2 - github.com/mrunalp/fileutils v0.5.0 - github.com/opencontainers/selinux v1.8.0 - github.com/cilium/ebpf v0.2.0
		
			
				
	
	
		
			131 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package internal
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"sync"
 | |
| )
 | |
| 
 | |
| // ErrNotSupported indicates that a feature is not supported by the current kernel.
 | |
| var ErrNotSupported = errors.New("not supported")
 | |
| 
 | |
| // UnsupportedFeatureError is returned by FeatureTest() functions.
 | |
| type UnsupportedFeatureError struct {
 | |
| 	// The minimum Linux mainline version required for this feature.
 | |
| 	// Used for the error string, and for sanity checking during testing.
 | |
| 	MinimumVersion Version
 | |
| 
 | |
| 	// The name of the feature that isn't supported.
 | |
| 	Name string
 | |
| }
 | |
| 
 | |
| func (ufe *UnsupportedFeatureError) Error() string {
 | |
| 	if ufe.MinimumVersion.Unspecified() {
 | |
| 		return fmt.Sprintf("%s not supported", ufe.Name)
 | |
| 	}
 | |
| 	return fmt.Sprintf("%s not supported (requires >= %s)", ufe.Name, ufe.MinimumVersion)
 | |
| }
 | |
| 
 | |
| // Is indicates that UnsupportedFeatureError is ErrNotSupported.
 | |
| func (ufe *UnsupportedFeatureError) Is(target error) bool {
 | |
| 	return target == ErrNotSupported
 | |
| }
 | |
| 
 | |
| type featureTest struct {
 | |
| 	sync.Mutex
 | |
| 	successful bool
 | |
| 	result     error
 | |
| }
 | |
| 
 | |
| // FeatureTestFn is used to determine whether the kernel supports
 | |
| // a certain feature.
 | |
| //
 | |
| // The return values have the following semantics:
 | |
| //
 | |
| //   err != nil: the test couldn't be executed
 | |
| //   err == nil && available: the feature is available
 | |
| //   err == nil && !available: the feature isn't available
 | |
| type FeatureTestFn func() (available bool, err error)
 | |
| 
 | |
| // FeatureTest wraps a function so that it is run at most once.
 | |
| //
 | |
| // name should identify the tested feature, while version must be in the
 | |
| // form Major.Minor[.Patch].
 | |
| //
 | |
| // Returns an error wrapping ErrNotSupported if the feature is not supported.
 | |
| func FeatureTest(name, version string, fn FeatureTestFn) func() error {
 | |
| 	v, err := NewVersion(version)
 | |
| 	if err != nil {
 | |
| 		return func() error { return err }
 | |
| 	}
 | |
| 
 | |
| 	ft := new(featureTest)
 | |
| 	return func() error {
 | |
| 		ft.Lock()
 | |
| 		defer ft.Unlock()
 | |
| 
 | |
| 		if ft.successful {
 | |
| 			return ft.result
 | |
| 		}
 | |
| 
 | |
| 		available, err := fn()
 | |
| 		if errors.Is(err, ErrNotSupported) {
 | |
| 			// The feature test aborted because a dependent feature
 | |
| 			// is missing, which we should cache.
 | |
| 			available = false
 | |
| 		} else if err != nil {
 | |
| 			// We couldn't execute the feature test to a point
 | |
| 			// where it could make a determination.
 | |
| 			// Don't cache the result, just return it.
 | |
| 			return fmt.Errorf("can't detect support for %s: %w", name, err)
 | |
| 		}
 | |
| 
 | |
| 		ft.successful = true
 | |
| 		if !available {
 | |
| 			ft.result = &UnsupportedFeatureError{
 | |
| 				MinimumVersion: v,
 | |
| 				Name:           name,
 | |
| 			}
 | |
| 		}
 | |
| 		return ft.result
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // A Version in the form Major.Minor.Patch.
 | |
| type Version [3]uint16
 | |
| 
 | |
| // NewVersion creates a version from a string like "Major.Minor.Patch".
 | |
| //
 | |
| // Patch is optional.
 | |
| func NewVersion(ver string) (Version, error) {
 | |
| 	var major, minor, patch uint16
 | |
| 	n, _ := fmt.Sscanf(ver, "%d.%d.%d", &major, &minor, &patch)
 | |
| 	if n < 2 {
 | |
| 		return Version{}, fmt.Errorf("invalid version: %s", ver)
 | |
| 	}
 | |
| 	return Version{major, minor, patch}, nil
 | |
| }
 | |
| 
 | |
| func (v Version) String() string {
 | |
| 	if v[2] == 0 {
 | |
| 		return fmt.Sprintf("v%d.%d", v[0], v[1])
 | |
| 	}
 | |
| 	return fmt.Sprintf("v%d.%d.%d", v[0], v[1], v[2])
 | |
| }
 | |
| 
 | |
| // Less returns true if the version is less than another version.
 | |
| func (v Version) Less(other Version) bool {
 | |
| 	for i, a := range v {
 | |
| 		if a == other[i] {
 | |
| 			continue
 | |
| 		}
 | |
| 		return a < other[i]
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| // Unspecified returns true if the version is all zero.
 | |
| func (v Version) Unspecified() bool {
 | |
| 	return v[0] == 0 && v[1] == 0 && v[2] == 0
 | |
| }
 |