blob: ca35848533b4f7634cf3c2eb7808ff117edf006e [file] [log] [blame]
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +00001/*
2 * Check decoding of setgroups/setgroups32 syscalls.
3 *
4 * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#ifdef __NR_setgroups32
31
32# define SYSCALL_NR __NR_setgroups32
33# define SYSCALL_NAME "setgroups32"
34# define GID_TYPE unsigned int
35
36#else
37
38# include "tests.h"
39# include <sys/syscall.h>
40
41# ifdef __NR_setgroups
42
43# define SYSCALL_NR __NR_setgroups
44# define SYSCALL_NAME "setgroups"
45# if defined __NR_setgroups32 && __NR_setgroups != __NR_setgroups32
46# define GID_TYPE unsigned short
47# else
48# define GID_TYPE unsigned int
49# endif
50
51# endif
52
53#endif
54
55#ifdef GID_TYPE
56
57# include <errno.h>
58# include <stdio.h>
59# include <unistd.h>
60
61static const char *
62errno2str(void)
63{
64 switch (errno) {
65#define CASE(x) case x: return #x
66 CASE(EPERM);
67 CASE(EINVAL);
68 CASE(ENOMEM);
69 CASE(EFAULT);
70 default: perror_msg_and_fail(SYSCALL_NAME);
71 }
72}
73
74int
75main(void)
76{
77 /* check how the first argument is decoded */
78 if (syscall(SYSCALL_NR, 0, 0))
79 printf("%s(0, NULL) = -1 %s (%m)\n", SYSCALL_NAME, errno2str());
80 else
81 printf("%s(0, NULL) = 0\n", SYSCALL_NAME);
82
83 if (syscall(SYSCALL_NR, (long) 0xffffffff00000000ULL, 0))
84 printf("%s(0, NULL) = -1 %s (%m)\n",
85 SYSCALL_NAME, errno2str());
86 else
87 printf("%s(0, NULL) = 0\n", SYSCALL_NAME);
88
89 syscall(SYSCALL_NR, 1, 0);
90 printf("%s(1, NULL) = -1 %s (%m)\n", SYSCALL_NAME, errno2str());
91
92 syscall(SYSCALL_NR, (long) 0xffffffff00000001ULL, 0);
93 printf("%s(1, NULL) = -1 %s (%m)\n", SYSCALL_NAME, errno2str());
94
95 syscall(SYSCALL_NR, -1U, 0);
96 printf("%s(%u, NULL) = -1 %s (%m)\n", SYSCALL_NAME, -1U, errno2str());
97
98 syscall(SYSCALL_NR, -1L, 0);
99 printf("%s(%u, NULL) = -1 %s (%m)\n", SYSCALL_NAME, -1U, errno2str());
100
101 /* check how the second argument is decoded */
102 const GID_TYPE *const g1 = tail_alloc(sizeof(*g1));
103 GID_TYPE *const g2 = tail_alloc(sizeof(*g2) * 2);
104 GID_TYPE *const g3 = tail_alloc(sizeof(*g3) * 3);
105 (void) tail_alloc(1);
106
107 if (syscall(SYSCALL_NR, 0, g1 + 1))
108 printf("%s(0, []) = -1 %s (%m)\n",
109 SYSCALL_NAME, errno2str());
110 else
111 printf("%s(0, []) = 0\n", SYSCALL_NAME);
112
113 if (syscall(SYSCALL_NR, 1, g1))
114 printf("%s(1, [%u]) = -1 %s (%m)\n",
115 SYSCALL_NAME, (unsigned) *g1, errno2str());
116 else
117 printf("%s(1, [%u]) = 0\n",
118 SYSCALL_NAME, (unsigned) *g1);
119
120 syscall(SYSCALL_NR, 1, g1 + 1);
121 printf("%s(1, %p) = -1 %s (%m)\n",
122 SYSCALL_NAME, g1 + 1, errno2str());
123
124 syscall(SYSCALL_NR, 1, -1L);
125 printf("%s(1, %#lx) = -1 %s (%m)\n", SYSCALL_NAME, -1L, errno2str());
126
127 syscall(SYSCALL_NR, 2, g1);
128 printf("%s(2, [%u, %p]) = -1 %s (%m)\n",
129 SYSCALL_NAME, (unsigned) *g1, g1 + 1, errno2str());
130
131 g2[0] = -2;
132 g2[1] = -3;
133 if (syscall(SYSCALL_NR, 2, g2))
134 printf("%s(2, [%u, %u]) = -1 %s (%m)\n", SYSCALL_NAME,
135 (unsigned) g2[0], (unsigned) g2[1], errno2str());
136 else
137 printf("%s(2, [%u, %u]) = 0\n", SYSCALL_NAME,
138 (unsigned) g2[0], (unsigned) g2[1]);
139
140 syscall(SYSCALL_NR, 3, g2);
141 printf("%s(3, [%u, %u, %p]) = -1 %s (%m)\n", SYSCALL_NAME,
142 (unsigned) g2[0], (unsigned) g2[1], g2 + 2, errno2str());
143
144 g3[0] = 0;
145 g3[1] = 1;
146 if (syscall(SYSCALL_NR, 3, g3))
147 printf("%s(3, [%u, %u, ...]) = -1 %s (%m)\n", SYSCALL_NAME,
148 (unsigned) g3[0], (unsigned) g3[1], errno2str());
149 else
150 printf("%s(3, [%u, %u]) = 0\n", SYSCALL_NAME,
151 (unsigned) g3[0], (unsigned) g3[1]);
152
153 syscall(SYSCALL_NR, 4, g3);
154 printf("%s(4, [%u, %u, ...]) = -1 %s (%m)\n", SYSCALL_NAME,
155 (unsigned) g3[0], (unsigned) g3[1], errno2str());
156
157 long rc = sysconf(_SC_NGROUPS_MAX);
158 const unsigned ngroups_max = rc;
159
160 if ((unsigned long) rc == ngroups_max && (int) ngroups_max > 0) {
161 syscall(SYSCALL_NR, ngroups_max, g3);
162 printf("%s(%u, [%u, %u, ...]) = -1 %s (%m)\n", SYSCALL_NAME,
163 ngroups_max, (unsigned) g3[0], (unsigned) g3[1],
164 errno2str());
165
166 const unsigned long size =
167 (unsigned long) 0xffffffff00000000ULL | ngroups_max;
168 syscall(SYSCALL_NR, size, g3);
169 printf("%s(%u, [%u, %u, ...]) = -1 %s (%m)\n", SYSCALL_NAME,
170 ngroups_max, (unsigned) g3[0], (unsigned) g3[1],
171 errno2str());
172
173 syscall(SYSCALL_NR, ngroups_max + 1, g3);
174 printf("%s(%u, %p) = -1 %s (%m)\n", SYSCALL_NAME,
175 ngroups_max + 1, g3, errno2str());
176 }
177
178 puts("+++ exited with 0 +++");
179 return 0;
180}
181
182#else
183
184SKIP_MAIN_UNDEFINED("__NR_setgroups")
185
186#endif