-
Notifications
You must be signed in to change notification settings - Fork 115
/
scsi_volume_id_device_path_resolver.go
83 lines (67 loc) · 1.89 KB
/
scsi_volume_id_device_path_resolver.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
package devicepathresolver
import (
"fmt"
"path"
"strings"
"time"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
boshsys "github.com/cloudfoundry/bosh-utils/system"
)
const maxScanRetries = 30
type SCSIVolumeIDDevicePathResolver struct {
diskWaitTimeout time.Duration
fs boshsys.FileSystem
}
func NewSCSIVolumeIDDevicePathResolver(
diskWaitTimeout time.Duration,
fs boshsys.FileSystem,
) SCSIVolumeIDDevicePathResolver {
return SCSIVolumeIDDevicePathResolver{
fs: fs,
diskWaitTimeout: diskWaitTimeout,
}
}
func (devicePathResolver SCSIVolumeIDDevicePathResolver) GetRealDevicePath(diskSettings boshsettings.DiskSettings) (realPath string, timedOut bool, err error) {
devicePaths, err := devicePathResolver.fs.Glob("/sys/bus/scsi/devices/*:0:0:0/block/*")
if err != nil {
return
}
var hostID string
volumeID := diskSettings.VolumeID
for _, rootDevicePath := range devicePaths {
if path.Base(rootDevicePath) == "sda" {
rootDevicePathSplits := strings.Split(rootDevicePath, "/")
if len(rootDevicePathSplits) > 5 {
scsiPath := rootDevicePathSplits[5]
scsiPathSplits := strings.Split(scsiPath, ":")
if len(scsiPathSplits) > 0 {
hostID = scsiPathSplits[0]
}
}
}
}
if len(hostID) == 0 {
return
}
scanPath := fmt.Sprintf("/sys/class/scsi_host/host%s/scan", hostID)
err = devicePathResolver.fs.WriteFileString(scanPath, "- - -")
if err != nil {
return
}
deviceGlobPath := fmt.Sprintf("/sys/bus/scsi/devices/%s:0:%s:0/block/*", hostID, volumeID)
for i := 0; i < maxScanRetries; i++ {
devicePaths, err = devicePathResolver.fs.Glob(deviceGlobPath)
if err != nil || len(devicePaths) == 0 {
time.Sleep(devicePathResolver.diskWaitTimeout)
continue
} else {
break
}
}
if err != nil || len(devicePaths) == 0 {
return
}
basename := path.Base(devicePaths[0])
realPath = path.Join("/dev/", basename)
return
}