pkg/admission/metadata/usergroup.go (117 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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 metadata import ( "encoding/json" "strings" "go.uber.org/zap" admissionv1 "k8s.io/api/admission/v1" "github.com/apache/yunikorn-scheduler-interface/lib/go/si" "github.com/apache/yunikorn-k8shim/pkg/admission/common" "github.com/apache/yunikorn-k8shim/pkg/admission/conf" "github.com/apache/yunikorn-k8shim/pkg/log" ) type UserGroupAnnotationHandler struct { conf *conf.AdmissionControllerConf } func NewUserGroupAnnotationHandler(conf *conf.AdmissionControllerConf) *UserGroupAnnotationHandler { return &UserGroupAnnotationHandler{ conf: conf, } } const ( defaultPodAnnotationsPath = "/spec/template/metadata/annotations" cronJobPodAnnotationsPath = "/spec/jobTemplate/spec/template/metadata/annotations" ) func (u *UserGroupAnnotationHandler) IsAnnotationAllowed(userName string, groups []string) bool { if u.conf.GetTrustControllers() { for _, sysUser := range u.conf.GetSystemUsers() { if sysUser.MatchString(userName) { log.Log(log.Admission).Debug("Request submitted from a system user, bypassing", zap.String("userName", userName)) return true } } } for _, allowedUser := range u.conf.GetExternalUsers() { if allowedUser.MatchString(userName) { log.Log(log.Admission).Debug("Request submitted from an allowed external user", zap.String("userName", userName)) return true } } for _, allowedGroup := range u.conf.GetExternalGroups() { for _, group := range groups { if allowedGroup.MatchString(group) { log.Log(log.Admission).Debug("Request submitted from an allowed external group", zap.String("userName", userName), zap.String("group", group)) return true } } } return false } func (u *UserGroupAnnotationHandler) IsAnnotationValid(userInfoAnnotation string) error { var userGroups si.UserGroupInformation err := json.Unmarshal([]byte(userInfoAnnotation), &userGroups) if err != nil { return err } log.Log(log.Admission).Debug("Successfully validated user info metadata", zap.String("externally provided user", userGroups.User), zap.String("externally provided groups", strings.Join(userGroups.Groups, ","))) return nil } func (u *UserGroupAnnotationHandler) GetAnnotationsFromRequestKind(req *admissionv1.AdmissionRequest) (map[string]string, bool, error) { extractFn, ok := extractors[req.Kind.Kind] if !ok { return nil, false, nil } result, err := extractFn(req) if result == nil { return nil, true, err } return result.annotations, true, err } func (u *UserGroupAnnotationHandler) GetPatchForWorkload(req *admissionv1.AdmissionRequest, user string, groups []string) ([]common.PatchOperation, error) { extractFn, ok := extractors[req.Kind.Kind] if !ok { return nil, nil } result, err := extractFn(req) if err != nil { return nil, err } patchOp, patchErr := u.getPatchOperation(result.annotations, result.path, user, groups) if patchErr != nil { return nil, patchErr } patch := make([]common.PatchOperation, 1) patch[0] = *patchOp return patch, nil } func (u *UserGroupAnnotationHandler) GetPatchForPod(annotations map[string]string, user string, groups []string) (*common.PatchOperation, error) { patchOp, err := u.getPatchOperation(annotations, "/metadata/annotations", user, groups) if err != nil { return nil, err } return patchOp, nil } func (u *UserGroupAnnotationHandler) getPatchOperation(annotations map[string]string, path, user string, groups []string) (*common.PatchOperation, error) { newAnnotations := make(map[string]string) for k, v := range annotations { newAnnotations[k] = v } userGroups := &si.UserGroupInformation{ User: user, Groups: groups, } jsonBytes, err := json.Marshal(userGroups) if err != nil { return nil, err } newAnnotations[common.UserInfoAnnotation] = string(jsonBytes) return &common.PatchOperation{ Op: "add", Path: path, Value: newAnnotations, }, nil }