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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
(* virt-v2v
* Copyright (C) 2009-2024 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 Std_utils
open C_utils
open Tools_utils
open Common_gettext.Gettext
open Types
open Utils
open DOM
let string_set_of_list =
List.fold_left (fun set x -> StringSet.add x set) StringSet.empty
(* XXX libguestfs provides g#inspect_get_osinfo which provides this
* information. Why are we hard-coding it here?
*)
let get_osinfo_id = function
| { i_type = "linux"; i_distro = "rhel";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://redhat.com/rhel/%d.%d" major minor)
| { i_type = "linux"; i_distro = "centos";
i_major_version = major; i_minor_version = minor } when major < 7 ->
Some (sprintf "http://centos.org/centos/%d.%d" major minor)
| { i_type = "linux"; i_distro = "centos"; i_major_version = major }
when major = 7 ->
Some (sprintf "http://centos.org/centos/%d.0" major)
| { i_type = "linux"; i_distro = "centos"; i_major_version = major }
when major >= 8 ->
Some (sprintf "http://centos.org/centos/%d" major)
| { i_type = "linux"; i_distro = "circle";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://cclinux.org/circle/%d.%d" major minor)
| { i_type = "linux"; i_distro = "rocky";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://rockylinux.org/rocky/%d.%d" major minor)
| { i_type = "linux"; i_distro = "sles";
i_major_version = major; i_minor_version = 0;
i_product_name = product } when String.find product "Desktop" >= 0 ->
Some (sprintf "http://suse.com/sled/%d" major)
| { i_type = "linux"; i_distro = "sles";
i_major_version = major; i_minor_version = minor;
i_product_name = product } when String.find product "Desktop" >= 0 ->
Some (sprintf "http://suse.com/sled/%d.%d" major minor)
| { i_type = "linux"; i_distro = "sles";
i_major_version = major; i_minor_version = 0 } ->
Some (sprintf "http://suse.com/sles/%d" major)
| { i_type = "linux"; i_distro = "sles";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://suse.com/sles/%d.%d" major minor)
| { i_type = "linux"; i_distro = "opensuse";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://opensuse.org/opensuse/%d.%d" major minor)
| { i_type = "linux"; i_distro = "debian"; i_major_version = major } ->
Some (sprintf "http://debian.org/debian/%d" major)
| { i_type = "linux"; i_distro = "ubuntu";
i_major_version = major; i_minor_version = minor } ->
Some (sprintf "http://ubuntu.com/ubuntu/%d.%02d" major minor)
| { i_type = "linux"; i_distro = "fedora"; i_major_version = major } ->
Some (sprintf "http://fedoraproject.org/fedora/%d" major)
| { i_type = "windows"; i_major_version = major; i_minor_version = minor }
when major < 4 ->
Some (sprintf "http://microsoft.com/win/%d.%d" major minor)
| { i_type = "windows"; i_major_version = 5; i_minor_version = 1 } ->
Some "http://microsoft.com/win/xp"
| { i_type = "windows"; i_major_version = 5; i_minor_version = 2;
i_product_name = product } when String.find product "XP" >= 0 ->
Some "http://microsoft.com/win/xp"
| { i_type = "windows"; i_major_version = 5; i_minor_version = 2;
i_product_name = product } when String.find product "R2" >= 0 ->
Some "http://microsoft.com/win/2k3r2"
| { i_type = "windows"; i_major_version = 5; i_minor_version = 2 } ->
Some "http://microsoft.com/win/2k3"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 0;
i_product_variant = "Server" } ->
Some "http://microsoft.com/win/2k8"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 0 } ->
Some "http://microsoft.com/win/vista"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 1;
i_product_variant = "Server" } ->
Some "http://microsoft.com/win/2k8r2"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 1 } ->
Some "http://microsoft.com/win/7"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 2;
i_product_variant = "Server" } ->
Some "http://microsoft.com/win/2k12"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 2 } ->
Some "http://microsoft.com/win/8"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 3;
i_product_variant = "Server" } ->
Some "http://microsoft.com/win/2k12r2"
| { i_type = "windows"; i_major_version = 6; i_minor_version = 3 } ->
Some "http://microsoft.com/win/8.1"
| { i_type = "windows"; i_major_version = 10; i_minor_version = 0;
i_product_variant = "Server"; i_product_name = product }
when String.find product "2019" >= 0 ->
Some "http://microsoft.com/win/2k19"
| { i_type = "windows"; i_major_version = 10; i_minor_version = 0;
i_product_variant = "Server"; i_product_name = product }
when String.find product "2022" >= 0 ->
Some "http://microsoft.com/win/2k22"
| { i_type = "windows"; i_major_version = 10; i_minor_version = 0;
i_product_variant = "Server" } ->
Some "http://microsoft.com/win/2k16"
| { i_type = "windows"; i_major_version = 10; i_minor_version = 0 } ->
Some "http://microsoft.com/win/10"
| { i_type = typ; i_distro = distro;
i_major_version = major; i_minor_version = minor; i_arch = arch;
i_product_name = product } ->
warning (f_"get_osinfo_id: unknown guest operating system: \
%s %s %d.%d %s (%s)")
typ distro major minor arch product;
None
let create_libvirt_xml ?pool source inspect
{ guestcaps; target_buses; target_firmware; target_nics }
target_features outdisk_name output_format output_name =
(* The main body of the libvirt XML document. *)
let body = ref [] in
List.push_back_list body [
Comment generated_by;
e "name" [] [PCData output_name];
];
(match source.s_genid with
| None -> ()
| Some genid -> List.push_back body (e "genid" [] [PCData genid])
);
(match get_osinfo_id inspect with
| None -> ()
| Some osinfo_id ->
List.push_back_list body [
e "metadata" [] [
e "libosinfo:libosinfo" ["xmlns:libosinfo", "http://libosinfo.org/xmlns/libvirt/domain/1.0"] [
e "libosinfo:os" ["id", osinfo_id] [];
];
];
];
);
let memory_k = source.s_memory /^ 1024L in
List.push_back_list body [
e "memory" ["unit", "KiB"] [PCData (Int64.to_string memory_k)];
e "currentMemory" ["unit", "KiB"] [PCData (Int64.to_string memory_k)];
e "vcpu" [] [PCData (string_of_int source.s_vcpu)]
];
let cpu_attrs = ref []
and cpu = ref [] in
(match source.s_cpu_model with
| None ->
List.push_back cpu_attrs ("mode", "host-model");
| Some model ->
List.push_back cpu_attrs ("match", "minimum");
if model = "qemu64" then
List.push_back cpu_attrs ("check", "none");
(match source.s_cpu_vendor with
| None -> ()
| Some vendor ->
List.push_back cpu (e "vendor" [] [PCData vendor])
);
List.push_back cpu (e "model" ["fallback", "allow"] [PCData model])
);
(match source.s_cpu_topology with
| None -> ()
| Some { s_cpu_sockets; s_cpu_cores; s_cpu_threads } ->
let topology_attrs = [
"sockets", string_of_int s_cpu_sockets;
"cores", string_of_int s_cpu_cores;
"threads", string_of_int s_cpu_threads;
] in
List.push_back cpu (e "topology" topology_attrs [])
);
List.push_back_list body [ e "cpu" !cpu_attrs !cpu ];
(* We have the machine features of the guest when it was on the
* source hypervisor (source.s_features). We have the set of
* hypervisor features supported by the target (target_features).
* Combine these into a final list of features.
*)
let features = string_set_of_list source.s_features in
let features = StringSet.add "acpi" features in
let target_features = string_set_of_list target_features in
(* Make sure we don't add any features which are not supported by
* the target hypervisor.
*)
let features = StringSet.inter(*section*) features target_features in
(* But if the target supports apic or pae then we should add them
* anyway (old virt-v2v did this).
*)
let force_features = string_set_of_list ["apic"; "pae"] in
let force_features =
StringSet.inter(*section*) force_features target_features in
let features = StringSet.union features force_features in
let features = List.sort compare (StringSet.elements features) in
List.push_back_list body [
e "features" [] (List.map (fun s -> e s [] []) features);
];
(* The <os> section subelements. *)
let os_section =
let os = ref [] in
let firmware =
match target_firmware with
| TargetBIOS -> []
| TargetUEFI -> [ "firmware", "efi" ] in
let machine =
match guestcaps.gcaps_machine with
| I440FX -> "pc"
| Q35 -> "q35"
| Virt -> "virt" in
List.push_back os
(e "type" ["arch", guestcaps.gcaps_arch;
"machine", machine]
[PCData "hvm"]);
(* We used to sometimes put <loader secure='yes'/> here. However
* that is likely wrong since by its nature virt-v2v can't really
* support secure boot ever. So for now we omit it.
*)
e "os" firmware !os in
(* The <clock> section. *)
let clock_section =
let offset = if guestcaps.gcaps_rtc_utc then "utc" else "localtime" in
e "clock" [ "offset", offset ] [] in
List.push_back_list body [
os_section;
clock_section;
e "on_poweroff" [] [PCData "destroy"];
e "on_reboot" [] [PCData "restart"];
e "on_crash" [] [PCData "restart"];
];
(* The devices. *)
let devices = ref [] in
(* This will affect all of the virtio devices (if any). *)
let virtio_transitional =
guestcaps.gcaps_machine = Q35 && not guestcaps.gcaps_virtio_1_0 in
let virtio_model =
if virtio_transitional then "virtio-transitional" else "virtio" in
(* Fixed and removable disks. *)
let () =
let make_disk bus_name ?(viotrans = false) drive_prefix i = function
| BusSlotEmpty -> Comment (sprintf "%s slot %d is empty" bus_name i)
| BusSlotDisk d ->
let outdisk = outdisk_name d.s_disk_id in
e "disk" (
[
"type", if pool = None then "file" else "volume";
"device", "disk"
] @ if (viotrans) then [ "model", "virtio-transitional" ] else []
) [
e "driver" [
"name", "qemu";
"type", output_format;
] [];
(match pool with
| None ->
e "source" [
"file", outdisk;
] []
| Some pool ->
e "source" [
"pool", pool;
"volume", Filename.basename outdisk;
] []
);
e "target" [
"dev", drive_prefix ^ drive_name i;
"bus", bus_name;
] [];
]
| BusSlotRemovable { s_removable_type = CDROM } ->
e "disk" [ "device", "cdrom"; "type", "file" ] [
e "driver" [ "name", "qemu"; "type", "raw" ] [];
e "target" [
"dev", drive_prefix ^ drive_name i;
"bus", bus_name
] []
]
| BusSlotRemovable { s_removable_type = Floppy } ->
e "disk" [ "device", "floppy"; "type", "file" ] [
e "driver" [ "name", "qemu"; "type", "raw" ] [];
e "target" [
"dev", drive_prefix ^ drive_name i;
] []
]
in
List.push_back_list devices
(List.mapi (make_disk "virtio" ~viotrans:virtio_transitional "vd")
(Array.to_list target_buses.target_virtio_blk_bus));
let ide_disks =
match guestcaps.gcaps_machine with
| I440FX ->
List.mapi (make_disk "ide" "hd")
(Array.to_list target_buses.target_ide_bus)
| Q35 ->
List.mapi (make_disk "sata" "sd")
(Array.to_list target_buses.target_ide_bus)
| Virt ->
(* mach_virt doesn't support legacy devices like IDE and SATA,
* so target_ide_bus must be empty, otherwise we give a warning.
*)
if Array.length target_buses.target_ide_bus > 0 then
warning "machine type virt does not support IDE and SATA legacy \
devices, some legacy devices of this guest have been \
dropped from the libvirt output";
[] in
List.push_back_list devices ide_disks;
List.push_back_list devices
(List.mapi (make_disk "scsi" "sd")
(Array.to_list target_buses.target_scsi_bus));
List.push_back_list devices
(List.mapi (make_disk "floppy" "fd")
(Array.to_list target_buses.target_floppy_bus)) in
let nics =
let net_model =
match guestcaps.gcaps_net_bus with
| Virtio_net -> virtio_model | E1000 -> "e1000" | RTL8139 -> "rtl8139" in
List.map (
fun { s_mac = mac; s_vnet_type = vnet_type; s_vnet = vnet } ->
let vnet_type_str =
match vnet_type with
| Bridge -> "bridge" | Network -> "network" in
let nic =
let children = [
e "source" [ vnet_type_str, vnet ] [];
e "model" [ "type", net_model ] [];
] in
e "interface" [ "type", vnet_type_str ] children in
(match mac with
| None -> ()
| Some mac ->
append_child (e "mac" [ "address", mac ] []) nic);
nic
) target_nics in
List.push_back_list devices nics;
(* Same as old virt-v2v, we always add a display here even if it was
* missing from the old metadata.
*)
let video =
let video_model =
e "model" [ "type", "vga"; "vram", "16384" ] [] in
append_attr ("heads", "1") video_model;
e "video" [] [ video_model ] in
List.push_back devices video;
let graphics =
match source.s_display with
| None ->
e "graphics" [ "type", "vnc"; "autoport", "yes" ] []
| Some { s_display_type = Window } ->
e "graphics" [ "type", "sdl" ] []
| Some { s_display_type = VNC; s_port = Some p } ->
e "graphics" [ "type", "vnc"; "port", string_of_int p ] []
| Some { s_display_type = VNC; s_port = None } ->
e "graphics" [ "type", "vnc"; "autoport", "yes" ] []
| Some { s_display_type = Spice; s_port = Some p } ->
e "graphics" [ "type", "spice"; "port", string_of_int p ] []
| Some { s_display_type = Spice; s_port = None } ->
e "graphics" [ "type", "spice"; "autoport", "yes" ] [] in
(match source.s_display with
| Some { s_keymap = Some km } -> append_attr ("keymap", km) graphics
| Some { s_keymap = None } | None -> ());
(match source.s_display with
| Some { s_password = Some pw } -> append_attr ("passwd", pw) graphics
| Some { s_password = None } | None -> ());
(match source.s_display with
| Some { s_listen = listen } ->
(match listen with
| LNoListen -> ()
| LAddress a ->
let sub = e "listen" [ "type", "address"; "address", a ] [] in
append_child sub graphics
| LNetwork n ->
let sub = e "listen" [ "type", "network"; "network", n ] [] in
append_child sub graphics
| LSocket s ->
let attrs = [ "type", "socket" ] @
match s with None -> [] | Some s -> [ "socket", s ] in
let sub = e "listen" attrs [] in
append_child sub graphics
| LNone ->
let sub = e "listen" [ "type", "none" ] [] in
append_child sub graphics
)
| None -> ());
List.push_back devices graphics;
let sound =
match source.s_sound with
| None -> []
| Some { s_sound_model = model } ->
if qemu_supports_sound_card model then
[ e "sound" [ "model", string_of_source_sound_model model ] [] ]
else
[] in
List.push_back_list devices sound;
(* Miscellaneous KVM devices. *)
if guestcaps.gcaps_virtio_rng then
List.push_back devices (
e "rng" ["model", virtio_model] [
(* XXX Using /dev/urandom requires libvirt >= 1.3.4. Libvirt
* was broken before that.
*)
e "backend" ["model", "random"] [PCData "/dev/urandom"]
]
);
(* For the balloon device, libvirt adds an implicit device
* unless we use model='none', hence this:
*)
List.push_back devices (
e "memballoon"
["model",
if guestcaps.gcaps_virtio_balloon then virtio_model else "none"]
[]
);
if guestcaps.gcaps_isa_pvpanic then
List.push_back devices (
e "panic" ["model", "isa"] [
e "address" ["type", "isa"; "iobase", "0x505"] []
]
);
if guestcaps.gcaps_virtio_socket then
List.push_back devices (e "vsock" ["model", virtio_model] []);
(* Standard devices added to every guest. *)
List.push_back_list devices [
e "input" ["type", "tablet"; "bus", "usb"] [];
e "input" ["type", "mouse"; "bus", "ps2"] [];
e "console" ["type", "pty"] [];
];
(* Given that we install the QEMU Guest Agent for both Linux and Windows
* guests unconditionally, create the virtio-serial device that's needed for
* communication between the host and the agent.
*)
List.push_back_list devices [
e "controller" ["type", "virtio-serial"; "model", virtio_model] [];
e "channel" ["type", "unix"] [
e "target" ["type", "virtio"; "name", "org.qemu.guest_agent.0"] []
]
];
List.push_back_list body [
e "devices" [] !devices;
];
let doc : doc =
doc "domain" [
"type", "kvm"; (* Always assume target is kvm? *)
] !body in
doc
|