forked from open-iscsi/rtslib-fb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.py
551 lines (475 loc) · 20.5 KB
/
root.py
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
'''
Implements the RTSRoot class.
This file is part of RTSLib.
Copyright (c) 2011-2013 by Datera, Inc
Copyright (c) 2011-2014 by Red Hat, Inc.
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.
'''
import os
import stat
import json
import glob
import errno
import shutil
from .node import CFSNode
from .target import Target
from .fabric import FabricModule
from .tcm import so_mapping, bs_cache, StorageObject
from .utils import RTSLibError, RTSLibALUANotSupported, modprobe, mount_configfs
from .utils import dict_remove, set_attributes
from .utils import fread, fwrite
from .alua import ALUATargetPortGroup
default_save_file = "/etc/target/saveconfig.json"
class RTSRoot(CFSNode):
'''
This is an interface to the root of the configFS object tree.
Is allows one to start browsing Target and StorageObjects,
as well as helper methods to return arbitrary objects from the
configFS tree.
>>> import rtslib.root as root
>>> rtsroot = root.RTSRoot()
>>> rtsroot.path
'/sys/kernel/config/target'
>>> rtsroot.exists
True
>>> rtsroot.targets # doctest: +ELLIPSIS
[...]
>>> rtsroot.tpgs # doctest: +ELLIPSIS
[...]
>>> rtsroot.storage_objects # doctest: +ELLIPSIS
[...]
>>> rtsroot.network_portals # doctest: +ELLIPSIS
[...]
'''
# RTSRoot private stuff
# this should match the kernel target driver default db dir
_default_dbroot = "/var/target"
# this is where the target DB is to be located (instead of the default)
_preferred_dbroot = "/etc/target"
def __init__(self):
'''
Instantiate an RTSRoot object. Basically checks for configfs setup and
base kernel modules (tcm)
'''
super(RTSRoot, self).__init__()
try:
mount_configfs()
except RTSLibError:
modprobe('configfs')
mount_configfs()
try:
self._create_in_cfs_ine('any')
except RTSLibError:
modprobe('target_core_mod')
self._create_in_cfs_ine('any')
self._set_dbroot()
def _list_targets(self):
self._check_self()
for fabric_module in self.fabric_modules:
for target in fabric_module.targets:
yield target
def _list_storage_objects(self):
self._check_self()
for so in StorageObject.all():
yield so
def _list_alua_tpgs(self):
self._check_self()
for so in self.storage_objects:
for a in so.alua_tpgs:
yield a
def _list_tpgs(self):
self._check_self()
for t in self.targets:
for tpg in t.tpgs:
yield tpg
def _list_node_acls(self):
self._check_self()
for t in self.tpgs:
for node_acl in t.node_acls:
yield node_acl
def _list_node_acl_groups(self):
self._check_self()
for t in self.tpgs:
for nag in t.node_acl_groups:
yield nag
def _list_mapped_luns(self):
self._check_self()
for na in self.node_acls:
for mlun in na.mapped_luns:
yield mlun
def _list_mapped_lun_groups(self):
self._check_self()
for nag in self.node_acl_groups:
for mlg in nag.mapped_lun_groups:
yield mlg
def _list_network_portals(self):
self._check_self()
for t in self.tpgs:
for p in t.network_portals:
yield p
def _list_luns(self):
self._check_self()
for t in self.tpgs:
for lun in t.luns:
yield lun
def _list_sessions(self):
self._check_self()
for na in self.node_acls:
if na.session:
yield na.session
def _list_fabric_modules(self):
self._check_self()
for mod in FabricModule.all():
yield mod
def __str__(self):
return "rtslib"
def _set_dbroot(self):
dbroot_path = self.path + "/dbroot"
if not os.path.exists(dbroot_path):
self._dbroot = self._default_dbroot
return
self._dbroot = fread(dbroot_path)
if self._dbroot != self._preferred_dbroot:
if len(FabricModule.list_registered_drivers()) != 0:
# Writing to dbroot_path after drivers have been registered will make the kernel emit this error:
# db_root: cannot be changed: target drivers registered
from warnings import warn
warn("Cannot set dbroot to {}. Target drivers have already been registered."
.format(self._preferred_dbroot))
return
try:
fwrite(dbroot_path, self._preferred_dbroot+"\n")
except:
if not os.path.isdir(self._preferred_dbroot):
raise RTSLibError("Cannot set dbroot to {}. Please check if this directory exists."
.format(self._preferred_dbroot))
self._dbroot = fread(dbroot_path)
def _get_dbroot(self):
return self._dbroot
def _get_saveconf(self, so_path, save_file):
'''
Fetch the configuration of all the blocks and return conf with
updated storageObject info and its related target configuraion of
given storage object path
'''
current = self.dump()
try:
with open(save_file, "r") as f:
saveconf = json.loads(f.read())
except IOError as e:
if e.errno == errno.ENOENT:
saveconf = {'storage_objects': [], 'targets': []}
else:
raise ExecutionError("Could not open %s" % save_file)
fetch_cur_so = False
fetch_cur_tg = False
# Get the given block current storageObj configuration
for sidx, sobj in enumerate(current.get('storage_objects', [])):
if '/backstores/' + sobj['plugin'] + '/' + sobj['name'] == so_path:
current_so = current['storage_objects'][sidx]
fetch_cur_so = True
break
# Get the given block current target configuration
if fetch_cur_so:
for tidx, tobj in enumerate(current.get('targets', [])):
if fetch_cur_tg:
break
for luns in tobj.get('tpgs', []):
if fetch_cur_tg:
break
for lun in luns.get('luns', []):
if lun['storage_object'] == so_path:
current_tg = current['targets'][tidx]
fetch_cur_tg = True
break
fetch_sav_so = False
fetch_sav_tg = False
# Get the given block storageObj from saved configuration
for sidx, sobj in enumerate(saveconf.get('storage_objects', [])):
if '/backstores/' + sobj['plugin'] + '/' + sobj['name'] == so_path:
# Merge StorageObj
if fetch_cur_so:
saveconf['storage_objects'][sidx] = current_so
# Remove StorageObj
else:
saveconf['storage_objects'].remove(saveconf['storage_objects'][sidx])
fetch_sav_so = True
break
# Get the given block target from saved configuration
if fetch_sav_so:
for tidx, tobj in enumerate(saveconf.get('targets', [])):
if fetch_sav_tg:
break
for luns in tobj.get('tpgs', []):
if fetch_sav_tg:
break
for lun in luns.get('luns', []):
if lun['storage_object'] == so_path:
# Merge target
if fetch_cur_tg:
saveconf['targets'][tidx] = current_tg
# Remove target
else:
saveconf['targets'].remove(saveconf['targets'][tidx])
fetch_sav_tg = True
break
# Insert storageObj
if fetch_cur_so and not fetch_sav_so:
saveconf['storage_objects'].append(current_so)
# Insert target
if fetch_cur_tg and not fetch_sav_tg:
saveconf['targets'].append(current_tg)
return saveconf
# RTSRoot public stuff
def dump(self):
'''
Returns a dict representing the complete state of the target
config, suitable for serialization/deserialization, and then
handing to restore().
'''
d = super(RTSRoot, self).dump()
d['storage_objects'] = [so.dump() for so in self.storage_objects]
d['targets'] = [t.dump() for t in self.targets]
d['fabric_modules'] = [f.dump() for f in self.fabric_modules
if f.has_feature("discovery_auth")
if f.discovery_enable_auth]
return d
def clear_existing(self, target=None, storage_object=None, confirm=False):
'''
Remove entire current configuration.
'''
if not confirm:
raise RTSLibError("As a precaution, confirm=True needs to be set")
# Targets depend on storage objects, delete them first.
for t in self.targets:
# * Delete the single matching target if target=iqn.xxx was supplied
# with restoreconfig command
# * If only storage_object=blockx option is supplied then do not
# delete any targets
# * If restoreconfig was not supplied with neither target=iqn.xxx
# nor storage_object=blockx then delete all targets
if (not storage_object and not target) or (target and t.wwn == target):
t.delete()
if target:
break
for fm in (f for f in self.fabric_modules if f.has_feature("discovery_auth")):
fm.clear_discovery_auth_settings()
for so in self.storage_objects:
# * Delete the single matching storage object if storage_object=blockx
# was supplied with restoreconfig command
# * If only target=iqn.xxx option is supplied then do not
# delete any storage_object's
# * If restoreconfig was not supplied with neither target=iqn.xxx
# nor storage_object=blockx then delete all storage_object's
if (not storage_object and not target) or (storage_object and so.name == storage_object):
so.delete()
if storage_object:
break
# If somehow some hbas still exist (no storage object within?) clean
# them up too.
if not (storage_object or target):
for hba_dir in glob.glob("%s/core/*_*" % self.configfs_dir):
os.rmdir(hba_dir)
def restore(self, config, target=None, storage_object=None,
clear_existing=False, abort_on_error=False):
'''
Takes a dict generated by dump() and reconfigures the target to match.
Returns list of non-fatal errors that were encountered.
Will refuse to restore over an existing configuration unless clear_existing
is True.
'''
if clear_existing:
self.clear_existing(target, storage_object, confirm=True)
elif any(self.storage_objects) or any(self.targets):
if any(self.storage_objects):
for config_so in config.get('storage_objects', []):
for loaded_so in self.storage_objects:
if config_so['name'] == loaded_so.name and \
config_so['plugin'] == loaded_so.plugin:
raise RTSLibError("storageobject '%s:%s' exist not restoring"
%(loaded_so.plugin, loaded_so.name))
if any(self.targets):
for config_tg in config.get('targets', []):
for loaded_tg in self.targets:
if config_tg['wwn'] == loaded_tg.wwn:
raise RTSLibError("target with wwn %s exist, not restoring"
%(loaded_tg.wwn))
errors = []
if abort_on_error:
def err_func(err_str):
raise RTSLibError(err_str)
else:
def err_func(err_str):
errors.append(err_str + ", skipped")
for index, so in enumerate(config.get('storage_objects', [])):
if 'name' not in so:
err_func("'name' not defined in storage object %d" % index)
continue
# * Restore/load the single matching storage object if
# storage_object=blockx was supplied with restoreconfig command
# * In case if no storage_object was supplied but only target=iqn.xxx
# was supplied then do not load any storage_object's
# * If neither storage_object nor target option was supplied to
# restoreconfig, then go ahead and load all storage_object's
if (not storage_object and not target) or (storage_object and so['name'] == storage_object):
try:
so_cls = so_mapping[so['plugin']]
except KeyError:
err_func("'plugin' not defined or invalid in storageobject %s" % so['name'])
if storage_object:
break
continue
kwargs = so.copy()
dict_remove(kwargs, ('exists', 'attributes', 'plugin', 'buffered_mode', 'alua_tpgs'))
try:
so_obj = so_cls(**kwargs)
except Exception as e:
err_func("Could not create StorageObject %s: %s" % (so['name'], e))
if storage_object:
break
continue
# Custom err func to include block name
def so_err_func(x):
return err_func("Storage Object %s/%s: %s" % (so['plugin'], so['name'], x))
set_attributes(so_obj, so.get('attributes', {}), so_err_func)
for alua_tpg in so.get('alua_tpgs', {}):
try:
ALUATargetPortGroup.setup(so_obj, alua_tpg, err_func)
except RTSLibALUANotSupported:
pass
if storage_object:
break
# Don't need to create fabric modules
for index, fm in enumerate(config.get('fabric_modules', [])):
if 'name' not in fm:
err_func("'name' not defined in fabricmodule %d" % index)
continue
for fm_obj in self.fabric_modules:
if fm['name'] == fm_obj.name:
fm_obj.setup(fm, err_func)
break
for index, t in enumerate(config.get('targets', [])):
if 'wwn' not in t:
err_func("'wwn' not defined in target %d" % index)
continue
# * Restore/load the single matching target if target=iqn.xxx was
# supplied with restoreconfig command
# * In case if no target was supplied but only storage_object=blockx
# was supplied then do not load any targets
# * If neither storage_object nor target option was supplied to
# restoreconfig, then go ahead and load all targets
if (not storage_object and not target) or (target and t['wwn'] == target):
if 'fabric' not in t:
err_func("target %s missing 'fabric' field" % t['wwn'])
if target:
break
continue
if t['fabric'] not in (f.name for f in self.fabric_modules):
err_func("Unknown fabric '%s'" % t['fabric'])
if target:
break
continue
fm_obj = FabricModule(t['fabric'])
# Instantiate target
Target.setup(fm_obj, t, err_func)
if target:
break
return errors
def save_to_file(self, save_file=None, so_path=None):
'''
Write the configuration in json format to a file.
Save file defaults to '/etc/target/saveconfig.json'.
'''
if not save_file:
save_file = default_save_file
if so_path:
saveconf = self._get_saveconf(so_path, save_file)
else:
saveconf = self.dump()
tmp_file = save_file + ".temp"
mode = stat.S_IRUSR | stat.S_IWUSR # 0o600
umask = 0o777 ^ mode # Prevents always downgrading umask to 0
# For security, remove file with potentially elevated mode
try:
os.remove(tmp_file)
except OSError:
pass
umask_original = os.umask(umask)
# Even though the old file is first deleted, a race condition is still
# possible. Including os.O_EXCL with os.O_CREAT in the flags will
# prevent the file from being created if it exists due to a race
try:
fdesc = os.open(tmp_file, os.O_WRONLY | os.O_CREAT | os.O_EXCL, mode)
except OSError:
raise ExecutionError("Could not open %s" % tmp_file)
with os.fdopen(fdesc, 'w') as f:
f.write(json.dumps(saveconf, sort_keys=True, indent=2))
f.write("\n")
f.flush()
os.fsync(f.fileno())
f.close()
# copy along with permissions
shutil.copy(tmp_file, save_file)
os.umask(umask_original)
os.remove(tmp_file)
def restore_from_file(self, restore_file=None, clear_existing=True,
target=None, storage_object=None,
abort_on_error=False):
'''
Restore the configuration from a file in json format.
Restore file defaults to '/etc/target/saveconfig.json'.
Returns a list of non-fatal errors. If abort_on_error is set,
it will raise the exception instead of continuing.
'''
if not restore_file:
restore_file = default_save_file
with open(restore_file, "r") as f:
config = json.loads(f.read())
return self.restore(config, target, storage_object,
clear_existing=clear_existing,
abort_on_error=abort_on_error)
def invalidate_caches(self):
'''
Invalidate any caches used throughout the hierarchy
'''
bs_cache.clear()
targets = property(_list_targets,
doc="Get the list of Target objects.")
tpgs = property(_list_tpgs,
doc="Get the list of all the existing TPG objects.")
node_acls = property(_list_node_acls,
doc="Get the list of all the existing NodeACL objects.")
node_acl_groups = property(_list_node_acl_groups,
doc="Get the list of all the existing NodeACLGroup objects.")
mapped_luns = property(_list_mapped_luns,
doc="Get the list of all the existing MappedLUN objects.")
mapped_lun_groups = property(_list_mapped_lun_groups,
doc="Get the list of all the existing MappedLUNGroup objects.")
sessions = property(_list_sessions,
doc="Get the list of all the existing sessions.")
network_portals = property(_list_network_portals,
doc="Get the list of all the existing Network Portal objects.")
storage_objects = property(_list_storage_objects,
doc="Get the list of all the existing Storage objects.")
luns = property(_list_luns,
doc="Get the list of all existing LUN objects.")
fabric_modules = property(_list_fabric_modules,
doc="Get the list of all FabricModule objects.")
alua_tpgs = property(_list_alua_tpgs,
doc="Get the list of all ALUA TPG objects.")
dbroot = property(_get_dbroot,
doc="Get the target database root")
def _test():
'''Run the doctests.'''
import doctest
doctest.testmod()
if __name__ == "__main__":
_test()