You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SECURITY.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,13 @@ We take the security of the csi-lib-sas project seriously. If you find any secur
6
6
7
7
:warning:**Please do not publicly report any security vulnerabilities via GitHub issues.**
8
8
9
-
If you have concerns or questions, please email us at [opensource@seagate.com](mailto:opensource@seagate.com).
9
+
If you have concerns or questions, please email us at [opensource@seagate.com](mailto:opensource@seagate.com).
10
10
11
11
To report an actual vulnerability, please use the "[Seagate Responsible Vulnerability Disclosure Policy](https://www.seagate.com/legal-privacy/responsible-vulnerability-disclosure-policy/)"
12
-
13
12
14
13
### Reporting Format
15
14
16
-
To make your reporting meaningful and help us understand the nature and scope of the issue, please include as much information as possible.
15
+
To make your reporting meaningful and help us understand the nature and scope of the issue, please include as much information as possible.
Copy file name to clipboardExpand all lines: sas/sas.go
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -39,12 +39,12 @@ type ioHandler interface {
39
39
40
40
// Connector provides a struct to hold all of the needed parameters to make our SAS connection
41
41
typeConnectorstruct {
42
-
VolumeNamestring`json:"volume_name"`
43
-
TargetWWNstring`json:"target_wwn"`
44
-
Multipathbool`json:"multipath"`
45
-
TargetDevicestring`json:"target_device"`
46
-
SCSIDevices[]string`json:"scsi_devices"`
47
-
IoHandlerioHandler
42
+
VolumeNamestring`json:"volume_name"`// Passed In: A name given to the storage volume by the provisioner, for debugging.
43
+
VolumeWWNstring`json:"volume_wwn"`// Passed In: 128 bit world wide name given to storage volume.
44
+
Multipathbool`json:"multipath"`// Discovered: True indicates that OSPathName is a multipath device (dm-#), otherwise it is a regular device (/dev/sdX)
45
+
OSPathNamestring`json:"os_device_path"`// Discovered: The OS path to the storage volume WWN, for example /dev/sdb or /dev/dm-5
46
+
OSDevicePaths[]string`json:"scsi_devices"`// Discovered: The OS path(s) to the storage volume WWN, for example ["/dev/sdb"] or ["/dev/sdb", "/dev/sdc"]
47
+
IoHandlerioHandler// Passed In
48
48
}
49
49
50
50
// OSioHandler is a wrapper that includes all the necessary io functions used for (Should be used as default io handler)
0 commit comments