Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Apr 2018 17:20:23 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333068 - head/sys/dev/cxgbe/tom
Message-ID:  <201804271720.w3RHKNrb021215@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Apr 27 17:20:23 2018
New Revision: 333068
URL: https://svnweb.freebsd.org/changeset/base/333068

Log:
  Use the correct key address when renegotiating the transmit key.
  
  Previously, get_keyid() was returning the address of the receive key
  instead of the transmit key when renegotiating the transmit key.  This
  could either hang the card (if a connection was only offloading TLS TX
  and thus had a receive key address of -1) or cause the connection to
  fail by overwriting the wrong key (if both RX and TX TLS were
  offloaded).
  
  Submitted by:	Harsh Jain @ Chelsio
  Sponsored by:	Chelsio Communications

Modified:
  head/sys/dev/cxgbe/tom/t4_tls.c

Modified: head/sys/dev/cxgbe/tom/t4_tls.c
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_tls.c	Fri Apr 27 16:34:28 2018	(r333067)
+++ head/sys/dev/cxgbe/tom/t4_tls.c	Fri Apr 27 17:20:23 2018	(r333068)
@@ -488,7 +488,7 @@ static int
 get_keyid(struct tls_ofld_info *tls_ofld, unsigned int ops)
 {
 	return (ops & KEY_WRITE_RX ? tls_ofld->rx_key_addr :
-		((ops & KEY_WRITE_TX) ? tls_ofld->rx_key_addr : -1));
+		((ops & KEY_WRITE_TX) ? tls_ofld->tx_key_addr : -1));
 }
 
 static int



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804271720.w3RHKNrb021215>