]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/api/lvm.py
import 15.2.5
[ceph.git] / ceph / src / ceph-volume / ceph_volume / api / lvm.py
1 """
2 API for CRUD lvm tag operations. Follows the Ceph LVM tag naming convention
3 that prefixes tags with ``ceph.`` and uses ``=`` for assignment, and provides
4 set of utilities for interacting with LVM.
5 """
6 import logging
7 import os
8 import uuid
9 from itertools import repeat
10 from math import floor
11 from ceph_volume import process, util
12 from ceph_volume.exceptions import SizeAllocationError
13
14 logger = logging.getLogger(__name__)
15
16
17 def convert_filters_to_str(filters):
18 """
19 Convert filter args from dictionary to following format -
20 filters={filter_name=filter_val,...}
21 """
22 if not filters:
23 return filters
24
25 filter_arg = ''
26 for k, v in filters.items():
27 filter_arg += k + '=' + v + ','
28 # get rid of extra comma at the end
29 filter_arg = filter_arg[:len(filter_arg) - 1]
30
31 return filter_arg
32
33
34 def convert_tags_to_str(tags):
35 """
36 Convert tags from dictionary to following format -
37 tags={tag_name=tag_val,...}
38 """
39 if not tags:
40 return tags
41
42 tag_arg = 'tags={'
43 for k, v in tags.items():
44 tag_arg += k + '=' + v + ','
45 # get rid of extra comma at the end
46 tag_arg = tag_arg[:len(tag_arg) - 1] + '}'
47
48 return tag_arg
49
50
51 def make_filters_lvmcmd_ready(filters, tags):
52 """
53 Convert filters (including tags) from dictionary to following format -
54 filter_name=filter_val...,tags={tag_name=tag_val,...}
55
56 The command will look as follows =
57 lvs -S filter_name=filter_val...,tags={tag_name=tag_val,...}
58 """
59 filters = convert_filters_to_str(filters)
60 tags = convert_tags_to_str(tags)
61
62 if filters and tags:
63 return filters + ',' + tags
64 if filters and not tags:
65 return filters
66 if not filters and tags:
67 return tags
68 else:
69 return ''
70
71
72 def _output_parser(output, fields):
73 """
74 Newer versions of LVM allow ``--reportformat=json``, but older versions,
75 like the one included in Xenial do not. LVM has the ability to filter and
76 format its output so we assume the output will be in a format this parser
77 can handle (using ';' as a delimiter)
78
79 :param fields: A string, possibly using ',' to group many items, as it
80 would be used on the CLI
81 :param output: The CLI output from the LVM call
82 """
83 field_items = fields.split(',')
84 report = []
85 for line in output:
86 # clear the leading/trailing whitespace
87 line = line.strip()
88
89 # remove the extra '"' in each field
90 line = line.replace('"', '')
91
92 # prevent moving forward with empty contents
93 if not line:
94 continue
95
96 # splitting on ';' because that is what the lvm call uses as
97 # '--separator'
98 output_items = [i.strip() for i in line.split(';')]
99 # map the output to the fields
100 report.append(
101 dict(zip(field_items, output_items))
102 )
103
104 return report
105
106
107 def _splitname_parser(line):
108 """
109 Parses the output from ``dmsetup splitname``, that should contain prefixes
110 (--nameprefixes) and set the separator to ";"
111
112 Output for /dev/mapper/vg-lv will usually look like::
113
114 DM_VG_NAME='/dev/mapper/vg';DM_LV_NAME='lv';DM_LV_LAYER=''
115
116
117 The ``VG_NAME`` will usually not be what other callers need (e.g. just 'vg'
118 in the example), so this utility will split ``/dev/mapper/`` out, so that
119 the actual volume group name is kept
120
121 :returns: dictionary with stripped prefixes
122 """
123 parsed = {}
124 try:
125 parts = line[0].split(';')
126 except IndexError:
127 logger.exception('Unable to parse mapper device: %s', line)
128 return parsed
129
130 for part in parts:
131 part = part.replace("'", '')
132 key, value = part.split('=')
133 if 'DM_VG_NAME' in key:
134 value = value.split('/dev/mapper/')[-1]
135 key = key.split('DM_')[-1]
136 parsed[key] = value
137
138 return parsed
139
140
141 def sizing(device_size, parts=None, size=None):
142 """
143 Calculate proper sizing to fully utilize the volume group in the most
144 efficient way possible. To prevent situations where LVM might accept
145 a percentage that is beyond the vg's capabilities, it will refuse with
146 an error when requesting a larger-than-possible parameter, in addition
147 to rounding down calculations.
148
149 A dictionary with different sizing parameters is returned, to make it
150 easier for others to choose what they need in order to create logical
151 volumes::
152
153 >>> sizing(100, parts=2)
154 >>> {'parts': 2, 'percentages': 50, 'sizes': 50}
155
156 """
157 if parts is not None and size is not None:
158 raise ValueError(
159 "Cannot process sizing with both parts (%s) and size (%s)" % (parts, size)
160 )
161
162 if size and size > device_size:
163 raise SizeAllocationError(size, device_size)
164
165 def get_percentage(parts):
166 return int(floor(100 / float(parts)))
167
168 if parts is not None:
169 # Prevent parts being 0, falling back to 1 (100% usage)
170 parts = parts or 1
171 percentages = get_percentage(parts)
172
173 if size:
174 parts = int(device_size / size) or 1
175 percentages = get_percentage(parts)
176
177 sizes = device_size / parts if parts else int(floor(device_size))
178
179 return {
180 'parts': parts,
181 'percentages': percentages,
182 'sizes': int(sizes/1024/1024/1024),
183 }
184
185
186 def parse_tags(lv_tags):
187 """
188 Return a dictionary mapping of all the tags associated with
189 a Volume from the comma-separated tags coming from the LVM API
190
191 Input look like::
192
193 "ceph.osd_fsid=aaa-fff-bbbb,ceph.osd_id=0"
194
195 For the above example, the expected return value would be::
196
197 {
198 "ceph.osd_fsid": "aaa-fff-bbbb",
199 "ceph.osd_id": "0"
200 }
201 """
202 if not lv_tags:
203 return {}
204 tag_mapping = {}
205 tags = lv_tags.split(',')
206 for tag_assignment in tags:
207 if not tag_assignment.startswith('ceph.'):
208 continue
209 key, value = tag_assignment.split('=', 1)
210 tag_mapping[key] = value
211
212 return tag_mapping
213
214
215 def _vdo_parents(devices):
216 """
217 It is possible we didn't get a logical volume, or a mapper path, but
218 a device like /dev/sda2, to resolve this, we must look at all the slaves of
219 every single device in /sys/block and if any of those devices is related to
220 VDO devices, then we can add the parent
221 """
222 parent_devices = []
223 for parent in os.listdir('/sys/block'):
224 for slave in os.listdir('/sys/block/%s/slaves' % parent):
225 if slave in devices:
226 parent_devices.append('/dev/%s' % parent)
227 parent_devices.append(parent)
228 return parent_devices
229
230
231 def _vdo_slaves(vdo_names):
232 """
233 find all the slaves associated with each vdo name (from realpath) by going
234 into /sys/block/<realpath>/slaves
235 """
236 devices = []
237 for vdo_name in vdo_names:
238 mapper_path = '/dev/mapper/%s' % vdo_name
239 if not os.path.exists(mapper_path):
240 continue
241 # resolve the realpath and realname of the vdo mapper
242 vdo_realpath = os.path.realpath(mapper_path)
243 vdo_realname = vdo_realpath.split('/')[-1]
244 slaves_path = '/sys/block/%s/slaves' % vdo_realname
245 if not os.path.exists(slaves_path):
246 continue
247 devices.append(vdo_realpath)
248 devices.append(mapper_path)
249 devices.append(vdo_realname)
250 for slave in os.listdir(slaves_path):
251 devices.append('/dev/%s' % slave)
252 devices.append(slave)
253 return devices
254
255
256 def _is_vdo(path):
257 """
258 A VDO device can be composed from many different devices, go through each
259 one of those devices and its slaves (if any) and correlate them back to
260 /dev/mapper and their realpaths, and then check if they appear as part of
261 /sys/kvdo/<name>/statistics
262
263 From the realpath of a logical volume, determine if it is a VDO device or
264 not, by correlating it to the presence of the name in
265 /sys/kvdo/<name>/statistics and all the previously captured devices
266 """
267 if not os.path.isdir('/sys/kvdo'):
268 return False
269 realpath = os.path.realpath(path)
270 realpath_name = realpath.split('/')[-1]
271 devices = []
272 vdo_names = set()
273 # get all the vdo names
274 for dirname in os.listdir('/sys/kvdo/'):
275 if os.path.isdir('/sys/kvdo/%s/statistics' % dirname):
276 vdo_names.add(dirname)
277
278 # find all the slaves associated with each vdo name (from realpath) by
279 # going into /sys/block/<realpath>/slaves
280 devices.extend(_vdo_slaves(vdo_names))
281
282 # Find all possible parents, looking into slaves that are related to VDO
283 devices.extend(_vdo_parents(devices))
284
285 return any([
286 path in devices,
287 realpath in devices,
288 realpath_name in devices])
289
290
291 def is_vdo(path):
292 """
293 Detect if a path is backed by VDO, proxying the actual call to _is_vdo so
294 that we can prevent an exception breaking OSD creation. If an exception is
295 raised, it will get captured and logged to file, while returning
296 a ``False``.
297 """
298 try:
299 if _is_vdo(path):
300 return '1'
301 return '0'
302 except Exception:
303 logger.exception('Unable to properly detect device as VDO: %s', path)
304 return '0'
305
306
307 def dmsetup_splitname(dev):
308 """
309 Run ``dmsetup splitname`` and parse the results.
310
311 .. warning:: This call does not ensure that the device is correct or that
312 it exists. ``dmsetup`` will happily take a non existing path and still
313 return a 0 exit status.
314 """
315 command = [
316 'dmsetup', 'splitname', '--noheadings',
317 "--separator=';'", '--nameprefixes', dev
318 ]
319 out, err, rc = process.call(command)
320 return _splitname_parser(out)
321
322
323 def is_ceph_device(lv):
324 try:
325 lv.tags['ceph.osd_id']
326 except (KeyError, AttributeError):
327 logger.warning('device is not part of ceph: %s', lv)
328 return False
329
330 if lv.tags['ceph.osd_id'] == 'null':
331 return False
332 else:
333 return True
334
335
336 ####################################
337 #
338 # Code for LVM Physical Volumes
339 #
340 ################################
341
342 PV_FIELDS = 'pv_name,pv_tags,pv_uuid,vg_name,lv_uuid'
343
344 class PVolume(object):
345 """
346 Represents a Physical Volume from LVM, with some top-level attributes like
347 ``pv_name`` and parsed tags as a dictionary of key/value pairs.
348 """
349
350 def __init__(self, **kw):
351 for k, v in kw.items():
352 setattr(self, k, v)
353 self.pv_api = kw
354 self.name = kw['pv_name']
355 self.tags = parse_tags(kw['pv_tags'])
356
357 def __str__(self):
358 return '<%s>' % self.pv_api['pv_name']
359
360 def __repr__(self):
361 return self.__str__()
362
363 def set_tags(self, tags):
364 """
365 :param tags: A dictionary of tag names and values, like::
366
367 {
368 "ceph.osd_fsid": "aaa-fff-bbbb",
369 "ceph.osd_id": "0"
370 }
371
372 At the end of all modifications, the tags are refreshed to reflect
373 LVM's most current view.
374 """
375 for k, v in tags.items():
376 self.set_tag(k, v)
377 # after setting all the tags, refresh them for the current object, use the
378 # pv_* identifiers to filter because those shouldn't change
379 pv_object = self.get_first_pv(filter={'pv_name': self.pv_name,
380 'pv_uuid': self.pv_uuid})
381 self.tags = pv_object.tags
382
383 def set_tag(self, key, value):
384 """
385 Set the key/value pair as an LVM tag. Does not "refresh" the values of
386 the current object for its tags. Meant to be a "fire and forget" type
387 of modification.
388
389 **warning**: Altering tags on a PV has to be done ensuring that the
390 device is actually the one intended. ``pv_name`` is *not* a persistent
391 value, only ``pv_uuid`` is. Using ``pv_uuid`` is the best way to make
392 sure the device getting changed is the one needed.
393 """
394 # remove it first if it exists
395 if self.tags.get(key):
396 current_value = self.tags[key]
397 tag = "%s=%s" % (key, current_value)
398 process.call(['pvchange', '--deltag', tag, self.pv_name])
399
400 process.call(
401 [
402 'pvchange',
403 '--addtag', '%s=%s' % (key, value), self.pv_name
404 ]
405 )
406
407
408 def create_pv(device):
409 """
410 Create a physical volume from a device, useful when devices need to be later mapped
411 to journals.
412 """
413 process.run([
414 'pvcreate',
415 '-v', # verbose
416 '-f', # force it
417 '--yes', # answer yes to any prompts
418 device
419 ])
420
421
422 def remove_pv(pv_name):
423 """
424 Removes a physical volume using a double `-f` to prevent prompts and fully
425 remove anything related to LVM. This is tremendously destructive, but so is all other actions
426 when zapping a device.
427
428 In the case where multiple PVs are found, it will ignore that fact and
429 continue with the removal, specifically in the case of messages like::
430
431 WARNING: PV $UUID /dev/DEV-1 was already found on /dev/DEV-2
432
433 These situations can be avoided with custom filtering rules, which this API
434 cannot handle while accommodating custom user filters.
435 """
436 fail_msg = "Unable to remove vg %s" % pv_name
437 process.run(
438 [
439 'pvremove',
440 '-v', # verbose
441 '-f', # force it
442 '-f', # force it
443 pv_name
444 ],
445 fail_msg=fail_msg,
446 )
447
448
449 def get_pvs(fields=PV_FIELDS, filters='', tags=None):
450 """
451 Return a list of PVs that are available on the system and match the
452 filters and tags passed. Argument filters takes a dictionary containing
453 arguments required by -S option of LVM. Passing a list of LVM tags can be
454 quite tricky to pass as a dictionary within dictionary, therefore pass
455 dictionary of tags via tags argument and tricky part will be taken care of
456 by the helper methods.
457
458 :param fields: string containing list of fields to be displayed by the
459 pvs command
460 :param sep: string containing separator to be used between two fields
461 :param filters: dictionary containing LVM filters
462 :param tags: dictionary containng LVM tags
463 :returns: list of class PVolume object representing pvs on the system
464 """
465 filters = make_filters_lvmcmd_ready(filters, tags)
466 args = ['pvs', '--no-heading', '--readonly', '--separator=";"', '-S',
467 filters, '-o', fields]
468
469 stdout, stderr, returncode = process.call(args, verbose_on_failure=False)
470 pvs_report = _output_parser(stdout, fields)
471 return [PVolume(**pv_report) for pv_report in pvs_report]
472
473
474 def get_first_pv(fields=PV_FIELDS, filters=None, tags=None):
475 """
476 Wrapper of get_pv meant to be a convenience method to avoid the phrase::
477 pvs = get_pvs()
478 if len(pvs) >= 1:
479 pv = pvs[0]
480 """
481 pvs = get_pvs(fields=fields, filters=filters, tags=tags)
482 return pvs[0] if len(pvs) > 0 else []
483
484
485 ################################
486 #
487 # Code for LVM Volume Groups
488 #
489 #############################
490
491 VG_FIELDS = 'vg_name,pv_count,lv_count,vg_attr,vg_extent_count,vg_free_count,vg_extent_size'
492 VG_CMD_OPTIONS = ['--noheadings', '--readonly', '--units=b', '--nosuffix', '--separator=";"']
493
494
495 class VolumeGroup(object):
496 """
497 Represents an LVM group, with some top-level attributes like ``vg_name``
498 """
499
500 def __init__(self, **kw):
501 for k, v in kw.items():
502 setattr(self, k, v)
503 self.name = kw['vg_name']
504 if not self.name:
505 raise ValueError('VolumeGroup must have a non-empty name')
506 self.tags = parse_tags(kw.get('vg_tags', ''))
507
508 def __str__(self):
509 return '<%s>' % self.name
510
511 def __repr__(self):
512 return self.__str__()
513
514 @property
515 def free(self):
516 """
517 Return free space in VG in bytes
518 """
519 return int(self.vg_extent_size) * int(self.vg_free_count)
520
521 @property
522 def size(self):
523 """
524 Returns VG size in bytes
525 """
526 return int(self.vg_extent_size) * int(self.vg_extent_count)
527
528 def sizing(self, parts=None, size=None):
529 """
530 Calculate proper sizing to fully utilize the volume group in the most
531 efficient way possible. To prevent situations where LVM might accept
532 a percentage that is beyond the vg's capabilities, it will refuse with
533 an error when requesting a larger-than-possible parameter, in addition
534 to rounding down calculations.
535
536 A dictionary with different sizing parameters is returned, to make it
537 easier for others to choose what they need in order to create logical
538 volumes::
539
540 >>> data_vg.free
541 1024
542 >>> data_vg.sizing(parts=4)
543 {'parts': 4, 'sizes': 256, 'percentages': 25}
544 >>> data_vg.sizing(size=512)
545 {'parts': 2, 'sizes': 512, 'percentages': 50}
546
547
548 :param parts: Number of parts to create LVs from
549 :param size: Size in gigabytes to divide the VG into
550
551 :raises SizeAllocationError: When requested size cannot be allocated with
552 :raises ValueError: If both ``parts`` and ``size`` are given
553 """
554 if parts is not None and size is not None:
555 raise ValueError(
556 "Cannot process sizing with both parts (%s) and size (%s)" % (parts, size)
557 )
558
559 # if size is given we need to map that to extents so that we avoid
560 # issues when trying to get this right with a size in gigabytes find
561 # the percentage first, cheating, because these values are thrown out
562 vg_free_count = util.str_to_int(self.vg_free_count)
563
564 if size:
565 size = size * 1024 * 1024 * 1024
566 extents = int(size / int(self.vg_extent_size))
567 disk_sizing = sizing(self.free, size=size, parts=parts)
568 else:
569 if parts is not None:
570 # Prevent parts being 0, falling back to 1 (100% usage)
571 parts = parts or 1
572 size = int(self.free / parts)
573 extents = size * vg_free_count / self.free
574 disk_sizing = sizing(self.free, parts=parts)
575
576 extent_sizing = sizing(vg_free_count, size=extents)
577
578 disk_sizing['extents'] = int(extents)
579 disk_sizing['percentages'] = extent_sizing['percentages']
580 return disk_sizing
581
582 def bytes_to_extents(self, size):
583 '''
584 Return a how many extents we can fit into a size in bytes.
585 '''
586 return int(size / int(self.vg_extent_size))
587
588 def slots_to_extents(self, slots):
589 '''
590 Return how many extents fit the VG slot times
591 '''
592 return int(int(self.vg_free_count) / slots)
593
594
595 def create_vg(devices, name=None, name_prefix=None):
596 """
597 Create a Volume Group. Command looks like::
598
599 vgcreate --force --yes group_name device
600
601 Once created the volume group is returned as a ``VolumeGroup`` object
602
603 :param devices: A list of devices to create a VG. Optionally, a single
604 device (as a string) can be used.
605 :param name: Optionally set the name of the VG, defaults to 'ceph-{uuid}'
606 :param name_prefix: Optionally prefix the name of the VG, which will get combined
607 with a UUID string
608 """
609 if isinstance(devices, set):
610 devices = list(devices)
611 if not isinstance(devices, list):
612 devices = [devices]
613 if name_prefix:
614 name = "%s-%s" % (name_prefix, str(uuid.uuid4()))
615 elif name is None:
616 name = "ceph-%s" % str(uuid.uuid4())
617 process.run([
618 'vgcreate',
619 '--force',
620 '--yes',
621 name] + devices
622 )
623
624 return get_first_vg(filters={'vg_name': name})
625
626
627 def extend_vg(vg, devices):
628 """
629 Extend a Volume Group. Command looks like::
630
631 vgextend --force --yes group_name [device, ...]
632
633 Once created the volume group is extended and returned as a ``VolumeGroup`` object
634
635 :param vg: A VolumeGroup object
636 :param devices: A list of devices to extend the VG. Optionally, a single
637 device (as a string) can be used.
638 """
639 if not isinstance(devices, list):
640 devices = [devices]
641 process.run([
642 'vgextend',
643 '--force',
644 '--yes',
645 vg.name] + devices
646 )
647
648 return get_first_vg(filters={'vg_name': vg.name})
649
650
651 def reduce_vg(vg, devices):
652 """
653 Reduce a Volume Group. Command looks like::
654
655 vgreduce --force --yes group_name [device, ...]
656
657 :param vg: A VolumeGroup object
658 :param devices: A list of devices to remove from the VG. Optionally, a
659 single device (as a string) can be used.
660 """
661 if not isinstance(devices, list):
662 devices = [devices]
663 process.run([
664 'vgreduce',
665 '--force',
666 '--yes',
667 vg.name] + devices
668 )
669
670 return get_first_vg(filter={'vg_name': vg.name})
671
672
673 def remove_vg(vg_name):
674 """
675 Removes a volume group.
676 """
677 if not vg_name:
678 logger.warning('Skipping removal of invalid VG name: "%s"', vg_name)
679 return
680 fail_msg = "Unable to remove vg %s" % vg_name
681 process.run(
682 [
683 'vgremove',
684 '-v', # verbose
685 '-f', # force it
686 vg_name
687 ],
688 fail_msg=fail_msg,
689 )
690
691
692 def get_vgs(fields=VG_FIELDS, filters='', tags=None):
693 """
694 Return a list of VGs that are available on the system and match the
695 filters and tags passed. Argument filters takes a dictionary containing
696 arguments required by -S option of LVM. Passing a list of LVM tags can be
697 quite tricky to pass as a dictionary within dictionary, therefore pass
698 dictionary of tags via tags argument and tricky part will be taken care of
699 by the helper methods.
700
701 :param fields: string containing list of fields to be displayed by the
702 vgs command
703 :param sep: string containing separator to be used between two fields
704 :param filters: dictionary containing LVM filters
705 :param tags: dictionary containng LVM tags
706 :returns: list of class VolumeGroup object representing vgs on the system
707 """
708 filters = make_filters_lvmcmd_ready(filters, tags)
709 args = ['vgs'] + VG_CMD_OPTIONS + ['-S', filters, '-o', fields]
710
711 stdout, stderr, returncode = process.call(args, verbose_on_failure=False)
712 vgs_report =_output_parser(stdout, fields)
713 return [VolumeGroup(**vg_report) for vg_report in vgs_report]
714
715
716 def get_first_vg(fields=VG_FIELDS, filters=None, tags=None):
717 """
718 Wrapper of get_vg meant to be a convenience method to avoid the phrase::
719 vgs = get_vgs()
720 if len(vgs) >= 1:
721 vg = vgs[0]
722 """
723 vgs = get_vgs(fields=fields, filters=filters, tags=tags)
724 return vgs[0] if len(vgs) > 0 else []
725
726
727 def get_device_vgs(device, name_prefix=''):
728 stdout, stderr, returncode = process.call(
729 ['pvs'] + VG_CMD_OPTIONS + ['-o', VG_FIELDS, device],
730 verbose_on_failure=False
731 )
732 vgs = _output_parser(stdout, VG_FIELDS)
733 return [VolumeGroup(**vg) for vg in vgs if vg['vg_name'] and vg['vg_name'].startswith(name_prefix)]
734
735
736 #################################
737 #
738 # Code for LVM Logical Volumes
739 #
740 ###############################
741
742 LV_FIELDS = 'lv_tags,lv_path,lv_name,vg_name,lv_uuid,lv_size'
743 LV_CMD_OPTIONS = ['--noheadings', '--readonly', '--separator=";"', '-a']
744
745
746 class Volume(object):
747 """
748 Represents a Logical Volume from LVM, with some top-level attributes like
749 ``lv_name`` and parsed tags as a dictionary of key/value pairs.
750 """
751
752 def __init__(self, **kw):
753 for k, v in kw.items():
754 setattr(self, k, v)
755 self.lv_api = kw
756 self.name = kw['lv_name']
757 if not self.name:
758 raise ValueError('Volume must have a non-empty name')
759 self.tags = parse_tags(kw['lv_tags'])
760 self.encrypted = self.tags.get('ceph.encrypted', '0') == '1'
761 self.used_by_ceph = 'ceph.osd_id' in self.tags
762
763 def __str__(self):
764 return '<%s>' % self.lv_api['lv_path']
765
766 def __repr__(self):
767 return self.__str__()
768
769 def as_dict(self):
770 obj = {}
771 obj.update(self.lv_api)
772 obj['tags'] = self.tags
773 obj['name'] = self.name
774 obj['type'] = self.tags['ceph.type']
775 obj['path'] = self.lv_path
776 return obj
777
778 def report(self):
779 if not self.used_by_ceph:
780 return {
781 'name': self.lv_name,
782 'comment': 'not used by ceph'
783 }
784 else:
785 type_ = self.tags['ceph.type']
786 report = {
787 'name': self.lv_name,
788 'osd_id': self.tags['ceph.osd_id'],
789 'cluster_name': self.tags['ceph.cluster_name'],
790 'type': type_,
791 'osd_fsid': self.tags['ceph.osd_fsid'],
792 'cluster_fsid': self.tags['ceph.cluster_fsid'],
793 'osdspec_affinity': self.tags.get('ceph.osdspec_affinity', ''),
794 }
795 type_uuid = '{}_uuid'.format(type_)
796 report[type_uuid] = self.tags['ceph.{}'.format(type_uuid)]
797 return report
798
799 def _format_tag_args(self, op, tags):
800 tag_args = ['{}={}'.format(k, v) for k, v in tags.items()]
801 # weird but efficient way of ziping two lists and getting a flat list
802 return list(sum(zip(repeat(op), tag_args), ()))
803
804 def clear_tags(self, keys=None):
805 """
806 Removes all or passed tags from the Logical Volume.
807 """
808 if not keys:
809 keys = self.tags.keys()
810
811 del_tags = {k: self.tags[k] for k in keys if k in self.tags}
812 if not del_tags:
813 # nothing to clear
814 return
815 del_tag_args = self._format_tag_args('--deltag', del_tags)
816 # --deltag returns successful even if the to be deleted tag is not set
817 process.call(['lvchange'] + del_tag_args + [self.lv_path])
818 for k in del_tags.keys():
819 del self.tags[k]
820
821
822 def set_tags(self, tags):
823 """
824 :param tags: A dictionary of tag names and values, like::
825
826 {
827 "ceph.osd_fsid": "aaa-fff-bbbb",
828 "ceph.osd_id": "0"
829 }
830
831 At the end of all modifications, the tags are refreshed to reflect
832 LVM's most current view.
833 """
834 self.clear_tags(tags.keys())
835 add_tag_args = self._format_tag_args('--addtag', tags)
836 process.call(['lvchange'] + add_tag_args + [self.lv_path])
837 for k, v in tags.items():
838 self.tags[k] = v
839
840
841 def clear_tag(self, key):
842 if self.tags.get(key):
843 current_value = self.tags[key]
844 tag = "%s=%s" % (key, current_value)
845 process.call(['lvchange', '--deltag', tag, self.lv_path])
846 del self.tags[key]
847
848
849 def set_tag(self, key, value):
850 """
851 Set the key/value pair as an LVM tag.
852 """
853 # remove it first if it exists
854 self.clear_tag(key)
855
856 process.call(
857 [
858 'lvchange',
859 '--addtag', '%s=%s' % (key, value), self.lv_path
860 ]
861 )
862 self.tags[key] = value
863
864 def deactivate(self):
865 """
866 Deactivate the LV by calling lvchange -an
867 """
868 process.call(['lvchange', '-an', self.lv_path])
869
870
871 def create_lv(name_prefix,
872 uuid,
873 vg=None,
874 device=None,
875 slots=None,
876 extents=None,
877 size=None,
878 tags=None):
879 """
880 Create a Logical Volume in a Volume Group. Command looks like::
881
882 lvcreate -L 50G -n gfslv vg0
883
884 ``name_prefix`` is required. If ``size`` is provided its expected to be a
885 byte count. Tags are an optional dictionary and is expected to
886 conform to the convention of prefixing them with "ceph." like::
887
888 {"ceph.block_device": "/dev/ceph/osd-1"}
889
890 :param name_prefix: name prefix for the LV, typically somehting like ceph-osd-block
891 :param uuid: UUID to ensure uniqueness; is combined with name_prefix to
892 form the LV name
893 :param vg: optional, pass an existing VG to create LV
894 :param device: optional, device to use. Either device of vg must be passed
895 :param slots: optional, number of slots to divide vg up, LV will occupy one
896 one slot if enough space is available
897 :param extends: optional, how many lvm extends to use, supersedes slots
898 :param size: optional, target LV size in bytes, supersedes extents,
899 resulting LV might be smaller depending on extent
900 size of the underlying VG
901 :param tags: optional, a dict of lvm tags to set on the LV
902 """
903 name = '{}-{}'.format(name_prefix, uuid)
904 if not vg:
905 if not device:
906 raise RuntimeError("Must either specify vg or device, none given")
907 # check if a vgs starting with ceph already exists
908 vgs = get_device_vgs(device, 'ceph')
909 if vgs:
910 vg = vgs[0]
911 else:
912 # create on if not
913 vg = create_vg(device, name_prefix='ceph')
914 assert(vg)
915
916 if size:
917 extents = vg.bytes_to_extents(size)
918 logger.debug('size was passed: {} -> {}'.format(size, extents))
919 elif slots and not extents:
920 extents = vg.slots_to_extents(slots)
921 logger.debug('slots was passed: {} -> {}'.format(slots, extents))
922
923 if extents:
924 command = [
925 'lvcreate',
926 '--yes',
927 '-l',
928 '{}'.format(extents),
929 '-n', name, vg.vg_name
930 ]
931 # create the lv with all the space available, this is needed because the
932 # system call is different for LVM
933 else:
934 command = [
935 'lvcreate',
936 '--yes',
937 '-l',
938 '100%FREE',
939 '-n', name, vg.vg_name
940 ]
941 process.run(command)
942
943 lv = get_first_lv(filters={'lv_name': name, 'vg_name': vg.vg_name})
944
945 if tags is None:
946 tags = {
947 "ceph.osd_id": "null",
948 "ceph.type": "null",
949 "ceph.cluster_fsid": "null",
950 "ceph.osd_fsid": "null",
951 }
952 # when creating a distinct type, the caller doesn't know what the path will
953 # be so this function will set it after creation using the mapping
954 # XXX add CEPH_VOLUME_LVM_DEBUG to enable -vvvv on lv operations
955 type_path_tag = {
956 'journal': 'ceph.journal_device',
957 'data': 'ceph.data_device',
958 'block': 'ceph.block_device',
959 'wal': 'ceph.wal_device',
960 'db': 'ceph.db_device',
961 'lockbox': 'ceph.lockbox_device', # XXX might not ever need this lockbox sorcery
962 }
963 path_tag = type_path_tag.get(tags.get('ceph.type'))
964 if path_tag:
965 tags.update({path_tag: lv.lv_path})
966
967 lv.set_tags(tags)
968
969 return lv
970
971
972 def create_lvs(volume_group, parts=None, size=None, name_prefix='ceph-lv'):
973 """
974 Create multiple Logical Volumes from a Volume Group by calculating the
975 proper extents from ``parts`` or ``size``. A custom prefix can be used
976 (defaults to ``ceph-lv``), these names are always suffixed with a uuid.
977
978 LV creation in ceph-volume will require tags, this is expected to be
979 pre-computed by callers who know Ceph metadata like OSD IDs and FSIDs. It
980 will probably not be the case when mass-creating LVs, so common/default
981 tags will be set to ``"null"``.
982
983 .. note:: LVs that are not in use can be detected by querying LVM for tags that are
984 set to ``"null"``.
985
986 :param volume_group: The volume group (vg) to use for LV creation
987 :type group: ``VolumeGroup()`` object
988 :param parts: Number of LVs to create *instead of* ``size``.
989 :type parts: int
990 :param size: Size (in gigabytes) of LVs to create, e.g. "as many 10gb LVs as possible"
991 :type size: int
992 :param extents: The number of LVM extents to use to create the LV. Useful if looking to have
993 accurate LV sizes (LVM rounds sizes otherwise)
994 """
995 if parts is None and size is None:
996 # fallback to just one part (using 100% of the vg)
997 parts = 1
998 lvs = []
999 tags = {
1000 "ceph.osd_id": "null",
1001 "ceph.type": "null",
1002 "ceph.cluster_fsid": "null",
1003 "ceph.osd_fsid": "null",
1004 }
1005 sizing = volume_group.sizing(parts=parts, size=size)
1006 for part in range(0, sizing['parts']):
1007 size = sizing['sizes']
1008 extents = sizing['extents']
1009 lvs.append(
1010 create_lv(name_prefix, uuid.uuid4(), vg=volume_group, extents=extents, tags=tags)
1011 )
1012 return lvs
1013
1014
1015 def remove_lv(lv):
1016 """
1017 Removes a logical volume given it's absolute path.
1018
1019 Will return True if the lv is successfully removed or
1020 raises a RuntimeError if the removal fails.
1021
1022 :param lv: A ``Volume`` object or the path for an LV
1023 """
1024 if isinstance(lv, Volume):
1025 path = lv.lv_path
1026 else:
1027 path = lv
1028
1029 stdout, stderr, returncode = process.call(
1030 [
1031 'lvremove',
1032 '-v', # verbose
1033 '-f', # force it
1034 path
1035 ],
1036 show_command=True,
1037 terminal_verbose=True,
1038 )
1039 if returncode != 0:
1040 raise RuntimeError("Unable to remove %s" % path)
1041 return True
1042
1043
1044 def get_lvs(fields=LV_FIELDS, filters='', tags=None):
1045 """
1046 Return a list of LVs that are available on the system and match the
1047 filters and tags passed. Argument filters takes a dictionary containing
1048 arguments required by -S option of LVM. Passing a list of LVM tags can be
1049 quite tricky to pass as a dictionary within dictionary, therefore pass
1050 dictionary of tags via tags argument and tricky part will be taken care of
1051 by the helper methods.
1052
1053 :param fields: string containing list of fields to be displayed by the
1054 lvs command
1055 :param sep: string containing separator to be used between two fields
1056 :param filters: dictionary containing LVM filters
1057 :param tags: dictionary containng LVM tags
1058 :returns: list of class Volume object representing LVs on the system
1059 """
1060 filters = make_filters_lvmcmd_ready(filters, tags)
1061 args = ['lvs'] + LV_CMD_OPTIONS + ['-S', filters, '-o', fields]
1062
1063 stdout, stderr, returncode = process.call(args, verbose_on_failure=False)
1064 lvs_report = _output_parser(stdout, fields)
1065 return [Volume(**lv_report) for lv_report in lvs_report]
1066
1067
1068 def get_first_lv(fields=LV_FIELDS, filters=None, tags=None):
1069 """
1070 Wrapper of get_lv meant to be a convenience method to avoid the phrase::
1071 lvs = get_lvs()
1072 if len(lvs) >= 1:
1073 lv = lvs[0]
1074 """
1075 lvs = get_lvs(fields=fields, filters=filters, tags=tags)
1076 return lvs[0] if len(lvs) > 0 else []
1077
1078
1079 def get_lv_by_name(name):
1080 stdout, stderr, returncode = process.call(
1081 ['lvs', '--noheadings', '-o', LV_FIELDS, '-S',
1082 'lv_name={}'.format(name)],
1083 verbose_on_failure=False
1084 )
1085 lvs = _output_parser(stdout, LV_FIELDS)
1086 return [Volume(**lv) for lv in lvs]
1087
1088
1089 def get_lvs_by_tag(lv_tag):
1090 stdout, stderr, returncode = process.call(
1091 ['lvs', '--noheadings', '--separator=";"', '-a', '-o', LV_FIELDS, '-S',
1092 'lv_tags={{{}}}'.format(lv_tag)],
1093 verbose_on_failure=False
1094 )
1095 lvs = _output_parser(stdout, LV_FIELDS)
1096 return [Volume(**lv) for lv in lvs]
1097
1098
1099 def get_device_lvs(device, name_prefix=''):
1100 stdout, stderr, returncode = process.call(
1101 ['pvs'] + LV_CMD_OPTIONS + ['-o', LV_FIELDS, device],
1102 verbose_on_failure=False
1103 )
1104 lvs = _output_parser(stdout, LV_FIELDS)
1105 return [Volume(**lv) for lv in lvs if lv['lv_name'] and
1106 lv['lv_name'].startswith(name_prefix)]