blob: 2764ed5cd157378254c14e9d751f077d554b5658 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 *
3 * Copyright (c) International Business Machines Corp., 2001
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plars865695b2001-08-27 22:15:12 +000018 */
19
20/*
21 * Test Name: getresgid03
22 *
23 * Test Description:
24 * Verify that getresgid() will be successful to get the real, effective
25 * and saved user ids after calling process invokes setresgid() to change
26 * the effective gid to that of specified user.
subrata_modak56207ce2009-03-23 13:35:39 +000027 *
plars865695b2001-08-27 22:15:12 +000028 * Expected Result:
29 * getresgid() should return with 0 value and the effective user id
30 * should match the egid of specified user, real/saved user ids should
31 * remain unchanged.
32 *
33 * Algorithm:
34 * Setup:
35 * Setup signal handling.
36 * Pause for SIGUSR1 if option specified.
37 *
38 * Test:
39 * Loop if the proper options are given.
40 * Execute system call
41 * Check return code, if system call failed (return=-1)
subrata_modak56207ce2009-03-23 13:35:39 +000042 * Log the errno and Issue a FAIL message.
plars865695b2001-08-27 22:15:12 +000043 * Otherwise,
subrata_modak56207ce2009-03-23 13:35:39 +000044 * Verify the Functionality of system call
plars865695b2001-08-27 22:15:12 +000045 * if successful,
subrata_modak56207ce2009-03-23 13:35:39 +000046 * Issue Functionality-Pass message.
plars865695b2001-08-27 22:15:12 +000047 * Otherwise,
48 * Issue Functionality-Fail message.
49 * Cleanup:
50 * Print errno log and/or timing stats if options given
51 *
52 * Usage: <for command-line>
53 * getresgid03 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
54 * where, -c n : Run n copies concurrently.
55 * -f : Turn off functionality Testing.
56 * -i n : Execute test n times.
57 * -I x : Execute test for x seconds.
58 * -P x : Pause for x seconds between iterations.
59 * -t : Turn on syscall timing.
60 *
61 * HISTORY
62 * 07/2001 Ported by Wayne Boyer
63 *
64 * RESTRICTIONS:
65 * This test should be run by 'super-user' (root) only.
66 *
67 */
robbiew96d23372003-03-26 20:40:04 +000068#define _GNU_SOURCE 1
plars865695b2001-08-27 22:15:12 +000069
70#include <stdio.h>
71#include <unistd.h>
72#include <sys/types.h>
73#include <errno.h>
74#include <fcntl.h>
75#include <string.h>
76#include <signal.h>
77#include <pwd.h>
78
79#include "test.h"
plars865695b2001-08-27 22:15:12 +000080
subrata_modak56207ce2009-03-23 13:35:39 +000081extern int getresgid(gid_t *, gid_t *, gid_t *);
robbiew96d23372003-03-26 20:40:04 +000082extern int setresgid(gid_t, gid_t, gid_t);
83
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020084char *TCID = "getresgid03";
85int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000086gid_t pr_gid, pe_gid, ps_gid; /* calling process real/effective/saved gid */
87
88void setup(); /* Main setup function of test */
89void cleanup(); /* cleanup function for the test */
90
subrata_modak56207ce2009-03-23 13:35:39 +000091int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000092{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020093 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020094 const char *msg;
plars865695b2001-08-27 22:15:12 +000095 gid_t real_gid, /* real/eff./saved user id from getresgid() */
subrata_modak56207ce2009-03-23 13:35:39 +000096 eff_gid, sav_gid;
97
Garrett Cooper45e285d2010-11-22 12:19:25 -080098 msg = parse_opts(ac, av, NULL, NULL);
99 if (msg != NULL) {
plars865695b2001-08-27 22:15:12 +0000100 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800101
plars865695b2001-08-27 22:15:12 +0000102 }
103
plars865695b2001-08-27 22:15:12 +0000104 setup();
105
plars865695b2001-08-27 22:15:12 +0000106 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800107
Caspar Zhangd59a6592013-03-07 14:59:12 +0800108 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000109
subrata_modak4bb656a2009-02-26 12:02:09 +0000110 /*
plars865695b2001-08-27 22:15:12 +0000111 * Call getresgid() to get the real/effective/saved
subrata_modak4bb656a2009-02-26 12:02:09 +0000112 * user id's of the calling process after
plars865695b2001-08-27 22:15:12 +0000113 * setregid() in setup.
114 */
115 TEST(getresgid(&real_gid, &eff_gid, &sav_gid));
116
plars865695b2001-08-27 22:15:12 +0000117 if (TEST_RETURN == -1) {
118 tst_resm(TFAIL, "getresgid() Failed, errno=%d : %s",
119 TEST_ERRNO, strerror(TEST_ERRNO));
120 continue;
121 }
122 /*
Cyril Hrubise38b9612014-06-02 17:20:57 +0200123 * Verify the real/effective/saved gid
124 * values returned by getresgid with the
125 * expected values.
plars865695b2001-08-27 22:15:12 +0000126 */
Cyril Hrubise38b9612014-06-02 17:20:57 +0200127 if ((real_gid != pr_gid) || (eff_gid != pe_gid) ||
128 (sav_gid != ps_gid)) {
129 tst_resm(TFAIL, "real:%d, effective:%d, "
130 "saved-user:%d ids differ",
131 real_gid, eff_gid, sav_gid);
plars865695b2001-08-27 22:15:12 +0000132 } else {
Cyril Hrubise38b9612014-06-02 17:20:57 +0200133 tst_resm(TPASS, "Functionality of getresgid() "
134 "successful");
plars865695b2001-08-27 22:15:12 +0000135 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800136 }
plars865695b2001-08-27 22:15:12 +0000137
plars865695b2001-08-27 22:15:12 +0000138 cleanup();
Garrett Cooper7d0a4a52010-12-16 10:05:08 -0800139 tst_exit();
Garrett Cooper2c282152010-12-16 00:55:50 -0800140}
plars865695b2001-08-27 22:15:12 +0000141
142/*
143 * setup() - performs all ONE TIME setup for this test.
144 * Make sure test process gid is root.
145 * Get the real/effective/saved user id of the calling process.
146 * Get the user info. of test user "ltpuser1" from /etc/passwd file.
147 * Set the eff. user id of test process to that of "ltpuser1" user.
148 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400149void setup(void)
plars865695b2001-08-27 22:15:12 +0000150{
subrata_modak56207ce2009-03-23 13:35:39 +0000151 struct passwd *user_id; /* passwd struct for test user */
plars865695b2001-08-27 22:15:12 +0000152
Nicolas Jolyd4ceb372014-06-22 17:03:57 +0200153 tst_require_root(NULL);
154
plars865695b2001-08-27 22:15:12 +0000155 tst_sig(NOFORK, DEF_HANDLER, cleanup);
156
plars865695b2001-08-27 22:15:12 +0000157 TEST_PAUSE;
158
plars865695b2001-08-27 22:15:12 +0000159 /* Real user-id of the calling process */
160 pr_gid = getgid();
161
162 /* Saved user-id of the calling process. */
163 ps_gid = getegid();
164
165 /* Get effective gid of "ltpuser1" user from passwd file */
166 if ((user_id = getpwnam("nobody")) == NULL) {
167 tst_brkm(TBROK, cleanup,
subrata_modak56207ce2009-03-23 13:35:39 +0000168 "getpwnam(nobody) Failed, errno=%d", errno);
plars865695b2001-08-27 22:15:12 +0000169 }
subrata_modak56207ce2009-03-23 13:35:39 +0000170
plars865695b2001-08-27 22:15:12 +0000171 /* Effective user-id of the test-user "ltpuser1" */
172 pe_gid = user_id->pw_gid;
173
174 /*
175 * Set the effective user-id of the process to that of
176 * test user "ltpuser1".
177 * The real/saved user id remains same as of caller.
178 */
179 if (setresgid(-1, pe_gid, -1) < 0) {
180 tst_brkm(TBROK, cleanup,
181 "setresgid(-1, %d, -1) Fails, errno:%d : %s",
182 ps_gid, errno, strerror(errno));
183 }
184}
185
plars865695b2001-08-27 22:15:12 +0000186/*
187 * cleanup() - performs all ONE TIME cleanup for this test at
188 * completion or premature exit.
189 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400190void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000191{
plars865695b2001-08-27 22:15:12 +0000192
193 /* Reset the effective/saved gid of the calling process */
194 if (setregid(-1, pr_gid) < 0) {
subrata_modak56207ce2009-03-23 13:35:39 +0000195 tst_brkm(TBROK, NULL, "resetting process effective gid failed");
plars865695b2001-08-27 22:15:12 +0000196 }
197
Chris Dearmanec6edca2012-10-17 19:54:01 -0700198}