ironic-python-agent/ironic_python_agent
Jay Faulkner b7fa84dcc1 Inspect non-raw images for safety
This is a backport of two changes merged together to facilitate
backporting:

The first is a refactor of disk utilities:

Import disk_{utils,partitioner} from ironic-lib

With the iscsi deploy long gone, these modules are only used in IPA and
in fact represent a large part of its critical logic. Having them
separately sometimes makes fixing issues tricky if an interface of
a function needs changing.

This change imports the code mostly as it is, just removing run_as_root and
a deprecated function, as well as moving configuration options to config.py.

Also migrates one relevant function from ironic_lib.utils.

The second is the fix for the security issue:

Inspect non-raw images for safety

When IPA gets a non-raw image, it performs an on-the-fly conversion
using qemu-img convert, as well as running qemu-img frequently to get
basic information about the image before validating it.

Now, we ensure that before any qemu-img calls are made, that we have
inspected the image for safety and pass through the detected format.

If given a disk_format=raw image and image streaming is enabled
(default), we retain the existing behavior of not inspecting it in
any way and streaming it bit-perfect to the device. In this case, we
never use qemu-based tools on the image at all.

If given a disk_format=raw image and image streaming is disabled, this
change fixes a bug where the image may have been converted if it was not
actually raw in the first place. We now stream these bit-perfect to the
device.

Adds two config options:
- [DEFAULT]/disable_deep_image_inspection, which can be set to "True" in
  order to disable all security features. Do not do this.
- [DEFAULT]/permitted_image_formats, default raw,qcow2, for image types
  IPA should accept.

Both of these configuration options are wired up to be set by the lookup
data returned by Ironic at lookup time.

This uses a image format inspection module imported from Nova; this
inspector will eventually live in oslo.utils, at which point we'll
migrate our usage of the inspector to it.

Closes-Bug: #2071740
Co-Authored-By: Dmitry Tantsur <dtantsur@protonmail.com>
Change-Id: I5254b80717cb5a7f9084e3eff32a00b968f987b7
2024-09-04 09:17:42 -07:00
..
api Use Werkzeug modern version 2022-04-14 10:47:06 +00:00
cmd Capture the early logging 2021-04-01 11:16:20 -07:00
extensions Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
hardware_managers Add get_service_steps logic to the agent 2023-08-31 06:22:22 -07:00
tests Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
__init__.py [trivial] Fix typo in __init__.py 2021-12-16 22:03:51 +01:00
agent.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
burnin.py Burn-in: Dynamic network pairing 2022-01-10 11:31:33 +01:00
config.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
disk_partitioner.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
disk_utils.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
dmi_inspector.py Collect processor, memory and BIOS output of dmidecode - follow-up 2017-07-27 07:30:54 -07:00
efi_utils.py Fix UTF-16 result handling for efibootmgr 2023-04-17 09:14:24 -07:00
encoding.py Fix serializing ironic-lib exceptions 2020-07-02 12:18:53 +02:00
errors.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
format_inspector.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
hardware.py Call evaluate_hardware_support exactly once per hwm 2024-05-22 20:22:32 +00:00
inject_files.py New deploy step for injecting arbitrary files 2021-02-16 16:56:52 +01:00
inspect.py Add jitter to inspection command reporting 2020-03-31 08:13:13 -07:00
inspector.py Also retry inspection on HTTP CONFLICT 2024-01-29 10:01:52 +01:00
ironic_api_client.py Handle the node being locked 2023-08-22 16:47:28 -07:00
netutils.py Deprecate LLDP in inventory in favour of a new collector 2023-04-26 19:33:51 +00:00
numa_inspector.py Skip nic numa_node discovery if it's not assigned to a numa_node 2020-01-17 11:15:35 +01:00
partition_utils.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
qemu_img.py Inspect non-raw images for safety 2024-09-04 09:17:42 -07:00
raid_utils.py Conditional creation of RAIDed ESP for UEFI Software RAID 2023-11-01 13:01:29 +01:00
tls_utils.py Generate TLS certificates with validity time in the past 2020-12-10 16:22:13 +01:00
utils.py Unmount config drives 2024-05-01 14:40:54 +00:00
version.py Remove importlib-metadata from requirements 2022-06-21 17:54:39 +02:00