public inbox for linux-m68k@lists.linux-m68k.org
 help / color / mirror / Atom feed
* [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
@ 2009-12-13 19:21 Geert Uytterhoeven
  2009-12-13 21:29 ` James Morris
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Geert Uytterhoeven @ 2009-12-13 19:21 UTC (permalink / raw)
  To: David Howells, James Morris
  Cc: Linux/m68k, Mike Frysinger, Chris Zankel,
	Linux Kernel Development, linux-security-module

As of commit ee18d64c1f632043a02e6f5ba5e045bb26a5465f ("KEYS: Add a keyctl to
install a process's session keyring on its parent [try #6]"), CONFIG_KEYS=y
fails to build on architectures that haven't implemented TIF_NOTIFY_RESUME yet:

security/keys/keyctl.c: In function 'keyctl_session_to_parent':
security/keys/keyctl.c:1312: error: 'TIF_NOTIFY_RESUME' undeclared (first use in this function)
security/keys/keyctl.c:1312: error: (Each undeclared identifier is reported only once
security/keys/keyctl.c:1312: error: for each function it appears in.)

Make KEYCTL_SESSION_TO_PARENT depend on TIF_NOTIFY_RESUME until blackfin,
m68k, and xtensa have implemented it.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: stable@kernel.org
---
1. This fixes a regression in 2.6.32.
2. Long-time build issues like this make linux-next miss newer build 
   problems.

 security/keys/keyctl.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c
index 06ec722..3a9ad87 100644
--- a/security/keys/keyctl.c
+++ b/security/keys/keyctl.c
@@ -1236,6 +1236,7 @@ long keyctl_get_security(key_serial_t keyid,
  */
 long keyctl_session_to_parent(void)
 {
+#ifdef TIF_NOTIFY_RESUME
 	struct task_struct *me, *parent;
 	const struct cred *mycred, *pcred;
 	struct cred *cred, *oldcred;
@@ -1326,6 +1327,15 @@ not_permitted:
 error_keyring:
 	key_ref_put(keyring_r);
 	return ret;
+
+#else /* !TIF_NOTIFY_RESUME */
+	/*
+	 * To be removed when TIF_NOTIFY_RESUME has been implemented on
+	 * blackfin/m68k/xtensa
+	 */
+#warning TIF_NOTIFY_RESUME not implemented
+	return -EOPNOTSUPP;
+#endif /* !TIF_NOTIFY_RESUME */
 }
 
 /*****************************************************************************/
-- 
1.6.0.4

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
  2009-12-13 19:21 [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support Geert Uytterhoeven
@ 2009-12-13 21:29 ` James Morris
  2009-12-13 22:36 ` David Howells
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: James Morris @ 2009-12-13 21:29 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: David Howells, Linux/m68k, Mike Frysinger, Chris Zankel,
	Linux Kernel Development, linux-security-module

On Sun, 13 Dec 2009, Geert Uytterhoeven wrote:

> As of commit ee18d64c1f632043a02e6f5ba5e045bb26a5465f ("KEYS: Add a keyctl to
> install a process's session keyring on its parent [try #6]"), CONFIG_KEYS=y
> fails to build on architectures that haven't implemented TIF_NOTIFY_RESUME yet:
> 
> security/keys/keyctl.c: In function 'keyctl_session_to_parent':
> security/keys/keyctl.c:1312: error: 'TIF_NOTIFY_RESUME' undeclared (first use in this function)
> security/keys/keyctl.c:1312: error: (Each undeclared identifier is reported only once
> security/keys/keyctl.c:1312: error: for each function it appears in.)
> 
> Make KEYCTL_SESSION_TO_PARENT depend on TIF_NOTIFY_RESUME until blackfin,
> m68k, and xtensa have implemented it.
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: stable@kernel.org

Looks ok to me -- once we have an ack from David, I'll add it to my tree 
and push to Linus with another fix.

> ---
> 1. This fixes a regression in 2.6.32.
> 2. Long-time build issues like this make linux-next miss newer build 
>    problems.
> 
>  security/keys/keyctl.c |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)
> 
> diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c
> index 06ec722..3a9ad87 100644
> --- a/security/keys/keyctl.c
> +++ b/security/keys/keyctl.c
> @@ -1236,6 +1236,7 @@ long keyctl_get_security(key_serial_t keyid,
>   */
>  long keyctl_session_to_parent(void)
>  {
> +#ifdef TIF_NOTIFY_RESUME
>  	struct task_struct *me, *parent;
>  	const struct cred *mycred, *pcred;
>  	struct cred *cred, *oldcred;
> @@ -1326,6 +1327,15 @@ not_permitted:
>  error_keyring:
>  	key_ref_put(keyring_r);
>  	return ret;
> +
> +#else /* !TIF_NOTIFY_RESUME */
> +	/*
> +	 * To be removed when TIF_NOTIFY_RESUME has been implemented on
> +	 * blackfin/m68k/xtensa
> +	 */
> +#warning TIF_NOTIFY_RESUME not implemented
> +	return -EOPNOTSUPP;
> +#endif /* !TIF_NOTIFY_RESUME */
>  }
>  
>  /*****************************************************************************/
> -- 
> 1.6.0.4
> 
> Gr{oetje,eeting}s,
> 
> 						Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> 							    -- Linus Torvalds
> 

-- 
James Morris
<jmorris@namei.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
  2009-12-13 19:21 [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support Geert Uytterhoeven
  2009-12-13 21:29 ` James Morris
@ 2009-12-13 22:36 ` David Howells
  2009-12-13 23:49   ` Brad Boyer
  2009-12-14  1:49 ` Mike Frysinger
  2009-12-15 20:25 ` Mike Frysinger
  3 siblings, 1 reply; 6+ messages in thread
From: David Howells @ 2009-12-13 22:36 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: dhowells, James Morris, Linux/m68k, Mike Frysinger, Chris Zankel,
	Linux Kernel Development, linux-security-module

Geert Uytterhoeven <geert@linux-m68k.org> wrote:

> +#warning TIF_NOTIFY_RESUME not implemented
> +	return -EOPNOTSUPP;

I wonder if it should printk() too.

David

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
  2009-12-13 22:36 ` David Howells
@ 2009-12-13 23:49   ` Brad Boyer
  0 siblings, 0 replies; 6+ messages in thread
From: Brad Boyer @ 2009-12-13 23:49 UTC (permalink / raw)
  To: David Howells
  Cc: Geert Uytterhoeven, James Morris, Linux/m68k, Mike Frysinger,
	Chris Zankel, Linux Kernel Development, linux-security-module

On Sun, Dec 13, 2009 at 10:36:16PM +0000, David Howells wrote:
> Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> 
> > +#warning TIF_NOTIFY_RESUME not implemented
> > +	return -EOPNOTSUPP;
> 
> I wonder if it should printk() too.

I would think something like WARN_ONCE() or something rate limited would
be more appropriate.

	Brad Boyer
	flar@allandria.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
  2009-12-13 19:21 [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support Geert Uytterhoeven
  2009-12-13 21:29 ` James Morris
  2009-12-13 22:36 ` David Howells
@ 2009-12-14  1:49 ` Mike Frysinger
  2009-12-15 20:25 ` Mike Frysinger
  3 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger @ 2009-12-14  1:49 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: David Howells, James Morris, Linux/m68k, Chris Zankel,
	Linux Kernel Development, linux-security-module

On Sun, Dec 13, 2009 at 14:21, Geert Uytterhoeven wrote:
> As of commit ee18d64c1f632043a02e6f5ba5e045bb26a5465f ("KEYS: Add a keyctl to
> install a process's session keyring on its parent [try #6]"), CONFIG_KEYS=y
> fails to build on architectures that haven't implemented TIF_NOTIFY_RESUME yet:
>
> security/keys/keyctl.c: In function 'keyctl_session_to_parent':
> security/keys/keyctl.c:1312: error: 'TIF_NOTIFY_RESUME' undeclared (first use in this function)
> security/keys/keyctl.c:1312: error: (Each undeclared identifier is reported only once
> security/keys/keyctl.c:1312: error: for each function it appears in.)
>
> Make KEYCTL_SESSION_TO_PARENT depend on TIF_NOTIFY_RESUME until blackfin,
> m68k, and xtensa have implemented it.

i'll be pushing a patch for 2.6.32 to add notify support to Blackfin ;)

but othewise, Acked-by: Mike Frysinger <vapier@gentoo.org>
-mike

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support
  2009-12-13 19:21 [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2009-12-14  1:49 ` Mike Frysinger
@ 2009-12-15 20:25 ` Mike Frysinger
  3 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger @ 2009-12-15 20:25 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: David Howells, James Morris, Linux/m68k, Chris Zankel,
	Linux Kernel Development, linux-security-module

On Sun, Dec 13, 2009 at 14:21, Geert Uytterhoeven wrote:
> +       /*
> +        * To be removed when TIF_NOTIFY_RESUME has been implemented on
> +        * blackfin/m68k/xtensa

if you feel like respinning, you can drop the "blackfin" part as ive
pushed support for 2.6.33
-mike

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-12-15 20:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-13 19:21 [PATCH] Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture support Geert Uytterhoeven
2009-12-13 21:29 ` James Morris
2009-12-13 22:36 ` David Howells
2009-12-13 23:49   ` Brad Boyer
2009-12-14  1:49 ` Mike Frysinger
2009-12-15 20:25 ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox