All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Howells <dhowells@redhat.com>
To: "J. Bruce Fields" <bfields@fieldses.org>
Cc: dhowells@redhat.com, Christoph Hellwig <hch@lst.de>,
	jmorris@namei.org, linux-kernel@vger.kernel.org,
	linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH] CRED: Fix regression in cap_capable() as shown up by sys_faccessat() [ver #2]
Date: Mon, 05 Jan 2009 13:11:01 +0000	[thread overview]
Message-ID: <18074.1231161061@redhat.com> (raw)
In-Reply-To: <20090103184921.GB20166@fieldses.org>

J. Bruce Fields <bfields@fieldses.org> wrote:

> > > > No.  I started bisecting, and it does appear to be a regression from the
> > > > cred patches, but at some point in the middle there it hangs on boot (a
> > > > softlockup report blames a spinlock in set_groups).
> > > 
> > > Do you remember which patch you were at?
> 
> More precisely:
> 	- The last working commit is b6dff3ec... "CRED: Separate task
> 	  security context from task_struct".
> 	- The first commit exhibiting the permissions problem is
> 	  a6f76f2... "CRED: Make execve() take advantage of
> 	  copy-on-write credentials".

I presume by 'first' you mean 'latest'.

> 	- The 9 commits in between (from f1752eec to d84f4f9) result in
> 	  a soft lookup on boot.

I think the problem may be that f1752eec removes the lock initialisation for
init_cred from the INIT_CRED() macro:

	-	.lock			= __SPIN_LOCK_UNLOCKED(p.lock),	\

but doesn't add it to the out of line init_cred:

	+struct cred init_cred = {
	+	.usage			= ATOMIC_INIT(3),
	+	.securebits		= SECUREBITS_DEFAULT,
	+	.cap_inheritable	= CAP_INIT_INH_SET,
	+	.cap_permitted		= CAP_FULL_SET,
	+	.cap_effective		= CAP_INIT_EFF_SET,
	+	.cap_bset		= CAP_INIT_BSET,
	+	.user			= INIT_USER,
	+	.group_info		= &init_groups,
	+};

Can you try adding:

		.lock			= __SPIN_LOCK_UNLOCKED(init_cred.lock),

to that and also add:

		spin_lock_init(&pcred->lock);

into copy_creds() see if the problem goes away?

I'm a bit surprised that lockdep doesn't bark at this one - I thought it
checked for lock initialisation.

David

  parent reply	other threads:[~2009-01-05 13:11 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-30 13:42 access(2) regressions in current mainline Christoph Hellwig
2008-12-30 17:06 ` David Howells
2008-12-30 17:09   ` Christoph Hellwig
2008-12-30 17:20     ` David Howells
2008-12-30 17:29       ` Christoph Hellwig
2008-12-30 17:54         ` David Howells
2008-12-31  2:05           ` Dave Chinner
2008-12-31  3:28 ` [PATCH] CRED: Fix regression in cap_capable() as shown up by sys_faccessat() David Howells
2008-12-31 15:15   ` [PATCH] CRED: Fix regression in cap_capable() as shown up by sys_faccessat() [ver #2] David Howells
2008-12-31 23:24     ` James Morris
2009-01-01 23:53     ` J. Bruce Fields
2009-01-02  1:19       ` David Howells
2009-01-02  5:19         ` J. Bruce Fields
2009-01-02 11:59           ` David Howells
2009-01-02 16:45             ` J. Bruce Fields
2009-01-03 18:49               ` J. Bruce Fields
2009-01-03 23:03                 ` David Howells
2009-01-04  2:03                   ` J. Bruce Fields
2009-01-05 13:11                 ` David Howells [this message]
2009-01-05 15:57               ` David Howells
2009-01-05 16:48               ` David Howells
2009-01-05 17:19                 ` [PATCH] CRED: Fix NFSD regression David Howells
2009-01-05 22:22                   ` James Morris
2009-01-06 19:41                   ` J. Bruce Fields
2009-01-06 19:56                     ` David Howells
2009-01-06 20:08                       ` J. Bruce Fields
2009-01-02 16:48     ` [PATCH] CRED: Fix regression in cap_capable() as shown up by sys_faccessat() [ver #2] J. Bruce Fields
2009-01-02 19:18       ` David Howells
2009-01-05  2:07     ` James Morris
2009-01-05  3:18       ` Serge E. Hallyn
2009-01-05  3:37         ` Serge E. Hallyn
2009-01-05 12:43         ` David Howells
2009-01-05 19:07           ` Serge E. Hallyn
2009-01-05 21:12             ` David Howells
2009-01-06 16:47               ` Serge E. Hallyn
2009-01-06 20:39                 ` David Howells
2009-01-06 20:56                   ` Serge E. Hallyn
2009-01-06 22:27       ` [PATCH] CRED: Fix regression in cap_capable() as shown up by sys_faccessat() [ver #3] David Howells
2009-01-06 22:53         ` James Morris
2009-01-06 23:57           ` J. Bruce Fields
2009-01-07  0:09             ` James Morris

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=18074.1231161061@redhat.com \
    --to=dhowells@redhat.com \
    --cc=bfields@fieldses.org \
    --cc=hch@lst.de \
    --cc=jmorris@namei.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.