Skip to content

Commit abd601c

Browse files
committed
SecurityContextConstraints: limit validation to provided groups.
1 parent 098d160 commit abd601c

File tree

3 files changed

+7
-27
lines changed

3 files changed

+7
-27
lines changed

pkg/security/securitycontextconstraints/group/mustrunas.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ func NewMustRunAs(ranges []securityapi.IDRange, field string) (GroupSecurityCont
3030

3131
// Generate creates the group based on policy rules. By default this returns the first group of the
3232
// first range (min val).
33-
func (s *mustRunAs) Generate(pod *api.Pod) ([]int64, error) {
33+
func (s *mustRunAs) Generate(_ *api.Pod) ([]int64, error) {
3434
return []int64{s.ranges[0].Min}, nil
3535
}
3636

3737
// Generate a single value to be applied. This is used for FSGroup. This strategy will return
3838
// the first group of the first range (min val).
39-
func (s *mustRunAs) GenerateSingle(pod *api.Pod) (*int64, error) {
39+
func (s *mustRunAs) GenerateSingle(_ *api.Pod) (*int64, error) {
4040
single := new(int64)
4141
*single = s.ranges[0].Min
4242
return single, nil
@@ -45,14 +45,9 @@ func (s *mustRunAs) GenerateSingle(pod *api.Pod) (*int64, error) {
4545
// Validate ensures that the specified values fall within the range of the strategy.
4646
// Groups are passed in here to allow this strategy to support multiple group fields (fsgroup and
4747
// supplemental groups).
48-
func (s *mustRunAs) Validate(pod *api.Pod, groups []int64) field.ErrorList {
48+
func (s *mustRunAs) Validate(_ *api.Pod, groups []int64) field.ErrorList {
4949
allErrs := field.ErrorList{}
5050

51-
if pod.Spec.SecurityContext == nil {
52-
allErrs = append(allErrs, field.Invalid(field.NewPath("securityContext"), pod.Spec.SecurityContext, "unable to validate nil security context"))
53-
return allErrs
54-
}
55-
5651
if len(groups) == 0 && len(s.ranges) > 0 {
5752
allErrs = append(allErrs, field.Invalid(field.NewPath(s.field), groups, "unable to validate empty groups against required ranges"))
5853
}

pkg/security/securitycontextconstraints/group/mustrunas_test.go

+1-16
Original file line numberDiff line numberDiff line change
@@ -94,66 +94,51 @@ func TestGenerate(t *testing.T) {
9494
}
9595

9696
func TestValidate(t *testing.T) {
97-
validPod := func() *api.Pod {
98-
return &api.Pod{
99-
Spec: api.PodSpec{
100-
SecurityContext: &api.PodSecurityContext{},
101-
},
102-
}
103-
}
104-
10597
tests := map[string]struct {
10698
ranges []securityapi.IDRange
10799
pod *api.Pod
108100
groups []int64
109101
pass bool
110102
}{
111103
"nil security context": {
112-
pod: &api.Pod{},
113104
ranges: []securityapi.IDRange{
114105
{Min: 1, Max: 3},
115106
},
116107
},
117108
"empty groups": {
118-
pod: validPod(),
119109
ranges: []securityapi.IDRange{
120110
{Min: 1, Max: 3},
121111
},
122112
},
123113
"not in range": {
124-
pod: validPod(),
125114
groups: []int64{5},
126115
ranges: []securityapi.IDRange{
127116
{Min: 1, Max: 3},
128117
{Min: 4, Max: 4},
129118
},
130119
},
131120
"in range 1": {
132-
pod: validPod(),
133121
groups: []int64{2},
134122
ranges: []securityapi.IDRange{
135123
{Min: 1, Max: 3},
136124
},
137125
pass: true,
138126
},
139127
"in range boundry min": {
140-
pod: validPod(),
141128
groups: []int64{1},
142129
ranges: []securityapi.IDRange{
143130
{Min: 1, Max: 3},
144131
},
145132
pass: true,
146133
},
147134
"in range boundry max": {
148-
pod: validPod(),
149135
groups: []int64{3},
150136
ranges: []securityapi.IDRange{
151137
{Min: 1, Max: 3},
152138
},
153139
pass: true,
154140
},
155141
"singular range": {
156-
pod: validPod(),
157142
groups: []int64{4},
158143
ranges: []securityapi.IDRange{
159144
{Min: 4, Max: 4},
@@ -167,7 +152,7 @@ func TestValidate(t *testing.T) {
167152
if err != nil {
168153
t.Errorf("error creating strategy for %s: %v", k, err)
169154
}
170-
errs := s.Validate(v.pod, v.groups)
155+
errs := s.Validate(nil, v.groups)
171156
if v.pass && len(errs) > 0 {
172157
t.Errorf("unexpected errors for %s: %v", k, errs)
173158
}

pkg/security/securitycontextconstraints/group/runasany.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ func NewRunAsAny() (GroupSecurityContextConstraintsStrategy, error) {
1717
}
1818

1919
// Generate creates the group based on policy rules. This strategy returns an empty slice.
20-
func (s *runAsAny) Generate(pod *api.Pod) ([]int64, error) {
20+
func (s *runAsAny) Generate(_ *api.Pod) ([]int64, error) {
2121
return nil, nil
2222
}
2323

2424
// Generate a single value to be applied. This is used for FSGroup. This strategy returns nil.
25-
func (s *runAsAny) GenerateSingle(pod *api.Pod) (*int64, error) {
25+
func (s *runAsAny) GenerateSingle(_ *api.Pod) (*int64, error) {
2626
return nil, nil
2727
}
2828

2929
// Validate ensures that the specified values fall within the range of the strategy.
30-
func (s *runAsAny) Validate(pod *api.Pod, groups []int64) field.ErrorList {
30+
func (s *runAsAny) Validate(_ *api.Pod, groups []int64) field.ErrorList {
3131
return field.ErrorList{}
3232

3333
}

0 commit comments

Comments
 (0)