public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
@ 2015-07-01  6:35 Hangbin Liu
  2015-07-01  6:39 ` Hangbin Liu
  2015-07-01  6:55 ` Jan Stancek
  0 siblings, 2 replies; 5+ messages in thread
From: Hangbin Liu @ 2015-07-01  6:35 UTC (permalink / raw)
  To: LTP List

Use ltp_syscall for setns incase some libc library do not support it. Also
check whether we support setns in setup(). If it's support the syscall will
silently fails and test continues. If not, then tst_brkm call will end the
test with TCONF.

Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
 testcases/kernel/containers/userns/userns04.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/testcases/kernel/containers/userns/userns04.c b/testcases/kernel/containers/userns/userns04.c
index 7077679..9836fd9 100644
--- a/testcases/kernel/containers/userns/userns04.c
+++ b/testcases/kernel/containers/userns/userns04.c
@@ -35,6 +35,7 @@ int TST_TOTAL = 1;
 static void setup(void)
 {
 	check_newuser();
+	ltp_syscall(__NR_setns, -1, 0);
 	tst_tmpdir();
 	TST_CHECKPOINT_INIT(NULL);
 }
@@ -55,7 +56,7 @@ static int child_fn2(void *arg)
 	int exit_val = 0;
 	int ret;
 
-	ret = setns(((long)arg), CLONE_NEWUSER);
+	ret = ltp_syscall(__NR_setns, ((long)arg), CLONE_NEWUSER);
 	if (ret != -1) {
 		printf("child2 setns() unexpected success\n");
 		exit_val = 1;
@@ -112,7 +113,7 @@ static void test_cap_sys_admin(void)
 	case -1:
 		tst_brkm(TBROK | TERRNO, cleanup, "fork");
 	case 0:
-		if (setns(fd, CLONE_NEWUSER) == -1) {
+		if (ltp_syscall(__NR_setns, fd, CLONE_NEWUSER) == -1) {
 			printf("parent pid setns failure: (%d) %s",
 				errno, strerror(errno));
 			exit(1);
-- 
1.9.3


------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
  2015-07-01  6:35 [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it Hangbin Liu
@ 2015-07-01  6:39 ` Hangbin Liu
  2015-07-01  6:43   ` Hangbin Liu
  2015-07-01  6:55 ` Jan Stancek
  1 sibling, 1 reply; 5+ messages in thread
From: Hangbin Liu @ 2015-07-01  6:39 UTC (permalink / raw)
  To: LTP List

Opps, there is something wrong with code format. I will correct it. Sorry

2015-07-01 14:35 GMT+08:00 Hangbin Liu <liuhangbin@gmail.com>:
> Use ltp_syscall for setns incase some libc library do not support it. Also
> check whether we support setns in setup(). If it's support the syscall will
> silently fails and test continues. If not, then tst_brkm call will end the
> test with TCONF.
>
> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
> ---
>  testcases/kernel/containers/userns/userns04.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/testcases/kernel/containers/userns/userns04.c b/testcases/kernel/containers/userns/userns04.c
> index 7077679..9836fd9 100644
> --- a/testcases/kernel/containers/userns/userns04.c
> +++ b/testcases/kernel/containers/userns/userns04.c
> @@ -35,6 +35,7 @@ int TST_TOTAL = 1;
>  static void setup(void)
>  {
>         check_newuser();
> +       ltp_syscall(__NR_setns, -1, 0);
>         tst_tmpdir();
>         TST_CHECKPOINT_INIT(NULL);
>  }
> @@ -55,7 +56,7 @@ static int child_fn2(void *arg)
>         int exit_val = 0;
>         int ret;
>
> -       ret = setns(((long)arg), CLONE_NEWUSER);
> +       ret = ltp_syscall(__NR_setns, ((long)arg), CLONE_NEWUSER);
>         if (ret != -1) {
>                 printf("child2 setns() unexpected success\n");
>                 exit_val = 1;
> @@ -112,7 +113,7 @@ static void test_cap_sys_admin(void)
>         case -1:
>                 tst_brkm(TBROK | TERRNO, cleanup, "fork");
>         case 0:
> -               if (setns(fd, CLONE_NEWUSER) == -1) {
> +               if (ltp_syscall(__NR_setns, fd, CLONE_NEWUSER) == -1) {
>                         printf("parent pid setns failure: (%d) %s",
>                                 errno, strerror(errno));
>                         exit(1);
> --
> 1.9.3
>

------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
  2015-07-01  6:39 ` Hangbin Liu
@ 2015-07-01  6:43   ` Hangbin Liu
  0 siblings, 0 replies; 5+ messages in thread
From: Hangbin Liu @ 2015-07-01  6:43 UTC (permalink / raw)
  To: LTP List

2015-07-01 14:39 GMT+08:00 Hangbin Liu <liuhangbin@gmail.com>:
> Opps, there is something wrong with code format. I will correct it. Sorry

It seem the gmail webside view make the patch a mess. Form mutt the patch
format looks good. Please ignore the last mail and continue review this patch.

Sorry for the disturb.

Regards
Hangbin

------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
  2015-07-01  6:35 [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it Hangbin Liu
  2015-07-01  6:39 ` Hangbin Liu
@ 2015-07-01  6:55 ` Jan Stancek
  2015-07-01 10:58   ` Yuan Sun
  1 sibling, 1 reply; 5+ messages in thread
From: Jan Stancek @ 2015-07-01  6:55 UTC (permalink / raw)
  To: Hangbin Liu; +Cc: LTP List





----- Original Message -----
> From: "Hangbin Liu" <liuhangbin@gmail.com>
> To: "LTP List" <ltp-list@lists.sourceforge.net>
> Cc: "Jan Stancek" <jstancek@redhat.com>
> Sent: Wednesday, 1 July, 2015 8:35:32 AM
> Subject: [LTP][PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
> 
> Use ltp_syscall for setns incase some libc library do not support it. Also
> check whether we support setns in setup(). If it's support the syscall will
> silently fails and test continues. If not, then tst_brkm call will end the
> test with TCONF.
> 
> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>

Pushed with cosmetic change to commit message.

Thanks,
Jan

> ---
>  testcases/kernel/containers/userns/userns04.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/testcases/kernel/containers/userns/userns04.c
> b/testcases/kernel/containers/userns/userns04.c
> index 7077679..9836fd9 100644
> --- a/testcases/kernel/containers/userns/userns04.c
> +++ b/testcases/kernel/containers/userns/userns04.c
> @@ -35,6 +35,7 @@ int TST_TOTAL = 1;
>  static void setup(void)
>  {
>  	check_newuser();
> +	ltp_syscall(__NR_setns, -1, 0);
>  	tst_tmpdir();
>  	TST_CHECKPOINT_INIT(NULL);
>  }
> @@ -55,7 +56,7 @@ static int child_fn2(void *arg)
>  	int exit_val = 0;
>  	int ret;
>  
> -	ret = setns(((long)arg), CLONE_NEWUSER);
> +	ret = ltp_syscall(__NR_setns, ((long)arg), CLONE_NEWUSER);
>  	if (ret != -1) {
>  		printf("child2 setns() unexpected success\n");
>  		exit_val = 1;
> @@ -112,7 +113,7 @@ static void test_cap_sys_admin(void)
>  	case -1:
>  		tst_brkm(TBROK | TERRNO, cleanup, "fork");
>  	case 0:
> -		if (setns(fd, CLONE_NEWUSER) == -1) {
> +		if (ltp_syscall(__NR_setns, fd, CLONE_NEWUSER) == -1) {
>  			printf("parent pid setns failure: (%d) %s",
>  				errno, strerror(errno));
>  			exit(1);
> --
> 1.9.3
> 
> 

------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
  2015-07-01  6:55 ` Jan Stancek
@ 2015-07-01 10:58   ` Yuan Sun
  0 siblings, 0 replies; 5+ messages in thread
From: Yuan Sun @ 2015-07-01 10:58 UTC (permalink / raw)
  To: Jan Stancek, liuhangbin; +Cc: ltp-list


I was not familiar with ltp_syscall and didn't have comment. Thanks you 
for updating userns04 case.
Regards.
Yuan

On 2015/7/1 14:55, Jan Stancek wrote:
>
>
>
> ----- Original Message -----
>> From: "Hangbin Liu" <liuhangbin@gmail.com>
>> To: "LTP List" <ltp-list@lists.sourceforge.net>
>> Cc: "Jan Stancek" <jstancek@redhat.com>
>> Sent: Wednesday, 1 July, 2015 8:35:32 AM
>> Subject: [LTP][PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it
>>
>> Use ltp_syscall for setns incase some libc library do not support it. Also
>> check whether we support setns in setup(). If it's support the syscall will
>> silently fails and test continues. If not, then tst_brkm call will end the
>> test with TCONF.
>>
>> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
> Pushed with cosmetic change to commit message.
>
> Thanks,
> Jan
>
>> ---
>>   testcases/kernel/containers/userns/userns04.c | 5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/testcases/kernel/containers/userns/userns04.c
>> b/testcases/kernel/containers/userns/userns04.c
>> index 7077679..9836fd9 100644
>> --- a/testcases/kernel/containers/userns/userns04.c
>> +++ b/testcases/kernel/containers/userns/userns04.c
>> @@ -35,6 +35,7 @@ int TST_TOTAL = 1;
>>   static void setup(void)
>>   {
>>   	check_newuser();
>> +	ltp_syscall(__NR_setns, -1, 0);
>>   	tst_tmpdir();
>>   	TST_CHECKPOINT_INIT(NULL);
>>   }
>> @@ -55,7 +56,7 @@ static int child_fn2(void *arg)
>>   	int exit_val = 0;
>>   	int ret;
>>   
>> -	ret = setns(((long)arg), CLONE_NEWUSER);
>> +	ret = ltp_syscall(__NR_setns, ((long)arg), CLONE_NEWUSER);
>>   	if (ret != -1) {
>>   		printf("child2 setns() unexpected success\n");
>>   		exit_val = 1;
>> @@ -112,7 +113,7 @@ static void test_cap_sys_admin(void)
>>   	case -1:
>>   		tst_brkm(TBROK | TERRNO, cleanup, "fork");
>>   	case 0:
>> -		if (setns(fd, CLONE_NEWUSER) == -1) {
>> +		if (ltp_syscall(__NR_setns, fd, CLONE_NEWUSER) == -1) {
>>   			printf("parent pid setns failure: (%d) %s",
>>   				errno, strerror(errno));
>>   			exit(1);
>> --
>> 1.9.3
>>
>>
> ------------------------------------------------------------------------------
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> _______________________________________________
> Ltp-list mailing list
> Ltp-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ltp-list
>
>


------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-07-01 10:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-01  6:35 [LTP] [PATCHv3] containers: Use ltp_syscall for setns incase some libc library do not support it Hangbin Liu
2015-07-01  6:39 ` Hangbin Liu
2015-07-01  6:43   ` Hangbin Liu
2015-07-01  6:55 ` Jan Stancek
2015-07-01 10:58   ` Yuan Sun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox