From: Yunseong Kim <yskelg@gmail.com>
To: Heiko Carstens <hca@linux.ibm.com>
Cc: Harald Freudenberger <freude@linux.ibm.com>,
Vasily Gorbik <gor@linux.ibm.com>,
Alexander Gordeev <agordeev@linux.ibm.com>,
Christian Borntraeger <borntraeger@linux.ibm.com>,
Sven Schnelle <svens@linux.ibm.com>,
Markus Elfring <Markus.Elfring@web.de>,
MichelleJin <shjy180909@gmail.com>,
linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] s390/raw3270: Handle memory allocation failures in raw3270_setup_console()
Date: Tue, 25 Jun 2024 16:44:47 +0900 [thread overview]
Message-ID: <c88ce35f-eca1-421a-a75b-e56fb6abfa06@gmail.com> (raw)
In-Reply-To: <20240625063139.9210-B-hca@linux.ibm.com>
Hi Heiko,
On 6/25/24 3:31 오후, Heiko Carstens wrote:
> On Tue, Jun 25, 2024 at 10:32:26AM +0900, yskelg@gmail.com wrote:
>> From: Yunseong Kim <yskelg@gmail.com>
>>
>> A null pointer is stored in a local variable after a call of the function
>> "kzalloc" failed. This pointer was passed to a subsequent call of the
>> function "raw3270_setup_device" where an undesirable dereference will be
>> performed then. Thus add corresponding return value checks.
>> The allocated each memory areas are immediately overwritten by the called
>> function zero-initialisation be omitted by calling the "kmalloc" instead.
>> After "ccw_device_enable_console" succeeds, set the bit raw3270 flag to
>> RAW3270_FLAGS_CONSOLE.
>>
>> Fixes: 33403dcfcdfd ("[S390] 3270 console: convert from bootmem to slab")
>> Cc: linux-s390@vger.kernel.org
>> Signed-off-by: Yunseong Kim <yskelg@gmail.com>
>> ---
>> drivers/s390/char/raw3270.c | 20 +++++++++++++++-----
>> 1 file changed, 15 insertions(+), 5 deletions(-)
> ...
>> rc = raw3270_setup_device(cdev, rp, ascebc);
>> - if (rc)
>> + if (rc) {
>> + kfree(ascebc);
>> + kfree(rp);
>> return ERR_PTR(rc);
>> - set_bit(RAW3270_FLAGS_CONSOLE, &rp->flags);
>> -
>> + }
>> rc = ccw_device_enable_console(cdev);
>> if (rc) {
>> ccw_device_destroy_console(cdev);
>> + kfree(ascebc);
>> + kfree(rp);
>> return ERR_PTR(rc);
>> }
>> + set_bit(RAW3270_FLAGS_CONSOLE, &rp->flags);
>
> Why did you move the set_bit() call?
Thank you for the code review Heiko.
While writing patch version 2, I spent a lot of time thinking about this
part. Previously, even if function "ccw_device_enable_console" failed,
the flag was set to RAW3270_FLAGS_CONSOLE and returned.
I think it would be more appropriate to set the bit after everything
succeeded, so I included and submitted this code in v2 patch.
I’d appreciate hearing your thoughts on this!
Warm regards,
Yunseong Kim
next prev parent reply other threads:[~2024-06-25 7:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 1:32 [PATCH v2] s390/raw3270: Handle memory allocation failures in raw3270_setup_console() yskelg
2024-06-25 6:31 ` Heiko Carstens
2024-06-25 7:44 ` Yunseong Kim [this message]
2024-06-25 9:39 ` Heiko Carstens
2024-06-25 8:12 ` Markus Elfring
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=c88ce35f-eca1-421a-a75b-e56fb6abfa06@gmail.com \
--to=yskelg@gmail.com \
--cc=Markus.Elfring@web.de \
--cc=agordeev@linux.ibm.com \
--cc=borntraeger@linux.ibm.com \
--cc=freude@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=shjy180909@gmail.com \
--cc=svens@linux.ibm.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 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.