From: Dan Carpenter <dan.carpenter@oracle.com>
To: kernel-janitors@vger.kernel.org
Subject: puzzle for puzzle lovers
Date: Tue, 04 Oct 2011 07:26:31 +0000 [thread overview]
Message-ID: <20111004072631.GA18470@longonot.mountain> (raw)
Here is something that might amuse someone.
Smatch reports a read past the end of the array in rocket.c
drivers/tty/rocket.c +2168 init_ISA(77)
error: buffer overflow calling init_r_port. param 0. 7 >= 4
drivers/tty/rocket.c
657 init_completion(&info->close_wait);
658 info->flags &= ~ROCKET_MODE_MASK;
659 switch (pc104[board][line]) {
660 case 422:
661 info->flags |= ROCKET_MODE_RS422;
662 break;
pc104[] is a 4 element array.
board comes from for loop in rp_init().
2315 for (i = 0; i < NUM_BOARDS; i++) {
2316 if (init_ISA(i))
2317 isa_boards_found++;
2318 }
NUM_BOARDS is is 8, so according to Smatch "board" can be 7 and no
one knows what line is.
Weird huh?
But the code is ancient from before the git era so no one knows what
it's supposed to do. Unless you are clever enough to solve this
mystery.
This code gets run during init so presumably it got tested often
ten years ago and it works.
regards,
dan carpenter
next reply other threads:[~2011-10-04 7:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-04 7:26 Dan Carpenter [this message]
2011-10-04 16:16 ` FW: puzzle for puzzle lovers Grant Edwards
2011-10-04 16:55 ` Dan Carpenter
2011-10-04 17:14 ` Grant Edwards
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=20111004072631.GA18470@longonot.mountain \
--to=dan.carpenter@oracle.com \
--cc=kernel-janitors@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox