Skip to content

Commit 989078f

Browse files
Merge pull request #16231 from adelton/issue-15933
Automatic merge from submit-queue (batch tested with PRs 16867, 16231). Distinguish SCCs that AllowHostNetwork and AllowHostPorts from those that do not, in the score calculation. Fixes #15933.
2 parents bb412d8 + 971e472 commit 989078f

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

pkg/cmd/server/bootstrappolicy/securitycontextconstraints_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ func TestBootstrappedConstraints(t *testing.T) {
1616
// ordering of expectedConstraintNames is important, we check it against scc.ByPriority
1717
expectedConstraintNames := []string{
1818
SecurityContextConstraintsAnyUID,
19-
SecurityContextConstraintsHostNetwork,
2019
SecurityContextConstraintRestricted,
2120
SecurityContextConstraintNonRoot,
22-
SecurityContextConstraintHostNS,
2321
SecurityContextConstraintHostMountAndAnyUID,
22+
SecurityContextConstraintsHostNetwork,
23+
SecurityContextConstraintHostNS,
2424
SecurityContextConstraintPrivileged,
2525
}
2626
expectedGroups, expectedUsers := getExpectedAccess()

pkg/security/securitycontextconstraints/byrestrictions.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ func (s ByRestrictions) Less(i, j int) bool {
2828
type points int
2929

3030
const (
31-
privilegedPoints points = 200000
31+
privilegedPoints points = 1000000
32+
33+
hostNetworkPoints points = 200000
34+
hostPortsPoints points = 400000
3235

3336
hostVolumePoints points = 100000
3437
nonTrivialVolumePoints points = 50000
@@ -62,6 +65,13 @@ func pointValue(constraint *securityapi.SecurityContextConstraints) points {
6265
// add points based on volume requests
6366
totalPoints += volumePointValue(constraint)
6467

68+
if constraint.AllowHostNetwork {
69+
totalPoints += hostNetworkPoints
70+
}
71+
if constraint.AllowHostPorts {
72+
totalPoints += hostPortsPoints
73+
}
74+
6575
// add points based on capabilities
6676
totalPoints += capabilitiesPointValue(constraint)
6777

0 commit comments

Comments
 (0)