From patchwork Mon Mar 31 10:47:07 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Micka=C3=ABl_Sala=C3=BCn?= X-Patchwork-Id: 14033483 Received: from smtp-1909.mail.infomaniak.ch (smtp-1909.mail.infomaniak.ch [185.125.25.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AA2561DB13A for ; Mon, 31 Mar 2025 10:47:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.125.25.9 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743418039; cv=none; b=c+dmX8gCh2L3TMsLi0gledDRDlcInBcioSdEapokGbfpYcW/25KoNlDJJs3Bao0uSoQMwA29WyiQuMBeO3MQ84VOI4j4yxrDsBnLXxQGlLjfWoHS4W8zii+JXOcCb6o0DrmVDBQFksLDckYvJV9sctiE0XfJVnJvdocX4Aq85Bg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743418039; c=relaxed/simple; bh=NIK8HcY+gTICfzosHx6U7V268zslfI1gw5SJt6kSV5c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=fsfdNdLDPJG5wqJyvpDVS0bPwO5g+1YVMeXh+cxxPcHfFEQz5ApnLnwOEzjc28l5tinQJNtnW5o0bzWUEsesEB7o8aHArd/FEG4YWtGAqXClXzrx50zeXInM0zQkX8gv/KZKe8bzkEQjZh2KOsLy0eXrYMcz8fYp/Zbi+AyLV8E= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net; spf=pass smtp.mailfrom=digikod.net; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b=FKfovWl3; arc=none smtp.client-ip=185.125.25.9 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=digikod.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b="FKfovWl3" Received: from smtp-4-0000.mail.infomaniak.ch (smtp-4-0000.mail.infomaniak.ch [10.7.10.107]) by smtp-4-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4ZR79s5z8Rzs8j; Mon, 31 Mar 2025 12:47:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=digikod.net; s=20191114; t=1743418033; bh=eRy0I8DOnQ5/p28NM9gKVlG+Ob81WFeDjytw+o7qVGI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FKfovWl3mVgnHd2abcQQUi7o7vQNqywJWxZTM89V2iloLAanLPgog2xI5kS1fw4Rz 2DQFoHFNK6/6DFNsvVLeb44FEYVoGAaFgRDDR9Qh/9yN7BWSH5zu4lTTevdL13JlDS g8bTkwbGBVPL19Jqo4eKGh9lWyM6M9snPwDpQQIQ= Received: from unknown by smtp-4-0000.mail.infomaniak.ch (Postfix) with ESMTPA id 4ZR79s1wM1z1Dq; Mon, 31 Mar 2025 12:47:13 +0200 (CEST) From: =?utf-8?q?Micka=C3=ABl_Sala=C3=BCn?= To: =?utf-8?q?G=C3=BCnther_Noack?= Cc: =?utf-8?q?Micka=C3=ABl_Sala=C3=BCn?= , linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com, Paul Moore , syzbot+8bca99e91de7e060e4ea@syzkaller.appspotmail.com Subject: [PATCH v1] landlock: Remove incorrect warning Date: Mon, 31 Mar 2025 12:47:07 +0200 Message-ID: <20250331104709.897062-1-mic@digikod.net> In-Reply-To: <67e919bf.050a0220.1547ec.00a0.GAE@google.com> References: <67e919bf.050a0220.1547ec.00a0.GAE@google.com> Precedence: bulk X-Mailing-List: linux-security-module@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Infomaniak-Routing: alpha landlock_put_hierarchy() can be called when an error occurs in landlock_merge_ruleset() due to insufficient memory. In this case, the domain's audit details might not have been allocated yet, which would cause landlock_free_hierarchy_details() to print a warning (but still safely handle this case). We could keep the WARN_ON_ONCE(!hierarchy) but it's not worth it for this kind of function, so let's remove it entirely. Cc: Günther Noack Cc: Paul Moore Reported-by: syzbot+8bca99e91de7e060e4ea@syzkaller.appspotmail.com Link: https://lore.kernel.org/r/67e919bf.050a0220.1547ec.00a0.GAE@google.com Signed-off-by: Mickaël Salaün Reviewed-by: Günther Noack --- security/landlock/domain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/landlock/domain.h b/security/landlock/domain.h index ed0d348e214c..7fb70b25f85a 100644 --- a/security/landlock/domain.h +++ b/security/landlock/domain.h @@ -130,7 +130,7 @@ int landlock_init_hierarchy_log(struct landlock_hierarchy *const hierarchy); static inline void landlock_free_hierarchy_details(struct landlock_hierarchy *const hierarchy) { - if (WARN_ON_ONCE(!hierarchy || !hierarchy->details)) + if (!hierarchy || !hierarchy->details) return; put_pid(hierarchy->details->pid);