diff mbox series

syscalls/bind02.c: Fix create socker failed for nobody user and nogroup for "Permission denied"

Message ID 20180810025656.8825-1-zhanghuix.yuan@intel.com
State Rejected
Headers show
Series syscalls/bind02.c: Fix create socker failed for nobody user and nogroup for "Permission denied" | expand

Commit Message

Zhanghui Yuan Aug. 10, 2018, 2:56 a.m. UTC
Socket will try to be bind by user: nobody, group: nobody and socket failed for "Permission denied"
Add line 89~95 to fix this issue:
               if (errno == EACCES) {
                       tst_resm(TPASS, "correct error");
                       return;
               } else {
                       tst_brkm(TBROK | TERRNO, 0, "socket() failed");
               }

Signed-off-by: Zhanghui Yuan <zhanghuix.yuan@intel.com>
---
 testcases/kernel/syscalls/bind/bind02.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Comments

Cyril Hrubis Aug. 16, 2018, 2:25 p.m. UTC | #1
Hi!
>  testcases/kernel/syscalls/bind/bind02.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/testcases/kernel/syscalls/bind/bind02.c b/testcases/kernel/syscalls/bind/bind02.c
> index 90b0e9d8e..84ce588ce 100644
> --- a/testcases/kernel/syscalls/bind/bind02.c
> +++ b/testcases/kernel/syscalls/bind/bind02.c
> @@ -86,7 +86,12 @@ void try_bind(void)
>  	}
>  
>  	if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
> -		tst_brkm(TBROK | TERRNO, 0, "socket() failed");
> +		if (errno == EACCES) {
> +			tst_resm(TPASS, "correct error");
> +			return;
> +		}else {
> +			tst_brkm(TBROK | TERRNO, 0, "socket() failed");
> +		}
>  	}

There is no good reason why shouldn't the nobody user be able to create
AF_INET socket. Fist of all you should figure out why this is happening,
then, if it turns out to be the test fault, we can do something about
it.
diff mbox series

Patch

diff --git a/testcases/kernel/syscalls/bind/bind02.c b/testcases/kernel/syscalls/bind/bind02.c
index 90b0e9d8e..84ce588ce 100644
--- a/testcases/kernel/syscalls/bind/bind02.c
+++ b/testcases/kernel/syscalls/bind/bind02.c
@@ -86,7 +86,12 @@  void try_bind(void)
 	}
 
 	if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
-		tst_brkm(TBROK | TERRNO, 0, "socket() failed");
+		if (errno == EACCES) {
+			tst_resm(TPASS, "correct error");
+			return;
+		}else {
+			tst_brkm(TBROK | TERRNO, 0, "socket() failed");
+		}
 	}
 
 	memset(&servaddr, 0, sizeof(servaddr));