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-prev] [day] [month] [year] [list]
Date:   Sun, 24 Nov 2019 01:27:57 +0530
From:   Rahul Lakkireddy <rahul.lakkireddy@...lsio.com>
To:     Jakub Kicinski <jakub.kicinski@...ronome.com>
Cc:     netdev@...r.kernel.org, linux-crypto@...r.kernel.org,
        davem@...emloft.net, herbert@...dor.apana.org.au,
        nirranjan@...lsio.com, atul.gupta@...lsio.com, vishal@...lsio.com,
        dt@...lsio.com
Subject: Re: [PATCH net-next v2 2/3] cxgb4: add UDP segmentation offload
 support

On Friday, November 11/22/19, 2019 at 16:13:34 -0800, Jakub Kicinski wrote:
> On Fri, 22 Nov 2019 06:30:02 +0530, Rahul Lakkireddy wrote:
> > Implement and export UDP segmentation offload (USO) support for both
> > NIC and MQPRIO QoS offload Tx path. Update appropriate logic in Tx to
> > parse GSO info in skb and configure FW_ETH_TX_EO_WR request needed to
> > perform USO.
> > 
> > v2:
> > - Remove inline keyword from write_eo_udp_wr() in sge.c. Let the
> >   compiler decide.
> > 
> > Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@...lsio.com>
> 
> > diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c
> > index 76538f4cd595..f57457453561 100644
> > --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c
> > +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c
> > @@ -91,6 +91,7 @@ static const char stats_strings[][ETH_GSTRING_LEN] = {
> >  	"rx_bg3_frames_trunc    ",
> >  
> >  	"tso                    ",
> > +	"uso                    ",
> 
> Oh wow, the spaces, people's inventiveness when it comes to ethtool free
> form strings knows no bounds..
> 
> That's not a review comment, I just wanted to say that :)
> 
> >  	"tx_csum_offload        ",
> >  	"rx_csum_good           ",
> >  	"vlan_extractions       ",
> 
> > diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
> > index e8a1826a1e90..12ff69b3ba91 100644
> > --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
> > +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
> > @@ -1136,11 +1136,17 @@ static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
> >  
> >  	if (dev->num_tc) {
> >  		struct port_info *pi = netdev2pinfo(dev);
> > +		u8 ver, proto;
> > +
> > +		ver = ip_hdr(skb)->version;
> > +		proto = (ver == 6) ? ipv6_hdr(skb)->nexthdr :
> > +				     ip_hdr(skb)->protocol;
> 
> Checking ip version now looks potentially like a fix?
> 

Yes, the earlier check was not considering IPv6 header when extracting
the protocol field for comparison, used to decide whether the traffic
can be sent on the TC-MQPRIO QoS offload Tx path added very recently
just a couple of weeks ago.

> >  		/* Send unsupported traffic pattern to normal NIC queues. */
> >  		txq = netdev_pick_tx(dev, skb, sb_dev);
> >  		if (xfrm_offload(skb) || is_ptp_enabled(skb, dev) ||
> > -		    ip_hdr(skb)->protocol != IPPROTO_TCP)
> > +		    skb->encapsulation ||
> 
> The addition of encapsulation check also looks unrelated? 
> 

UDP traffic was not supported on the TC-MQPRIO QoS offload Tx path
before this patch. VxLAN and Geneve UDP tunnel packets need to be
handled differently and hence the above check to send these packets
through the normal Tx path for now. The support for them on QoS
offload path will be enabled by a future patchset.

> > +		    (proto != IPPROTO_TCP && proto != IPPROTO_UDP))
> >  			txq = txq % pi->nqsets;
> >  
> >  		return txq;


Thanks,
Rahul

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ