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
|
(* guestfs-inspection
* Copyright (C) 2009-2020 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU 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.
*)
open Unix
open Printf
open Std_utils
open Utils
(* Check whether lvs has -S to filter its output.
* It is available only in lvm2 >= 2.02.107.
*)
let lvs_has_S_opt = lazy (
let out = command "lvm" ["lvs"; "--help"] in
String.find out "-S" >= 0
)
let rec lvs () =
let has_S = Lazy.force lvs_has_S_opt in
if has_S then (
let out = command "lvm" ["lvs";
"-o"; "vg_name,lv_name";
"-S"; "lv_role=public && lv_skip_activation!=yes";
"--noheadings";
"--separator"; "/"] in
convert_lvm_output ~prefix:"/dev/" out
)
else (
let out = command "lvm" ["lvs";
"-o"; "lv_attr,vg_name,lv_name";
"--noheadings";
"--separator"; ":"] in
filter_convert_old_lvs_output out
)
and convert_lvm_output ?prefix out =
let lines = String.nsplit "\n" out in
(* Skip leading and trailing ("pvs", I'm looking at you) whitespace. *)
let lines = List.map String.trim lines in
(* Skip empty lines. *)
let lines = List.filter ((<>) "") lines in
(* Ignore "unknown device" message (RHBZ#1054761). *)
let lines = List.filter ((<>) "unknown device") lines in
(* Add a prefix? *)
let lines =
match prefix with
| None -> lines
| Some prefix -> List.map ((^) prefix) lines in
(* Sort and return. *)
List.sort compare lines
(* Filter a colon-separated output of
* lvs -o lv_attr,vg_name,lv_name
* removing thin layouts, and building the device path as we expect it.
*
* This is used only when lvm has no -S.
*)
and filter_convert_old_lvs_output out =
let lines = String.nsplit "\n" out in
let lines = List.map String.trim lines in
let lines = List.filter ((<>) "") lines in
let lines = List.filter ((<>) "unknown device") lines in
let lines = List.filter_map (
fun line ->
match String.nsplit ":" line with
| [ lv_attr; vg_name; lv_name ] ->
(* Ignore thin layouts (RHBZ#1278878). *)
if String.length lv_attr > 0 && lv_attr.[0] = 't' then None
(* Ignore activationskip (RHBZ#1306666). *)
else if String.length lv_attr > 9 && lv_attr.[9] = 'k' then None
else
Some (sprintf "/dev/%s/%s" vg_name lv_name)
| _ ->
None
) lines in
List.sort compare lines
|