All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tao Xu <tao3.xu@intel.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: "mdroth@linux.vnet.ibm.com" <mdroth@linux.vnet.ibm.com>,
	"ehabkost@redhat.com" <ehabkost@redhat.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Subject: Re: [PATCH] util/cutils: Expand do_strtosz parsing precision to 64 bits
Date: Thu, 19 Dec 2019 15:43:56 +0800	[thread overview]
Message-ID: <d2e95d06-5328-dc48-30fa-a811a6371d4d@intel.com> (raw)
In-Reply-To: <87y2v9zdzv.fsf@dusky.pond.sub.org>

On 12/19/2019 2:26 AM, Markus Armbruster wrote:
> Tao Xu <tao3.xu@intel.com> writes:
> 
>> On 12/18/2019 9:33 AM, Tao Xu wrote:
>>> On 12/17/2019 6:25 PM, Markus Armbruster wrote:
> [...]
>>>> Also fun: for "0123", we use uint64_t 83, not double 123.0.  But for
>>>> "0123.", we use 123.0, not 83.
>>>>
>>>> Do we really want to accept octal and hexadecimal integers?
>>>>
>>>
>>> Thank you for reminding me. Octal and hexadecimal may bring more
>>> confusion. I will use qemu_strtou64(nptr, &suffixu, 10, &valu) and
>>> add test for input like "0123".
>>>
>>
>> Hi Markus,
>>
>> After I use qemu_strtou64(nptr, &suffixu, 10, &valu), it cause another
>> question. Because qemu_strtod_finite support hexadecimal input, so in
>> this situation, it will parsed as double. It will also let large
>> hexadecimal integers be rounded. So there may be two solution:
>>
>> 1: use qemu_strtou64(nptr, &suffixu, 0, &valu) and parse octal as
>> decimal. This will keep hexadecimal valid as now.
>>
>> "0123" --> 123; "0x123" --> 291
> 
> How would you make qemu_strtou64() parse octal as decimal?

How about this solution, set @base as variable, if we detect 
hexadecimal, we use 0, then can prase decimal as u64, else we use 10, 
then can prase octal as decimal, because 0 prefix will be ignored in 
qemu_strtou64(nptr, &suffixu, 10, &valu);

     const char *p = nptr;
     while (qemu_isspace(*p)) {
        p++;
     }
     if (*p == '0' && (qemu_toupper(*(p+1)) == 'X' ||) {
         base = 0;
     } else {
         base = 10;
     }

     retd = qemu_strtod_finite(nptr, &suffixd, &vald);
     retu = qemu_strtou64(nptr, &suffixu, base, &valu);
     use_strtod = strlen(suffixd) < strlen(suffixu);

     if (use_strtod) {
         endptr = suffixd;
         retval = retd;
     } else {
         endptr = suffixu;
         retval = retu;
     }
> 
>> 2: use qemu_strtou64(nptr, &suffixu, 10, &valu) and reject octal and
>> decimal.
>>
>> "0123" --> Error; "0x123" --> Error
> 
> How would you reject the 0x prefix?
> 
How about check the first&second character is '0' and 'x' and then 
return -EINVAL.


  reply	other threads:[~2019-12-19  7:44 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-05  2:14 [PATCH] util/cutils: Expand do_strtosz parsing precision to 64 bits Tao Xu
2019-12-05 15:29 ` Markus Armbruster
2019-12-09  5:38   ` Tao Xu
2019-12-17 10:25     ` Markus Armbruster
2019-12-18  1:33       ` Tao Xu
2019-12-18  5:26         ` Tao Xu
2019-12-18 18:26           ` Markus Armbruster
2019-12-19  7:43             ` Tao Xu [this message]
2019-12-19 10:15               ` Markus Armbruster
2019-12-18 21:49         ` Eric Blake
2019-12-17 12:04   ` Christophe de Dinechin
2019-12-17 14:08     ` Markus Armbruster
2019-12-17 14:12       ` Christophe de Dinechin
2019-12-17 15:01         ` Markus Armbruster
2019-12-18  2:29           ` Tao Xu

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=d2e95d06-5328-dc48-30fa-a811a6371d4d@intel.com \
    --to=tao3.xu@intel.com \
    --cc=armbru@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.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.