[04/11] nptl: Add pthread_attr_setaffinity_np failure test

Message ID 20210526165728.1772546-5-adhemerval.zanella@linaro.org
State Committed
Headers
Series nptl: pthread cancellation refactor |

Checks

Context Check Description
dj/TryBot-apply_patch success Patch applied to master at the time it was sent

Commit Message

Adhemerval Zanella Netto May 26, 2021, 4:57 p.m. UTC
  It checks whether an invalid affinity mask does return an error,
similar to what sysdeps/pthread/tst-bad-schedattr.c does for
pthread_attr_setschedparam.

Checked on x86_64-linux-gnu.
---
 nptl/Makefile                         |  1 +
 nptl/tst-pthread-attr-affinity-fail.c | 54 +++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 nptl/tst-pthread-attr-affinity-fail.c
  

Comments

Florian Weimer May 26, 2021, 5:21 p.m. UTC | #1
* Adhemerval Zanella via Libc-alpha:

> It checks whether an invalid affinity mask does return an error,
> similar to what sysdeps/pthread/tst-bad-schedattr.c does for
> pthread_attr_setschedparam.
>
> Checked on x86_64-linux-gnu.
> ---
>  nptl/Makefile                         |  1 +
>  nptl/tst-pthread-attr-affinity-fail.c | 54 +++++++++++++++++++++++++++
>  2 files changed, 55 insertions(+)
>  create mode 100644 nptl/tst-pthread-attr-affinity-fail.c
>
> diff --git a/nptl/Makefile b/nptl/Makefile
> index 16eaf58948..9a5628b751 100644
> --- a/nptl/Makefile
> +++ b/nptl/Makefile
> @@ -286,6 +286,7 @@ tests = tst-attr2 tst-attr3 tst-default-attr \
>  	tst-exec4 tst-exec5 \
>  	tst-stack2 tst-stack3 tst-stack4 \
>  	tst-pthread-attr-affinity \
> +	tst-pthread-attr-affinity-fail \
>  	tst-dlsym1 \
>  	tst-context1 \
>  	tst-sched1 \
> diff --git a/nptl/tst-pthread-attr-affinity-fail.c b/nptl/tst-pthread-attr-affinity-fail.c
> new file mode 100644
> index 0000000000..41a87ea8cb
> --- /dev/null
> +++ b/nptl/tst-pthread-attr-affinity-fail.c
> @@ -0,0 +1,54 @@
> +/* Check if invalid pthread_attr_getaffinity_np does not run any code
> +   in the thread function.
> +   Copyright (C) 2021 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +#include <errno.h>
> +#include <support/check.h>
> +#include <support/xunistd.h>
> +#include <support/xthread.h>
> +#include <stdlib.h>
> +
> +static void *
> +thr_func (void *arg)
> +{
> +  abort ();
> +  return NULL;
> +}
> +
> +static int
> +do_test (void)
> +{
> +  int max_cpu = xsysconf (_SC_NPROCESSORS_CONF) + 1;
> +  /* Set a affinaty mask with an invalid CPU.  */
> +  cpu_set_t *cpuset = CPU_ALLOC (max_cpu);

Perhaps:

TEST_VERIFY_EXIT (cpuset != NULL);

> +  size_t cpusetsize = CPU_ALLOC_SIZE (max_cpu);
> +  CPU_ZERO_S (cpusetsize, cpuset);
> +  CPU_SET_S (max_cpu, cpusetsize, cpuset);

You could check that sched_setaffinity with that mask fails.  Like this:

  TEST_COMPARE (sched_setaffinity (0, cpusetsize, cpuset), -1);
  TEST_COMPARE (errno, EINVAL);

But feel free to push this without this change.

Thanks,
Florian
  
Adhemerval Zanella Netto May 26, 2021, 5:30 p.m. UTC | #2
On 26/05/2021 14:21, Florian Weimer wrote:
> * Adhemerval Zanella via Libc-alpha:
> 
>> It checks whether an invalid affinity mask does return an error,
>> similar to what sysdeps/pthread/tst-bad-schedattr.c does for
>> pthread_attr_setschedparam.
>>
>> Checked on x86_64-linux-gnu.
>> ---
>>  nptl/Makefile                         |  1 +
>>  nptl/tst-pthread-attr-affinity-fail.c | 54 +++++++++++++++++++++++++++
>>  2 files changed, 55 insertions(+)
>>  create mode 100644 nptl/tst-pthread-attr-affinity-fail.c
>>
>> diff --git a/nptl/Makefile b/nptl/Makefile
>> index 16eaf58948..9a5628b751 100644
>> --- a/nptl/Makefile
>> +++ b/nptl/Makefile
>> @@ -286,6 +286,7 @@ tests = tst-attr2 tst-attr3 tst-default-attr \
>>  	tst-exec4 tst-exec5 \
>>  	tst-stack2 tst-stack3 tst-stack4 \
>>  	tst-pthread-attr-affinity \
>> +	tst-pthread-attr-affinity-fail \
>>  	tst-dlsym1 \
>>  	tst-context1 \
>>  	tst-sched1 \
>> diff --git a/nptl/tst-pthread-attr-affinity-fail.c b/nptl/tst-pthread-attr-affinity-fail.c
>> new file mode 100644
>> index 0000000000..41a87ea8cb
>> --- /dev/null
>> +++ b/nptl/tst-pthread-attr-affinity-fail.c
>> @@ -0,0 +1,54 @@
>> +/* Check if invalid pthread_attr_getaffinity_np does not run any code
>> +   in the thread function.
>> +   Copyright (C) 2021 Free Software Foundation, Inc.
>> +   This file is part of the GNU C Library.
>> +
>> +   The GNU C Library is free software; you can redistribute it and/or
>> +   modify it under the terms of the GNU Lesser General Public
>> +   License as published by the Free Software Foundation; either
>> +   version 2.1 of the License, or (at your option) any later version.
>> +
>> +   The GNU C Library is distributed in the hope that it will be useful,
>> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
>> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
>> +   Lesser General Public License for more details.
>> +
>> +   You should have received a copy of the GNU Lesser General Public
>> +   License along with the GNU C Library; if not, see
>> +   <https://www.gnu.org/licenses/>.  */
>> +
>> +#include <errno.h>
>> +#include <support/check.h>
>> +#include <support/xunistd.h>
>> +#include <support/xthread.h>
>> +#include <stdlib.h>
>> +
>> +static void *
>> +thr_func (void *arg)
>> +{
>> +  abort ();
>> +  return NULL;
>> +}
>> +
>> +static int
>> +do_test (void)
>> +{
>> +  int max_cpu = xsysconf (_SC_NPROCESSORS_CONF) + 1;
>> +  /* Set a affinaty mask with an invalid CPU.  */
>> +  cpu_set_t *cpuset = CPU_ALLOC (max_cpu);
> 
> Perhaps:
> 
> TEST_VERIFY_EXIT (cpuset != NULL);

Ack.

> 
>> +  size_t cpusetsize = CPU_ALLOC_SIZE (max_cpu);
>> +  CPU_ZERO_S (cpusetsize, cpuset);
>> +  CPU_SET_S (max_cpu, cpusetsize, cpuset);
> 
> You could check that sched_setaffinity with that mask fails.  Like this:
> 
>   TEST_COMPARE (sched_setaffinity (0, cpusetsize, cpuset), -1);
>   TEST_COMPARE (errno, EINVAL);
> 
> But feel free to push this without this change.

I will integrate your suggestions.
  

Patch

diff --git a/nptl/Makefile b/nptl/Makefile
index 16eaf58948..9a5628b751 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -286,6 +286,7 @@  tests = tst-attr2 tst-attr3 tst-default-attr \
 	tst-exec4 tst-exec5 \
 	tst-stack2 tst-stack3 tst-stack4 \
 	tst-pthread-attr-affinity \
+	tst-pthread-attr-affinity-fail \
 	tst-dlsym1 \
 	tst-context1 \
 	tst-sched1 \
diff --git a/nptl/tst-pthread-attr-affinity-fail.c b/nptl/tst-pthread-attr-affinity-fail.c
new file mode 100644
index 0000000000..41a87ea8cb
--- /dev/null
+++ b/nptl/tst-pthread-attr-affinity-fail.c
@@ -0,0 +1,54 @@ 
+/* Check if invalid pthread_attr_getaffinity_np does not run any code
+   in the thread function.
+   Copyright (C) 2021 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <errno.h>
+#include <support/check.h>
+#include <support/xunistd.h>
+#include <support/xthread.h>
+#include <stdlib.h>
+
+static void *
+thr_func (void *arg)
+{
+  abort ();
+  return NULL;
+}
+
+static int
+do_test (void)
+{
+  int max_cpu = xsysconf (_SC_NPROCESSORS_CONF) + 1;
+  /* Set a affinaty mask with an invalid CPU.  */
+  cpu_set_t *cpuset = CPU_ALLOC (max_cpu);
+  size_t cpusetsize = CPU_ALLOC_SIZE (max_cpu);
+  CPU_ZERO_S (cpusetsize, cpuset);
+  CPU_SET_S (max_cpu, cpusetsize, cpuset);
+
+  pthread_attr_t attr;
+  xpthread_attr_init (&attr);
+  xpthread_attr_setaffinity_np (&attr, cpusetsize, cpuset);
+
+  pthread_t thr;
+  TEST_COMPARE (pthread_create (&thr, &attr, thr_func, NULL), EINVAL);
+  xpthread_attr_destroy (&attr);
+
+  return 0;
+}
+
+#include <support/test-driver.c>