Re: [dpdk-dev] [PATCH] eal: tighten permissions on shared memory files

2019-04-04 Thread Thomas Monjalon
03/04/2019 18:02, Bruce Richardson: > Adding sta...@dpdk.org since this is suitable for backporting > > On Wed, Apr 03, 2019 at 05:00:34PM +0100, Bruce Richardson wrote: > > When creating files on disk, e.g. for EAL configuration or shared memory > > locks, etc., there is no need to grant any perm

Re: [dpdk-dev] [PATCH] eal: tighten permissions on shared memory files

2019-04-03 Thread Bruce Richardson
Adding sta...@dpdk.org since this is suitable for backporting On Wed, Apr 03, 2019 at 05:00:34PM +0100, Bruce Richardson 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 d

[dpdk-dev] [PATCH] eal: tighten permissions on shared memory files

2019-04-03 Thread Bruce Richardson
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. Signed-off-by: Bruce Richar