aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libfc/fc_fcp.c
diff options
context:
space:
mode:
authorChris Leech <christopher.leech@intel.com>2009-11-03 14:50:05 -0500
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:01:25 -0500
commit18fa11efc279c20af5eefff2bbe814ca067e51ae (patch)
treefc8b911554aa04c1ed7f6a5ebe31ef6aa2ea0379 /drivers/scsi/libfc/fc_fcp.c
parentcc0136c2e9c10e889cb36e39710c0eb10707b396 (diff)
[SCSI] libfc, fcoe: fixes for highmem skb linearize panics
There are cases outside of our control that may result in a transmit skb being linearized in dev_queue_xmit. There are a couple of bugs in libfc/fcoe that can result in a panic at that point. This patch contains two fixes to prevent those panics. 1) use fast cloning instead of shared skbs with dev_queue_xmit dev_queue_xmit doen't want shared skbuffs being passed in, and __skb_linearize will BUG if the skb is shared. FCoE is holding an extra reference around the call to dev_queue_xmit, so that when it returns an error code indicating the frame has been dropped it can maintain it's own backlog and retransmit. Switch to using fast skb cloning for this instead. 2) don't append compound pages as > PAGE_SIZE skb fragments fc_fcp_send_data will append pages from a scatterlist to the nr_frags[] if the netdev supports it. But, it's using > PAGE_SIZE compound pages as a single skb_frag. In the highmem linearize case that page will be passed to kmap_atomic to get a mapping to copy out of, but kmap_atomic will only allow access to the first PAGE_SIZE part. The memcpy will keep going and cause a page fault once is crosses the first boundary. If fc_fcp_send_data uses linear buffers from the start, it calls kmap_atomic one PAGE_SIZE at a time. That same logic needs to be applied when setting up skb_frags. Signed-off-by: Chris Leech <christopher.leech@intel.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc/fc_fcp.c')
-rw-r--r--drivers/scsi/libfc/fc_fcp.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/scsi/libfc/fc_fcp.c b/drivers/scsi/libfc/fc_fcp.c
index db252e2722d0..c4b58d042f6f 100644
--- a/drivers/scsi/libfc/fc_fcp.c
+++ b/drivers/scsi/libfc/fc_fcp.c
@@ -530,11 +530,13 @@ static int fc_fcp_send_data(struct fc_fcp_pkt *fsp, struct fc_seq *seq,
530 struct scatterlist *sg; 530 struct scatterlist *sg;
531 struct fc_frame *fp = NULL; 531 struct fc_frame *fp = NULL;
532 struct fc_lport *lport = fsp->lp; 532 struct fc_lport *lport = fsp->lp;
533 struct page *page;
533 size_t remaining; 534 size_t remaining;
534 size_t t_blen; 535 size_t t_blen;
535 size_t tlen; 536 size_t tlen;
536 size_t sg_bytes; 537 size_t sg_bytes;
537 size_t frame_offset, fh_parm_offset; 538 size_t frame_offset, fh_parm_offset;
539 size_t off;
538 int error; 540 int error;
539 void *data = NULL; 541 void *data = NULL;
540 void *page_addr; 542 void *page_addr;
@@ -605,28 +607,26 @@ static int fc_fcp_send_data(struct fc_fcp_pkt *fsp, struct fc_seq *seq,
605 fh_parm_offset = frame_offset; 607 fh_parm_offset = frame_offset;
606 fr_max_payload(fp) = fsp->max_payload; 608 fr_max_payload(fp) = fsp->max_payload;
607 } 609 }
610
611 off = offset + sg->offset;
608 sg_bytes = min(tlen, sg->length - offset); 612 sg_bytes = min(tlen, sg->length - offset);
613 sg_bytes = min(sg_bytes,
614 (size_t) (PAGE_SIZE - (off & ~PAGE_MASK)));
615 page = sg_page(sg) + (off >> PAGE_SHIFT);
609 if (using_sg) { 616 if (using_sg) {
610 get_page(sg_page(sg)); 617 get_page(page);
611 skb_fill_page_desc(fp_skb(fp), 618 skb_fill_page_desc(fp_skb(fp),
612 skb_shinfo(fp_skb(fp))->nr_frags, 619 skb_shinfo(fp_skb(fp))->nr_frags,
613 sg_page(sg), sg->offset + offset, 620 page, off & ~PAGE_MASK, sg_bytes);
614 sg_bytes);
615 fp_skb(fp)->data_len += sg_bytes; 621 fp_skb(fp)->data_len += sg_bytes;
616 fr_len(fp) += sg_bytes; 622 fr_len(fp) += sg_bytes;
617 fp_skb(fp)->truesize += PAGE_SIZE; 623 fp_skb(fp)->truesize += PAGE_SIZE;
618 } else { 624 } else {
619 size_t off = offset + sg->offset;
620
621 /* 625 /*
622 * The scatterlist item may be bigger than PAGE_SIZE, 626 * The scatterlist item may be bigger than PAGE_SIZE,
623 * but we must not cross pages inside the kmap. 627 * but we must not cross pages inside the kmap.
624 */ 628 */
625 sg_bytes = min(sg_bytes, (size_t) (PAGE_SIZE - 629 page_addr = kmap_atomic(page, KM_SOFTIRQ0);
626 (off & ~PAGE_MASK)));
627 page_addr = kmap_atomic(sg_page(sg) +
628 (off >> PAGE_SHIFT),
629 KM_SOFTIRQ0);
630 memcpy(data, (char *)page_addr + (off & ~PAGE_MASK), 630 memcpy(data, (char *)page_addr + (off & ~PAGE_MASK),
631 sg_bytes); 631 sg_bytes);
632 kunmap_atomic(page_addr, KM_SOFTIRQ0); 632 kunmap_atomic(page_addr, KM_SOFTIRQ0);