From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,T_DKIMWL_WL_HIGH,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0985CC04AB5 for ; Thu, 6 Jun 2019 15:54:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CBFA32083E for ; Thu, 6 Jun 2019 15:54:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1559836477; bh=R0Xg9hjW7/iUgwFsrnDSCb4DdFcBBFRH0I6qO3ipjHY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=PEFw7B2WnhigTsFJgc9NE8ErKaYnti/NuvzRfYUijj03b7alzYCfrwav8vA4pvRoY wIuqrBQdfX5EnzGXoLF3oeLB36CMwi7x6AJ3URtojEOKZzPCjmE9MhaFY3e7jhKL9+ 8QpKed9OPnHPP/1oStb2pvMe72vfJDPjp2/UkXoA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729536AbfFFPyG (ORCPT ); Thu, 6 Jun 2019 11:54:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:59444 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729521AbfFFPyF (ORCPT ); Thu, 6 Jun 2019 11:54:05 -0400 Received: from sol.localdomain (c-24-5-143-220.hsd1.ca.comcast.net [24.5.143.220]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id B9BFB20874; Thu, 6 Jun 2019 15:54:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1559836445; bh=R0Xg9hjW7/iUgwFsrnDSCb4DdFcBBFRH0I6qO3ipjHY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eayvQCBnFFdG9ccN1ncyrBrfBPLbd/0DR226BEBmtnhlSvfpDvHlygm3erUU7hXTO POoiwexUfpr3aYh7d+LyWSQ/onbMfGLlULW/QCoKqyW+JbFeWJ1jaOdON8b+fhuZ8y i62wDxlXK/kHSbPoSAuujlWDC7b3sPj+vrkiEBW4= From: Eric Biggers To: linux-fscrypt@vger.kernel.org Cc: linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-fsdevel@vger.kernel.org, linux-api@vger.kernel.org, linux-integrity@vger.kernel.org, Jaegeuk Kim , "Theodore Y . Ts'o" , Victor Hsieh , Dave Chinner , Christoph Hellwig , "Darrick J . Wong" , Linus Torvalds Subject: [PATCH v4 04/16] fs: uapi: define verity bit for FS_IOC_GETFLAGS Date: Thu, 6 Jun 2019 08:51:53 -0700 Message-Id: <20190606155205.2872-5-ebiggers@kernel.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190606155205.2872-1-ebiggers@kernel.org> References: <20190606155205.2872-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Eric Biggers Add FS_VERITY_FL to the flags for FS_IOC_GETFLAGS, so that applications can easily determine whether a file is a verity file at the same time as they're checking other file flags. This flag will be gettable only; FS_IOC_SETFLAGS won't allow setting it, since an ioctl must be used instead to provide more parameters. This flag matches the on-disk bit that was already allocated for ext4. Signed-off-by: Eric Biggers --- include/uapi/linux/fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/fs.h b/include/uapi/linux/fs.h index 59c71fa8c553..df261b7e0587 100644 --- a/include/uapi/linux/fs.h +++ b/include/uapi/linux/fs.h @@ -306,6 +306,7 @@ struct fscrypt_key { #define FS_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/ #define FS_HUGE_FILE_FL 0x00040000 /* Reserved for ext4 */ #define FS_EXTENT_FL 0x00080000 /* Extents */ +#define FS_VERITY_FL 0x00100000 /* Verity protected inode */ #define FS_EA_INODE_FL 0x00200000 /* Inode used for large EA */ #define FS_EOFBLOCKS_FL 0x00400000 /* Reserved for ext4 */ #define FS_NOCOW_FL 0x00800000 /* Do not cow file */ -- 2.21.0