mirror of
https://github.com/containers/podman.git
synced 2026-07-10 15:25:00 -04:00
This was implemented by containers/netavark #1369; this commit completes the process by wiring it into Podman. We now respect the CLI order for configured networks - if a user passes `--net net1,net2` we guarantee that net1 will be configured before net2. For containers created before this patch, we don't retain enough information to configure networks in CLI order, so we use alphabetical order instead to still guarantee consistency. No breaking API changes have been made, but we do add a new field to supplement the existing map to (optionally) provide ordering information. The Podman CLI will always pass this. Existing applications that do not will, again, receive] deterministic ordering based on an alphabetical sort of network names. This requires the latest version of Netavark to work properly. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
365 lines
9.6 KiB
Go
365 lines
9.6 KiB
Go
/*
|
|
Copyright The containerd Authors.
|
|
|
|
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
|
|
|
|
http://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 platforms
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
|
|
specs "github.com/opencontainers/image-spec/specs-go/v1"
|
|
)
|
|
|
|
// MatchComparer is able to match and compare platforms to
|
|
// filter and sort platforms.
|
|
type MatchComparer interface {
|
|
Matcher
|
|
|
|
Less(specs.Platform, specs.Platform) bool
|
|
}
|
|
|
|
type platformVersions struct {
|
|
major []int
|
|
minor []int
|
|
}
|
|
|
|
var arm64variantToVersion = map[string]platformVersions{
|
|
"v8": {[]int{8}, []int{0}},
|
|
"v8.0": {[]int{8}, []int{0}},
|
|
"v8.1": {[]int{8}, []int{1}},
|
|
"v8.2": {[]int{8}, []int{2}},
|
|
"v8.3": {[]int{8}, []int{3}},
|
|
"v8.4": {[]int{8}, []int{4}},
|
|
"v8.5": {[]int{8}, []int{5}},
|
|
"v8.6": {[]int{8}, []int{6}},
|
|
"v8.7": {[]int{8}, []int{7}},
|
|
"v8.8": {[]int{8}, []int{8}},
|
|
"v8.9": {[]int{8}, []int{9}},
|
|
"v9": {[]int{9, 8}, []int{0, 5}},
|
|
"v9.0": {[]int{9, 8}, []int{0, 5}},
|
|
"v9.1": {[]int{9, 8}, []int{1, 6}},
|
|
"v9.2": {[]int{9, 8}, []int{2, 7}},
|
|
"v9.3": {[]int{9, 8}, []int{3, 8}},
|
|
"v9.4": {[]int{9, 8}, []int{4, 9}},
|
|
"v9.5": {[]int{9, 8}, []int{5, 9}},
|
|
"v9.6": {[]int{9, 8}, []int{6, 9}},
|
|
"v9.7": {[]int{9, 8}, []int{7, 9}},
|
|
}
|
|
|
|
// platformVector returns an (ordered) vector of appropriate specs.Platform
|
|
// objects to try matching for the given platform object (see platforms.Only).
|
|
func platformVector(platform specs.Platform) []specs.Platform {
|
|
vector := []specs.Platform{platform}
|
|
|
|
switch platform.Architecture {
|
|
case "amd64":
|
|
if amd64Version, err := strconv.Atoi(strings.TrimPrefix(platform.Variant, "v")); err == nil && amd64Version > 1 {
|
|
for amd64Version--; amd64Version >= 1; amd64Version-- {
|
|
vector = append(vector, specs.Platform{
|
|
Architecture: platform.Architecture,
|
|
OS: platform.OS,
|
|
OSVersion: platform.OSVersion,
|
|
OSFeatures: platform.OSFeatures,
|
|
Variant: "v" + strconv.Itoa(amd64Version),
|
|
})
|
|
}
|
|
}
|
|
vector = append(vector, specs.Platform{
|
|
Architecture: "386",
|
|
OS: platform.OS,
|
|
OSVersion: platform.OSVersion,
|
|
OSFeatures: platform.OSFeatures,
|
|
})
|
|
case "arm":
|
|
if armVersion, err := strconv.Atoi(strings.TrimPrefix(platform.Variant, "v")); err == nil && armVersion > 5 {
|
|
for armVersion--; armVersion >= 5; armVersion-- {
|
|
vector = append(vector, specs.Platform{
|
|
Architecture: platform.Architecture,
|
|
OS: platform.OS,
|
|
OSVersion: platform.OSVersion,
|
|
OSFeatures: platform.OSFeatures,
|
|
Variant: "v" + strconv.Itoa(armVersion),
|
|
})
|
|
}
|
|
}
|
|
case "arm64":
|
|
variant := platform.Variant
|
|
if variant == "" {
|
|
variant = "v8"
|
|
}
|
|
|
|
vector = []specs.Platform{} // Reset vector, the first variant will be added in loop.
|
|
arm64Versions, ok := arm64variantToVersion[variant]
|
|
if !ok {
|
|
break
|
|
}
|
|
for i, major := range arm64Versions.major {
|
|
for minor := arm64Versions.minor[i]; minor >= 0; minor-- {
|
|
arm64Variant := "v" + strconv.Itoa(major) + "." + strconv.Itoa(minor)
|
|
if minor == 0 {
|
|
arm64Variant = "v" + strconv.Itoa(major)
|
|
}
|
|
vector = append(vector, specs.Platform{
|
|
Architecture: "arm64",
|
|
OS: platform.OS,
|
|
OSVersion: platform.OSVersion,
|
|
OSFeatures: platform.OSFeatures,
|
|
Variant: arm64Variant,
|
|
})
|
|
}
|
|
}
|
|
|
|
// All arm64/v8.x and arm64/v9.x are compatible with arm/v8 (32-bits) and below.
|
|
// There's no arm64 v9 variant, so it's normalized to v8.
|
|
if strings.HasPrefix(variant, "v8") || strings.HasPrefix(variant, "v9") {
|
|
variant = "v8"
|
|
}
|
|
vector = append(vector, platformVector(specs.Platform{
|
|
Architecture: "arm",
|
|
OS: platform.OS,
|
|
OSVersion: platform.OSVersion,
|
|
OSFeatures: platform.OSFeatures,
|
|
Variant: variant,
|
|
})...)
|
|
}
|
|
|
|
return vector
|
|
}
|
|
|
|
// Only returns a match comparer for a single platform
|
|
// using default resolution logic for the platform.
|
|
//
|
|
// For arm64/v9.x, will also match arm64/v9.{0..x-1} and arm64/v8.{0..x+5}
|
|
// For arm64/v8.x, will also match arm64/v8.{0..x-1}
|
|
// For arm/v8, will also match arm/v7, arm/v6 and arm/v5
|
|
// For arm/v7, will also match arm/v6 and arm/v5
|
|
// For arm/v6, will also match arm/v5
|
|
// For amd64, will also match 386
|
|
func Only(platform specs.Platform) MatchComparer {
|
|
return Ordered(platformVector(Normalize(platform))...)
|
|
}
|
|
|
|
// OnlyOS returns a match comparer that matches only platforms with the same
|
|
// OS, OS version, and OS features, regardless of architecture. When comparing,
|
|
// it always ranks the best architecture match highest using the default
|
|
// platform resolution logic.
|
|
func OnlyOS(platform specs.Platform) MatchComparer {
|
|
normalized := Normalize(platform)
|
|
return onlyOSComparer{
|
|
platform: normalized,
|
|
osvM: newOSVersionMatcher(normalized),
|
|
archOrder: orderedPlatformComparer{
|
|
matchers: []Matcher{NewMatcher(normalized)},
|
|
},
|
|
}
|
|
}
|
|
|
|
func newOSVersionMatcher(platform specs.Platform) osVerMatcher {
|
|
if platform.OS == "windows" {
|
|
return &windowsVersionMatcher{
|
|
windowsOSVersion: getWindowsOSVersion(platform.OSVersion),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type onlyOSComparer struct {
|
|
platform specs.Platform
|
|
osvM osVerMatcher
|
|
archOrder orderedPlatformComparer
|
|
}
|
|
|
|
func (c onlyOSComparer) matchOS(platform specs.Platform) bool {
|
|
normalized := Normalize(platform)
|
|
if c.platform.OS != normalized.OS {
|
|
return false
|
|
}
|
|
if c.osvM != nil {
|
|
if !c.osvM.Match(platform.OSVersion) {
|
|
return false
|
|
}
|
|
}
|
|
if len(normalized.OSFeatures) > 0 {
|
|
if len(c.platform.OSFeatures) < len(normalized.OSFeatures) {
|
|
return false
|
|
}
|
|
j := 0
|
|
for _, feature := range normalized.OSFeatures {
|
|
found := false
|
|
for ; j < len(c.platform.OSFeatures); j++ {
|
|
if feature == c.platform.OSFeatures[j] {
|
|
found = true
|
|
j++
|
|
break
|
|
}
|
|
if feature < c.platform.OSFeatures[j] {
|
|
return false
|
|
}
|
|
}
|
|
if !found {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (c onlyOSComparer) Match(platform specs.Platform) bool {
|
|
return c.matchOS(platform)
|
|
}
|
|
|
|
func (c onlyOSComparer) Less(p1, p2 specs.Platform) bool {
|
|
p1m := c.matchOS(p1)
|
|
p2m := c.matchOS(p2)
|
|
if p1m && !p2m {
|
|
return true
|
|
}
|
|
if !p1m {
|
|
return false
|
|
}
|
|
// Both match — rank by architecture preference
|
|
return c.archOrder.Less(p1, p2)
|
|
}
|
|
|
|
// OnlyStrict returns a match comparer for a single platform.
|
|
//
|
|
// Unlike Only, OnlyStrict does not match sub platforms.
|
|
// So, "arm/vN" will not match "arm/vM" where M < N,
|
|
// and "amd64" will not also match "386".
|
|
//
|
|
// OnlyStrict matches non-canonical forms.
|
|
// So, "arm64" matches "arm/64/v8".
|
|
func OnlyStrict(platform specs.Platform) MatchComparer {
|
|
return Ordered(Normalize(platform))
|
|
}
|
|
|
|
// Ordered returns a platform MatchComparer which matches any of the platforms
|
|
// but orders them in order they are provided.
|
|
func Ordered(platforms ...specs.Platform) MatchComparer {
|
|
matchers := make([]Matcher, len(platforms))
|
|
for i := range platforms {
|
|
matchers[i] = NewMatcher(platforms[i])
|
|
}
|
|
return orderedPlatformComparer{
|
|
matchers: matchers,
|
|
}
|
|
}
|
|
|
|
// Any returns a platform MatchComparer which matches any of the platforms
|
|
// with no preference for ordering.
|
|
func Any(platforms ...specs.Platform) MatchComparer {
|
|
matchers := make([]Matcher, len(platforms))
|
|
for i := range platforms {
|
|
matchers[i] = NewMatcher(platforms[i])
|
|
}
|
|
return anyPlatformComparer{
|
|
matchers: matchers,
|
|
}
|
|
}
|
|
|
|
// All is a platform MatchComparer which matches all platforms
|
|
// with preference for ordering.
|
|
var All MatchComparer = allPlatformComparer{}
|
|
|
|
type orderedPlatformComparer struct {
|
|
matchers []Matcher
|
|
}
|
|
|
|
func (c orderedPlatformComparer) Match(platform specs.Platform) bool {
|
|
for _, m := range c.matchers {
|
|
if m.Match(platform) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (c orderedPlatformComparer) Less(p1 specs.Platform, p2 specs.Platform) bool {
|
|
for _, m := range c.matchers {
|
|
p1m := m.Match(p1)
|
|
p2m := m.Match(p2)
|
|
if p1m && !p2m {
|
|
return true
|
|
}
|
|
if p1m || p2m {
|
|
if p1m && p2m {
|
|
// Prefer one with most matching features
|
|
if len(p1.OSFeatures) != len(p2.OSFeatures) {
|
|
return len(p1.OSFeatures) > len(p2.OSFeatures)
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
}
|
|
if len(p1.OSFeatures) > 0 || len(p2.OSFeatures) > 0 {
|
|
p1.OSFeatures = nil
|
|
p2.OSFeatures = nil
|
|
return c.Less(p1, p2)
|
|
}
|
|
return false
|
|
}
|
|
|
|
type anyPlatformComparer struct {
|
|
matchers []Matcher
|
|
}
|
|
|
|
func (c anyPlatformComparer) Match(platform specs.Platform) bool {
|
|
for _, m := range c.matchers {
|
|
if m.Match(platform) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (c anyPlatformComparer) Less(p1, p2 specs.Platform) bool {
|
|
var p1m, p2m bool
|
|
for _, m := range c.matchers {
|
|
if !p1m && m.Match(p1) {
|
|
p1m = true
|
|
}
|
|
if !p2m && m.Match(p2) {
|
|
p2m = true
|
|
}
|
|
if p1m && p2m {
|
|
if len(p1.OSFeatures) != len(p2.OSFeatures) {
|
|
return len(p1.OSFeatures) > len(p2.OSFeatures)
|
|
}
|
|
break
|
|
}
|
|
}
|
|
|
|
// If neither match and has features, strip features and compare
|
|
if !p1m && !p2m && (len(p1.OSFeatures) > 0 || len(p2.OSFeatures) > 0) {
|
|
p1.OSFeatures = nil
|
|
p2.OSFeatures = nil
|
|
return c.Less(p1, p2)
|
|
}
|
|
|
|
// If one matches, and the other does, sort match first
|
|
return p1m && !p2m
|
|
}
|
|
|
|
type allPlatformComparer struct{}
|
|
|
|
func (allPlatformComparer) Match(specs.Platform) bool {
|
|
return true
|
|
}
|
|
|
|
func (allPlatformComparer) Less(specs.Platform, specs.Platform) bool {
|
|
return false
|
|
}
|