1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* Test setgroups as root and in the presence of threads (Bug 26248)
Copyright (C) 2020-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 <stdlib.h>
#include <limits.h>
#include <grp.h>
#include <errno.h>
#include <error.h>
#include <support/xthread.h>
#include <support/support.h>
#include <support/test-driver.h>
#include <support/xunistd.h>
/* The purpose of this test is to test the setgroups API as root and in
the presence of threads. Once we create a thread the setgroups
implementation must ensure that all threads are set to the same
group and this operation should not fail. Lastly we test setgroups
with a zero sized group and a bad address and verify we get EPERM. */
static void *
start_routine (void *args)
{
return NULL;
}
static int
do_test (void)
{
int size;
/* NB: Stack address can be at 0xfffXXXXX on 32-bit OSes. */
gid_t list[NGROUPS_MAX];
int status = EXIT_SUCCESS;
pthread_t thread = xpthread_create (NULL, start_routine, NULL);
size = getgroups (sizeof (list) / sizeof (list[0]), list);
if (size < 0)
{
status = EXIT_FAILURE;
error (0, errno, "getgroups failed");
}
if (setgroups (size, list) < 0)
{
if (errno == EPERM)
status = EXIT_UNSUPPORTED;
else
{
status = EXIT_FAILURE;
error (0, errno, "setgroups failed");
}
}
if (status == EXIT_SUCCESS && setgroups (0, list) < 0)
{
status = EXIT_FAILURE;
error (0, errno, "setgroups failed");
}
xpthread_join (thread);
return status;
}
#include <support/test-driver.c>
|