public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Cyril Hrubis <chrubis@suse.cz>
To: Yang Xu <xuyang2018.jy@fujitsu.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH 2/3] syscalls/setgroups02: Convert to new API
Date: Wed, 26 Jul 2023 14:51:12 +0200	[thread overview]
Message-ID: <ZMEWwCwC0DPrtdAi@yuki> (raw)
In-Reply-To: <1689760756-865-2-git-send-email-xuyang2018.jy@fujitsu.com>

Hi!
> +	TEST(SETGROUPS(gidsetsize, groups_set));

TST_EXP_PASS(SETGROUPS(gidsetsize, groups_set)) ?

> -	setup();
> -
> -	for (lc = 0; TEST_LOOPING(lc); lc++) {
> -
> -		tst_count = 0;
> -
> -		/*
> -		 * Call setgroups() to set supplimentary group IDs of
> -		 * the calling super-user process to gid of TESTUSER.
> -		 */
> -		TEST(SETGROUPS(cleanup, gidsetsize, groups_list));
> +	if (TST_RET < 0) {
> +		tst_res(TFAIL, "setgroups(%d, groups_set) Failed, "
> +			"errno=%d : %s", gidsetsize,
> +			TST_ERR, strerror(TST_ERR));
> +	}
>  
> -		if (TEST_RETURN == -1) {
> -			tst_resm(TFAIL, "setgroups(%d, groups_list) Failed, "
> -				 "errno=%d : %s", gidsetsize, TEST_ERRNO,
> -				 strerror(TEST_ERRNO));
> -			continue;
> -		}
> +	GETGROUPS(gidsetsize, groups_get);

TST_EXP_VAL(GETGROUPS(gitsetsize, groups_get), 1) ?

Also I suppose that we should make sure that the groups_get[0] value is
not equal to the groups_set[0], expecially with -i 2

So maybe:
	groups_get[0] = ~groups_set[0];

> -		/*
> -		 * Call getgroups(2) to verify that
> -		 * setgroups(2) successfully set the
> -		 * supp. gids of TESTUSER.
> -		 */
> -		groups_list[0] = '\0';
> -		if (GETGROUPS(cleanup, gidsetsize, groups_list) < 0) {
> -			tst_brkm(TFAIL, cleanup, "getgroups() Fails, "
> -				 "error=%d", errno);
> -		}
> -		for (i = 0; i < NGROUPS; i++) {
> -			if (groups_list[i] == user_info->pw_gid) {
> -				tst_resm(TPASS,
> -					 "Functionality of setgroups"
> -					 "(%d, groups_list) successful",
> -					 gidsetsize);
> -				PASS_FLAG = 1;
> -			}
> -		}
> -		if (PASS_FLAG == 0) {
> -			tst_resm(TFAIL, "Supplimentary gid %d not set "
> -				 "for the process", user_info->pw_gid);
> -		}
> +	if (groups_get[0] == groups_set[0]) {
> +		tst_res(TPASS,
> +			"Functionality of setgroups"
> +			"(%d, groups_set) successful",
> +			gidsetsize);
>  	}

TST_EXP_EQ_LI(groups_get[0], groups_set[0]);

At least that will produce TFAIL results if they don't match, which is
missing here.

> -	cleanup();
> -	tst_exit();
>  }
>  
> -/*
> - * setup() - performs all ONE TIME setup for this test.
> - *
> - *  Make sure the test process uid is root.
> - *  Get the supplimentrary group id of test user from /etc/passwd file.
> - */
> -void setup(void)
> +static void setup(void)
>  {
> +	user_info = SAFE_GETPWNAM(TESTUSER);
>  
> -	tst_require_root();
> -
> -	tst_sig(NOFORK, DEF_HANDLER, cleanup);
> -
> -	TEST_PAUSE;
> -
> -	/* Get the group id info. of TESTUSER from /etc/passwd */
> -	if ((user_info = getpwnam(TESTUSER)) == NULL) {
> -		tst_brkm(TFAIL, cleanup, "getpwnam(2) of %s Failed", TESTUSER);
> -	}
> +	GID16_CHECK(user_info->pw_gid, setgroups);
>  
> -	if (!GID_SIZE_CHECK(user_info->pw_gid)) {
> -		tst_brkm(TBROK,
> -			 cleanup,
> -			 "gid returned from getpwnam is too large for testing setgroups16");
> -	}
> -
> -	groups_list[0] = user_info->pw_gid;
> +	groups_set[0] = user_info->pw_gid;

Do we really need this? I suppose that any random value will do, e.g.

	groups_set[0] = 42;

is going to be as good as anything else.

>  }
>  
> -/*
> - * cleanup() - performs all ONE TIME cleanup for this test at
> - *	       completion or premature exit.
> - */
> -void cleanup(void)
> -{
> -
> -}
> +static struct tst_test test = {
> +	.test_all = verify_setgroups,
> +	.setup = setup,
> +	.needs_root = 1,
> +};
> -- 
> 1.8.3.1
> 
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp

-- 
Cyril Hrubis
chrubis@suse.cz

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

  reply	other threads:[~2023-07-26 12:50 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-19  9:59 [LTP] [PATCH 1/3] syscalls/setgroups01: Convert to new API Yang Xu
2023-07-19  9:59 ` [LTP] [PATCH 2/3] syscalls/setgroups02: " Yang Xu
2023-07-26 12:51   ` Cyril Hrubis [this message]
2023-07-26 13:17     ` Cyril Hrubis
2023-08-01 10:52       ` Yang Xu (Fujitsu)
2023-08-01 11:04     ` Yang Xu (Fujitsu)
2023-07-19  9:59 ` [LTP] [PATCH 3/3] syscalls/getgroups03: " Yang Xu
2023-07-26 13:14   ` Cyril Hrubis
2023-08-01 10:53     ` Yang Xu (Fujitsu)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZMEWwCwC0DPrtdAi@yuki \
    --to=chrubis@suse.cz \
    --cc=ltp@lists.linux.it \
    --cc=xuyang2018.jy@fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox