From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932930AbdJaSnJ (ORCPT ); Tue, 31 Oct 2017 14:43:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35981 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932673AbdJaSk5 (ORCPT ); Tue, 31 Oct 2017 14:40:57 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 799A7C057FAB Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=marcandre.lureau@redhat.com From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= To: linux-mm@kvack.org, linux-kernel@vger.kernel.org Cc: aarcange@redhat.com, hughd@google.com, nyc@holomorphy.com, mike.kravetz@oracle.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Subject: [PATCH 0/6] memfd: add sealing to hugetlb-backed memory Date: Tue, 31 Oct 2017 19:40:46 +0100 Message-Id: <20171031184052.25253-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Tue, 31 Oct 2017 18:40:57 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Recently, Mike Kravetz added hugetlbfs support to memfd. However, he didn't add sealing support. One of the reasons to use memfd is to have shared memory sealing when doing IPC or sharing memory with another process with some extra safety. qemu uses shared memory & hugetables with vhost-user (used by dpdk), so it is reasonable to use memfd now instead for convenience and security reasons. Thanks! RFC->v1: - split rfc patch, after early review feedback - added patch for memfd-test changes - fix build with hugetlbfs disabled - small code and commit messages improvements Marc-André Lureau (6): shmem: unexport shmem_add_seals()/shmem_get_seals() shmem: rename functions that are memfd-related hugetlb: expose hugetlbfs_inode_info in header hugetlbfs: implement memfd sealing shmem: add sealing support to hugetlb-backed memfd memfd-tests: test hugetlbfs sealing fs/fcntl.c | 2 +- fs/hugetlbfs/inode.c | 39 +++++--- include/linux/hugetlb.h | 11 +++ include/linux/shmem_fs.h | 6 +- mm/shmem.c | 59 +++++++----- tools/testing/selftests/memfd/memfd_test.c | 150 +++-------------------------- 6 files changed, 89 insertions(+), 178 deletions(-) -- 2.15.0.rc0.40.gaefcc5f6f