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 (
|
2023-07-11 15:18:51 +00:00
|
|
|
"fmt"
|
|
|
|
|
2021-09-16 14:46:07 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/cephfs/mounter"
|
2022-02-15 12:11:09 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/cephfs/store"
|
2021-09-16 13:47:57 +00:00
|
|
|
fsutil "github.com/ceph/ceph-csi/internal/cephfs/util"
|
2023-07-11 15:18:51 +00:00
|
|
|
casceph "github.com/ceph/ceph-csi/internal/csi-addons/cephfs"
|
|
|
|
csiaddons "github.com/ceph/ceph-csi/internal/csi-addons/server"
|
2020-04-17 09:23:49 +00:00
|
|
|
csicommon "github.com/ceph/ceph-csi/internal/csi-common"
|
2023-09-13 14:05:27 +00:00
|
|
|
hc "github.com/ceph/ceph-csi/internal/health-checker"
|
2020-04-23 18:22:55 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/journal"
|
2020-04-17 09:23:49 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util"
|
2021-08-24 15:03:25 +00:00
|
|
|
"github.com/ceph/ceph-csi/internal/util/log"
|
2019-02-18 11:30:28 +00:00
|
|
|
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2018-03-05 11:59:47 +00:00
|
|
|
)
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// Driver contains the default identity,node and controller struct.
|
2019-01-17 07:51:06 +00:00
|
|
|
type Driver struct {
|
2019-01-17 06:18:18 +00:00
|
|
|
cd *csicommon.CSIDriver
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
is *IdentityServer
|
|
|
|
ns *NodeServer
|
|
|
|
cs *ControllerServer
|
2023-07-11 15:18:51 +00:00
|
|
|
// cas is the CSIAddonsServer where CSI-Addons services are handled
|
|
|
|
cas *csiaddons.CSIAddonsServer
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 14:46:07 +00:00
|
|
|
// CSIInstanceID is the instance ID that is unique to an instance of CSI, used when sharing
|
|
|
|
// ceph clusters across CSI instances, to differentiate omap names per CSI instance.
|
|
|
|
var CSIInstanceID = "default"
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewDriver returns new ceph driver.
|
2019-01-17 07:51:06 +00:00
|
|
|
func NewDriver() *Driver {
|
|
|
|
return &Driver{}
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewIdentityServer initialize a identity server for ceph CSI driver.
|
2019-01-17 07:51:06 +00:00
|
|
|
func NewIdentityServer(d *csicommon.CSIDriver) *IdentityServer {
|
|
|
|
return &IdentityServer{
|
2018-03-05 11:59:47 +00:00
|
|
|
DefaultIdentityServer: csicommon.NewDefaultIdentityServer(d),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewControllerServer initialize a controller server for ceph CSI driver.
|
2020-07-10 10:44:59 +00:00
|
|
|
func NewControllerServer(d *csicommon.CSIDriver) *ControllerServer {
|
2019-01-17 07:51:06 +00:00
|
|
|
return &ControllerServer{
|
2018-03-05 11:59:47 +00:00
|
|
|
DefaultControllerServer: csicommon.NewDefaultControllerServer(d),
|
2019-09-12 04:53:37 +00:00
|
|
|
VolumeLocks: util.NewVolumeLocks(),
|
2020-08-04 03:50:13 +00:00
|
|
|
SnapshotLocks: util.NewVolumeLocks(),
|
|
|
|
OperationLocks: util.NewOperationLock(),
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NewNodeServer initialize a node server for ceph CSI driver.
|
2022-07-06 15:46:12 +00:00
|
|
|
func NewNodeServer(
|
|
|
|
d *csicommon.CSIDriver,
|
|
|
|
t string,
|
|
|
|
topology map[string]string,
|
|
|
|
kernelMountOptions string,
|
|
|
|
fuseMountOptions string,
|
|
|
|
) *NodeServer {
|
2019-01-17 07:51:06 +00:00
|
|
|
return &NodeServer{
|
2022-07-06 15:46:12 +00:00
|
|
|
DefaultNodeServer: csicommon.NewDefaultNodeServer(d, t, topology),
|
|
|
|
VolumeLocks: util.NewVolumeLocks(),
|
|
|
|
kernelMountOptions: kernelMountOptions,
|
|
|
|
fuseMountOptions: fuseMountOptions,
|
2023-09-13 14:05:27 +00:00
|
|
|
healthChecker: hc.NewHealthCheckManager(),
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// Run start a non-blocking grpc controller,node and identityserver for
|
2020-07-19 12:21:03 +00:00
|
|
|
// ceph CSI driver which can serve multiple parallel requests.
|
2020-07-10 10:44:59 +00:00
|
|
|
func (fs *Driver) Run(conf *util.Config) {
|
2020-01-24 16:26:56 +00:00
|
|
|
var err error
|
|
|
|
var topology map[string]string
|
|
|
|
|
2018-04-13 12:53:17 +00:00
|
|
|
// Configuration
|
2021-09-16 14:46:07 +00:00
|
|
|
if err = mounter.LoadAvailableMounters(conf); err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.FatalLogMsg("cephfs: failed to load ceph mounters: %v", err)
|
2018-08-14 14:48:30 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 19:03:18 +00:00
|
|
|
// Use passed in instance ID, if provided for omap suffix naming
|
2019-08-14 05:57:45 +00:00
|
|
|
if conf.InstanceID != "" {
|
|
|
|
CSIInstanceID = conf.InstanceID
|
2019-05-28 19:03:18 +00:00
|
|
|
}
|
2020-05-11 21:21:30 +00:00
|
|
|
// Create an instance of the volume journal
|
2022-02-15 12:11:09 +00:00
|
|
|
store.VolJournal = journal.NewCSIVolumeJournalWithNamespace(CSIInstanceID, fsutil.RadosNamespace)
|
2019-05-28 19:03:18 +00:00
|
|
|
|
2022-02-15 12:11:09 +00:00
|
|
|
store.SnapJournal = journal.NewCSISnapshotJournalWithNamespace(CSIInstanceID, fsutil.RadosNamespace)
|
2018-03-05 11:59:47 +00:00
|
|
|
// Initialize default library driver
|
|
|
|
|
2019-08-14 05:57:45 +00:00
|
|
|
fs.cd = csicommon.NewCSIDriver(conf.DriverName, util.DriverVersion, conf.NodeID)
|
2019-01-17 06:18:18 +00:00
|
|
|
if fs.cd == nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.FatalLogMsg("failed to initialize CSI driver")
|
2018-03-05 11:59:47 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 06:42:17 +00:00
|
|
|
if conf.IsControllerServer || !conf.IsNodeServer {
|
|
|
|
fs.cd.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{
|
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME,
|
2020-08-04 03:50:13 +00:00
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_SNAPSHOT,
|
2019-10-07 06:41:33 +00:00
|
|
|
csi.ControllerServiceCapability_RPC_EXPAND_VOLUME,
|
2020-08-04 03:50:13 +00:00
|
|
|
csi.ControllerServiceCapability_RPC_CLONE_VOLUME,
|
2021-08-17 06:27:01 +00:00
|
|
|
csi.ControllerServiceCapability_RPC_SINGLE_NODE_MULTI_WRITER,
|
2019-08-14 06:42:17 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
fs.cd.AddVolumeCapabilityAccessModes([]csi.VolumeCapability_AccessMode_Mode{
|
|
|
|
csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER,
|
2021-08-17 06:27:01 +00:00
|
|
|
csi.VolumeCapability_AccessMode_SINGLE_NODE_WRITER,
|
|
|
|
csi.VolumeCapability_AccessMode_SINGLE_NODE_MULTI_WRITER,
|
|
|
|
csi.VolumeCapability_AccessMode_SINGLE_NODE_SINGLE_WRITER,
|
2019-08-14 06:42:17 +00:00
|
|
|
})
|
|
|
|
}
|
2018-03-05 11:59:47 +00:00
|
|
|
// Create gRPC servers
|
|
|
|
|
2019-01-17 06:18:18 +00:00
|
|
|
fs.is = NewIdentityServer(fs.cd)
|
2018-12-19 14:26:16 +00:00
|
|
|
|
2019-08-14 06:42:17 +00:00
|
|
|
if conf.IsNodeServer {
|
2020-01-24 16:26:56 +00:00
|
|
|
topology, err = util.GetTopologyFromDomainLabels(conf.DomainLabels, conf.NodeID, conf.DriverName)
|
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.FatalLogMsg(err.Error())
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
2022-07-06 15:46:12 +00:00
|
|
|
fs.ns = NewNodeServer(fs.cd, conf.Vtype, topology, conf.KernelMountOptions, conf.FuseMountOptions)
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if conf.IsControllerServer {
|
2020-07-10 10:44:59 +00:00
|
|
|
fs.cs = NewControllerServer(fs.cd)
|
2022-06-14 13:23:29 +00:00
|
|
|
fs.cs.ClusterName = conf.ClusterName
|
2022-07-28 12:05:33 +00:00
|
|
|
fs.cs.SetMetadata = conf.SetMetadata
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
|
|
|
if !conf.IsControllerServer && !conf.IsNodeServer {
|
2020-01-24 16:26:56 +00:00
|
|
|
topology, err = util.GetTopologyFromDomainLabels(conf.DomainLabels, conf.NodeID, conf.DriverName)
|
|
|
|
if err != nil {
|
2021-08-24 15:03:25 +00:00
|
|
|
log.FatalLogMsg(err.Error())
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
2022-07-06 15:46:12 +00:00
|
|
|
fs.ns = NewNodeServer(fs.cd, conf.Vtype, topology, conf.KernelMountOptions, conf.FuseMountOptions)
|
2020-07-10 10:44:59 +00:00
|
|
|
fs.cs = NewControllerServer(fs.cd)
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
2018-03-05 11:59:47 +00:00
|
|
|
|
2023-11-08 11:40:38 +00:00
|
|
|
// configure CSI-Addons server and components
|
2023-07-11 15:18:51 +00:00
|
|
|
err = fs.setupCSIAddonsServer(conf)
|
|
|
|
if err != nil {
|
|
|
|
log.FatalLogMsg(err.Error())
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:59:47 +00:00
|
|
|
server := csicommon.NewNonBlockingGRPCServer()
|
2021-02-08 12:25:18 +00:00
|
|
|
srv := csicommon.Servers{
|
|
|
|
IS: fs.is,
|
|
|
|
CS: fs.cs,
|
|
|
|
NS: fs.ns,
|
|
|
|
}
|
2023-11-02 12:00:55 +00:00
|
|
|
server.Start(conf.Endpoint, srv)
|
|
|
|
|
2021-03-25 11:14:46 +00:00
|
|
|
if conf.EnableProfiling {
|
2023-11-02 12:00:55 +00:00
|
|
|
go util.StartMetricsServer(conf)
|
2021-08-24 15:03:25 +00:00
|
|
|
log.DebugLogMsg("Registering profiling handler")
|
2021-03-25 11:14:46 +00:00
|
|
|
go util.EnableProfiling()
|
|
|
|
}
|
2018-03-05 11:59:47 +00:00
|
|
|
server.Wait()
|
|
|
|
}
|
2023-07-11 15:18:51 +00:00
|
|
|
|
|
|
|
// setupCSIAddonsServer creates a new CSI-Addons Server on the given (URL)
|
|
|
|
// endpoint. The supported CSI-Addons operations get registered as their own
|
|
|
|
// services.
|
|
|
|
func (fs *Driver) setupCSIAddonsServer(conf *util.Config) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
fs.cas, err = csiaddons.NewCSIAddonsServer(conf.CSIAddonsEndpoint)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to create CSI-Addons server: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// register services
|
|
|
|
is := casceph.NewIdentityServer(conf)
|
|
|
|
fs.cas.RegisterService(is)
|
|
|
|
|
2023-10-05 15:31:58 +00:00
|
|
|
if conf.IsControllerServer {
|
|
|
|
fcs := casceph.NewFenceControllerServer()
|
|
|
|
fs.cas.RegisterService(fcs)
|
|
|
|
}
|
|
|
|
|
2023-07-11 15:18:51 +00:00
|
|
|
// start the server, this does not block, it runs a new go-routine
|
|
|
|
err = fs.cas.Start()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to start CSI-Addons server: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|