Message ID | 165871154975.22404.9637671230578653457.stgit@donald.themaw.net (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-fsdevel-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1FF34C43334 for <linux-fsdevel@archiver.kernel.org>; Mon, 25 Jul 2022 01:17:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230394AbiGYBR1 (ORCPT <rfc822;linux-fsdevel@archiver.kernel.org>); Sun, 24 Jul 2022 21:17:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39734 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229687AbiGYBRY (ORCPT <rfc822;linux-fsdevel@vger.kernel.org>); Sun, 24 Jul 2022 21:17:24 -0400 Received: from smtp01.aussiebb.com.au (smtp01.aussiebb.com.au [121.200.0.92]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 62F92BCA7; Sun, 24 Jul 2022 18:17:23 -0700 (PDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp01.aussiebb.com.au (Postfix) with ESMTP id 6017E1003A8; Mon, 25 Jul 2022 11:17:19 +1000 (AEST) X-Virus-Scanned: Debian amavisd-new at smtp01.aussiebb.com.au Received: from smtp01.aussiebb.com.au ([127.0.0.1]) by localhost (smtp01.aussiebb.com.au [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id asN7OfZIUr8M; Mon, 25 Jul 2022 11:17:19 +1000 (AEST) Received: by smtp01.aussiebb.com.au (Postfix, from userid 116) id 54D64100391; Mon, 25 Jul 2022 11:17:19 +1000 (AEST) Received: from donald.themaw.net (180-150-90-198.b4965a.per.nbn.aussiebb.net [180.150.90.198]) by smtp01.aussiebb.com.au (Postfix) with ESMTP id 36F09100387; Mon, 25 Jul 2022 11:17:17 +1000 (AEST) Subject: [PATCH v3 0/2] vfs: fix a mount table handling problem From: Ian Kent <raven@themaw.net> To: Al Viro <viro@ZenIV.linux.org.uk> Cc: Andrew Morton <akpm@linux-foundation.org>, Siddhesh Poyarekar <siddhesh@gotplt.org>, David Howells <dhowells@redhat.com>, Miklos Szeredi <miklos@szeredi.hu>, Carlos Maiolino <cmaiolino@redhat.com>, linux-fsdevel <linux-fsdevel@vger.kernel.org>, Kernel Mailing List <linux-kernel@vger.kernel.org> Date: Mon, 25 Jul 2022 09:17:16 +0800 Message-ID: <165871154975.22404.9637671230578653457.stgit@donald.themaw.net> User-Agent: StGit/1.1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: <linux-fsdevel.vger.kernel.org> X-Mailing-List: linux-fsdevel@vger.kernel.org |
Series |
vfs: fix a mount table handling problem
|
expand
|
Whenever a mount has an empty "source" (aka mnt_fsname), the glibc function getmntent incorrectly parses its input, resulting in reporting incorrect data to the caller. The problem is that the get_mnt_entry() function in glibc's misc/mntent_r.c assumes that leading whitespace on a line can always be discarded because it will always be followed by a # for the case of a comment or a non-whitespace character that's part of the value of the first field. However, this assumption is violated when the value of the first field is an empty string. This is fixed in the mount API code by simply checking for a pointer that contains a NULL and treating it as a NULL pointer. Changes: v3: added patch to fix zero length string access violation caused after fs parser patch is applied. v2: fix possible oops if conversion functions such as fs_param_is_u32() are called. Signed-off-by: Ian Kent <raven@themaw.net> --- Ian Kent (2): ext4: fix possible null pointer dereference vfs: parse: deal with zero length string value fs/ext4/super.c | 4 ++-- fs/fs_context.c | 17 ++++++++++++----- fs/fs_parser.c | 16 ++++++++++++++++ include/linux/fs_context.h | 3 ++- 4 files changed, 32 insertions(+), 8 deletions(-) -- Ian