lkml.org 
[lkml]   [2016]   [Jan]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4.3 147/157] parisc iommu: fix panic due to trying to allocate too large region
    Date
    4.3-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Mikulas Patocka <mpatocka@redhat.com>

    commit e46e31a3696ae2d66f32c207df3969613726e636 upstream.

    When using the Promise TX2+ SATA controller on PA-RISC, the system often
    crashes with kernel panic, for example just writing data with the dd
    utility will make it crash.

    Kernel panic - not syncing: drivers/parisc/sba_iommu.c: I/O MMU @ 000000000000a000 is out of mapping resources

    CPU: 0 PID: 18442 Comm: mkspadfs Not tainted 4.4.0-rc2 #2
    Backtrace:
    [<000000004021497c>] show_stack+0x14/0x20
    [<0000000040410bf0>] dump_stack+0x88/0x100
    [<000000004023978c>] panic+0x124/0x360
    [<0000000040452c18>] sba_alloc_range+0x698/0x6a0
    [<0000000040453150>] sba_map_sg+0x260/0x5b8
    [<000000000c18dbb4>] ata_qc_issue+0x264/0x4a8 [libata]
    [<000000000c19535c>] ata_scsi_translate+0xe4/0x220 [libata]
    [<000000000c19a93c>] ata_scsi_queuecmd+0xbc/0x320 [libata]
    [<0000000040499bbc>] scsi_dispatch_cmd+0xfc/0x130
    [<000000004049da34>] scsi_request_fn+0x6e4/0x970
    [<00000000403e95a8>] __blk_run_queue+0x40/0x60
    [<00000000403e9d8c>] blk_run_queue+0x3c/0x68
    [<000000004049a534>] scsi_run_queue+0x2a4/0x360
    [<000000004049be68>] scsi_end_request+0x1a8/0x238
    [<000000004049de84>] scsi_io_completion+0xfc/0x688
    [<0000000040493c74>] scsi_finish_command+0x17c/0x1d0

    The cause of the crash is not exhaustion of the IOMMU space, there is
    plenty of free pages. The function sba_alloc_range is called with size
    0x11000, thus the pages_needed variable is 0x11. The function
    sba_search_bitmap is called with bits_wanted 0x11 and boundary size is
    0x10 (because dma_get_seg_boundary(dev) returns 0xffff).

    The function sba_search_bitmap attempts to allocate 17 pages that must not
    cross 16-page boundary - it can't satisfy this requirement
    (iommu_is_span_boundary always returns true) and fails even if there are
    many free entries in the IOMMU space.

    How did it happen that we try to allocate 17 pages that don't cross
    16-page boundary? The cause is in the function iommu_coalesce_chunks. This
    function tries to coalesce adjacent entries in the scatterlist. The
    function does several checks if it may coalesce one entry with the next,
    one of those checks is this:

    if (startsg->length + dma_len > max_seg_size)
    break;

    When it finishes coalescing adjacent entries, it allocates the mapping:

    sg_dma_len(contig_sg) = dma_len;
    dma_len = ALIGN(dma_len + dma_offset, IOVP_SIZE);
    sg_dma_address(contig_sg) =
    PIDE_FLAG
    | (iommu_alloc_range(ioc, dev, dma_len) << IOVP_SHIFT)
    | dma_offset;

    It is possible that (startsg->length + dma_len > max_seg_size) is false
    (we are just near the 0x10000 max_seg_size boundary), so the funcion
    decides to coalesce this entry with the next entry. When the coalescing
    succeeds, the function performs
    dma_len = ALIGN(dma_len + dma_offset, IOVP_SIZE);
    And now, because of non-zero dma_offset, dma_len is greater than 0x10000.
    iommu_alloc_range (a pointer to sba_alloc_range) is called and it attempts
    to allocate 17 pages for a device that must not cross 16-page boundary.

    To fix the bug, we must make sure that dma_len after addition of
    dma_offset and alignment doesn't cross the segment boundary. I.e. change
    if (startsg->length + dma_len > max_seg_size)
    break;
    to
    if (ALIGN(dma_len + dma_offset + startsg->length, IOVP_SIZE) > max_seg_size)
    break;

    This patch makes this change (it precalculates max_seg_boundary at the
    beginning of the function iommu_coalesce_chunks). I also added a check
    that the mapping length doesn't exceed dma_get_seg_boundary(dev) (it is
    not needed for Promise TX2+ SATA, but it may be needed for other devices
    that have dma_get_seg_boundary lower than dma_get_max_seg_size).

    Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
    Signed-off-by: Helge Deller <deller@gmx.de>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

    ---
    drivers/parisc/iommu-helpers.h | 15 ++++++++-------
    1 file changed, 8 insertions(+), 7 deletions(-)

    --- a/drivers/parisc/iommu-helpers.h
    +++ b/drivers/parisc/iommu-helpers.h
    @@ -104,7 +104,11 @@ iommu_coalesce_chunks(struct ioc *ioc, s
    struct scatterlist *contig_sg; /* contig chunk head */
    unsigned long dma_offset, dma_len; /* start/len of DMA stream */
    unsigned int n_mappings = 0;
    - unsigned int max_seg_size = dma_get_max_seg_size(dev);
    + unsigned int max_seg_size = min(dma_get_max_seg_size(dev),
    + (unsigned)DMA_CHUNK_SIZE);
    + unsigned int max_seg_boundary = dma_get_seg_boundary(dev) + 1;
    + if (max_seg_boundary) /* check if the addition above didn't overflow */
    + max_seg_size = min(max_seg_size, max_seg_boundary);

    while (nents > 0) {

    @@ -138,14 +142,11 @@ iommu_coalesce_chunks(struct ioc *ioc, s

    /*
    ** First make sure current dma stream won't
    - ** exceed DMA_CHUNK_SIZE if we coalesce the
    + ** exceed max_seg_size if we coalesce the
    ** next entry.
    */
    - if(unlikely(ALIGN(dma_len + dma_offset + startsg->length,
    - IOVP_SIZE) > DMA_CHUNK_SIZE))
    - break;
    -
    - if (startsg->length + dma_len > max_seg_size)
    + if (unlikely(ALIGN(dma_len + dma_offset + startsg->length, IOVP_SIZE) >
    + max_seg_size))
    break;

    /*

    \
     
     \ /
      Last update: 2016-01-27 22:01    [W:2.692 / U:0.172 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site