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]
Message-Id: <1406207604-31653-1-git-send-email-jeffrey.t.kirsher@intel.com>
Date:	Thu, 24 Jul 2014 06:13:10 -0700
From:	Jeff Kirsher <jeffrey.t.kirsher@...el.com>
To:	davem@...emloft.net
Cc:	Jeff Kirsher <jeffrey.t.kirsher@...el.com>, netdev@...r.kernel.org,
	nhorman@...hat.com, sassmann@...hat.com
Subject: [net-next 00/14][pull request] Intel Wired LAN Driver Updates 2014-07-24

This series contains updates to igb, ixgbe, i40e and i40evf.

Mark fixes a possible attempt to dereference a NULL pointer in ixgbe_probe().
Also changes some uses of strncpy to strlcpy when clearing is not needed to
prevent information leakage.

Jacob fixes a bug in the misuse of the list_for_each macro to loop over
every entry in the bus_list.  Instead of attempting to loop over the list
from a random entry point, go up to the bus and use the real list_head
entry point.  This prevents the possible read or write of unallocated or
incorrectly addressed memory.  Then provides a patch to prevent the
display of the minimum link qualification check if we might be in a
virtual machine.  This check is incorrect and misleading in this case,
since we actually do not really know what the available bandwidth is.
To do so, we simply check whether each function on the bus matches our
device id.

Carolyn adds a check and prints the error cause register value when the
hardware detects a malformed packet to assist the user.

Toralf Förster fixes a format mismatch in i40e which was found using
cppcheck.

Shannon adds nvmupdate support by implementing a state machine intended
to support the userland tool for updating the device eeprom.

Jesse fixes the extension header checksum logic for IPv6 in i40e and
i40evf.

Mitch reduces a delay in the i40evf driver where we do not need to
delay an entire millisecond to get into our critical section.

Kamil fixes an issue where access to the NVM was being blocked until
a driver reset where a check for NVM related admin queue commands
would not recognize that such a command was received and would not clear
nvm_busy flag.

Catherine fixes a couple of firmware API version errors.

The following are changes since commit f6e675324481c56b358091ddb446b2c95a8e047b:
  Merge branch 'filter-move'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next master

Carolyn Wyborny (1):
  igb: Add message when malformed packets detected by hw

Catherine Sullivan (2):
  i40e: Fix firmware API version errors
  i40e: Give link more time after setting flow control

Jacob Keller (2):
  ixgbe: fix use of list_for_each in ixgbe_enumerate_functions
  ixgbe: don't check minimum link when direct assigned to virtual
    machine

Jesse Brandeburg (1):
  i40e/i40evf: fix extension header csum logic

Kamil Krawczyk (1):
  i40e/i40evf: ARQ copy desc data even for failed commands

Mark Rustad (2):
  ixgbe: Fix possible null-dereference in error path
  ixgbe: Change some uses of strncpy to strlcpy

Mitch Williams (1):
  i40evf: don't wait so long

Shannon Nelson (2):
  i40e/i40evf: Add nvmupdate support
  i40e: always print aqtx answer

Todd Fujinaka (1):
  igb: bump igb version to 5.2.13

Toralf Förster (1):
  i40e: fix format mismatch in
    drivers/net/ethernet/intel/i40e/i40e_debugfs.c

 drivers/net/ethernet/intel/i40e/i40e_adminq.c    |  41 +-
 drivers/net/ethernet/intel/i40e/i40e_adminq.h    |  36 ++
 drivers/net/ethernet/intel/i40e/i40e_common.c    |  88 ++++
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c   |   4 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c   |  71 +++-
 drivers/net/ethernet/intel/i40e/i40e_main.c      |  20 +-
 drivers/net/ethernet/intel/i40e/i40e_nvm.c       | 511 +++++++++++++++++++++++
 drivers/net/ethernet/intel/i40e/i40e_prototype.h |   7 +
 drivers/net/ethernet/intel/i40e/i40e_txrx.c      |   2 -
 drivers/net/ethernet/intel/i40e/i40e_type.h      |  58 +++
 drivers/net/ethernet/intel/i40evf/i40e_adminq.c  |  28 +-
 drivers/net/ethernet/intel/i40evf/i40e_adminq.h  |  36 ++
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c    |   2 -
 drivers/net/ethernet/intel/i40evf/i40e_type.h    |  58 +++
 drivers/net/ethernet/intel/i40evf/i40evf_main.c  |   4 +-
 drivers/net/ethernet/intel/igb/e1000_regs.h      |   1 +
 drivers/net/ethernet/intel/igb/igb_main.c        |  29 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c    |  42 +-
 18 files changed, 958 insertions(+), 80 deletions(-)

-- 
1.9.3

--
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