* [dpdk-dev] [PATCH] eal: fix directory permissions
@ 2018-05-18 13:55 Adrien Mazarguil
2018-05-20 23:08 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Adrien Mazarguil @ 2018-05-18 13:55 UTC (permalink / raw)
To: Anatoly Burakov; +Cc: dev
Executable bit must be set on directories for normal users to enter them.
This patch addresses the inability to start DPDK applications as non-root
due to errors such as:
EAL: failed to bind /tmp/dpdk/rte/mp_socket: Permission denied
Fixes: 56236363b481 ("eal: add directory for runtime data")
Cc: Anatoly Burakov <anatoly.burakov@intel.com>
Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
---
lib/librte_eal/bsdapp/eal/eal.c | 4 ++--
lib/librte_eal/linuxapp/eal/eal.c | 4 ++--
2 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 7f8475eac..dc279542d 100644
--- a/lib/librte_eal/bsdapp/eal/eal.c
+++ b/lib/librte_eal/bsdapp/eal/eal.c
@@ -123,14 +123,14 @@ eal_create_runtime_dir(void)
/* create the path if it doesn't exist. no "mkdir -p" here, so do it
* step by step.
*/
- ret = mkdir(tmp, 0600);
+ ret = mkdir(tmp, 0700);
if (ret < 0 && errno != EEXIST) {
RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
tmp, strerror(errno));
return -1;
}
- ret = mkdir(runtime_dir, 0600);
+ ret = mkdir(runtime_dir, 0700);
if (ret < 0 && errno != EEXIST) {
RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
runtime_dir, strerror(errno));
diff --git a/lib/librte_eal/linuxapp/eal/eal.c b/lib/librte_eal/linuxapp/eal/eal.c
index 150d5dd13..8655b8691 100644
--- a/lib/librte_eal/linuxapp/eal/eal.c
+++ b/lib/librte_eal/linuxapp/eal/eal.c
@@ -131,14 +131,14 @@ eal_create_runtime_dir(void)
/* create the path if it doesn't exist. no "mkdir -p" here, so do it
* step by step.
*/
- ret = mkdir(tmp, 0600);
+ ret = mkdir(tmp, 0700);
if (ret < 0 && errno != EEXIST) {
RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
tmp, strerror(errno));
return -1;
}
- ret = mkdir(runtime_dir, 0600);
+ ret = mkdir(runtime_dir, 0700);
if (ret < 0 && errno != EEXIST) {
RTE_LOG(ERR, EAL, "Error creating '%s': %s\n",
runtime_dir, strerror(errno));
--
2.11.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix directory permissions
2018-05-18 13:55 [dpdk-dev] [PATCH] eal: fix directory permissions Adrien Mazarguil
@ 2018-05-20 23:08 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2018-05-20 23:08 UTC (permalink / raw)
To: Adrien Mazarguil; +Cc: dev, Anatoly Burakov
18/05/2018 15:55, Adrien Mazarguil:
> Executable bit must be set on directories for normal users to enter them.
>
> This patch addresses the inability to start DPDK applications as non-root
> due to errors such as:
>
> EAL: failed to bind /tmp/dpdk/rte/mp_socket: Permission denied
>
> Fixes: 56236363b481 ("eal: add directory for runtime data")
> Cc: Anatoly Burakov <anatoly.burakov@intel.com>
>
> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Applied, thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-05-20 23:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-18 13:55 [dpdk-dev] [PATCH] eal: fix directory permissions Adrien Mazarguil
2018-05-20 23:08 ` Thomas Monjalon
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).