public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Linux 2.6.16.26
@ 2006-07-15 20:08 Greg KH
  2006-07-15 20:09 ` Greg KH
  2006-07-15 20:10 ` Greg KH
  0 siblings, 2 replies; 7+ messages in thread
From: Greg KH @ 2006-07-15 20:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton, torvalds, stable

We (the -stable team) are announcing the release of the 2.6.16.26 kernel.

This should fix the reported issue of NetworkManager dying when using
the 2.6.16.25 kernel release.  All users of the 2.6.16 kernel are
recommended to upgrade to this kernel, as it fixes a publicly known
security issue that can provide root access to any local user of the
machine.

I'll also be replying to this message with a copy of the patch between
2.6.16.25 and 2.6.16.26, as it is small enough to do so.

The updated 2.6.16.y git tree can be found at:
 	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.16.y.git
and can be browsed at the normal kernel.org git web browser:
	www.kernel.org/git/

thanks,

greg k-h

--------

 Makefile       |    2 +-
 fs/proc/base.c |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

Summary of changes from v2.6.16.25 to v2.6.16.26
================================================

Greg Kroah-Hartman:
      Linux 2.6.16.25

Linus Torvalds:
      Relax /proc fix a bit


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

* Re: Linux 2.6.16.26
  2006-07-15 20:08 Linux 2.6.16.26 Greg KH
@ 2006-07-15 20:09 ` Greg KH
  2006-07-15 20:10 ` Greg KH
  1 sibling, 0 replies; 7+ messages in thread
From: Greg KH @ 2006-07-15 20:09 UTC (permalink / raw)
  To: linux-kernel, Andrew Morton, torvalds, stable

diff --git a/Makefile b/Makefile
index 84166a1..bea535b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 VERSION = 2
 PATCHLEVEL = 6
 SUBLEVEL = 16
-EXTRAVERSION = .25
+EXTRAVERSION = .26
 NAME=Sliding Snow Leopard
 
 # *DOCUMENTATION*
diff --git a/fs/proc/base.c b/fs/proc/base.c
index 9d99674..38f39c1 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -1366,8 +1366,8 @@ static int pid_revalidate(struct dentry 
 		} else {
 			inode->i_uid = 0;
 			inode->i_gid = 0;
-			inode->i_mode = 0;
 		}
+		inode->i_mode &= ~(S_ISUID | S_ISGID);
 		security_task_to_inode(task, inode);
 		return 1;
 	}
@@ -1395,6 +1395,7 @@ static int tid_fd_revalidate(struct dent
 				inode->i_uid = 0;
 				inode->i_gid = 0;
 			}
+			inode->i_mode &= ~(S_ISUID | S_ISGID);
 			security_task_to_inode(task, inode);
 			return 1;
 		}

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

* Re: Linux 2.6.16.26
  2006-07-15 20:08 Linux 2.6.16.26 Greg KH
  2006-07-15 20:09 ` Greg KH
@ 2006-07-15 20:10 ` Greg KH
  2006-07-15 20:18   ` Willy Tarreau
  1 sibling, 1 reply; 7+ messages in thread
From: Greg KH @ 2006-07-15 20:10 UTC (permalink / raw)
  To: linux-kernel, Andrew Morton, torvalds, stable

On Sat, Jul 15, 2006 at 01:08:56PM -0700, Greg KH wrote:
> We (the -stable team) are announcing the release of the 2.6.16.26 kernel.

<snip>

> Greg Kroah-Hartman:
>       Linux 2.6.16.25

Ick, I mistyped this, too many version changes recently, it really is
the 2.6.16.26 release, as the Makefile shows.

And I don't think there's any way to go back and change a git commit
message.  Or is there?

thanks,

greg k-h

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

* Re: Linux 2.6.16.26
  2006-07-15 20:10 ` Greg KH
@ 2006-07-15 20:18   ` Willy Tarreau
  2006-07-15 21:40     ` Linus Torvalds
  0 siblings, 1 reply; 7+ messages in thread
From: Willy Tarreau @ 2006-07-15 20:18 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, Andrew Morton, torvalds, stable

On Sat, Jul 15, 2006 at 01:10:26PM -0700, Greg KH wrote:
> On Sat, Jul 15, 2006 at 01:08:56PM -0700, Greg KH wrote:
> > We (the -stable team) are announcing the release of the 2.6.16.26 kernel.
> 
> <snip>
> 
> > Greg Kroah-Hartman:
> >       Linux 2.6.16.25
> 
> Ick, I mistyped this, too many version changes recently, it really is
> the 2.6.16.26 release, as the Makefile shows.
> 
> And I don't think there's any way to go back and change a git commit
> message.  Or is there?

You would need to git-reset then git-commit, but it's a little bit dirty
and my annoy the users who will have already fetched your tree. That does
not matter much anyway. I believe that people will understand anyway !

> thanks,
> 
> greg k-h

Cheers,
Willy


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

* Re: Linux 2.6.16.26
  2006-07-15 20:18   ` Willy Tarreau
@ 2006-07-15 21:40     ` Linus Torvalds
  2006-07-15 23:33       ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: Linus Torvalds @ 2006-07-15 21:40 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: Greg KH, linux-kernel, Andrew Morton, stable



On Sat, 15 Jul 2006, Willy Tarreau wrote:
> 
> You would need to git-reset then git-commit

Actually, these days we suggest doing

	git commit --amend

instead to change the top commit if you mis-type something or find a 
problem.

But, as you point out:

>					 but it's a little bit dirty
> and my annoy the users who will have already fetched your tree.

Indeed. Something that has already been exported should _not_ be amended, 
because it generates a whole new commit, and people who have already 
gotten the old one would be unhappy.

		Linus

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

* Re: Linux 2.6.16.26
  2006-07-15 21:40     ` Linus Torvalds
@ 2006-07-15 23:33       ` Greg KH
  0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2006-07-15 23:33 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Willy Tarreau, linux-kernel, Andrew Morton, stable

On Sat, Jul 15, 2006 at 02:40:30PM -0700, Linus Torvalds wrote:
> On Sat, 15 Jul 2006, Willy Tarreau wrote:
> > 
> > You would need to git-reset then git-commit
> 
> Actually, these days we suggest doing
> 
> 	git commit --amend
> 
> instead to change the top commit if you mis-type something or find a 
> problem.
> 
> But, as you point out:
> 
> >					 but it's a little bit dirty
> > and my annoy the users who will have already fetched your tree.
> 
> Indeed. Something that has already been exported should _not_ be amended, 
> because it generates a whole new commit, and people who have already 
> gotten the old one would be unhappy.

Yes, I'll just live with it and remember this for next time.

thanks,

greg k-h

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

* Linux 2.6.16.26
@ 2006-07-17 14:08 Greg KH
  0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2006-07-17 14:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton, torvalds, stable

We (the -stable team) are announcing the release of the 2.6.16.27 kernel.

I'll also be replying to this message with a copy of the patch between
2.6.16.26 and 2.6.16.27, as it is small enough to do so.

The updated 2.6.16.y git tree can be found at:
 	git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.16.y.git
and can be browsed at the normal kernel.org git web browser:
	www.kernel.org/git/

thanks,

greg k-h

--------

 Makefile                      |    2 -
 drivers/usb/serial/ftdi_sio.c |   84 +++++++++++++++++++++++++++++++++++-------
 net/ipv6/addrconf.c           |    9 ++++
 3 files changed, 81 insertions(+), 14 deletions(-)

Summary of changes from v2.6.16.26 to v2.6.16.27
================================================

$,1 aukasz Stelmach:
      IPV6: Fix source address selection.

Greg Kroah-Hartman:
      Linux 2.6.16.27

Ian Abbott:
      USB serial ftdi_sio: Prevent userspace DoS (CVE-2006-2936)

YOSHIFUJI Hideaki:
      IPV6 ADDRCONF: Fix default source address selection without CONFIG_IPV6_PRIVACY


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

end of thread, other threads:[~2006-07-17 14:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-15 20:08 Linux 2.6.16.26 Greg KH
2006-07-15 20:09 ` Greg KH
2006-07-15 20:10 ` Greg KH
2006-07-15 20:18   ` Willy Tarreau
2006-07-15 21:40     ` Linus Torvalds
2006-07-15 23:33       ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2006-07-17 14:08 Greg KH

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