forked from xapi-project/sm
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathXFSSR.py
More file actions
executable file
·260 lines (214 loc) · 8.94 KB
/
Copy pathXFSSR.py
File metadata and controls
executable file
·260 lines (214 loc) · 8.94 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/usr/bin/python3
#
# Original work copyright (C) Citrix Systems Inc.
# Modified work copyright (C) Vates SAS and XCP-ng community
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; version 2.1 only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# XFSSR: Based on local-file storage repository, mounts xfs partition
from sm_typing import override
import SR
from SR import deviceCheck
import SRCommand
import VDI
import FileSR
import util
import lvutil
import scsiutil
import os
import xs_errors
import vhdutil
from lock import Lock
from constants import EXT_PREFIX
CAPABILITIES = ["SR_PROBE", "SR_UPDATE", "SR_SUPPORTS_LOCAL_CACHING", \
"VDI_CREATE", "VDI_DELETE", "VDI_ATTACH", "VDI_DETACH", \
"VDI_UPDATE", "VDI_CLONE", "VDI_SNAPSHOT", "VDI_RESIZE", "VDI_MIRROR", \
"VDI_GENERATE_CONFIG", \
"VDI_RESET_ON_BOOT/2", "ATOMIC_PAUSE", "VDI_CONFIG_CBT",
"VDI_ACTIVATE", "VDI_DEACTIVATE", "THIN_PROVISIONING", "VDI_READ_CACHING"]
CONFIGURATION = [['device', 'local device path (required) (e.g. /dev/sda3)']]
DRIVER_INFO = {
'name': 'Local XFS VHD',
'description': 'SR plugin which represents disks as VHD files stored on a local XFS filesystem, created inside an LVM volume',
'vendor': 'Vates SAS',
'copyright': '(C) 2019 Vates SAS',
'driver_version': '1.0',
'required_api_version': '1.0',
'capabilities': CAPABILITIES,
'configuration': CONFIGURATION
}
DRIVER_CONFIG = {"ATTACH_FROM_CONFIG_WITH_TAPDISK": True}
class XFSSR(FileSR.FileSR):
"""XFS Local file storage repository"""
DRIVER_TYPE = 'xfs'
@override
@staticmethod
def handles(srtype) -> bool:
return srtype == XFSSR.DRIVER_TYPE
@override
def load(self, sr_uuid) -> None:
if not self._is_xfs_available():
raise xs_errors.XenError(
'SRUnavailable',
opterr='xfsprogs is not installed'
)
self.ops_exclusive = FileSR.OPS_EXCLUSIVE
self.lock = Lock(vhdutil.LOCK_TYPE_SR, self.uuid)
self.sr_vditype = SR.DEFAULT_TAP
self.path = os.path.join(SR.MOUNT_BASE, sr_uuid)
self.vgname = EXT_PREFIX + sr_uuid
self.remotepath = os.path.join("/dev", self.vgname, sr_uuid)
self.attached = self._checkmount()
self.driver_config = DRIVER_CONFIG
@override
def delete(self, sr_uuid) -> None:
super(XFSSR, self).delete(sr_uuid)
# Check PVs match VG
try:
for dev in self.dconf['device'].split(','):
cmd = ["pvs", dev]
txt = util.pread2(cmd)
if txt.find(self.vgname) == -1:
raise xs_errors.XenError('VolNotFound', \
opterr='volume is %s' % self.vgname)
except util.CommandException as inst:
raise xs_errors.XenError('PVSfailed', \
opterr='error is %d' % inst.code)
# Remove LV, VG and pv
try:
cmd = ["lvremove", "-f", self.remotepath]
util.pread2(cmd)
cmd = ["vgremove", self.vgname]
util.pread2(cmd)
for dev in self.dconf['device'].split(','):
cmd = ["pvremove", dev]
util.pread2(cmd)
except util.CommandException as inst:
raise xs_errors.XenError('LVMDelete', \
opterr='errno is %d' % inst.code)
@override
def attach(self, sr_uuid) -> None:
if not self._checkmount():
try:
#Activate LV
cmd = ['lvchange', '-ay', self.remotepath]
util.pread2(cmd)
# make a mountpoint:
if not os.path.isdir(self.path):
os.makedirs(self.path)
except util.CommandException as inst:
raise xs_errors.XenError('LVMMount', \
opterr='Unable to activate LV. Errno is %d' % inst.code)
try:
util.pread(["fsck", "-a", self.remotepath])
except util.CommandException as inst:
if inst.code == 1:
util.SMlog("FSCK detected and corrected FS errors. Not fatal.")
else:
raise xs_errors.XenError('LVMMount', \
opterr='FSCK failed on %s. Errno is %d' % (self.remotepath, inst.code))
try:
util.pread(["mount", self.remotepath, self.path])
except util.CommandException as inst:
raise xs_errors.XenError('LVMMount', \
opterr='Failed to mount FS. Errno is %d' % inst.code)
self.attached = True
#Update SCSIid string
scsiutil.add_serial_record(self.session, self.sr_ref, \
scsiutil.devlist_to_serialstring(self.dconf['device'].split(',')))
# Set the block scheduler
for dev in self.dconf['device'].split(','):
self.block_setscheduler(dev)
@override
def detach(self, sr_uuid) -> None:
super(XFSSR, self).detach(sr_uuid)
try:
# deactivate SR
cmd = ["lvchange", "-an", self.remotepath]
util.pread2(cmd)
except util.CommandException as inst:
raise xs_errors.XenError('LVMUnMount', \
opterr='lvm -an failed errno is %d' % inst.code)
@override
@deviceCheck
def probe(self) -> str:
return lvutil.srlist_toxml(lvutil.scan_srlist(EXT_PREFIX, self.dconf['device']),
EXT_PREFIX)
@override
@deviceCheck
def create(self, sr_uuid, size) -> None:
if self._checkmount():
raise xs_errors.XenError('SRExists')
# Check none of the devices already in use by other PBDs
if util.test_hostPBD_devs(self.session, sr_uuid, self.dconf['device']):
raise xs_errors.XenError('SRInUse')
# Check serial number entry in SR records
for dev in self.dconf['device'].split(','):
if util.test_scsiserial(self.session, dev):
raise xs_errors.XenError('SRInUse')
if not lvutil._checkVG(self.vgname):
lvutil.createVG(self.dconf['device'], self.vgname)
if lvutil._checkLV(self.remotepath):
raise xs_errors.XenError('SRExists')
try:
numdevs = len(self.dconf['device'].split(','))
cmd = ["lvcreate", "-n", sr_uuid]
if numdevs > 1:
lowest = -1
for dev in self.dconf['device'].split(','):
stats = lvutil._getPVstats(dev)
if lowest < 0 or stats['freespace'] < lowest:
lowest = stats['freespace']
size_mb = (lowest // (1024 * 1024)) * numdevs
# Add stripe parameter to command
cmd += ["-i", str(numdevs), "-I", "2048"]
else:
stats = lvutil._getVGstats(self.vgname)
size_mb = stats['freespace'] // (1024 * 1024)
assert(size_mb > 0)
cmd += ["-L", str(size_mb), self.vgname]
text = util.pread(cmd)
cmd = ["lvchange", "-ay", self.remotepath]
text = util.pread(cmd)
except util.CommandException as inst:
raise xs_errors.XenError('LVMCreate', \
opterr='lv operation, error %d' % inst.code)
except AssertionError:
raise xs_errors.XenError('SRNoSpace', \
opterr='Insufficient space in VG %s' % self.vgname)
try:
util.pread2(["mkfs.xfs", self.remotepath])
except util.CommandException as inst:
raise xs_errors.XenError('LVMFilesystem', \
opterr='mkfs failed error %d' % inst.code)
#Update serial number string
scsiutil.add_serial_record(self.session, self.sr_ref, \
scsiutil.devlist_to_serialstring(self.dconf['device'].split(',')))
@override
def vdi(self, uuid) -> VDI.VDI:
return XFSFileVDI(self, uuid)
@staticmethod
def _is_xfs_available():
return util.find_executable('mkfs.xfs')
class XFSFileVDI(FileSR.FileVDI):
@override
def attach(self, sr_uuid, vdi_uuid) -> str:
if not hasattr(self, 'xenstore_data'):
self.xenstore_data = {}
self.xenstore_data['storage-type'] = XFSSR.DRIVER_TYPE
return super(XFSFileVDI, self).attach(sr_uuid, vdi_uuid)
if __name__ == '__main__':
SRCommand.run(XFSSR, DRIVER_INFO)
else:
SR.registerSR(XFSSR)