-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cephfs: adds the implementation of client eviction
this commit adds client eviction to cephfs, based on the IPs in cidr block, it evicts those IPs from the network. Signed-off-by: Riya Singhal <[email protected]>
- Loading branch information
1 parent
a57fe08
commit 471351a
Showing
2 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
Copyright 2023 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 cephfs | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
|
||
nf "github.com/ceph/ceph-csi/internal/csi-addons/networkfence" | ||
"github.com/ceph/ceph-csi/internal/util" | ||
|
||
"github.com/csi-addons/spec/lib/go/fence" | ||
"google.golang.org/grpc" | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
) | ||
|
||
// FenceControllerServer struct of cephFS CSI driver with supported methods | ||
// of CSI-Addons networkfence controller service spec. | ||
type FenceControllerServer struct { | ||
*fence.UnimplementedFenceControllerServer | ||
} | ||
|
||
// NewFenceControllerServer creates a new FenceControllerServer which handles | ||
// the FenceController Service requests from the CSI-Addons specification. | ||
func NewFenceControllerServer() *FenceControllerServer { | ||
return &FenceControllerServer{} | ||
} | ||
|
||
// RegisterService registers the FenceControllerServer's service | ||
// with the gRPC server. | ||
func (fcs *FenceControllerServer) RegisterService(server grpc.ServiceRegistrar) { | ||
fence.RegisterFenceControllerServer(server, fcs) | ||
} | ||
|
||
// validateFenceClusterNetworkReq checks the sanity of FenceClusterNetworkRequest. | ||
func validateNetworkFenceReq(fenceClients []*fence.CIDR, options map[string]string) error { | ||
if len(fenceClients) == 0 { | ||
return errors.New("CIDR block cannot be empty") | ||
} | ||
|
||
if value, ok := options["clusterID"]; !ok || value == "" { | ||
return errors.New("missing or empty clusterID") | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// FenceClusterNetwork blocks access to a CIDR block by creating a network fence. | ||
// It evicts the IP addresses of clients, which are in CIDR block. | ||
func (fcs *FenceControllerServer) FenceClusterNetwork( | ||
ctx context.Context, | ||
req *fence.FenceClusterNetworkRequest, | ||
) (*fence.FenceClusterNetworkResponse, error) { | ||
err := validateNetworkFenceReq(req.GetCidrs(), req.Parameters) | ||
if err != nil { | ||
return nil, status.Error(codes.InvalidArgument, err.Error()) | ||
} | ||
|
||
cr, err := util.NewUserCredentials(req.GetSecrets()) | ||
if err != nil { | ||
return nil, status.Error(codes.Internal, err.Error()) | ||
} | ||
defer cr.DeleteCredentials() | ||
|
||
nwFence, err := nf.NewNetworkFence(ctx, cr, req.Cidrs, req.GetParameters()) | ||
if err != nil { | ||
return nil, status.Error(codes.Internal, err.Error()) | ||
} | ||
|
||
err = nwFence.AddClientEviction(ctx) | ||
if err != nil { | ||
return nil, status.Errorf(codes.Internal, "failed to fence CIDR block %q: %s", nwFence.Cidr, err.Error()) | ||
} | ||
|
||
return &fence.FenceClusterNetworkResponse{}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters