2018-03-05 11:59:47 +00:00
|
|
|
/*
|
2019-04-03 08:46:15 +00:00
|
|
|
Copyright 2018 The Ceph-CSI Authors.
|
2018-03-05 11:59:47 +00:00
|
|
|
|
|
|
|
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 cephfs
|
|
|
|
|
|
|
|
import (
|
2019-02-26 10:06:16 +00:00
|
|
|
"bytes"
|
2019-08-22 17:19:06 +00:00
|
|
|
"context"
|
2018-04-13 12:34:48 +00:00
|
|
|
"encoding/json"
|
2018-03-20 15:14:14 +00:00
|
|
|
"fmt"
|
2019-07-10 10:50:04 +00:00
|
|
|
"os"
|
2018-03-05 11:59:47 +00:00
|
|
|
"os/exec"
|
|
|
|
|
2020-04-17 09:23:49 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
2020-04-15 03:38:16 +00:00
|
|
|
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2018-03-05 11:59:47 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
2020-07-09 05:14:10 +00:00
|
|
|
klog "k8s.io/klog/v2"
|
2018-03-05 11:59:47 +00:00
|
|
|
)
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
type volumeID string
|
|
|
|
|
2019-08-22 17:19:06 +00:00
|
|
|
func execCommand(ctx context.Context, program string, args ...string) (stdout, stderr []byte, err error) {
|
2019-02-26 10:06:16 +00:00
|
|
|
var (
|
Address security concerns reported by 'gosec'
gosec reports several issues, none of them looks very critical. With
this change the following concerns have been addressed:
[pkg/cephfs/nodeserver.go:229] - G302: Expect file permissions to be 0600 or less (Confidence: HIGH, Severity: MEDIUM)
> os.Chmod(targetPath, 0777)
[pkg/cephfs/util.go:39] - G204: Subprocess launched with variable (Confidence: HIGH, Severity: MEDIUM)
> exec.Command(program, args...)
[pkg/rbd/nodeserver.go:156] - G302: Expect file permissions to be 0600 or less (Confidence: HIGH, Severity: MEDIUM)
> os.Chmod(stagingTargetPath, 0777)
[pkg/rbd/nodeserver.go:205] - G302: Expect file permissions to be 0600 or less (Confidence: HIGH, Severity: MEDIUM)
> os.OpenFile(mountPath, os.O_CREATE|os.O_RDWR, 0750)
[pkg/rbd/rbd_util.go:797] - G304: Potential file inclusion via variable (Confidence: HIGH, Severity: MEDIUM)
> ioutil.ReadFile(fPath)
[pkg/util/cephcmds.go:35] - G204: Subprocess launched with variable (Confidence: HIGH, Severity: MEDIUM)
> exec.Command(program, args...)
[pkg/util/credentials.go:47] - G104: Errors unhandled. (Confidence: HIGH, Severity: LOW)
> os.Remove(tmpfile.Name())
[pkg/util/credentials.go:92] - G104: Errors unhandled. (Confidence: HIGH, Severity: LOW)
> os.Remove(cr.KeyFile)
[pkg/util/pidlimit.go:74] - G304: Potential file inclusion via variable (Confidence: HIGH, Severity: MEDIUM)
> os.Open(pidsMax)
URL: https://github.com/securego/gosec
Signed-off-by: Niels de Vos <ndevos@redhat.com>
2019-08-30 10:23:10 +00:00
|
|
|
cmd = exec.Command(program, args...) // nolint: gosec, #nosec
|
2019-02-26 10:06:16 +00:00
|
|
|
sanitizedArgs = util.StripSecretInArgs(args)
|
|
|
|
stdoutBuf bytes.Buffer
|
|
|
|
stderrBuf bytes.Buffer
|
|
|
|
)
|
2019-02-14 10:39:07 +00:00
|
|
|
|
2019-02-26 10:06:16 +00:00
|
|
|
cmd.Stdout = &stdoutBuf
|
|
|
|
cmd.Stderr = &stderrBuf
|
2018-04-13 12:34:48 +00:00
|
|
|
|
2019-08-22 17:19:06 +00:00
|
|
|
klog.V(4).Infof(util.Log(ctx, "cephfs: EXEC %s %s"), program, sanitizedArgs)
|
2018-04-13 12:34:48 +00:00
|
|
|
|
2019-02-26 10:06:16 +00:00
|
|
|
if err := cmd.Run(); err != nil {
|
2019-07-03 03:53:11 +00:00
|
|
|
if cmd.Process == nil {
|
|
|
|
return nil, nil, fmt.Errorf("cannot get process pid while running %s %v: %v: %s",
|
|
|
|
program, sanitizedArgs, err, stderrBuf.Bytes())
|
|
|
|
}
|
2019-02-26 10:06:16 +00:00
|
|
|
return nil, nil, fmt.Errorf("an error occurred while running (%d) %s %v: %v: %s",
|
|
|
|
cmd.Process.Pid, program, sanitizedArgs, err, stderrBuf.Bytes())
|
2018-04-13 12:34:48 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 10:06:16 +00:00
|
|
|
return stdoutBuf.Bytes(), stderrBuf.Bytes(), nil
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 17:19:06 +00:00
|
|
|
func execCommandErr(ctx context.Context, program string, args ...string) error {
|
|
|
|
_, _, err := execCommand(ctx, program, args...)
|
2019-02-18 11:46:59 +00:00
|
|
|
return err
|
2019-02-14 10:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
//nolint: unparam
|
2019-08-22 17:19:06 +00:00
|
|
|
func execCommandJSON(ctx context.Context, v interface{}, program string, args ...string) error {
|
|
|
|
stdout, _, err := execCommand(ctx, program, args...)
|
2019-02-14 10:39:07 +00:00
|
|
|
if err != nil {
|
2018-04-13 12:34:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-03-26 13:00:28 +00:00
|
|
|
|
2019-02-14 10:39:07 +00:00
|
|
|
if err = json.Unmarshal(stdout, v); err != nil {
|
2019-02-21 11:35:24 +00:00
|
|
|
return fmt.Errorf("failed to unmarshal JSON for %s %v: %s: %v", program, util.StripSecretInArgs(args), stdout, err)
|
2018-04-13 12:34:48 +00:00
|
|
|
}
|
2018-03-26 13:00:28 +00:00
|
|
|
|
2019-02-14 10:39:07 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:50:04 +00:00
|
|
|
func pathExists(p string) bool {
|
|
|
|
_, err := os.Stat(p)
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
// Controller service request validation
|
2019-01-17 07:51:06 +00:00
|
|
|
func (cs *ControllerServer) validateCreateVolumeRequest(req *csi.CreateVolumeRequest) error {
|
2018-07-28 08:24:07 +00:00
|
|
|
if err := cs.Driver.ValidateControllerServiceRequest(csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME); err != nil {
|
|
|
|
return fmt.Errorf("invalid CreateVolumeRequest: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if req.GetName() == "" {
|
2019-05-13 04:47:17 +00:00
|
|
|
return status.Error(codes.InvalidArgument, "volume Name cannot be empty")
|
2018-07-28 08:24:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 12:47:14 +00:00
|
|
|
reqCaps := req.GetVolumeCapabilities()
|
|
|
|
if reqCaps == nil {
|
2019-05-13 04:47:17 +00:00
|
|
|
return status.Error(codes.InvalidArgument, "volume Capabilities cannot be empty")
|
2018-07-28 08:24:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-16 12:47:14 +00:00
|
|
|
for _, cap := range reqCaps {
|
|
|
|
if cap.GetBlock() != nil {
|
|
|
|
return status.Error(codes.Unimplemented, "block volume not supported")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 08:24:07 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-17 07:59:29 +00:00
|
|
|
func (cs *ControllerServer) validateDeleteVolumeRequest() error {
|
2018-07-28 08:24:07 +00:00
|
|
|
if err := cs.Driver.ValidateControllerServiceRequest(csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME); err != nil {
|
|
|
|
return fmt.Errorf("invalid DeleteVolumeRequest: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-07 06:41:33 +00:00
|
|
|
|
|
|
|
// Controller expand volume request validation
|
|
|
|
func (cs *ControllerServer) validateExpandVolumeRequest(req *csi.ControllerExpandVolumeRequest) error {
|
|
|
|
if err := cs.Driver.ValidateControllerServiceRequest(csi.ControllerServiceCapability_RPC_EXPAND_VOLUME); err != nil {
|
|
|
|
return fmt.Errorf("invalid ExpandVolumeRequest: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if req.GetVolumeId() == "" {
|
|
|
|
return status.Error(codes.InvalidArgument, "Volume ID cannot be empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
capRange := req.GetCapacityRange()
|
|
|
|
if capRange == nil {
|
|
|
|
return status.Error(codes.InvalidArgument, "CapacityRange cannot be empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|