From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]:49192 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751963AbeDMAul (ORCPT ); Thu, 12 Apr 2018 20:50:41 -0400 MIME-Version: 1.0 In-Reply-To: <20180409002239.163177-188-alexander.levin@microsoft.com> References: <20180409002239.163177-1-alexander.levin@microsoft.com> <20180409002239.163177-188-alexander.levin@microsoft.com> From: "Luis R. Rodriguez" Date: Thu, 12 Apr 2018 17:50:19 -0700 Message-ID: Subject: Re: [PATCH AUTOSEL for 4.9 188/293] fs: warn in case userspace lied about modprobe return To: Sasha Levin Cc: "stable@vger.kernel.org" , "linux-kernel@vger.kernel.org" , Jessica Yu , Al Viro Content-Type: text/plain; charset="UTF-8" Sender: stable-owner@vger.kernel.org List-ID: On Sun, Apr 8, 2018 at 5:25 PM, Sasha Levin wrote: > From: "Luis R. Rodriguez" > > [ Upstream commit 41124db869b7e00e12052555f8987867ac01d70c ] > > kmod <= v19 was broken -- it could return 0 to modprobe calls, > incorrectly assuming that a kernel module was built-in, whereas in > reality the module was just forming in the kernel. The reason for this > is an incorrect userspace heuristics. A userspace kmod fix is available > for it [0], however should userspace break again we could go on with > an failed get_fs_type() which is hard to debug as the request_module() > is detected as returning 0. The first suspect would be that there is > something worth with the kernel's module loader and obviously in this > case that is not the issue. > > Since these issues are painful to debug complain when we know userspace > has outright lied to us. > > [0] http://git.kernel.org/cgit/utils/kernel/kmod/kmod.git/commit/libkmod/libkmod-module.c?id=fd44a98ae2eb5eb32161088954ab21e58e19dfc4 > > Suggested-by: Rusty Russell > Cc: Jessica Yu > Signed-off-by: Luis R. Rodriguez > Signed-off-by: Al Viro > Signed-off-by: Sasha Levin Acked-by: Luis R. Rodriguez The issue is real, and specially older kernels with older userspace can suffer with pain. It doesn't follow the typical stable candidate-fix, however, such simple check *can* help rule out tons of stupid debugging where the culprit really was userspace. Luis