From: Thomas Huth <thuth@redhat.com>
To: "Collin L. Walling" <walling@linux.vnet.ibm.com>,
Eric Blake <eblake@redhat.com>,
qemu-s390x@nongnu.org, qemu-devel@nongnu.org
Cc: frankja@linux.vnet.ibm.com, cohuck@redhat.com, david@redhat.com,
alifm@linux.vnet.ibm.com, borntraeger@de.ibm.com
Subject: Re: [Qemu-devel] [qemu-s390x] [PATCH v4 04/10] s390-ccw: update libc
Date: Thu, 25 Jan 2018 13:06:52 +0100 [thread overview]
Message-ID: <24ede72f-bc12-0911-a5c6-5d38fac2c060@redhat.com> (raw)
In-Reply-To: <ded3d6a0-3432-368a-3964-6641c7fef3fe@linux.vnet.ibm.com>
On 23.01.2018 23:33, Collin L. Walling wrote:
> On 01/23/2018 02:23 PM, Eric Blake wrote:
>> On 01/23/2018 12:26 PM, Collin L. Walling wrote:
>>> [...]
>>> +/**
>>> + * atoi:
>>> + * @str: the string to be converted.
>>> + *
>>> + * Given a string @str, convert it to an integer. Leading whitespace is
>>> + * ignored. The first character (after any whitespace) is checked
>>> for the
>>> + * negative sign. Any other non-numerical value will terminate the
>>> + * conversion.
>>> + *
>>> + * Returns: an integer converted from the string @str.
>>> + */
>>> +int atoi(const char *str)
>>> +{
>>> + int val = 0;
>>> + int sign = 1;
>>> +
>>> + if (!str || !str[0]) {
>>> + return 0;
>>> + }
>>> +
>>> + while (*str == ' ') {
>>> + str++;
>>> + }
>> That's not "any whitespace", but only spaces. A fully compliant
>> implementation would be checking isspace(), but I don't expect you to
>> implement that; at a minimum, also checking '\t' would get you closer
>> (but not all the way to) compliance.
>
>
> I'll fix the comment to be more clear.
>
> I think it's okay to just have the menu code treat any other kind
> of whitespace as an error (it will check before calling atoi). I
> added support for negatives in bothfunctions because it was easy
> enough to do so and for the sakeof completeness.
>
> However, I worry trying to be 100% compliant will just bloat the
> code when we only need it for very specific use cases.
>
> Would you say what we have (along with the fix to itostr below) is
> sufficient enough?
IMHO the current way is good enough for a BIOS implementation. We're not
doing a full replacement of glibc here ;-)
>
>>
>>
>>> +static char *_itostr(int num, char *str, size_t len)
>>> +{
>>> + int num_idx = 0;
>>> + int tmp = num;
>>> + char sign = 0;
>>> +
>>> + if (!str) {
>>> + return NULL;
>>> + }
>>> +
>>> + /* Get index to ones place */
>>> + while ((tmp /= 10) != 0) {
>>> + num_idx++;
>>> + }
>>> +
>>> + if (num < 0) {
>>> + num *= -1;
>>> + sign = 1;
>>> + }
>> If num == INT_MIN, then num is still negative at this point...
>>
>>> +
>>> + /* Check if we have enough space for num, sign, and null */
>>> + if (len <= num_idx + sign + 1) {
>>> + return NULL;
>>> + }
>>> +
>>> + str[num_idx + sign + 1] = '\0';
>>> +
>>> + /* Convert int to string */
>>> + while (num_idx >= 0) {
>>> + str[num_idx + sign] = num % 10 + '0';
>> ...which breaks this.
>>
>> Either make it work, or document the corner case as unsupported.
>>
>
> Might as well just make it work at this point:
>
> #define INT32_MIN 0x80000000
>
> static char *itostr(int num, char *str, size_t len)
> {
> int num_idx = 0;
> int tmp = num;
> char sign = !!(num & INT32_MIN);
>
> if (!str) {
> return NULL;
> }
>
> /* Get index to ones place */
> while ((tmp /= 10) != 0) {
> num_idx++;
> }
>
> /* Check if we have enough space for num, sign, and null */
> if (len <= num_idx + sign + 1) {
> return NULL;
> }
>
> str[num_idx + sign + 1] = '\0';
>
> if (sign) {
> str[0] = '-';
> if (num == INT32_MIN) {
> str[num_idx + sign] = '8';
> num /= 10;
> num_idx--;
> }
> num *= -1;
> }
>
> /* Convert int to string */
> while (num_idx >= 0) {
> str[num_idx + sign] = num % 10 + '0';
> num /= 10;
> num_idx--;
> }
>
> return str;
> }
>
> Thoughts?
Looks fine to me. With that modification:
Reviewed-by: Thomas Huth <thuth@redhat.com>
next prev parent reply other threads:[~2018-01-25 12:07 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-23 18:26 [Qemu-devel] [PATCH v4 00/10] Interactive Boot Menu for DASD and SCSI Guests on s390x Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 01/10] s390-ccw: refactor boot map table code Collin L. Walling
2018-01-25 10:07 ` Thomas Huth
2018-01-25 14:54 ` [Qemu-devel] [qemu-s390x] " Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 02/10] s390-ccw: refactor eckd_block_num to use CHS Collin L. Walling
2018-01-25 11:06 ` Thomas Huth
2018-01-25 11:17 ` Cornelia Huck
2018-01-25 14:55 ` [Qemu-devel] [qemu-s390x] " Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 03/10] s390-ccw: refactor IPL structs Collin L. Walling
2018-01-25 11:39 ` Thomas Huth
2018-01-25 15:13 ` [Qemu-devel] [qemu-s390x] " Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 04/10] s390-ccw: update libc Collin L. Walling
2018-01-23 19:23 ` Eric Blake
2018-01-23 22:33 ` [Qemu-devel] [qemu-s390x] " Collin L. Walling
2018-01-25 12:06 ` Thomas Huth [this message]
2018-01-25 15:08 ` Eric Blake
2018-01-25 15:19 ` Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 05/10] s390-ccw: parse and set boot menu options Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 06/10] s390-ccw: set up interactive boot menu parameters Collin L. Walling
2018-01-25 13:12 ` Thomas Huth
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 07/10] s390-ccw: read stage2 boot loader data to find menu Collin L. Walling
2018-01-25 15:25 ` Thomas Huth
2018-01-25 15:49 ` [Qemu-devel] [qemu-s390x] " Collin L. Walling
2018-01-26 9:50 ` Thomas Huth
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 08/10] s390-ccw: print zipl boot menu Collin L. Walling
2018-01-25 15:46 ` Thomas Huth
2018-01-29 10:15 ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-01-29 14:27 ` Collin L. Walling
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 09/10] s390-ccw: read user input for boot index via the SCLP console Collin L. Walling
2018-01-26 10:44 ` Thomas Huth
2018-01-29 10:07 ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-01-29 10:11 ` David Hildenbrand
2018-01-29 15:16 ` Collin L. Walling
2018-01-29 13:08 ` David Hildenbrand
2018-01-29 14:38 ` Collin L. Walling
2018-01-29 15:17 ` David Hildenbrand
2018-01-23 18:26 ` [Qemu-devel] [PATCH v4 10/10] s390-ccw: interactive boot menu for scsi Collin L. Walling
2018-01-23 19:18 ` [Qemu-devel] [PATCH v4 00/10] Interactive Boot Menu for DASD and SCSI Guests on s390x Eric Blake
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=24ede72f-bc12-0911-a5c6-5d38fac2c060@redhat.com \
--to=thuth@redhat.com \
--cc=alifm@linux.vnet.ibm.com \
--cc=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=eblake@redhat.com \
--cc=frankja@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=walling@linux.vnet.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 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).