All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>,
	Wei Liu <wei.liu2@citrix.com>,
	George Dunlap <George.Dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>, Tim Deegan <tim@xen.org>,
	xen-devel@lists.xenproject.org
Subject: Re: [PATCH v2 39/52] xen: check parameter validity when parsing command line
Date: Mon, 14 Aug 2017 15:31:16 +0200	[thread overview]
Message-ID: <a16f3797-0de7-23f9-e0a1-7c0315e82beb@suse.com> (raw)
In-Reply-To: <5991B7B8020000780016F5D0@suse.com>

On 14/08/17 14:46, Jan Beulich wrote:
>>>> On 14.08.17 at 09:08, <jgross@suse.com> wrote:
>> --- a/xen/common/kernel.c
>> +++ b/xen/common/kernel.c
>> @@ -23,9 +23,11 @@ enum system_state system_state = SYS_STATE_early_boot;
>>  xen_commandline_t saved_cmdline;
>>  static const char __initconst opt_builtin_cmdline[] = CONFIG_CMDLINE;
>>  
>> -static void __init assign_integer_param(
>> +static int __init assign_integer_param(
>>      const struct kernel_param *param, uint64_t val)
>>  {
>> +    unsigned int bits = param->len * BITS_PER_BYTE;
>> +
>>      switch ( param->len )
>>      {
>>      case sizeof(uint8_t):
>> @@ -43,14 +45,17 @@ static void __init assign_integer_param(
>>      default:
>>          BUG();
>>      }
>> +
>> +    return ( (val & (~0ULL << bits)) && ~(val | (~0ULL >> (65 - bits))) ) ?
> 
> The left part has undefined behavior when param->len == 8
> (and on x86 I'd expect it to produce just "val"). The right part
> I guess is meant to be a sign check, but that's rather obscure.

Hmm, okay.

> As iirc it is signed-to-unsigned conversion which has uniformly
> defined behavior it may end up being better for the parameter
> to be of signed type and to allow values in the range
> [<type>_MIN,U<type>_MAX]. Anything more precise would
> require signedness to be communicated from the *_param()
> users.

Okay, I'll have a try.

> Also - stray blanks inside the outermost parentheses.
> 
> And finally, wouldn't it be better to check for overflow _before_
> assigning to *param->var?

I didn't want to change existing behavior. OTOH thinking twice you are
right. Better using the default value than an unexpected small one.

> 
>> @@ -97,8 +102,9 @@ static void __init _cmdline_parse(const char *cmdline)
>>                       !strncmp(param->name, opt, q + 1 - opt) )
>>                  {
>>                      optval[-1] = '=';
>> -                    ((void (*)(const char *))param->var)(q);
>> +                    rc = ((int (*)(const char *))param->var)(q);
> 
> Neither here nor in the earlier "let custom parameter parsing
> routines return errno" nor in the overview you mention why this
> is safe - it is not a given that caller and callee disagreeing on
> return type is going to work. Just think of functions returning
> aggregates or (on ix86) ones returning floating point values in
> st(0).

I thought about using a union in struct kernel_param and removing
above type cast. This would require modifying the initialization of
the kernel_param struct via the *_param() macros, though.

The other possibility would be using __builtin_types_compatible_p()
to check the function to be of proper type.

What would you like best?

> 
>>                      optval[-1] = '\0';
>> +                    break;
> 
> Why? Applies to further break-s you add: At least in the past we
> had command line options with two handlers, where each of them
> needed to be invoked. I don't think we should make such impossible
> even if right now there aren't any such examples. Yet if you really
> mean to, then the behavioral change needs to be called out in the
> description.

I wasn't aware of such a usage.

I'm fine for both alternatives. As you seem to prefer to keep support
for multiple handlers I'll modify the patch to allow that.

>> @@ -106,24 +112,34 @@ static void __init _cmdline_parse(const char *cmdline)
>>              switch ( param->type )
>>              {
>>              case OPT_STR:
>> +                rc = 0;
>>                  strlcpy(param->var, optval, param->len);
>>                  break;
>>              case OPT_UINT:
>> -                assign_integer_param(
>> +                rc = assign_integer_param(
>>                      param,
>> -                    simple_strtoll(optval, NULL, 0));
>> +                    simple_strtoll(optval, &s, 0));
>> +                if ( *s )
>> +                    rc = -EINVAL;
>>                  break;
>>              case OPT_BOOL:
>> -                if ( !parse_bool(optval) )
>> +                rc = parse_bool(optval);
>> +                if ( rc == -1 )
> 
> Maybe "rc < 0"?

Okay.

> 
>> @@ -131,13 +147,21 @@ static void __init _cmdline_parse(const char *cmdline)
>>                      safe_strcpy(opt, "no");
>>                      optval = opt;
>>                  }
>> -                ((void (*)(const char *))param->var)(optval);
>> +                rc = ((int (*)(const char *))param->var)(optval);
>>                  break;
>>              default:
>>                  BUG();
>>                  break;
>>              }
>> +
>> +            break;
>>          }
>> +
>> +        if ( rc )
>> +            printk("parameter \"%s\" has invalid value \"%s\"!\n", optkey,
>> +                   optval);
> 
> With the changes made to optval in OPT_CUSTOM handling this
> may end up being confusing.

Oh yes, good catch.


Juergen


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  parent reply	other threads:[~2017-08-14 13:31 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-14  7:07 [PATCH v2 00/52] Support for modifying parameters at runtime Juergen Gross
2017-08-14  7:07 ` [PATCH v2 01/52] xen/arch/arm/acpi/boot.c: let custom parameter parsing routines return errno Juergen Gross
2017-08-14 14:26   ` Julien Grall
2017-08-14  7:07 ` [PATCH v2 02/52] xen/arch/arm/domain_build.c: " Juergen Gross
2017-08-14 14:27   ` Julien Grall
2017-08-14  7:08 ` [PATCH v2 03/52] xen/arch/arm/traps.c: " Juergen Gross
2017-08-14 14:28   ` Julien Grall
2017-08-14  7:08 ` [PATCH v2 04/52] xen/arch/x86/apic.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 05/52] xen/arch/x86/cpu/mcheck/mce.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 06/52] xen/arch/x86/cpu/vpmu.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 07/52] xen/arch/x86/dom0_build.c: " Juergen Gross
2017-08-14 13:24   ` Jan Beulich
     [not found]   ` <5991C099020000780016F637@suse.com>
2017-08-14 13:32     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 08/52] xen/arch/x86/genapic/probe.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 09/52] xen/arch/x86/hvm/viridian.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 10/52] xen/arch/x86/hvm/vmx/vmcs.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 11/52] xen/arch/x86/io_apic.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 12/52] xen/arch/x86/irq.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 13/52] xen/arch/x86/microcode.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 14/52] xen/arch/x86/mm.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 15/52] xen/arch/x86/nmi.c: " Juergen Gross
2017-08-14 13:31   ` Jan Beulich
     [not found]   ` <5991C244020000780016F64F@suse.com>
2017-08-14 13:33     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 16/52] xen/arch/x86/numa.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 17/52] xen/arch/x86/oprofile/nmi_int.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 18/52] xen/arch/x86/psr.c: " Juergen Gross
2017-08-14 13:35   ` Jan Beulich
     [not found]   ` <5991C34F020000780016F675@suse.com>
2017-08-14 14:25     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 19/52] xen/arch/x86/setup.c: " Juergen Gross
2017-08-14 13:37   ` Jan Beulich
     [not found]   ` <5991C3C8020000780016F678@suse.com>
2017-08-14 14:25     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 20/52] xen/arch/x86/shutdown.c: " Juergen Gross
2017-08-14 13:39   ` Jan Beulich
     [not found]   ` <5991C417020000780016F68E@suse.com>
2017-08-14 14:29     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 21/52] xen/arch/x86/time.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 22/52] xen/arch/x86/x86_64/mmconfig-shared.c: " Juergen Gross
2017-08-14 13:40   ` Jan Beulich
     [not found]   ` <5991C483020000780016F691@suse.com>
2017-08-14 14:30     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 23/52] xen/common/core_parking.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 24/52] xen/common/domain.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 25/52] xen/common/efi/boot.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 26/52] xen/common/kexec.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 27/52] xen/common/memory.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 28/52] xen/common/sched_credit2.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 29/52] xen/drivers/acpi/tables.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 30/52] xen/drivers/char/console.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 31/52] xen/drivers/cpufreq/cpufreq.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 32/52] xen/drivers/passthrough/amd/iommu_acpi.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 33/52] xen/drivers/passthrough/iommu.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 34/52] xen/drivers/passthrough/pci.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 35/52] xen/drivers/passthrough/vtd/dmar.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 36/52] xen/drivers/passthrough/vtd/quirks.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 37/52] xen/drivers/video/vesa.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 38/52] xen/xsm/flask/flask_op.c: " Juergen Gross
2017-08-14 14:55   ` Daniel De Graaf
2017-08-14  7:08 ` [PATCH v2 39/52] xen: check parameter validity when parsing command line Juergen Gross
2017-08-14 12:46   ` Jan Beulich
2017-08-15 12:54     ` Juergen Gross
2017-08-15 13:01       ` Jan Beulich
2017-08-15 14:56       ` Wei Liu
     [not found]   ` <5991B7B8020000780016F5D0@suse.com>
2017-08-14 13:31     ` Juergen Gross [this message]
2017-08-14 13:54       ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 40/52] xen/arch/x86/apic.c: remove custom_param() error messages Juergen Gross
2017-08-14 14:13   ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 41/52] xen/arch/x86/cpu/mcheck/mce.c: " Juergen Gross
2017-08-14 14:13   ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 42/52] xen/arch/x86/hvm/viridian.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 43/52] xen/arch/x86/io_apic.c: " Juergen Gross
2017-08-14 14:14   ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 44/52] xen/common/kexec.c: " Juergen Gross
2017-08-14  8:39   ` Jan Beulich
     [not found]   ` <59917DF4020000780016F346@suse.com>
2017-08-14  9:07     ` Juergen Gross
2017-08-14  9:11       ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 45/52] xen/common/sched_credit2.c: " Juergen Gross
2017-08-14  7:08 ` [PATCH v2 46/52] xen: carve out a generic parsing function from _cmdline_parse() Juergen Gross
2017-08-15 15:13   ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 47/52] xen: add basic support for runtime parameter changing Juergen Gross
2017-08-15 12:07   ` Wei Liu
2017-08-15 15:31   ` Jan Beulich
     [not found]   ` <59932FF8020000780016FFB1@suse.com>
2017-08-15 16:04     ` Juergen Gross
2017-08-14  7:08 ` [PATCH v2 48/52] xen: add hypercall for setting parameters at runtime Juergen Gross
2017-08-14 14:56   ` Daniel De Graaf
2017-08-15 15:39   ` Jan Beulich
     [not found]   ` <599331DE020000780016FFCD@suse.com>
2017-08-15 15:57     ` Juergen Gross
2017-08-15 16:03       ` Jan Beulich
2017-08-14  7:08 ` [PATCH v2 49/52] libxc: add function to set hypervisor parameters Juergen Gross
2017-08-14  7:08 ` [PATCH v2 50/52] libxl: add libxl_set_parameters() function Juergen Gross
2017-08-14  7:08 ` [PATCH v2 51/52] xl: add new xl command set-parameters Juergen Gross
2017-08-14  7:08 ` [PATCH v2 52/52] xen: make some console related parameters settable at runtime Juergen Gross
2017-08-15 15:45   ` Jan Beulich
     [not found]   ` <5993331E020000780016FFE3@suse.com>
2017-08-15 15:52     ` Juergen Gross
2017-08-15 15:59       ` Jan Beulich
     [not found]       ` <5993367E0200007800170016@suse.com>
2017-08-15 16:10         ` Juergen Gross
2017-08-14 13:50 ` [PATCH v2 00/52] Support for modifying parameters " Jan Beulich

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=a16f3797-0de7-23f9-e0a1-7c0315e82beb@suse.com \
    --to=jgross@suse.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=JBeulich@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xenproject.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.