From: bugzilla-daemon@bugzilla.kernel.org
To: linux-xfs@vger.kernel.org
Subject: [Bug 205703] [xfstests generic/461]: BUG: KASAN: use-after-free in iomap_finish_ioend+0x58c/0x5c0
Date: Wed, 04 Dec 2019 15:37:24 +0000 [thread overview]
Message-ID: <bug-205703-201763-KsVb1jc664@https.bugzilla.kernel.org/> (raw)
In-Reply-To: <bug-205703-201763@https.bugzilla.kernel.org/>
https://bugzilla.kernel.org/show_bug.cgi?id=205703
--- Comment #3 from Zorro Lang (zlang@redhat.com) ---
(In reply to Zorro Lang from comment #2)
> (In reply to Darrick J. Wong from comment #1)
> > Could you please post the source line translations of the iomap functions?
> > I don't have your kernel build.
>
> I tryed to use the faddr2line tool, then it point to a printk_ratelimited()
> function. I'm sure I didn't change the kernel source code, the current
> kernel is installed from it. Is that something wrong?
>
> # ./scripts/faddr2line vmlinux iomap_finish_ioend+0x58c
> iomap_finish_ioend+0x58c/0x5c0:
> iomap_finish_ioend at
> /mnt/tests/kernel/distribution/upstream-kernel/install/kernel/fs/iomap/
> buffered-io.c:1153
>
> # ./scripts/faddr2line vmlinux iomap_finish_ioend+0x168
> iomap_finish_ioend+0x168/0x5c0:
> iomap_finish_ioend at
> /mnt/tests/kernel/distribution/upstream-kernel/install/kernel/fs/iomap/
> buffered-io.c:1133
>
> 1124 static void
> 1125 iomap_finish_ioend(struct iomap_ioend *ioend, int error)
> 1126 {
> 1127 struct inode *inode = ioend->io_inode;
> 1128 struct bio *bio = &ioend->io_inline_bio;
> 1129 struct bio *last = ioend->io_bio, *next;
> 1130 u64 start = bio->bi_iter.bi_sector;
> 1131 bool quiet = bio_flagged(bio, BIO_QUIET);
> 1132
> 1133 for (bio = &ioend->io_inline_bio; bio; bio = next) {
> 1134 struct bio_vec *bv;
> 1135 struct bvec_iter_all iter_all;
> 1136
> 1137 /*
> 1138 * For the last bio, bi_private points to the ioend,
> so we
> 1139 * need to explicitly end the iteration here.
> 1140 */
> 1141 if (bio == last)
> 1142 next = NULL;
> 1143 else
> 1144 next = bio->bi_private;
> 1145
> 1146 /* walk each page on bio, ending page IO on them */
> 1147 bio_for_each_segment_all(bv, bio, iter_all)
> 1148 iomap_finish_page_writeback(inode,
> bv->bv_page, error);
> 1149 bio_put(bio);
> 1150 }
> 1151
> 1152 if (unlikely(error && !quiet)) {
> 1153 printk_ratelimited(KERN_ERR
> 1154 "%s: writeback error on inode %lu, offset %lld, sector %llu",
> 1155 inode->i_sb->s_id, inode->i_ino,
> ioend->io_offset,
The bio_put(bio) might already free the bio. The ioend->io_offset is invalid.
I'll test by saving the offset in a local var at first. If it's the issue, I'll
try to send a patch.
> 1156 start);
> 1157 }
> 1158 }
--
You are receiving this mail because:
You are watching the assignee of the bug.
prev parent reply other threads:[~2019-12-04 15:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-29 11:47 [Bug 205703] New: [xfstests generic/461]: BUG: KASAN: use-after-free in iomap_finish_ioend+0x58c/0x5c0 bugzilla-daemon
2019-12-03 18:23 ` [Bug 205703] " bugzilla-daemon
2019-12-04 14:40 ` bugzilla-daemon
2019-12-04 15:37 ` bugzilla-daemon [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=bug-205703-201763-KsVb1jc664@https.bugzilla.kernel.org/ \
--to=bugzilla-daemon@bugzilla.kernel.org \
--cc=linux-xfs@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.