mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Automated using this command: perl -pi.bak -e 's/(20[012][0-9])-20[12][01234]/$1-2025/g' `git ls-files`
100 lines
3.1 KiB
OCaml
100 lines
3.1 KiB
OCaml
(* guestfs-inspection
|
|
* Copyright (C) 2009-2025 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
|