From c99706475cde3d963a17f4f8871149711ce6c467 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Wed, 28 Jan 2026 12:23:20 +0100 Subject: [PATCH] libcamera: ipa_manager: Disable signature verification --- src/libcamera/ipa_manager.cpp | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/src/libcamera/ipa_manager.cpp b/src/libcamera/ipa_manager.cpp index 35171d09..4ab394da 100644 --- a/src/libcamera/ipa_manager.cpp +++ b/src/libcamera/ipa_manager.cpp @@ -288,32 +288,11 @@ IPAModule *IPAManager::module(PipelineHandler *pipe, uint32_t minVersion, bool IPAManager::isSignatureValid([[maybe_unused]] IPAModule *ipa) const { -#if HAVE_IPA_PUBKEY - if (forceIsolation_) { - LOG(IPAManager, Debug) - << "Isolation of IPA module " << ipa->path() - << " forced through configuration"; - return false; - } - - File file{ ipa->path() }; - if (!file.open(File::OpenModeFlag::ReadOnly)) - return false; - - Span data = file.map(); - if (data.empty()) - return false; - - bool valid = pubKey_.verify(data, ipa->signature()); - LOG(IPAManager, Debug) - << "IPA module " << ipa->path() << " signature is " - << (valid ? "valid" : "not valid"); + << "Signature verification is disabled by Guix. " + << "See https://issues.guix.gnu.org/72828 for more details."; - return valid; -#else - return false; -#endif + return true; } } /* namespace libcamera */ -- 2.52.0