From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AIpwx4+DlBM8nWhvWgX5blfolPBCUX9SkEONRbHCPeWDw26z6b63pXy11cAd93lBdmKsbBPM0w0q ARC-Seal: i=1; a=rsa-sha256; t=1522168817; cv=none; d=google.com; s=arc-20160816; b=hd8X27wn16vek+D1Bob7uH0lNbmUinOLqcpQDzoxoETcvczDM/Bc9DLGZsis3sS3oA cy9zQlj2nkkp+OTQupYEclF2broD/V2BPusHagLoMlQdDed04u1JUMBpppnGtoyR8aoi gHMlW3bJi7lwJ8ivzxlu/c9NIhMroNB2LluUrk2zZcfsW7WLjNtJFR7agk8Z8rFek5YM FI3j9e+mcmDLdj1by8/gH4F4T3MMN9Xc8ZT1mEIX77gdNbn0Wa7OYW7Uu4EX71ZFM3hT HpjS1hnd7qpOZVTr16VTNmMmbK5nKGpItxoR3Fyr1egGhfHYKHePmsX2dIYs+2hgr7Vn uCpQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=mime-version:user-agent:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=R8J8PoC5Mmku90apMpB+uHNQXOV/ulHTX440CgFc9B4=; b=hfKllDD42rT8SxvSVI7dDbh5SlHpBT6WechgM7eoHGnjA/a/4GqJ02GfcuWqaxPWzX ScPC82xoxjlDdvtgtWfU0Rz7HeOh0RmR8MBnQUA1GR2Ij6B6y4Wh9MYxRPtcudkGV56a oZJtKvWViKKNcjUfzgwgsJFXOgfW2tTmTByEaHQyTkucyEgahggPpetGT3DxjobYWqt7 l7dG+z/VGPgmEUPklSOErSI4t5K6Gy3raRyRkp8ZdCgBz7J16gHqfzdC2+kkvA0pkmE1 AehRLwbU2LTlLKdguAVMf0mrNBB6miMv2u6Ig1VAJviTXlp369gHFUyKUXsGTh3MdTsz zwQg== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, syzbot+f7b556d1766502a69d85071d2ff08bd87be53d0f@syzkaller.appspotmail.com, Eric Biggers , Tejun Heo Subject: [PATCH 4.15 035/105] libata: remove WARN() for DMA or PIO command without data Date: Tue, 27 Mar 2018 18:27:15 +0200 Message-Id: <20180327162759.486770594@linuxfoundation.org> X-Mailer: git-send-email 2.16.3 In-Reply-To: <20180327162757.813009222@linuxfoundation.org> References: <20180327162757.813009222@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1596109047910699948?= X-GMAIL-MSGID: =?utf-8?q?1596109689805550924?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Eric Biggers commit 9173e5e80729c8434b8d27531527c5245f4a5594 upstream. syzkaller hit a WARN() in ata_qc_issue() when writing to /dev/sg0. This happened because it issued a READ_6 command with no data buffer. Just remove the WARN(), as it doesn't appear indicate a kernel bug. The expected behavior is to fail the command, which the code does. Here's a reproducer that works in QEMU when /dev/sg0 refers to a disk of the default type ("82371SB PIIX3 IDE"): #include #include int main() { char buf[42] = { [36] = 0x8 /* READ_6 */ }; write(open("/dev/sg0", O_RDWR), buf, sizeof(buf)); } Fixes: f92a26365a72 ("libata: change ATA_QCFLAG_DMAMAP semantics") Reported-by: syzbot+f7b556d1766502a69d85071d2ff08bd87be53d0f@syzkaller.appspotmail.com Cc: # v2.6.25+ Signed-off-by: Eric Biggers Signed-off-by: Tejun Heo Signed-off-by: Greg Kroah-Hartman --- drivers/ata/libata-core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -5401,8 +5401,7 @@ void ata_qc_issue(struct ata_queued_cmd * We guarantee to LLDs that they will have at least one * non-zero sg if the command is a data command. */ - if (WARN_ON_ONCE(ata_is_data(prot) && - (!qc->sg || !qc->n_elem || !qc->nbytes))) + if (ata_is_data(prot) && (!qc->sg || !qc->n_elem || !qc->nbytes)) goto sys_err; if (ata_is_dma(prot) || (ata_is_pio(prot) &&