linux-nvme.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Chao Leng <lengchao@huawei.com>
To: zhenwei pi <pizhenwei@bytedance.com>
Cc: sagi@grimberg.me, linux-kernel@vger.kernel.org,
	linux-nvme@lists.infradead.org, axboe@fb.com, kbusch@kernel.org,
	Yibo Zhu <zhuyibo@bytedance.com>,
	hch@lst.de
Subject: Re: [External] Re: [PATCH] nvme-rdma: handle nvme completion data length
Date: Fri, 23 Oct 2020 10:07:10 +0800	[thread overview]
Message-ID: <c2891e98-a81c-7f3a-3b19-1e34bd1f212c@huawei.com> (raw)
In-Reply-To: <1c78dbe5-47a4-1590-e064-681cba5fb01d@bytedance.com>



On 2020/10/22 18:05, zhenwei pi wrote:
> On 10/22/20 5:55 PM, Chao Leng wrote:
>>
>>
>> On 2020/10/22 16:38, zhenwei pi wrote:
>>> Hit a kernel warning:
>>> refcount_t: underflow; use-after-free.
>>> WARNING: CPU: 0 PID: 0 at lib/refcount.c:28
>>>
>>> RIP: 0010:refcount_warn_saturate+0xd9/0xe0
>>> Call Trace:
>>>   <IRQ>
>>>   nvme_rdma_recv_done+0xf3/0x280 [nvme_rdma]
>>>   __ib_process_cq+0x76/0x150 [ib_core]
>>>   ...
>>>
>>> The reason is that a zero bytes message received from target, and the
>>> host side continues to process without length checking, then the
>>> previous CQE is processed twice.
>>>
>>> Handle data length, ignore zero bytes message, and try to recovery for
>>> corrupted CQE case.
>>>
>>> Signed-off-by: zhenwei pi <pizhenwei@bytedance.com>
>>> ---
>>>   drivers/nvme/host/rdma.c | 11 +++++++++++
>>>   1 file changed, 11 insertions(+)
>>>
>>> diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c
>>> index 9e378d0a0c01..9f5112040d43 100644
>>> --- a/drivers/nvme/host/rdma.c
>>> +++ b/drivers/nvme/host/rdma.c
>>> @@ -1767,6 +1767,17 @@ static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc)
>>>           return;
>>>       }
>>> +    if (unlikely(!wc->byte_len)) {
>>> +        /* zero bytes message could be ignored */
>>> +        return;
Resource leak, need nvme_rdma_post_recv.
>>> +    } else if (unlikely(wc->byte_len < len)) {
>>> +        /* Corrupted completion, try to recovry */
>>> +        dev_err(queue->ctrl->ctrl.device,
>>> +            "Unexpected nvme completion length(%d)\n", wc->byte_len);
>>> +        nvme_rdma_error_recovery(queue->ctrl);
>>> +        return;
>>> +    }
>> !wc->byte_len and wc->byte_len < len may be the same type of anomaly.
>> Why do different error handling?
>> In which scenario zero bytes message received from target? fault inject test or normal test/run?
> 
> Zero bytes message could be used as transport layer keep alive mechanism (I's also developing target side transport layer keep alive now. To reclaim resource, target side needs to close dead connections even kato is set as 0).
nvme over fabric protocol do not define this.
May be async event is a option for target keep alive(if kato set as 0).
> 
>>> +
>>>       ib_dma_sync_single_for_cpu(ibdev, qe->dma, len, DMA_FROM_DEVICE);
>>>       /*
>>>        * AEN requests are special as they don't time out and can
>>>
> 

_______________________________________________
Linux-nvme mailing list
Linux-nvme@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-nvme

      reply	other threads:[~2020-10-23  2:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-22  8:38 [PATCH] nvme-rdma: handle nvme completion data length zhenwei pi
2020-10-22  9:55 ` Chao Leng
2020-10-22 10:05   ` [External] " zhenwei pi
2020-10-23  2:07     ` Chao Leng [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c2891e98-a81c-7f3a-3b19-1e34bd1f212c@huawei.com \
    --to=lengchao@huawei.com \
    --cc=axboe@fb.com \
    --cc=hch@lst.de \
    --cc=kbusch@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nvme@lists.infradead.org \
    --cc=pizhenwei@bytedance.com \
    --cc=sagi@grimberg.me \
    --cc=zhuyibo@bytedance.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).