lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 19 Oct 2014 13:23:14 -0400 (EDT)
From:	David Miller <davem@...emloft.net>
To:	torvalds@...ux-foundation.org
CC:	akpm@...ux-foundation.org, netdev@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: [GIT] Networking


A quick batch of bug fixes:

1) Fix build with IPV6 disabled, from Eric Dumazet.

2) Several more cases of caching SKB data pointers across
   calls to pskb_may_pull(), thus referencing potentially
   free'd memory.  From Li RongQing.

3) DSA phy code tests operation presence improperly, instead
   of going:

	if (x->ops->foo)
		r = x->ops->foo(args);

   it was going:

	if (x->ops->foo(args))
		r = x->ops->foo(args);

   Fix from Andew Lunn.

Please pull, thanks a lot.

The following changes since commit f2d9da1a8375cbe53df5b415d059429013a3a79f:

  bna: fix skb->truesize underestimation (2014-10-17 23:56:33 -0400)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git master

for you to fetch changes up to 228b16cb13dfa2f77354a9b144a07e86e2dda01c:

  Net: DSA: Fix checking for get_phy_flags function (2014-10-19 12:46:31 -0400)

----------------------------------------------------------------
Andrew Lunn (1):
      Net: DSA: Fix checking for get_phy_flags function

Eric Dumazet (1):
      tcp: fix build error if IPv6 is not enabled

Li RongQing (3):
      ipv4: fix a potential use after free in gre_offload.c
      ipv6: fix a potential use after free in ip6_offload.c
      ipv6: fix a potential use after free in sit.c

 include/net/tcp.h      | 2 ++
 net/dsa/slave.c        | 2 +-
 net/ipv4/gre_offload.c | 6 +++---
 net/ipv6/ip6_offload.c | 1 +
 net/ipv6/sit.c         | 6 +++---
 5 files changed, 10 insertions(+), 7 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ