public inbox for util-linux@vger.kernel.org
 help / color / mirror / Atom feed
From: Miloslav Trmac <mitr@redhat.com>
To: Cody Maloney <cmaloney@theoreticalchaos.com>
Cc: util-linux@vger.kernel.org
Subject: Re: [PATCH v2 3/4] chsh: Add libuser support
Date: Mon, 14 Jan 2013 13:16:17 -0500 (EST)	[thread overview]
Message-ID: <1628490120.7233795.1358187377636.JavaMail.root@redhat.com> (raw)
In-Reply-To: <1358068345-773-5-git-send-email-cmaloney@theoreticalchaos.com>

Hello,
----- Original Message -----
> diff --git a/login-utils/libuser.c b/login-utils/libuser.c
> new file mode 100644
> index 0000000..9a3e3b1
> --- /dev/null
> +++ b/login-utils/libuser.c
> +static int auth_lu(const char *service_name, struct lu_context *ctx,
> uid_t uid,
> +			const char *username) {
> +	if(!lu_uses_elevated_privileges(ctx)) {
> +		/* Drop privileges */
> +		if (setegid(getgid()) == -1) {
> +			errx(EXIT_FAILURE, _("Couldn't drop group privileges"));
> +			return FALSE;
> +		}
> +		if (seteuid(getuid()) == -1) {
> +			errx(EXIT_FAILURE, _("Couldn't drop group privileges"));
> +			return FALSE;
> +		}
> +		if (initgroups(username, 0)) {
> +			errx(EXIT_FAILURE, _("Couldn't drop group privileges"));
> +			return FALSE;
> +		}

I can't see how this can work: after seteuid() the program no longer has root privileges (CAP_SETGID) to change the groups.

(On second thought, if the program is setuid, the setuid execution mechanism doesn't change supplementary groups, so perhaps the call isn't strictly necessary; Still, initializing the groups makes the environment more deterministic.  And as long as initgroups() is called, it should be called in a way that works.)

> +	lu_ent_set_string(ent, attr, val);
> +	if (!lu_user_modify(ctx, ent, &error)) {
> +		lu_ent_free(ent);
> +		lu_end(ctx);
> +		err(EXIT_FAILURE, _("Shell not changed: %s\n"),
> lu_strerror(error));

This error message is fine for chsh, but not great for chfn.
    Mirek

  reply	other threads:[~2013-01-14 18:16 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-13  9:12 [PATCH v2 0/4] Add support for using libuser to chsh and chfn Cody Maloney
2013-01-03  3:21 ` [PATCH 0/3] Add support for using libuser to chsh Cody Maloney
2013-01-03  3:21   ` [PATCH 1/3] chsh-chfn: Add flag for enabling/disabling libuser support Cody Maloney
2013-01-03  3:22   ` [PATCH 2/3] chsh: Move pam auth to its own function Cody Maloney
2013-01-03  3:22   ` [PATCH 3/3] chsh: Add libuser support Cody Maloney
2013-01-03 16:34     ` Miloslav Trmac
2013-01-07 11:51       ` Karel Zak
2013-01-08  6:15         ` Cody Maloney
2013-01-08  6:17         ` Cody Maloney
2013-01-08  6:18         ` Cody Maloney
2013-01-13  9:12   ` [PATCH 2/3] chsh: Move pam auth to its own function Cody Maloney
2013-01-13  9:12 ` [PATCH v2 1/4] chsh-chfn: Add flag for enabling/disabling libuser support Cody Maloney
2013-01-13  9:12 ` [PATCH v2 2/4] chsh-chfn: Move pam auth to its own function, factoring out common code Cody Maloney
2013-01-13  9:12 ` [PATCH v2 3/4] chsh: Add libuser support Cody Maloney
2013-01-14 18:16   ` Miloslav Trmac [this message]
2013-01-17  0:52     ` Cody Maloney
2013-01-28 22:01       ` Miloslav Trmac
2013-01-13  9:12 ` [PATCH v2 4/4] chfn: " Cody Maloney
     [not found] ` <50F2FBBE.7000305@gmail.com>
2013-01-13 19:31   ` [PATCH v2 0/4] Add support for using libuser to chsh and chfn Cody Maloney

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=1628490120.7233795.1358187377636.JavaMail.root@redhat.com \
    --to=mitr@redhat.com \
    --cc=cmaloney@theoreticalchaos.com \
    --cc=util-linux@vger.kernel.org \
    /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