From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752759AbeDEBpU (ORCPT ); Wed, 4 Apr 2018 21:45:20 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:51080 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752652AbeDEBpT (ORCPT ); Wed, 4 Apr 2018 21:45:19 -0400 Date: Wed, 4 Apr 2018 18:45:17 -0700 From: Andrew Morton To: Randy Dunlap Cc: LKML , reiserfs-devel@vger.kernel.org, Alexander Viro , Jeff Mahoney , Jan Kara , Frederic Weisbecker , Artem Bityutskiy , syzkaller-bugs@googlegroups.com, syzbot+6bd77b88c1977c03f584@syzkaller.appspotmail.com Subject: Re: [PATCH?] reiserfs: prevent panic: don't allow %-char in journal dev. name Message-Id: <20180404184517.9f2b91b856a56f71464f5f7f@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 4 Apr 2018 18:25:16 -0700 Randy Dunlap wrote: > From: Randy Dunlap > > If the reiserfs mount option's journal name contains a '%' character, > it can lead to a WARN_ONCE() in lib/vsprintf.c::format_decode(), > saying: "Please remove unsupported %/ in format string." > That's OK until panic_on_warn is set, at which point it's dead, Jim. > > To placate this situation, check the journal name string for a '%' > character and return an error if one is found. Also print a warning > (one that won't panic the kernel) about the invalid journal name (e.g.): > > reiserfs: journal device name is invalid: %/file0 > > (In this example, the caller app specified the journal device name as > "%/file0".) > Well, that is a valid filename and we should support it... Isn't the bug in journal_init_dev()? --- a/fs/reiserfs/journal.c~a +++ a/fs/reiserfs/journal.c @@ -2643,7 +2643,7 @@ static int journal_init_dev(struct super if (IS_ERR(journal->j_dev_bd)) { result = PTR_ERR(journal->j_dev_bd); journal->j_dev_bd = NULL; - reiserfs_warning(super, + reiserfs_warning(super, "sh-457", "journal_init_dev: Cannot open '%s': %i", jdev_name, result); return result; _