patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Yongseok Koh <yskoh@mellanox.com>
To: Bruce Richardson <bruce.richardson@intel.com>
Cc: "stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [17.11] eal: tighten permissions on shared memory	files
Date: Tue, 23 Jul 2019 16:38:41 +0000	[thread overview]
Message-ID: <19BFFE2F-B41F-487E-B911-74C615E12075@mellanox.com> (raw)
In-Reply-To: <20190723105422.57339-1-bruce.richardson@intel.com>


> On Jul 23, 2019, at 3:54 AM, Bruce Richardson <bruce.richardson@intel.com> wrote:
> 
> When creating files on disk, e.g. for EAL configuration or shared memory
> locks, etc., there is no need to grant any permissions on those files to
> other users. All directories are already created with 0700 permissions, so
> we should create all files with 0600 permissions.
> 
> Cc: stable@dpdk.org
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---

Applied to stable/17.11.

Bruce, did you receive my email requesting backport and then send this backport?
I can't see the mail I sent, either in my mailbox or community archive.
Looks it is being blocked or missing.
I'll have to send it out again...


Thanks,
Yongseok

> lib/librte_eal/bsdapp/eal/eal.c               | 2 +-
> lib/librte_eal/bsdapp/eal/eal_hugepage_info.c | 2 +-
> lib/librte_eal/linuxapp/eal/eal.c             | 2 +-
> lib/librte_eal/linuxapp/eal/eal_memory.c      | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/lib/librte_eal/bsdapp/eal/eal.c b/lib/librte_eal/bsdapp/eal/eal.c
> index 369a682a8..f5d8a77f6 100644
> --- a/lib/librte_eal/bsdapp/eal/eal.c
> +++ b/lib/librte_eal/bsdapp/eal/eal.c
> @@ -180,7 +180,7 @@ rte_eal_config_create(void)
> 		return;
> 
> 	if (mem_cfg_fd < 0){
> -		mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0660);
> +		mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600);
> 		if (mem_cfg_fd < 0)
> 			rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
> 	}
> diff --git a/lib/librte_eal/bsdapp/eal/eal_hugepage_info.c b/lib/librte_eal/bsdapp/eal/eal_hugepage_info.c
> index 8a33c30c5..80b221071 100644
> --- a/lib/librte_eal/bsdapp/eal/eal_hugepage_info.c
> +++ b/lib/librte_eal/bsdapp/eal/eal_hugepage_info.c
> @@ -51,7 +51,7 @@ static void *
> create_shared_memory(const char *filename, const size_t mem_size)
> {
> 	void *retval;
> -	int fd = open(filename, O_CREAT | O_RDWR, 0666);
> +	int fd = open(filename, O_CREAT | O_RDWR, 0600);
> 	if (fd < 0)
> 		return NULL;
> 	if (ftruncate(fd, mem_size) < 0) {
> diff --git a/lib/librte_eal/linuxapp/eal/eal.c b/lib/librte_eal/linuxapp/eal/eal.c
> index e6a733138..c6308a1ca 100644
> --- a/lib/librte_eal/linuxapp/eal/eal.c
> +++ b/lib/librte_eal/linuxapp/eal/eal.c
> @@ -198,7 +198,7 @@ rte_eal_config_create(void)
> 		rte_mem_cfg_addr = NULL;
> 
> 	if (mem_cfg_fd < 0){
> -		mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0660);
> +		mem_cfg_fd = open(pathname, O_RDWR | O_CREAT, 0600);
> 		if (mem_cfg_fd < 0)
> 			rte_panic("Cannot open '%s' for rte_mem_config\n", pathname);
> 	}
> diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c b/lib/librte_eal/linuxapp/eal/eal_memory.c
> index f1938ecfc..f3635373b 100644
> --- a/lib/librte_eal/linuxapp/eal/eal_memory.c
> +++ b/lib/librte_eal/linuxapp/eal/eal_memory.c
> @@ -740,7 +740,7 @@ static void *
> create_shared_memory(const char *filename, const size_t mem_size)
> {
> 	void *retval;
> -	int fd = open(filename, O_CREAT | O_RDWR, 0666);
> +	int fd = open(filename, O_CREAT | O_RDWR, 0600);
> 	if (fd < 0)
> 		return NULL;
> 	if (ftruncate(fd, mem_size) < 0) {
> -- 
> 2.21.0
> 


      reply	other threads:[~2019-07-23 16:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-23 10:54 Bruce Richardson
2019-07-23 16:38 ` Yongseok Koh [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19BFFE2F-B41F-487E-B911-74C615E12075@mellanox.com \
    --to=yskoh@mellanox.com \
    --cc=bruce.richardson@intel.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).