-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_windows.go
122 lines (108 loc) · 3.57 KB
/
utils_windows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
//go:build windows
/*
Copyright 2020 The Kubernetes 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 gceGCEDriver
import (
"fmt"
"net/url"
"strings"
"k8s.io/mount-utils"
"sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/common"
mounter "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/mount-manager"
)
func formatAndMount(source, target, fstype string, options []string, m *mount.SafeFormatAndMount) error {
if !strings.EqualFold(fstype, defaultWindowsFsType) {
return fmt.Errorf("GCE PD CSI driver can only supports %s file system, it does not support %s", defaultWindowsFsType, fstype)
}
proxy, ok := m.Interface.(mounter.CSIProxyMounter)
if !ok {
return fmt.Errorf("could not cast to csi proxy class")
}
return proxy.FormatAndMount(source, target, fstype, options)
}
// Before mounting (which means creating symlink) in Windows, the targetPath should
// not exist. Currently kubelet creates the path beforehand, this is a workaround to
// remove the path first.
func preparePublishPath(path string, m *mount.SafeFormatAndMount) error {
proxy, ok := m.Interface.(mounter.CSIProxyMounter)
if !ok {
return fmt.Errorf("could not cast to csi proxy class")
}
exists, err := proxy.ExistsPath(path)
if err != nil {
return err
}
if exists {
return proxy.RemovePodDir(path)
}
return nil
}
// Before staging (which means creating symlink) in Windows, the targetPath should
// not exist.
func prepareStagePath(path string, m *mount.SafeFormatAndMount) error {
return nil
}
func cleanupPublishPath(path string, m *mount.SafeFormatAndMount) error {
proxy, ok := m.Interface.(mounter.CSIProxyMounter)
if !ok {
return fmt.Errorf("could not cast to csi proxy class")
}
return proxy.RemovePodDir(path)
}
func cleanupStagePath(path string, m *mount.SafeFormatAndMount) error {
proxy, ok := m.Interface.(mounter.CSIProxyMounter)
if !ok {
return fmt.Errorf("could not cast to csi proxy class")
}
return proxy.UnmountDevice(path)
}
// search Windows disk number by volumeID
func getDevicePath(ns *GCENodeServer, volumeID, partition string) (string, error) {
_, volumeKey, err := common.VolumeIDToKey(volumeID)
if err != nil {
return "", err
}
deviceName, err := common.GetDeviceName(volumeKey)
if err != nil {
return "", fmt.Errorf("error getting device name: %v", err)
}
proxy, ok := ns.Mounter.Interface.(mounter.CSIProxyMounter)
if !ok {
return "", fmt.Errorf("could not cast to csi proxy class")
}
return proxy.GetDiskNumber(deviceName, partition, volumeKey.Name)
}
func disableDevice(devicePath string) error {
// This is a no-op on windows.
return nil
}
func getBlockSizeBytes(devicePath string, m *mount.SafeFormatAndMount) (int64, error) {
proxy, ok := m.Interface.(mounter.CSIProxyMounter)
if !ok {
return 0, fmt.Errorf("could not cast to csi proxy class")
}
return proxy.GetDiskTotalBytes(devicePath)
}
func parseEndpoint(endpoint string) (*url.URL, error) {
u, err := url.Parse(endpoint)
if err != nil {
return nil, err
}
if u.Scheme == "unix" {
// remove leading slashes
if len(u.Path) > 0 && string(u.Path[0]) == "/" {
u.Path = u.Path[1:]
}
}
return u, err
}