Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
f73d1ea9
Commit
f73d1ea9
authored
Oct 04, 2016
by
deads2k
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure that the bootstrap rbac rules are getting created in test-cmd
parent
467b7d92
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
68 deletions
+69
-68
test-cmd.sh
hack/make-rules/test-cmd.sh
+4
-0
storage.go
pkg/registry/rbac/clusterrole/policybased/storage.go
+5
-17
storage.go
pkg/registry/rbac/clusterrolebinding/policybased/storage.go
+5
-17
escalation_check.go
pkg/registry/rbac/escalation_check.go
+45
-0
storage.go
pkg/registry/rbac/role/policybased/storage.go
+5
-17
storage.go
pkg/registry/rbac/rolebinding/policybased/storage.go
+5
-17
No files found.
hack/make-rules/test-cmd.sh
View file @
f73d1ea9
...
...
@@ -419,6 +419,10 @@ runTests() {
kubectl get
"
${
kube_flags
[@]
}
"
--raw
/version
# make sure the server was properly bootstrapped with clusterroles and bindings
kube::test::get_object_assert clusterroles/cluster-admin
"{{.metadata.name}}"
'cluster-admin'
kube::test::get_object_assert clusterrolebindings/cluster-admin
"{{.metadata.name}}"
'cluster-admin'
###########################
# POD creation / deletion #
###########################
...
...
pkg/registry/rbac/clusterrole/policybased/storage.go
View file @
f73d1ea9
...
...
@@ -23,7 +23,7 @@ import (
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/apis/rbac"
"k8s.io/kubernetes/pkg/apis/rbac/validation"
"k8s.io/kubernetes/pkg/auth/user
"
rbacregistry
"k8s.io/kubernetes/pkg/registry/rbac
"
"k8s.io/kubernetes/pkg/runtime"
)
...
...
@@ -43,18 +43,8 @@ func NewStorage(s rest.StandardStorage, ruleResolver validation.AuthorizationRul
}
func
(
s
*
Storage
)
Create
(
ctx
api
.
Context
,
obj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
if
u
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
u
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
// system:masters is special because the API server uses it for privileged loopback connections
// therefore we know that a member of system:masters can always do anything
for
_
,
group
:=
range
u
.
GetGroups
()
{
if
group
==
user
.
SystemPrivilegedGroup
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
clusterRole
:=
obj
.
(
*
rbac
.
ClusterRole
)
...
...
@@ -66,10 +56,8 @@ func (s *Storage) Create(ctx api.Context, obj runtime.Object) (runtime.Object, e
}
func
(
s
*
Storage
)
Update
(
ctx
api
.
Context
,
name
string
,
obj
rest
.
UpdatedObjectInfo
)
(
runtime
.
Object
,
bool
,
error
)
{
if
user
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
user
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
nonEscalatingInfo
:=
wrapUpdatedObjectInfo
(
obj
,
func
(
ctx
api
.
Context
,
obj
runtime
.
Object
,
oldObj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
...
...
pkg/registry/rbac/clusterrolebinding/policybased/storage.go
View file @
f73d1ea9
...
...
@@ -23,7 +23,7 @@ import (
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/apis/rbac"
"k8s.io/kubernetes/pkg/apis/rbac/validation"
"k8s.io/kubernetes/pkg/auth/user
"
rbacregistry
"k8s.io/kubernetes/pkg/registry/rbac
"
"k8s.io/kubernetes/pkg/runtime"
)
...
...
@@ -43,18 +43,8 @@ func NewStorage(s rest.StandardStorage, ruleResolver validation.AuthorizationRul
}
func
(
s
*
Storage
)
Create
(
ctx
api
.
Context
,
obj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
if
u
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
u
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
// system:masters is special because the API server uses it for privileged loopback connections
// therefore we know that a member of system:masters can always do anything
for
_
,
group
:=
range
u
.
GetGroups
()
{
if
group
==
user
.
SystemPrivilegedGroup
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
clusterRoleBinding
:=
obj
.
(
*
rbac
.
ClusterRoleBinding
)
...
...
@@ -69,10 +59,8 @@ func (s *Storage) Create(ctx api.Context, obj runtime.Object) (runtime.Object, e
}
func
(
s
*
Storage
)
Update
(
ctx
api
.
Context
,
name
string
,
obj
rest
.
UpdatedObjectInfo
)
(
runtime
.
Object
,
bool
,
error
)
{
if
user
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
user
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
nonEscalatingInfo
:=
wrapUpdatedObjectInfo
(
obj
,
func
(
ctx
api
.
Context
,
obj
runtime
.
Object
,
oldObj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
...
...
pkg/registry/rbac/escalation_check.go
0 → 100644
View file @
f73d1ea9
/*
Copyright 2016 The Kubernetes 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
rbac
import
(
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/auth/user"
)
func
EscalationAllowed
(
ctx
api
.
Context
,
superUser
string
)
bool
{
u
,
ok
:=
api
.
UserFrom
(
ctx
)
if
!
ok
{
// the only way to be without a user is to either have no authenticators by explicitly saying that's your preference
// or to be connecting via the insecure port, in which case this logically doesn't apply
return
true
}
// check to see if this subject is allowed to escalate
if
len
(
superUser
)
!=
0
&&
u
.
GetName
()
==
superUser
{
return
true
}
// system:masters is special because the API server uses it for privileged loopback connections
// therefore we know that a member of system:masters can always do anything
for
_
,
group
:=
range
u
.
GetGroups
()
{
if
group
==
user
.
SystemPrivilegedGroup
{
return
true
}
}
return
false
}
pkg/registry/rbac/role/policybased/storage.go
View file @
f73d1ea9
...
...
@@ -23,7 +23,7 @@ import (
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/apis/rbac"
"k8s.io/kubernetes/pkg/apis/rbac/validation"
"k8s.io/kubernetes/pkg/auth/user
"
rbacregistry
"k8s.io/kubernetes/pkg/registry/rbac
"
"k8s.io/kubernetes/pkg/runtime"
)
...
...
@@ -43,18 +43,8 @@ func NewStorage(s rest.StandardStorage, ruleResolver validation.AuthorizationRul
}
func
(
s
*
Storage
)
Create
(
ctx
api
.
Context
,
obj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
if
u
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
u
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
// system:masters is special because the API server uses it for privileged loopback connections
// therefore we know that a member of system:masters can always do anything
for
_
,
group
:=
range
u
.
GetGroups
()
{
if
group
==
user
.
SystemPrivilegedGroup
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
role
:=
obj
.
(
*
rbac
.
Role
)
...
...
@@ -66,10 +56,8 @@ func (s *Storage) Create(ctx api.Context, obj runtime.Object) (runtime.Object, e
}
func
(
s
*
Storage
)
Update
(
ctx
api
.
Context
,
name
string
,
obj
rest
.
UpdatedObjectInfo
)
(
runtime
.
Object
,
bool
,
error
)
{
if
user
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
user
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
nonEscalatingInfo
:=
wrapUpdatedObjectInfo
(
obj
,
func
(
ctx
api
.
Context
,
obj
runtime
.
Object
,
oldObj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
...
...
pkg/registry/rbac/rolebinding/policybased/storage.go
View file @
f73d1ea9
...
...
@@ -23,7 +23,7 @@ import (
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/apis/rbac"
"k8s.io/kubernetes/pkg/apis/rbac/validation"
"k8s.io/kubernetes/pkg/auth/user
"
rbacregistry
"k8s.io/kubernetes/pkg/registry/rbac
"
"k8s.io/kubernetes/pkg/runtime"
)
...
...
@@ -43,18 +43,8 @@ func NewStorage(s rest.StandardStorage, ruleResolver validation.AuthorizationRul
}
func
(
s
*
Storage
)
Create
(
ctx
api
.
Context
,
obj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
if
u
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
u
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
// system:masters is special because the API server uses it for privileged loopback connections
// therefore we know that a member of system:masters can always do anything
for
_
,
group
:=
range
u
.
GetGroups
()
{
if
group
==
user
.
SystemPrivilegedGroup
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Create
(
ctx
,
obj
)
}
roleBinding
:=
obj
.
(
*
rbac
.
RoleBinding
)
...
...
@@ -69,10 +59,8 @@ func (s *Storage) Create(ctx api.Context, obj runtime.Object) (runtime.Object, e
}
func
(
s
*
Storage
)
Update
(
ctx
api
.
Context
,
name
string
,
obj
rest
.
UpdatedObjectInfo
)
(
runtime
.
Object
,
bool
,
error
)
{
if
user
,
ok
:=
api
.
UserFrom
(
ctx
);
ok
{
if
s
.
superUser
!=
""
&&
user
.
GetName
()
==
s
.
superUser
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
if
rbacregistry
.
EscalationAllowed
(
ctx
,
s
.
superUser
)
{
return
s
.
StandardStorage
.
Update
(
ctx
,
name
,
obj
)
}
nonEscalatingInfo
:=
wrapUpdatedObjectInfo
(
obj
,
func
(
ctx
api
.
Context
,
obj
runtime
.
Object
,
oldObj
runtime
.
Object
)
(
runtime
.
Object
,
error
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment