Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audit RBAC, avoid global (*) permissions #2866

Merged
merged 4 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmd/cdi-controller/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ go_library(
"//vendor/github.com/pkg/errors:go_default_library",
"//vendor/github.com/prometheus/client_golang/prometheus:go_default_library",
"//vendor/go.uber.org/zap/zapcore:go_default_library",
"//vendor/k8s.io/api/batch/v1:go_default_library",
"//vendor/k8s.io/api/networking/v1:go_default_library",
"//vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/fields:go_default_library",
Expand Down
7 changes: 7 additions & 0 deletions cmd/cdi-controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"go.uber.org/zap/zapcore"
batchv1 "k8s.io/api/batch/v1"
networkingv1 "k8s.io/api/networking/v1"
extv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"k8s.io/apimachinery/pkg/fields"
Expand Down Expand Up @@ -387,6 +388,12 @@ func getNewManagerCache(cdiNamespace string) cache.NewCacheFunc {
&routev1.Route{}: {
Field: namespaceSelector,
},
&batchv1.CronJob{}: {
Field: namespaceSelector,
},
&batchv1.Job{}: {
Field: namespaceSelector,
},
},
},
)
Expand Down
21 changes: 4 additions & 17 deletions pkg/operator/controller/prometheus.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ import (
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
"sigs.k8s.io/controller-runtime/pkg/source"

"kubevirt.io/containerized-data-importer/pkg/monitoring"

"kubevirt.io/containerized-data-importer/pkg/common"
cc "kubevirt.io/containerized-data-importer/pkg/controller/common"
"kubevirt.io/containerized-data-importer/pkg/monitoring"
cdinamespaced "kubevirt.io/containerized-data-importer/pkg/operator/resources/namespaced"
"kubevirt.io/containerized-data-importer/pkg/util"

sdk "kubevirt.io/controller-lifecycle-operator-sdk/pkg/sdk"
)

Expand Down Expand Up @@ -256,21 +257,7 @@ func newPrometheusRole(namespace string) *rbacv1.Role {
common.PrometheusLabelKey: common.PrometheusLabelValue,
},
},
Rules: []rbacv1.PolicyRule{
{
APIGroups: []string{
"",
},
Resources: []string{
"services",
"endpoints",
"pods",
},
Verbs: []string{
"get", "list", "watch",
},
},
},
Rules: cdinamespaced.GetPrometheusNamespacedRules(),
}
}

Expand Down
3 changes: 1 addition & 2 deletions pkg/operator/resources/cluster/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ func getAPIServerClusterPolicyRules() []rbacv1.PolicyRule {
"datasources",
},
Verbs: []string{
"list",
"get",
},
},
Expand All @@ -159,7 +158,7 @@ func getAPIServerClusterPolicyRules() []rbacv1.PolicyRule {
"cdis/finalizers",
},
Verbs: []string{
"*",
"update",
},
},
}
Expand Down
61 changes: 34 additions & 27 deletions pkg/operator/resources/cluster/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ func getControllerClusterPolicyRules() []rbacv1.PolicyRule {
"",
},
Resources: []string{
"persistentvolumes",
"persistentvolumeclaims",
},
Verbs: []string{
Expand All @@ -72,6 +71,20 @@ func getControllerClusterPolicyRules() []rbacv1.PolicyRule {
"patch",
},
},
{
APIGroups: []string{
"",
},
Resources: []string{
"persistentvolumes",
},
Verbs: []string{
"get",
"list",
"watch",
"update",
},
},
{
APIGroups: []string{
"",
Expand Down Expand Up @@ -155,10 +168,28 @@ func getControllerClusterPolicyRules() []rbacv1.PolicyRule {
"snapshot.storage.k8s.io",
},
Resources: []string{
"*",
"volumesnapshots",
"volumesnapshotclasses",
"volumesnapshotcontents",
},
Verbs: []string{
"*",
"get",
"list",
"watch",
"create",
"delete",
},
},
{
APIGroups: []string{
"snapshot.storage.k8s.io",
},
Resources: []string{
"volumesnapshots",
},
Verbs: []string{
"update",
"deletecollection",
},
},
{
Expand Down Expand Up @@ -211,30 +242,6 @@ func getControllerClusterPolicyRules() []rbacv1.PolicyRule {
"create",
},
},
{
APIGroups: []string{
"batch",
},
Resources: []string{
"cronjobs",
},
Verbs: []string{
"list",
"watch",
},
},
{
APIGroups: []string{
"batch",
},
Resources: []string{
"jobs",
},
Verbs: []string{
"list",
"watch",
},
},
{
APIGroups: []string{
"kubevirt.io",
Expand Down
1 change: 1 addition & 0 deletions pkg/operator/resources/namespaced/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ go_library(
"controller.go",
"cronjob.go",
"factory.go",
"prometheus.go",
"uploadproxy.go",
],
importpath = "kubevirt.io/containerized-data-importer/pkg/operator/resources/namespaced",
Expand Down
14 changes: 10 additions & 4 deletions pkg/operator/resources/namespaced/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ func createAPIServerRoleBinding() *rbacv1.RoleBinding {
return utils.ResourceBuilder.CreateRoleBinding(apiServerRessouceName, apiServerRessouceName, apiServerRessouceName, "")
}

func createAPIServerRole() *rbacv1.Role {
rules := []rbacv1.PolicyRule{
func getAPIServerNamespacedRules() []rbacv1.PolicyRule {
return []rbacv1.PolicyRule{
{
APIGroups: []string{
"",
Expand All @@ -70,11 +70,17 @@ func createAPIServerRole() *rbacv1.Role {
"configmaps",
},
Verbs: []string{
"*",
"get",
"list",
"watch",
"create",
},
},
}
return utils.ResourceBuilder.CreateRole(apiServerRessouceName, rules)
}

func createAPIServerRole() *rbacv1.Role {
return utils.ResourceBuilder.CreateRole(apiServerRessouceName, getAPIServerNamespacedRules())
}

func createAPIServerService() *corev1.Service {
Expand Down
22 changes: 17 additions & 5 deletions pkg/operator/resources/namespaced/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ func createControllerRoleBinding() *rbacv1.RoleBinding {
return utils.ResourceBuilder.CreateRoleBinding(controllerResourceName, controllerResourceName, common.ControllerServiceAccountName, "")
}

func createControllerRole() *rbacv1.Role {
rules := []rbacv1.PolicyRule{
func getControllerNamespacedRules() []rbacv1.PolicyRule {
return []rbacv1.PolicyRule{
{
APIGroups: []string{
"",
Expand All @@ -70,7 +70,12 @@ func createControllerRole() *rbacv1.Role {
"configmaps",
},
Verbs: []string{
"*",
"get",
"list",
"watch",
"create",
"update",
"delete",
},
},
{
Expand Down Expand Up @@ -113,6 +118,8 @@ func createControllerRole() *rbacv1.Role {
Verbs: []string{
"create",
"delete",
"list",
"watch",
},
},
{
Expand All @@ -123,7 +130,9 @@ func createControllerRole() *rbacv1.Role {
"leases",
},
Verbs: []string{
"*",
"get",
"create",
"update",
},
},
{
Expand Down Expand Up @@ -153,7 +162,10 @@ func createControllerRole() *rbacv1.Role {
},
},
}
return utils.ResourceBuilder.CreateRole(controllerResourceName, rules)
}

func createControllerRole() *rbacv1.Role {
return utils.ResourceBuilder.CreateRole(controllerResourceName, getControllerNamespacedRules())
}

func createControllerServiceAccount() *corev1.ServiceAccount {
Expand Down
10 changes: 10 additions & 0 deletions pkg/operator/resources/namespaced/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"fmt"

corev1 "k8s.io/api/core/v1"
rbacv1 "k8s.io/api/rbac/v1"
"k8s.io/apimachinery/pkg/runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

Expand Down Expand Up @@ -97,3 +98,12 @@ func assignNamspaceIfMissing(resource client.Object, namespace string) {
obj.SetNamespace(namespace)
}
}

// GetRolePolicyRules returns all namespaced PolicyRules
func GetRolePolicyRules() []rbacv1.PolicyRule {
result := getAPIServerNamespacedRules()
result = append(result, getControllerNamespacedRules()...)
result = append(result, getUploadProxyNamespacedRules()...)
result = append(result, GetPrometheusNamespacedRules()...)
return result
}
40 changes: 40 additions & 0 deletions pkg/operator/resources/namespaced/prometheus.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright 2018 The CDI 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 namespaced

import (
rbacv1 "k8s.io/api/rbac/v1"
)

// GetPrometheusNamespacedRules returns the policy rules needed for CDI alerting setup
func GetPrometheusNamespacedRules() []rbacv1.PolicyRule {
return []rbacv1.PolicyRule{
{
APIGroups: []string{
"",
},
Resources: []string{
"services",
"endpoints",
"pods",
},
Verbs: []string{
"get", "list", "watch",
},
},
}
}
9 changes: 6 additions & 3 deletions pkg/operator/resources/namespaced/uploadproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ func createUploadProxyRoleBinding() *rbacv1.RoleBinding {
return utils.ResourceBuilder.CreateRoleBinding(uploadProxyResourceName, uploadProxyResourceName, uploadProxyResourceName, "")
}

func createUploadProxyRole() *rbacv1.Role {
rules := []rbacv1.PolicyRule{
func getUploadProxyNamespacedRules() []rbacv1.PolicyRule {
return []rbacv1.PolicyRule{
{
APIGroups: []string{
"",
Expand All @@ -81,7 +81,10 @@ func createUploadProxyRole() *rbacv1.Role {
},
},
}
return utils.ResourceBuilder.CreateRole(uploadProxyResourceName, rules)
}

func createUploadProxyRole() *rbacv1.Role {
return utils.ResourceBuilder.CreateRole(uploadProxyResourceName, getUploadProxyNamespacedRules())
}

func createUploadProxyDeployment(image, verbosity, pullPolicy string, imagePullSecrets []corev1.LocalObjectReference, priorityClassName string, infraNodePlacement *sdkapi.NodePlacement) *appsv1.Deployment {
Expand Down
Loading