-
Notifications
You must be signed in to change notification settings - Fork 364
/
disks.py
340 lines (286 loc) · 10.1 KB
/
disks.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
#
# Project Kimchi
#
# Copyright IBM Corp, 2015-2017
#
# Code derived from Ginger Base project
#
# This library 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; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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 library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import os.path
import re
from parted import Device as PDevice
from parted import Disk as PDisk
from wok.exception import NotFoundError
from wok.exception import OperationFailed
from wok.stringutils import encode_value
from wok.utils import run_command
from wok.utils import wok_log
def _get_dev_node_path(maj_min):
""" Returns device node path given the device number 'major:min' """
dm_name = '/sys/dev/block/%s/dm/name' % maj_min
if os.path.exists(dm_name):
with open(dm_name) as dm_f:
content = dm_f.read().rstrip('\n')
return '/dev/mapper/' + content
uevent = '/sys/dev/block/%s/uevent' % maj_min
with open(uevent) as ueventf:
content = ueventf.read()
data = dict(re.findall(r'(\S+)=(".*?"|\S+)', content.replace('\n', ' ')))
return '/dev/%s' % data['DEVNAME']
def _get_lsblk_devs(keys, devs=None):
if devs is None:
devs = []
out, err, returncode = run_command(
['lsblk', '-Pbo'] + [','.join(keys)] + devs)
if returncode != 0:
if 'not a block device' in err:
raise NotFoundError('KCHDISK00002E')
else:
raise OperationFailed('KCHDISK00001E', {'err': err})
return _parse_lsblk_output(out, keys)
def _get_dev_major_min(name):
maj_min = None
keys = ['NAME', 'MAJ:MIN']
try:
dev_list = _get_lsblk_devs(keys)
except Exception:
raise
for dev in dev_list:
if dev['name'].split()[0] == name:
maj_min = dev['maj:min']
break
else:
raise NotFoundError('KCHDISK00003E', {'device': name})
return maj_min
def _is_dev_leaf(devNodePath, name=None, devs=None, devtype=None):
try:
if devs and devtype != 'mpath':
for dev in devs:
if encode_value(name) == dev['pkname']:
return False
return True
# By default, lsblk prints a device information followed by children
# device information
childrenCount = len(_get_lsblk_devs(['NAME'], [devNodePath])) - 1
except OperationFailed as e:
# lsblk is known to fail on multipath devices
# Assume these devices contain children
wok_log.error('Error getting device info for %s: %s', devNodePath, e)
return False
return childrenCount == 0
def _is_dev_extended_partition(devType, devNodePath):
if devType != 'part':
return False
if devNodePath.startswith('/dev/mapper'):
try:
dev_maj_min = _get_dev_major_min(devNodePath.split('/')[-1])
parent_sys_path = '/sys/dev/block/' + dev_maj_min + '/slaves'
parent_dm_name = os.listdir(parent_sys_path)[0]
parent_maj_min = (
open(parent_sys_path + '/' + parent_dm_name + '/dev')
.readline()
.rstrip()
)
diskPath = _get_dev_node_path(parent_maj_min)
except Exception as e:
wok_log.error(
'Error dealing with dev mapper device: ' + devNodePath)
raise OperationFailed('KCHDISK00001E', {'err': e.message})
else:
diskPath = devNodePath.rstrip('0123456789')
device = PDevice(diskPath)
try:
extended_part = PDisk(device).getExtendedPartition()
except NotImplementedError as e:
wok_log.warning(
'Error getting extended partition info for dev %s type %s: %s',
devNodePath,
devType,
e.message,
)
# Treate disk with unsupported partiton table as if it does not
# contain extended partitions.
return False
if extended_part and extended_part.path == devNodePath:
return True
return False
def _parse_lsblk_output(output, keys):
# output is on format key="value",
# where key can be NAME, TYPE, FSTYPE, SIZE, MOUNTPOINT, etc
lines = output.rstrip('\n').split('\n')
r = []
for line in lines:
d = {}
for key in keys:
expression = r"%s=\".*?\"" % key
match = re.search(expression, line)
field = match.group()
k, v = field.split('=', 1)
d[k.lower()] = v[1:-1]
r.append(d)
return r
def _is_available(name, devtype, fstype, mountpoint, majmin, devs=None):
devNodePath = _get_dev_node_path(majmin)
# Only list unmounted and unformated and leaf and (partition or disk)
# leaf means a partition, a disk has no partition, or a disk not held
# by any multipath device. Physical volume belongs to no volume group
# is also listed. Extended partitions should not be listed.
if fstype == 'LVM2_member':
has_VG = True
else:
has_VG = False
if (
devtype in ['part', 'disk', 'mpath'] and
fstype in ['', 'LVM2_member'] and
mountpoint == '' and
not has_VG and
_is_dev_leaf(devNodePath, name, devs, devtype) and
not _is_dev_extended_partition(devtype, devNodePath)
):
return True
return False
def get_partitions_names(check=False):
names = set()
keys = ['NAME', 'TYPE', 'FSTYPE', 'MOUNTPOINT', 'MAJ:MIN']
# output is on format key="value",
# where key can be NAME, TYPE, FSTYPE, MOUNTPOINT
for dev in _get_lsblk_devs(keys):
# split()[0] to avoid the second part of the name, after the
# whiteline
name = dev['name'].split()[0]
if check and not _is_available(
name, dev['type'], dev['fstype'], dev['mountpoint'], dev['maj:min']
):
continue
names.add(name)
return list(names)
def get_partition_details(name):
majmin = _get_dev_major_min(name)
dev_path = _get_dev_node_path(majmin)
keys = ['TYPE', 'FSTYPE', 'SIZE', 'MOUNTPOINT', 'MAJ:MIN', 'PKNAME']
try:
dev = _get_lsblk_devs(keys, [dev_path])[0]
except Exception:
wok_log.error('Error getting partition info for %s', name)
return {}
dev['available'] = _is_available(
name, dev['type'], dev['fstype'], dev['mountpoint'], majmin
)
if dev['mountpoint']:
# Sometimes the mountpoint comes with [SWAP] or other
# info which is not an actual mount point. Filtering it
regexp = re.compile(r'\[.*\]')
if regexp.search(dev['mountpoint']) is not None:
dev['mountpoint'] = ''
dev['path'] = dev_path
dev['name'] = name
return dev
def vgs():
"""
lists all volume groups in the system. All size units are in bytes.
[{'vgname': 'vgtest', 'size': 999653638144L, 'free': 0}]
"""
cmd = [
'vgs',
'--units',
'b',
'--nosuffix',
'--noheading',
'--unbuffered',
'--options',
'vg_name,vg_size,vg_free',
]
out, err, rc = run_command(cmd)
if rc != 0:
raise OperationFailed('KCHDISK00004E', {'err': err})
if not out:
return []
# remove blank spaces and create a list of VGs
vgs = map(lambda v: v.strip(), out.strip('\n').split('\n'))
# create a dict based on data retrieved from vgs
return map(
lambda l: {'vgname': l[0], 'size': int(l[1]), 'free': int(l[2])},
[fields.split() for fields in vgs],
)
def lvs(vgname=None):
"""
lists all logical volumes found in the system. It can be filtered by
the volume group. All size units are in bytes.
[{'lvname': 'lva', 'path': '/dev/vgtest/lva', 'size': 12345L},
{'lvname': 'lvb', 'path': '/dev/vgtest/lvb', 'size': 12345L}]
"""
cmd = [
'lvs',
'--units',
'b',
'--nosuffix',
'--noheading',
'--unbuffered',
'--options',
'lv_name,lv_path,lv_size,vg_name',
]
out, err, rc = run_command(cmd)
if rc != 0:
raise OperationFailed('KCHDISK00004E', {'err': err})
if not out:
return []
# remove blank spaces and create a list of LVs filtered by vgname, if
# provided
lvs = filter(
lambda f: vgname is None or vgname in f,
map(lambda v: v.strip(), out.strip('\n').split('\n')),
)
# create a dict based on data retrieved from lvs
return map(
lambda l: {'lvname': l[0], 'path': l[1], 'size': int(l[2])},
[fields.split() for fields in lvs],
)
def pvs(vgname=None):
"""
lists all physical volumes in the system. It can be filtered by the
volume group. All size units are in bytes.
[{'pvname': '/dev/sda3',
'size': 469502001152L,
'uuid': 'kkon5B-vnFI-eKHn-I5cG-Hj0C-uGx0-xqZrXI'},
{'pvname': '/dev/sda2',
'size': 21470642176L,
'uuid': 'CyBzhK-cQFl-gWqr-fyWC-A50Y-LMxu-iHiJq4'}]
"""
cmd = [
'pvs',
'--units',
'b',
'--nosuffix',
'--noheading',
'--unbuffered',
'--options',
'pv_name,pv_size,pv_uuid,vg_name',
]
out, err, rc = run_command(cmd)
if rc != 0:
raise OperationFailed('KCHDISK00004E', {'err': err})
if not out:
return []
# remove blank spaces and create a list of PVs filtered by vgname, if
# provided
pvs = filter(
lambda f: vgname is None or vgname in f,
map(lambda v: v.strip(), out.strip('\n').split('\n')),
)
# create a dict based on data retrieved from pvs
return map(
lambda l: {'pvname': l[0], 'size': int(l[1]), 'uuid': l[2]},
[fields.split() for fields in pvs],
)