2018-01-09 18:59:50 +00:00
|
|
|
/*
|
2019-04-03 08:46:15 +00:00
|
|
|
Copyright 2018 The Ceph-CSI Authors.
|
2018-01-09 18:59:50 +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 rbd
|
|
|
|
|
|
|
|
import (
|
2020-04-17 09:23:49 +00:00
|
|
|
csicommon "github.com/ceph/ceph-csi/internal/csi-common"
|
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"
|
2018-10-15 14:59:41 +00:00
|
|
|
|
2019-02-18 11:30:28 +00:00
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
2020-12-17 13:01:48 +00:00
|
|
|
mount "k8s.io/mount-utils"
|
2018-01-09 18:59:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-07-08 14:59:34 +00:00
|
|
|
// volIDVersion is the version number of volume ID encoding scheme.
|
2019-06-01 21:26:42 +00:00
|
|
|
volIDVersion uint16 = 1
|
2018-01-09 18:59:50 +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-01-09 18:59:50 +00:00
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
ids *IdentityServer
|
|
|
|
ns *NodeServer
|
|
|
|
cs *ControllerServer
|
2021-03-17 07:27:04 +00:00
|
|
|
rs *ReplicationServer
|
2018-01-09 18:59:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2019-05-14 19:15:01 +00:00
|
|
|
|
2019-04-22 21:35:39 +00:00
|
|
|
// CSIInstanceID is the instance ID that is unique to an instance of CSI, used when sharing
|
2021-07-08 14:59:34 +00:00
|
|
|
// ceph clusters across CSI instances, to differentiate omap names per CSI instance.
|
2019-04-22 21:35:39 +00:00
|
|
|
CSIInstanceID = "default"
|
2019-05-14 19:15:01 +00:00
|
|
|
|
|
|
|
// volJournal and snapJournal are used to maintain RADOS based journals for CO generated
|
2021-07-08 14:59:34 +00:00
|
|
|
// VolumeName to backing RBD images.
|
2020-05-14 18:04:13 +00:00
|
|
|
volJournal *journal.Config
|
|
|
|
snapJournal *journal.Config
|
2021-06-25 11:39:42 +00:00
|
|
|
// rbdHardMaxCloneDepth is the hard limit for maximum number of nested volume clones that are taken before a flatten
|
2021-07-08 14:59:34 +00:00
|
|
|
// occurs.
|
2020-06-24 06:44:02 +00:00
|
|
|
rbdHardMaxCloneDepth uint
|
|
|
|
|
2021-06-25 11:39:42 +00:00
|
|
|
// rbdSoftMaxCloneDepth is the soft limit for maximum number of nested volume clones that are taken before a flatten
|
2021-07-08 14:59:34 +00:00
|
|
|
// occurs.
|
2020-11-17 03:34:29 +00:00
|
|
|
rbdSoftMaxCloneDepth uint
|
|
|
|
maxSnapshotsOnImage uint
|
|
|
|
minSnapshotsOnImageToStartFlatten uint
|
|
|
|
skipForceFlatten bool
|
2018-01-09 18:59:50 +00:00
|
|
|
)
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewDriver returns new rbd driver.
|
2019-01-28 11:47:06 +00:00
|
|
|
func NewDriver() *Driver {
|
2019-01-17 07:51:06 +00:00
|
|
|
return &Driver{}
|
2018-01-09 18:59:50 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewIdentityServer initialize a identity server for rbd CSI driver.
|
2019-01-17 07:51:06 +00:00
|
|
|
func NewIdentityServer(d *csicommon.CSIDriver) *IdentityServer {
|
|
|
|
return &IdentityServer{
|
2018-01-09 18:59:50 +00:00
|
|
|
DefaultIdentityServer: csicommon.NewDefaultIdentityServer(d),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:21:03 +00:00
|
|
|
// NewControllerServer initialize a controller server for rbd 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-01-09 18:59:50 +00:00
|
|
|
DefaultControllerServer: csicommon.NewDefaultControllerServer(d),
|
2019-09-12 04:53:37 +00:00
|
|
|
VolumeLocks: util.NewVolumeLocks(),
|
|
|
|
SnapshotLocks: util.NewVolumeLocks(),
|
2020-07-13 05:28:17 +00:00
|
|
|
OperationLocks: util.NewOperationLock(),
|
2018-01-09 18:59:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 07:27:04 +00:00
|
|
|
func NewReplicationServer(c *ControllerServer) *ReplicationServer {
|
|
|
|
return &ReplicationServer{ControllerServer: c}
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NewNodeServer initialize a node server for rbd CSI driver.
|
2020-01-24 16:26:56 +00:00
|
|
|
func NewNodeServer(d *csicommon.CSIDriver, t string, topology map[string]string) (*NodeServer, error) {
|
2018-10-15 14:59:41 +00:00
|
|
|
mounter := mount.New("")
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2019-01-17 07:51:06 +00:00
|
|
|
return &NodeServer{
|
2020-01-24 16:26:56 +00:00
|
|
|
DefaultNodeServer: csicommon.NewDefaultNodeServer(d, t, topology),
|
2018-10-15 14:59:41 +00:00
|
|
|
mounter: mounter,
|
2019-09-12 04:53:37 +00:00
|
|
|
VolumeLocks: util.NewVolumeLocks(),
|
2018-10-15 14:59:41 +00:00
|
|
|
}, nil
|
2018-01-09 18:59:50 +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
|
|
|
// rbd CSI driver which can serve multiple parallel requests.
|
2020-07-10 10:44:59 +00:00
|
|
|
func (r *Driver) Run(conf *util.Config) {
|
2018-10-15 14:59:41 +00:00
|
|
|
var err error
|
2020-01-24 16:26:56 +00:00
|
|
|
var topology map[string]string
|
2019-04-22 21:35:39 +00:00
|
|
|
|
|
|
|
// Create ceph.conf for use with CLI commands
|
|
|
|
if err = util.WriteCephConfig(); err != nil {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg("failed to write ceph configuration file (%v)", err)
|
2019-03-07 21:03:33 +00:00
|
|
|
}
|
2019-03-02 17:29:52 +00:00
|
|
|
|
2019-04-22 21:35:39 +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-04-22 21:35:39 +00:00
|
|
|
}
|
2019-05-14 19:15:01 +00:00
|
|
|
|
2020-06-24 06:44:02 +00:00
|
|
|
// update clone soft and hard limit
|
|
|
|
rbdHardMaxCloneDepth = conf.RbdHardMaxCloneDepth
|
|
|
|
rbdSoftMaxCloneDepth = conf.RbdSoftMaxCloneDepth
|
2020-06-24 08:12:12 +00:00
|
|
|
skipForceFlatten = conf.SkipForceFlatten
|
2020-07-01 05:27:11 +00:00
|
|
|
maxSnapshotsOnImage = conf.MaxSnapshotsOnImage
|
2020-11-17 03:34:29 +00:00
|
|
|
minSnapshotsOnImageToStartFlatten = conf.MinSnapshotsOnImage
|
2020-05-11 21:21:30 +00:00
|
|
|
// Create instances of the volume and snapshot journal
|
|
|
|
volJournal = journal.NewCSIVolumeJournal(CSIInstanceID)
|
|
|
|
snapJournal = journal.NewCSISnapshotJournal(CSIInstanceID)
|
2019-04-22 21:35:39 +00:00
|
|
|
|
2018-01-09 18:59:50 +00:00
|
|
|
// Initialize default library driver
|
2019-08-14 05:57:45 +00:00
|
|
|
r.cd = csicommon.NewCSIDriver(conf.DriverName, util.DriverVersion, conf.NodeID)
|
2019-01-17 06:18:18 +00:00
|
|
|
if r.cd == nil {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg("Failed to initialize CSI Driver.")
|
2018-01-09 18:59:50 +00:00
|
|
|
}
|
2019-08-14 06:42:17 +00:00
|
|
|
if conf.IsControllerServer || !conf.IsNodeServer {
|
|
|
|
r.cd.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{
|
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME,
|
|
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_SNAPSHOT,
|
|
|
|
csi.ControllerServiceCapability_RPC_CLONE_VOLUME,
|
2019-11-27 12:14:31 +00:00
|
|
|
csi.ControllerServiceCapability_RPC_EXPAND_VOLUME,
|
2019-08-14 06:42:17 +00:00
|
|
|
})
|
2021-06-25 11:39:42 +00:00
|
|
|
// We only support the multi-writer option when using block, but it's a supported capability for the plugin in
|
|
|
|
// general
|
2019-08-14 06:42:17 +00:00
|
|
|
// In addition, we want to add the remaining modes like MULTI_NODE_READER_ONLY,
|
|
|
|
// MULTI_NODE_SINGLE_WRITER etc, but need to do some verification of RO modes first
|
|
|
|
// will work those as follow up features
|
|
|
|
r.cd.AddVolumeCapabilityAccessModes(
|
2021-07-13 12:21:05 +00:00
|
|
|
[]csi.VolumeCapability_AccessMode_Mode{
|
|
|
|
csi.VolumeCapability_AccessMode_SINGLE_NODE_WRITER,
|
|
|
|
csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER,
|
|
|
|
})
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
2018-01-09 18:59:50 +00:00
|
|
|
|
|
|
|
// Create GRPC servers
|
2019-01-17 06:18:18 +00:00
|
|
|
r.ids = NewIdentityServer(r.cd)
|
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 {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg(err.Error())
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
|
|
|
r.ns, err = NewNodeServer(r.cd, conf.Vtype, topology)
|
2019-08-14 06:42:17 +00:00
|
|
|
if err != nil {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg("failed to start node server, err %v\n", err)
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
2018-10-15 14:59:41 +00:00
|
|
|
}
|
2018-12-19 14:26:16 +00:00
|
|
|
|
2019-08-14 06:42:17 +00:00
|
|
|
if conf.IsControllerServer {
|
2020-07-10 10:44:59 +00:00
|
|
|
r.cs = NewControllerServer(r.cd)
|
2021-03-17 07:27:04 +00:00
|
|
|
r.rs = NewReplicationServer(r.cs)
|
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 {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg(err.Error())
|
2020-01-24 16:26:56 +00:00
|
|
|
}
|
|
|
|
r.ns, err = NewNodeServer(r.cd, conf.Vtype, topology)
|
2019-08-14 06:42:17 +00:00
|
|
|
if err != nil {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.FatalLogMsg("failed to start node server, err %v\n", err)
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
2020-07-10 10:44:59 +00:00
|
|
|
r.cs = NewControllerServer(r.cd)
|
2019-08-14 06:42:17 +00:00
|
|
|
}
|
2018-12-19 14:26:16 +00:00
|
|
|
|
2018-01-09 18:59:50 +00:00
|
|
|
s := csicommon.NewNonBlockingGRPCServer()
|
2021-02-08 12:25:18 +00:00
|
|
|
srv := csicommon.Servers{
|
|
|
|
IS: r.ids,
|
|
|
|
CS: r.cs,
|
|
|
|
NS: r.ns,
|
2021-03-17 07:27:04 +00:00
|
|
|
// Register the replication controller to expose replication
|
|
|
|
// operations.
|
|
|
|
RS: r.rs,
|
2021-02-08 12:25:18 +00:00
|
|
|
}
|
|
|
|
s.Start(conf.Endpoint, conf.HistogramOption, srv, conf.EnableGRPCMetrics)
|
2019-08-21 09:28:02 +00:00
|
|
|
if conf.EnableGRPCMetrics {
|
2020-08-19 10:41:13 +00:00
|
|
|
util.WarningLogMsg("EnableGRPCMetrics is deprecated")
|
2019-08-21 09:28:02 +00:00
|
|
|
go util.StartMetricsServer(conf)
|
|
|
|
}
|
2021-03-25 11:14:46 +00:00
|
|
|
if conf.EnableProfiling {
|
|
|
|
if !conf.EnableGRPCMetrics {
|
|
|
|
go util.StartMetricsServer(conf)
|
|
|
|
}
|
|
|
|
util.DebugLogMsg("Registering profiling handler")
|
|
|
|
go util.EnableProfiling()
|
|
|
|
}
|
rbd: add volume healer
Problem:
-------
For rbd nbd userspace mounter backends, after a restart of the nodeplugin
all the mounts will start seeing IO errors. This is because, for rbd-nbd
backends there will be a userspace mount daemon running per volume, post
restart of the nodeplugin pod, there is no way to restore the daemons
back to life.
Solution:
--------
The volume healer is a one-time activity that is triggered at the startup
time of the rbd nodeplugin. It navigates through the list of volume
attachments on the node and acts accordingly.
For now, it is limited to nbd type storage only, but it is flexible and
can be extended in the future for other backend types as needed.
From a few feets above:
This solves a severe problem for nbd backed csi volumes. The healer while
going through the list of volume attachments on the node, if finds the
volume is in attached state and is of type nbd, then it will attempt to
fix the rbd-nbd volumes by sending a NodeStageVolume request with the
required volume attributes like secrets, device name, image attributes,
and etc.. which will finally help start the required rbd-nbd daemons in
the nodeplugin csi-rbdplugin container. This will allow reattaching the
backend images with the right nbd device, thus allowing the applications
to perform IO without any interruptions even after a nodeplugin restart.
Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
2021-05-31 11:13:54 +00:00
|
|
|
if conf.IsNodeServer {
|
|
|
|
go func() {
|
|
|
|
// TODO: move the healer to csi-addons
|
|
|
|
err := runVolumeHealer(r.ns, conf)
|
|
|
|
if err != nil {
|
|
|
|
util.ErrorLogMsg("healer had failures, err %v\n", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2018-01-09 18:59:50 +00:00
|
|
|
s.Wait()
|
|
|
|
}
|