blob: c99b70ccdc2eea791b94fa59eaf340e806d93b31 [file] [log] [blame]
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +00001/*
2 * Check decoding of getgroups/getgroups32 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_getgroups32
31
32# define SYSCALL_NR __NR_getgroups32
33# define SYSCALL_NAME "getgroups32"
34# define GID_TYPE unsigned int
35
36#else
37
38# include "tests.h"
39# include <sys/syscall.h>
40
41# ifdef __NR_getgroups
42
43# define SYSCALL_NR __NR_getgroups
44# define SYSCALL_NAME "getgroups"
45# if defined __NR_getgroups32 && __NR_getgroups != __NR_getgroups32
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
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +000061#define MAX_STRLEN 32
62static long ngroups;
63
64static void
65get_groups(const long size, GID_TYPE *const g)
66{
67 long i = syscall(SYSCALL_NR, size, g);
68 if (i != ngroups)
69 perror_msg_and_fail("%s(%#lx, %p)", SYSCALL_NAME, size, g);
70
71 printf("%s(%u, [", SYSCALL_NAME, (unsigned) size);
72 for (i = 0; i < ngroups; ++i) {
73 if (i)
74 printf(", ");
75 if (i >= MAX_STRLEN) {
76 printf("...");
77 break;
78 }
79 printf("%u", (unsigned int) g[i]);
80 }
81 printf("]) = %ld\n", ngroups);
82}
83
84int
85main(void)
86{
87 long rc;
88
89 /* check how the first argument is decoded */
90 ngroups = syscall(SYSCALL_NR, 0, 0);
91 printf("%s(0, NULL) = %ld\n", SYSCALL_NAME, ngroups);
92 if (ngroups < 0)
93 perror_msg_and_fail(SYSCALL_NAME);
94
95 rc = syscall(SYSCALL_NR, (long) 0xffffffff00000000ULL, 0);
96 printf("%s(0, NULL) = %ld\n", SYSCALL_NAME, rc);
97
98 rc = syscall(SYSCALL_NR, -1U, 0);
99 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000100 SYSCALL_NAME, -1U, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000101
102 rc = syscall(SYSCALL_NR, -1L, 0);
103 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000104 SYSCALL_NAME, -1U, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000105
106 const unsigned int ngroups_max = sysconf(_SC_NGROUPS_MAX);
107
108 rc = syscall(SYSCALL_NR, ngroups_max, 0);
109 if (rc < 0)
110 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000111 SYSCALL_NAME, ngroups_max, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000112 else
113 printf("%s(%u, NULL) = %ld\n",
114 SYSCALL_NAME, ngroups_max, rc);
115
116 rc = syscall(SYSCALL_NR, (long) 0xffffffff00000000ULL | ngroups_max, 0);
117 if (rc < 0)
118 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000119 SYSCALL_NAME, ngroups_max, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000120 else
121 printf("%s(%u, NULL) = %ld\n",
122 SYSCALL_NAME, ngroups_max, rc);
123
124 /* check how the second argument is decoded */
125 GID_TYPE *const g1 =
126 tail_alloc(ngroups ? sizeof(*g1) * ngroups : 1);
127 GID_TYPE *const g2 = tail_alloc(sizeof(*g2) * (ngroups + 1));
128 void *efault = g2 + ngroups + 1;
129 (void) tail_alloc(1);
130
131 get_groups(ngroups, g1);
132 get_groups(ngroups + 1, g1);
133 get_groups(ngroups + 1, g2);
134
135 if (ngroups) {
136 rc = syscall(SYSCALL_NR, ngroups, efault);
137 printf("%s(%u, %p) = %ld %s (%m)\n",
138 SYSCALL_NAME, (unsigned) ngroups, efault,
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000139 rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000140 }
141
142 puts("+++ exited with 0 +++");
143 return 0;
144}
145
146#else
147
148SKIP_MAIN_UNDEFINED("__NR_getgroups")
149
150#endif