-
Notifications
You must be signed in to change notification settings - Fork 579
[MEDIUM] Patch libvirt for CVE-2024-1441 CVE-2024-2494 #13886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
0xba1a
merged 1 commit into
microsoft:3.0-dev
from
aninda-al:v-anipradhan/libvirt/CVE-2024-1441-CVE-2024-2494
May 29, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
From 2ebd1f031ecd93d74cb01051f23c8c4564998489 Mon Sep 17 00:00:00 2001 | ||
From: Aninda <[email protected]> | ||
Date: Thu, 22 May 2025 22:10:00 -0400 | ||
Subject: [PATCH] Address CVE-2024-1441 | ||
Upstream Patch Reference: https://github.com/libvirt/libvirt/commit/c664015fe3a7bf59db26686e9ed69af011c6ebb8.patch | ||
|
||
--- | ||
NEWS.rst | 16 ++++++++++++++++ | ||
src/interface/interface_backend_udev.c | 2 +- | ||
2 files changed, 17 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/NEWS.rst b/NEWS.rst | ||
index d013fc7..97c3bc6 100644 | ||
--- a/NEWS.rst | ||
+++ b/NEWS.rst | ||
@@ -10,6 +10,22 @@ For a more fine-grained view, use the `git log`_. | ||
|
||
v10.0.0 (2024-01-15) | ||
==================== | ||
+* **Security** | ||
+ | ||
+ * ``CVE-2024-1441``: Fix off-by-one error leading to a crash | ||
+ | ||
+ In **libvirt-1.0.0** there were couple of interface listing APIs | ||
+ introduced which had an off-by-one error. That error could lead to a | ||
+ very rare crash if an array was passed to those functions which did | ||
+ not fit all the interfaces. | ||
+ | ||
+ In **libvirt-5.10** a check for non-NULL arrays has been adjusted to | ||
+ allow for NULL arrays with size 0 instead of rejecting all NULL | ||
+ arrays. However that made the above issue significantly worse since | ||
+ that off-by-one error now did not write beyond an array, but | ||
+ dereferenced said NULL pointer making the crash certain in a | ||
+ specific scenario in which a NULL array of size 0 was passed to the | ||
+ aforementioned functions. | ||
|
||
* **New features** | ||
|
||
diff --git a/src/interface/interface_backend_udev.c b/src/interface/interface_backend_udev.c | ||
index fb6799e..4091483 100644 | ||
--- a/src/interface/interface_backend_udev.c | ||
+++ b/src/interface/interface_backend_udev.c | ||
@@ -222,7 +222,7 @@ udevListInterfacesByStatus(virConnectPtr conn, | ||
g_autoptr(virInterfaceDef) def = NULL; | ||
|
||
/* Ensure we won't exceed the size of our array */ | ||
- if (count > names_len) | ||
+ if (count >= names_len) | ||
break; | ||
|
||
path = udev_list_entry_get_name(dev_entry); | ||
-- | ||
2.34.1 | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
From f0fbb57dae0b9328f53c9d8ba9d672bfc9fd5cf3 Mon Sep 17 00:00:00 2001 | ||
From: Aninda <[email protected]> | ||
Date: Thu, 22 May 2025 22:27:55 -0400 | ||
Subject: [PATCH] Address CVE-2024-2494 | ||
Upstream Patch Reference: https://gitlab.com/libvirt/libvirt/-/commit/8a3f8d957507c1f8223fdcf25a3ff885b15557f2.patch | ||
|
||
--- | ||
src/remote/remote_daemon_dispatch.c | 65 +++++++++++++++++++++++++++++ | ||
src/rpc/gendispatch.pl | 5 +++ | ||
2 files changed, 70 insertions(+) | ||
|
||
diff --git a/src/remote/remote_daemon_dispatch.c b/src/remote/remote_daemon_dispatch.c | ||
index 7daf503..7542caa 100644 | ||
--- a/src/remote/remote_daemon_dispatch.c | ||
+++ b/src/remote/remote_daemon_dispatch.c | ||
@@ -2291,6 +2291,10 @@ remoteDispatchDomainGetSchedulerParameters(virNetServer *server G_GNUC_UNUSED, | ||
if (!conn) | ||
goto cleanup; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_SCHEDULER_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -2339,6 +2343,10 @@ remoteDispatchDomainGetSchedulerParametersFlags(virNetServer *server G_GNUC_UNUS | ||
if (!conn) | ||
goto cleanup; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_SCHEDULER_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -2497,6 +2505,10 @@ remoteDispatchDomainBlockStatsFlags(virNetServer *server G_GNUC_UNUSED, | ||
goto cleanup; | ||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_BLOCK_STATS_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -2717,6 +2729,14 @@ remoteDispatchDomainGetVcpuPinInfo(virNetServer *server G_GNUC_UNUSED, | ||
if (!(dom = get_nonnull_domain(conn, args->dom))) | ||
goto cleanup; | ||
|
||
+ if (args->ncpumaps < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("ncpumaps must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
+ if (args->maplen < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("maplen must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->ncpumaps > REMOTE_VCPUINFO_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("ncpumaps > REMOTE_VCPUINFO_MAX")); | ||
goto cleanup; | ||
@@ -2811,6 +2831,11 @@ remoteDispatchDomainGetEmulatorPinInfo(virNetServer *server G_GNUC_UNUSED, | ||
if (!(dom = get_nonnull_domain(conn, args->dom))) | ||
goto cleanup; | ||
|
||
+ if (args->maplen < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("maplen must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
+ | ||
/* Allocate buffers to take the results */ | ||
if (args->maplen > 0) | ||
cpumaps = g_new0(unsigned char, args->maplen); | ||
@@ -2858,6 +2883,14 @@ remoteDispatchDomainGetVcpus(virNetServer *server G_GNUC_UNUSED, | ||
if (!(dom = get_nonnull_domain(conn, args->dom))) | ||
goto cleanup; | ||
|
||
+ if (args->maxinfo < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("maxinfo must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
+ if (args->maplen < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("maxinfo must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->maxinfo > REMOTE_VCPUINFO_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("maxinfo > REMOTE_VCPUINFO_MAX")); | ||
goto cleanup; | ||
@@ -3096,6 +3129,10 @@ remoteDispatchDomainGetMemoryParameters(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_MEMORY_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -3156,6 +3193,10 @@ remoteDispatchDomainGetNumaParameters(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_NUMA_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -3216,6 +3257,10 @@ remoteDispatchDomainGetBlkioParameters(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_BLKIO_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -3277,6 +3322,10 @@ remoteDispatchNodeGetCPUStats(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_NODE_CPU_STATS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -3339,6 +3388,10 @@ remoteDispatchNodeGetMemoryStats(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_NODE_MEMORY_STATS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -3514,6 +3567,10 @@ remoteDispatchDomainGetBlockIoTune(virNetServer *server G_GNUC_UNUSED, | ||
if (!conn) | ||
goto cleanup; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_BLOCK_IO_TUNE_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -5079,6 +5136,10 @@ remoteDispatchDomainGetInterfaceParameters(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_DOMAIN_INTERFACE_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
@@ -5299,6 +5360,10 @@ remoteDispatchNodeGetMemoryParameters(virNetServer *server G_GNUC_UNUSED, | ||
|
||
flags = args->flags; | ||
|
||
+ if (args->nparams < 0) { | ||
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams must be non-negative")); | ||
+ goto cleanup; | ||
+ } | ||
if (args->nparams > REMOTE_NODE_MEMORY_PARAMETERS_MAX) { | ||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("nparams too large")); | ||
goto cleanup; | ||
diff --git a/src/rpc/gendispatch.pl b/src/rpc/gendispatch.pl | ||
index 5ce988c..c5842dc 100755 | ||
--- a/src/rpc/gendispatch.pl | ||
+++ b/src/rpc/gendispatch.pl | ||
@@ -1070,6 +1070,11 @@ elsif ($mode eq "server") { | ||
print "\n"; | ||
|
||
if ($single_ret_as_list) { | ||
+ print " if (args->$single_ret_list_max_var < 0) {\n"; | ||
+ print " virReportError(VIR_ERR_RPC,\n"; | ||
+ print " \"%s\", _(\"max$single_ret_list_name must be non-negative\"));\n"; | ||
+ print " goto cleanup;\n"; | ||
+ print " }\n"; | ||
print " if (args->$single_ret_list_max_var > $single_ret_list_max_define) {\n"; | ||
print " virReportError(VIR_ERR_RPC,\n"; | ||
print " \"%s\", _(\"max$single_ret_list_name > $single_ret_list_max_define\"));\n"; | ||
-- | ||
2.34.1 | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,7 +185,7 @@ | |
Summary: Library providing a simple virtualization API | ||
Name: libvirt | ||
Version: 10.0.0 | ||
Release: 3%{?dist} | ||
Release: 4%{?dist} | ||
License: GPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND OFL-1.1 | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
@@ -196,6 +196,8 @@ URL: https://libvirt.org/ | |
%endif | ||
Source: https://download.libvirt.org/%{?mainturl}libvirt-%{version}.tar.xz | ||
Patch0: libvirt-conf.patch | ||
Patch1: CVE-2024-1441.patch | ||
Patch2: CVE-2024-2494.patch | ||
|
||
Requires: libvirt-daemon = %{version}-%{release} | ||
Requires: libvirt-daemon-config-network = %{version}-%{release} | ||
|
@@ -2186,6 +2188,9 @@ exit 0 | |
%endif | ||
|
||
%changelog | ||
* Fri May 23 2025 Aninda Pradhan <[email protected]> - 10.0.0-4 | ||
- Fix for CVE-2024-1441 and CVE-2024-2494 | ||
|
||
* Thu May 30 2024 Sharath Srikanth Chellappa <[email protected]> - 10.0.0-3 | ||
- Add patch to libvirt.conf to work with kubevirt. | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upstream Patch Looks Good.
Buddy Build