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
|
(* virt-v2v
* 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 Printf
open Unix
open C_utils
open Std_utils
open Tools_utils
open Common_gettext.Gettext
open Types
type options = {
output_alloc : Types.output_allocation;
output_conn : string option;
output_format : string;
output_options : (string * string) list;
output_name : string option;
output_password : string option;
output_storage : string option;
}
module type OUTPUT = sig
type poptions
type t
val to_string : options -> string
val query_output_options : unit -> unit
val parse_options : options -> Types.source -> poptions
val setup : string -> poptions -> Types.source -> NBD_URI.t list ->
t * NBD_URI.t list
val finalize : string -> poptions -> t -> NBD_URI.t list ->
Types.source -> Types.inspect -> Types.target_meta ->
unit
val request_size : int option
end
let error_option_cannot_be_used_in_output_mode mode opt =
error (f_"-o %s: %s option cannot be used in this output mode") mode opt
let get_disk_sizes =
List.map (
fun uri ->
let uri = NBD_URI.to_uri uri in
Utils.with_nbd_connect_uri ~uri NBD.get_size
)
let error_if_disk_count_gt input_disks n =
if List.length input_disks > n then
error (f_"this output module doesn't support copying more than %d disks") n
type on_exit_kill = Kill | KillAndWait
let output_to_local_file ?(changeuid = fun f -> f ()) ?(compressed = false)
?(on_exit_kill = Kill)
output_alloc output_format filename size socket =
(* Check nbdkit is installed and has the required plugin. *)
if not (Nbdkit.is_installed ()) then
error (f_"nbdkit is not installed or not working. It is required \
to use ‘-o disk’.");
if not (Nbdkit.probe_plugin "file") then
error (f_"nbdkit-file-plugin is not installed or not working");
if compressed then (
(* Only allow compressed with -of qcow2. *)
if output_format <> "qcow2" then
error (f_"‘-oo compressed’ is only allowed when the output format \
is a local qcow2-format file, i.e. ‘-of qcow2’")
);
let g = open_guestfs () in
let preallocation =
match output_alloc with
| Preallocated -> Some "full"
| Sparse -> None in
changeuid (
fun () -> g#disk_create ?preallocation filename output_format size
);
let pid =
match output_format with
| "raw" ->
let cmd = Nbdkit.create "file" in
Nbdkit.add_arg cmd "file" filename;
Nbdkit.add_arg cmd "cache" "none";
let _, pid = Nbdkit.run_unix socket cmd in
pid
| "qcow2" ->
let cmd =
if compressed then (
let qemu_quote str = String.replace str "," ",," in
let image_opts = [ "driver=compress";
"file.driver=qcow2";
"file.file.driver=file";
"file.file.filename=" ^ qemu_quote filename ] in
let image_opts = String.concat "," image_opts in
let cmd = QemuNBD.create image_opts in
QemuNBD.set_image_opts cmd true;
cmd
)
else (* not compressed *) (
let cmd = QemuNBD.create filename in
QemuNBD.set_format cmd (Some "qcow2");
cmd
) in
QemuNBD.set_snapshot cmd false;
let _, pid = QemuNBD.run_unix socket cmd in
pid
| _ ->
error (f_"output mode only supports raw or qcow2 format (format: %s)")
output_format in
match on_exit_kill with
| Kill ->
(* Kill the NBD server on exit. (For nbdkit we use --exit-with-parent
* but it's not supported everywhere).
*)
On_exit.kill pid
| KillAndWait ->
On_exit.f (
fun () ->
kill pid Sys.sigterm;
(* Errors from the NBD server don't matter. On successful
* completion we've already committed the data to disk.
*)
ignore (waitpid [] pid)
)
let disk_path os name i =
let outdisk = sprintf "%s/%s-sd%s" os name (drive_name i) in
absolute_path outdisk
let create_local_output_disks dir
?(compressed = false)
output_alloc output_format output_name output_storage
input_disks =
let input_sizes = get_disk_sizes input_disks in
let output_disk_names =
List.mapi (fun i _ -> disk_path output_storage output_name i) input_disks in
(* In the special case where we will write to uncompressed raw
* local files, create a single nbdkit instance using the 'dir' option
* and choose which file to write using the export name.
*)
if not compressed && output_format = "raw" then (
(* Check nbdkit is installed and has the required plugin. *)
if not (Nbdkit.is_installed ()) then
error (f_"nbdkit is not installed or not working. It is required \
to use ‘-o disk’.");
if not (Nbdkit.probe_plugin "file") then
error (f_"nbdkit-file-plugin is not installed or not working");
(* We still have to create the output disks. *)
let g = open_guestfs () in
let preallocation =
match output_alloc with
| Preallocated -> Some "full"
| Sparse -> None in
List.iter (
fun (size, filename) ->
g#disk_create ?preallocation filename output_format size;
(* We've had issues with there not being enough space to write
* the disk image. Run df on the output filename. df follows
* symlinks and reports the space on the filesystem. But don't
* fail here if df cannot be run.
*)
if verbose () then (
let cmd = sprintf "df %s 1>&2" (quote filename) in
ignore (Sys.command cmd)
)
) (List.combine input_sizes output_disk_names);
let socket = sprintf "%s/out0" dir in
On_exit.unlink socket;
(* Create the single nbdkit-file-plugin instance. *)
let cmd = Nbdkit.create "file" in
Nbdkit.add_arg cmd "dir" output_storage;
Nbdkit.add_arg cmd "cache" "none";
let _, pid = Nbdkit.run_unix socket cmd in
On_exit.kill pid;
(* Use NBD export names to select the right disk to write. *)
let uris =
List.mapi (
fun i _ ->
let export = sprintf "%s-sd%s" output_name (drive_name i) in
NBD_URI.Unix (socket, Some export)
) input_disks in
uris
)
else (
(* Not the special case, use {!output_to_local_file} on each disk. *)
List.mapi (
fun i (size, outdisk) ->
let socket = sprintf "%s/out%d" dir i in
On_exit.unlink socket;
(* Create the actual output disk. *)
output_to_local_file ~compressed output_alloc output_format
outdisk size socket;
NBD_URI.Unix (socket, None)
) (List.combine input_sizes output_disk_names)
)
|