2021-09-16 14:46:07 +00:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Ceph-CSI 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 mounter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/cephfs/store"
|
2021-09-16 14:46:07 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
volumeMounterKernel = "kernel"
|
|
|
|
netDev = "_netdev"
|
|
|
|
)
|
|
|
|
|
|
|
|
type KernelMounter struct{}
|
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
func mountKernel(ctx context.Context, mountPoint string, cr *util.Credentials, volOptions *store.VolumeOptions) error {
|
2021-09-16 14:46:07 +00:00
|
|
|
if err := execCommandErr(ctx, "modprobe", "ceph"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-t", "ceph",
|
|
|
|
fmt.Sprintf("%s:%s", volOptions.Monitors, volOptions.RootPath),
|
|
|
|
mountPoint,
|
|
|
|
}
|
|
|
|
|
|
|
|
optionsStr := fmt.Sprintf("name=%s,secretfile=%s", cr.ID, cr.KeyFile)
|
|
|
|
mdsNamespace := ""
|
|
|
|
if volOptions.FsName != "" {
|
|
|
|
mdsNamespace = fmt.Sprintf("mds_namespace=%s", volOptions.FsName)
|
|
|
|
}
|
|
|
|
optionsStr = util.MountOptionsAdd(optionsStr, mdsNamespace, volOptions.KernelMountOptions, netDev)
|
|
|
|
|
|
|
|
args = append(args, "-o", optionsStr)
|
|
|
|
|
|
|
|
_, stderr, err := util.ExecCommand(ctx, "mount", args[:]...)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("%w stderr: %s", err, stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *KernelMounter) Mount(
|
|
|
|
ctx context.Context,
|
|
|
|
mountPoint string,
|
|
|
|
cr *util.Credentials,
|
2022-02-15 12:11:09 +00:00
|
|
|
volOptions *store.VolumeOptions) error {
|
2021-09-16 14:46:07 +00:00
|
|
|
if err := util.CreateMountPoint(mountPoint); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return mountKernel(ctx, mountPoint, cr, volOptions)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *KernelMounter) Name() string { return "Ceph kernel client" }
|