blob: 8887161d8867ad03128b006d6f41d30a41bd00a8 [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"
Dmitry V. Levin6a2f43c2016-08-09 14:38:29 +000039# include <asm/unistd.h>
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +000040
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
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +000057# include <stdio.h>
58# include <unistd.h>
59
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +000060#define MAX_STRLEN 32
61static long ngroups;
62
63static void
64get_groups(const long size, GID_TYPE *const g)
65{
66 long i = syscall(SYSCALL_NR, size, g);
67 if (i != ngroups)
68 perror_msg_and_fail("%s(%#lx, %p)", SYSCALL_NAME, size, g);
69
70 printf("%s(%u, [", SYSCALL_NAME, (unsigned) size);
71 for (i = 0; i < ngroups; ++i) {
72 if (i)
73 printf(", ");
74 if (i >= MAX_STRLEN) {
75 printf("...");
76 break;
77 }
78 printf("%u", (unsigned int) g[i]);
79 }
80 printf("]) = %ld\n", ngroups);
81}
82
83int
84main(void)
85{
86 long rc;
87
88 /* check how the first argument is decoded */
89 ngroups = syscall(SYSCALL_NR, 0, 0);
90 printf("%s(0, NULL) = %ld\n", SYSCALL_NAME, ngroups);
91 if (ngroups < 0)
92 perror_msg_and_fail(SYSCALL_NAME);
93
94 rc = syscall(SYSCALL_NR, (long) 0xffffffff00000000ULL, 0);
95 printf("%s(0, NULL) = %ld\n", SYSCALL_NAME, rc);
96
97 rc = syscall(SYSCALL_NR, -1U, 0);
98 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +000099 SYSCALL_NAME, -1U, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000100
101 rc = syscall(SYSCALL_NR, -1L, 0);
102 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000103 SYSCALL_NAME, -1U, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000104
105 const unsigned int ngroups_max = sysconf(_SC_NGROUPS_MAX);
106
107 rc = syscall(SYSCALL_NR, ngroups_max, 0);
108 if (rc < 0)
109 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000110 SYSCALL_NAME, ngroups_max, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000111 else
112 printf("%s(%u, NULL) = %ld\n",
113 SYSCALL_NAME, ngroups_max, rc);
114
115 rc = syscall(SYSCALL_NR, (long) 0xffffffff00000000ULL | ngroups_max, 0);
116 if (rc < 0)
117 printf("%s(%u, NULL) = %ld %s (%m)\n",
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000118 SYSCALL_NAME, ngroups_max, rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000119 else
120 printf("%s(%u, NULL) = %ld\n",
121 SYSCALL_NAME, ngroups_max, rc);
122
123 /* check how the second argument is decoded */
124 GID_TYPE *const g1 =
125 tail_alloc(ngroups ? sizeof(*g1) * ngroups : 1);
126 GID_TYPE *const g2 = tail_alloc(sizeof(*g2) * (ngroups + 1));
127 void *efault = g2 + ngroups + 1;
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000128
129 get_groups(ngroups, g1);
130 get_groups(ngroups + 1, g1);
131 get_groups(ngroups + 1, g2);
132
133 if (ngroups) {
134 rc = syscall(SYSCALL_NR, ngroups, efault);
135 printf("%s(%u, %p) = %ld %s (%m)\n",
136 SYSCALL_NAME, (unsigned) ngroups, efault,
Dmitry V. Levin7f68f802016-04-21 20:51:15 +0000137 rc, errno2name());
Dmitry V. Levin5e9944d2016-04-19 01:59:52 +0000138 }
139
140 puts("+++ exited with 0 +++");
141 return 0;
142}
143
144#else
145
146SKIP_MAIN_UNDEFINED("__NR_getgroups")
147
148#endif