From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-eopbgr30138.outbound.protection.outlook.com ([40.107.3.138]:63552 "EHLO EUR03-AM5-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726265AbeIGDql (ORCPT ); Thu, 6 Sep 2018 23:46:41 -0400 Date: Thu, 6 Sep 2018 16:08:23 -0700 From: Andrei Vagin To: David Howells Cc: Andrei Vagin , linux-fsdevel@vger.kernel.org, Andrei Vagin Subject: Re: [PATCH dhowells/mount-api] fs: fix checking an error code of security_fs_context_parse_param Message-ID: <20180906230822.GA19803@outlook.office365.com> References: <20180906001051.24015-1-avagin@openvz.org> <18703.1536228984@warthog.procyon.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <18703.1536228984@warthog.procyon.org.uk> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Thu, Sep 06, 2018 at 11:16:24AM +0100, David Howells wrote: > Andrei Vagin wrote: > > > security_fs_context_parse_param() returns 0 if everything is okay. > > Not quite. It returns 0 to indicate that it processed the argument and that > the argument doesn't belong to the filesystem. It returns -ENOPARAM to > indicate that the argument should be passed along to the filesystem. Any > other error is an actual error. > > > ret = security_fs_context_parse_param(fc, param); > > - if (ret != -ENOPARAM) > > + if (ret) > > So this change is wrong. It depends from what point to see on it. Without this patch, the linux-next kernel doesn't boot: VFS: Cannot open root device "vda2" or unknown-block(253,2): error -2 Please append a correct "root=" boot option; here are the available partitions: fd00 25165824 vda driver: virtio_blk fd01 512000 vda1 5065bd2c-01 fd02 23601152 vda2 5065bd2c-02 fd03 1044480 vda3 5065bd2c-03 Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(253,2) CPU: 1 PID: 1 Comm: swapper/0 Not tainted 4.19.0-rc1-00106-g679a89690477 #38 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS ?-20180531_142017-buildhw-08.phx2.fedoraproject.org-1.fc28 04/01/2014 Call Trace: dump_stack+0x85/0xc0 panic+0xec/0x251 mount_block_root+0x23e/0x2e7 ? do_early_param+0x8e/0x8e prepare_namespace+0x135/0x16b kernel_init_freeable+0x28b/0x2af ? rest_init+0xb9/0xb9 kernel_init+0xa/0x10e ret_from_fork+0x3a/0x50 Kernel Offset: 0x10000000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff) ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(253,2) ]--- I agree that I haven't understood the idea of this code. I found that security_fs_context_parse_param returns 0 by default and decided that this patch would fix the problem. I have sent an update version of the patch. Pls, take a look at it. And we need to push this patch to linux-next. We can't run CRIU tests for linux-next without it. Thanks, Andrei > > The change that needs making is to the documentation - in particular > lsm_hooks.h. > > David