kops/upup/pkg/fi/nodeup/nodetasks/user.go

130 lines
2.9 KiB
Go

/*
Copyright 2019 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 nodetasks
import (
"fmt"
"os/exec"
"strconv"
"strings"
"k8s.io/klog/v2"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/nodeup/local"
)
// UserTask is responsible for creating a user, by calling useradd
type UserTask struct {
Name string
UID int `json:"uid"`
Shell string `json:"shell"`
Home string `json:"home"`
}
var _ fi.NodeupTask = &UserTask{}
func (e *UserTask) String() string {
return fmt.Sprintf("User: %s", e.Name)
}
var _ fi.HasName = &File{}
func (f *UserTask) GetName() *string {
return &f.Name
}
func (e *UserTask) Find(c *fi.NodeupContext) (*UserTask, error) {
info, err := fi.LookupUser(e.Name)
if err != nil {
return nil, err
}
if info == nil {
return nil, nil
}
actual := &UserTask{
Name: e.Name,
UID: info.Uid,
Shell: info.Shell,
Home: info.Home,
}
return actual, nil
}
func (e *UserTask) Run(c *fi.NodeupContext) error {
return fi.NodeupDefaultDeltaRunMethod(e, c)
}
func (_ *UserTask) CheckChanges(a, e, changes *UserTask) error {
return nil
}
func buildUseraddArgs(e *UserTask) []string {
var args []string
if e.UID != 0 {
args = append(args, "-u", strconv.Itoa(e.UID))
}
if e.Shell != "" {
args = append(args, "-s", e.Shell)
}
if e.Home != "" {
args = append(args, "-d", e.Home)
}
args = append(args, e.Name)
return args
}
func (_ *UserTask) RenderLocal(t *local.LocalTarget, a, e, changes *UserTask) error {
if a == nil {
args := buildUseraddArgs(e)
klog.Infof("Creating user %q", e.Name)
cmd := exec.Command("useradd", args...)
klog.V(2).Infof("running command: useradd %s", strings.Join(args, " "))
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("error creating user: %v\nOutput: %s", err, output)
}
} else {
var args []string
if changes.UID != 0 {
args = append(args, "-u", strconv.Itoa(e.UID))
}
if changes.Shell != "" {
args = append(args, "-s", e.Shell)
}
if changes.Home != "" {
args = append(args, "-d", e.Home)
}
if len(args) != 0 {
args = append(args, e.Name)
klog.Infof("Reconfiguring user %q", e.Name)
cmd := exec.Command("usermod", args...)
klog.V(2).Infof("running command: usermod %s", strings.Join(args, " "))
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("error reconfiguring user: %v\nOutput: %s", err, output)
}
}
}
return nil
}