forked from mirrors/linux
		
	skbuff: orphan frags before zerocopy clone
Call skb_zerocopy_clone after skb_orphan_frags, to avoid duplicate
calls to skb_uarg(skb)->callback for the same data.
skb_zerocopy_clone associates skb_shinfo(skb)->uarg from frag_skb
with each segment. This is only safe for uargs that do refcounting,
which is those that pass skb_orphan_frags without dropping their
shared frags. For others, skb_orphan_frags drops the user frags and
sets the uarg to NULL, after which sock_zerocopy_clone has no effect.
Qemu hangs were reported due to duplicate vhost_net_zerocopy_callback
calls for the same data causing the vhost_net_ubuf_ref_>refcount to
drop below zero.
Link: http://lkml.kernel.org/r/<CAF=yD-LWyCD4Y0aJ9O0e_CHLR+3JOeKicRRTEVCPxgw4XOcqGQ@mail.gmail.com>
Fixes: 1f8b977ab3 ("sock: enable MSG_ZEROCOPY")
Reported-by: Andreas Hartmann <andihartmann@01019freenet.de>
Reported-by: David Hill <dhill@redhat.com>
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									513674b5a2
								
							
						
					
					
						commit
						268b790679
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -3654,8 +3654,6 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
 | 
							skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
 | 
				
			||||||
					      SKBTX_SHARED_FRAG;
 | 
										      SKBTX_SHARED_FRAG;
 | 
				
			||||||
		if (skb_zerocopy_clone(nskb, head_skb, GFP_ATOMIC))
 | 
					 | 
				
			||||||
			goto err;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
		while (pos < offset + len) {
 | 
							while (pos < offset + len) {
 | 
				
			||||||
			if (i >= nfrags) {
 | 
								if (i >= nfrags) {
 | 
				
			||||||
| 
						 | 
					@ -3681,6 +3679,8 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
 | 
								if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
 | 
				
			||||||
				goto err;
 | 
									goto err;
 | 
				
			||||||
 | 
								if (skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC))
 | 
				
			||||||
 | 
									goto err;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			*nskb_frag = *frag;
 | 
								*nskb_frag = *frag;
 | 
				
			||||||
			__skb_frag_ref(nskb_frag);
 | 
								__skb_frag_ref(nskb_frag);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue