From: Amos Kong <akong@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: pbonzini@redhat.com, libvirt-list@redhat.com,
qemu-devel@nongnu.org, jyang@redhat.com, lcapitulino@redhat.com
Subject: Re: [Qemu-devel] [PATCH v4 2/2] query-command-line-options: query all the options in qemu-options.hx
Date: Thu, 27 Mar 2014 13:04:33 +0800 [thread overview]
Message-ID: <20140327050433.GC7531@amosk.info> (raw)
In-Reply-To: <87fvm55cex.fsf@blackfin.pond.sub.org>
On Wed, Mar 26, 2014 at 02:15:18PM +0100, Markus Armbruster wrote:
> Amos Kong <akong@redhat.com> writes:
>
> > On Fri, Mar 07, 2014 at 10:54:09AM +0100, Markus Armbruster wrote:
> >> Eric Blake <eblake@redhat.com> writes:
> >>
> >> > On 03/05/2014 07:36 PM, Amos Kong wrote:
> >> >> vm_config_groups[] only contains part of the options which have
> >> >> argument, and all options which have no argument aren't added
> >> >> to vm_config_groups[]. Current query-command-line-options only
> >> >> checks options from vm_config_groups[], so some options will
> >> >> be lost.
> >> >>
> >> >> We have macro in qemu-options.hx to generate a table that
> >> >> contains all the options. This patch tries to query options
> >> >> from the table.
> >> >>
> >> >> Then we won't lose the legacy options that weren't added to
> >> >> vm_config_groups[] (eg: -vnc, -smbios). The options that have
> >> >> no argument will also be returned (eg: -enable-fips)
> >> >>
> >> >> Some options that have argument have a NULL desc list, some
> >> >> options don't have argument, and "parameters" is mandatory
> >> >> in the past. So we add a new field "argument" to present
> >> >> if the option takes unspecified arguments.
> >> >
> >> > I like Markus' suggestion of naming the new field
> >> > 'unspecified-parameters' rather than 'argument'.
> >
> > Hi Markus,
> >
> >> Looking again, there are more problems.
> >>
> >> 1. Non-parameter argument vs. parameter argument taking unspecified
> >> parameters
> >>
> >> Example: -device takes unspecified parameters. -cdrom doesn't take
> >> parameters, it takes a file name. Yet, the command reports the same
> >> for both: "parameters": [], "argument": true.
> >>
> >> Looks like we need a tri-state: option takes no argument, QemuOpts
> >> argument, or other argument.
> >
> > '-cdrom' is the 'other argument' == 'Non-parameter argument'?
>
> Let me clarify my terminology:
>
> * A "parameter argument" is an option argument of the form KEY=VALUE,...
> Since parameter arguments should always be parsed with QemuOpts[*], I
> use the term "QemuOpts argument" interchangeably.
>
> * A "non-parameter argument" or "other argument" is an option argument
> that doesn't use this form.
>
> Does that answer your question?
Got it, thanks.
> > We can use a enum state.
>
> I'm not sure I got that.
>
> > | { 'enum': 'ArgumentStateType',
> > | 'data': ['no-argument', 'unspecified-parameters-argument',
> > | 'non-parameter-argument']
> > | }
{'enum': 'ArgumentStateType',
'data': ['no-argument', 'qemuopts-argument', 'non-param-argument']
}
no-argument: -enable-kvm
qemuopts-argument: -boot order=c,menu=on
non-param-argument: -cdrom file
I don't know if it's the tri-state you suggested in previous reply.
> > |
> > | { 'type': 'CommandLineOptionInfo',
> > | 'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'],
> > | '*argument-state': 'ArgumentStateType' } }
> >
> >> parameters is [] unless it's a QemuOpts argument. Then it lists the
> >> recognized parameters.
> >
> > How about balloon? we should treat as 'taking unspecified parameters'?
> >
> > "-balloon none disable balloon device\n"
> > "-balloon virtio[,addr=str]\n"
> >
> > I think we can only check this from help message in qemu-options.hx,
> > is it a stable/acceptable method?
>
> -balloon is yet another sugar option:
>
> * "-balloon none" does nothing. It could suppress a default balloon
> device, if such a thing existed.
>
> * "-balloon virtio,KEY=VALUE..." is sugar for "-device
> virtio-balloon,KEY=VALUE...". Keys other than "addr" are
> undocumented.
>
> The actual option argument parsing is ad hoc, not QemuOpts.
>
> I sure hope something like this would not pass review today.
>
> My advice to tools introspecting the command line is to avoid sugared
> options, unless the desugaring encapsulates something they don't want to
> know.
>
> > We introduce query-command-line-options command to avoid libvirt to
> > check qemu commandline information by scanning qemu's help message,
> > it's not strict & stable.
> >
> >> 2. Our dear friend -drive is more complicated than you might think
> >>
> >> We special-case it to report the union of drive_config_groups[],
> >> which contains qemu_legacy_drive_opts, qemu_common_drive_opts and
> >> qemu_drive_opts. The latter accepts unspecified parameters.
> >
> > I'm confused here. But there is only one option (-drive), we should
> > return merged desc table (legacy + common).
> >
> > Desc table of qemu_drive_opts is NULL, then -drive can also take
> > unspecified parameters?
>
> Yes: driver-specific parameters.
>
> -drive takes currently takes unspecified parameters (the driver-specific
> parameters) in addition to a number of specified parameters (the common
> and legacy parameters).
>
> >> I believe qemu_drive_opts is actually not used by the (complex!) code
> >> parsing the argument of -drive.
> >>
> >> Nevertheless, said code accepts more than just qemu_legacy_drive_opts
> >> and qemu_common_drive_opts, namely driver-specific parameters.
> >>
> >> Until we define those properly in a schema, I guess the best we can
> >> do is add one more case: option takes QemuOpts argument, but
> >> parameters is not exhaustive.
> >
> >
> > Thanks, Amos
>
>
> [*] Leftovers still parsed by other means, if any, should be converted
> to QemuOpts.
--
Amos.
next prev parent reply other threads:[~2014-03-27 5:04 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-06 2:36 [Qemu-devel] [PATCH v4 0/2] fix query-command-line-options Amos Kong
2014-03-06 2:36 ` [Qemu-devel] [PATCH v4 1/2] qmp: rename query_option_descs() to get_param_infolist() Amos Kong
2014-03-06 2:36 ` [Qemu-devel] [PATCH v4 2/2] query-command-line-options: query all the options in qemu-options.hx Amos Kong
2014-03-06 10:50 ` Markus Armbruster
2014-03-06 21:23 ` Eric Blake
2014-03-07 6:09 ` Amos Kong
2014-03-07 9:54 ` Markus Armbruster
2014-03-10 17:41 ` Eric Blake
2014-03-11 9:04 ` Markus Armbruster
2014-03-11 14:46 ` Eric Blake
2014-03-20 14:12 ` Amos Kong
2014-03-27 5:09 ` Amos Kong
2014-03-20 14:03 ` Amos Kong
2014-03-20 14:51 ` Amos Kong
2014-03-26 13:15 ` Markus Armbruster
2014-03-27 5:04 ` Amos Kong [this message]
2014-03-27 9:46 ` Markus Armbruster
2014-03-07 9:56 ` Markus Armbruster
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=20140327050433.GC7531@amosk.info \
--to=akong@redhat.com \
--cc=armbru@redhat.com \
--cc=jyang@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=libvirt-list@redhat.com \
--cc=pbonzini@redhat.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 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).