domaincommon.rng 178.9 KB
Newer Older
1 2 3 4
<?xml version="1.0"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
  <!-- domain-related definitions used in multiple grammars -->
  <include href='basictypes.rng'/>
5
  <include href='storagecommon.rng'/>
6
  <include href='networkcommon.rng'/>
7
  <include href='cputypes.rng'/>
8
  <include href='nwfilter_params.rng'/>
9 10

  <!--
11
    description and title element, may be placed anywhere under the root
12 13 14 15 16 17 18
    -->
  <define name="description">
    <element name="description">
      <text/>
    </element>
  </define>

19 20 21 22 23 24 25 26 27 28
  <define name="title">
    <element name="title">
      <data type="string">
        <!-- Use literal newline instead of \n for bug in libxml2 2.7.6 -->
        <param name="pattern">[^
]+</param>
      </data>
    </element>
  </define>

29 30 31 32 33 34 35
  <!--
      We handle only document defining a domain
    -->
  <define name="domain">
    <element name="domain">
      <ref name="hvs"/>
      <interleave>
36
        <ref name="ids"/>
37 38 39
        <optional>
          <ref name="title"/>
        </optional>
40 41 42
        <optional>
          <ref name="description"/>
        </optional>
43 44 45
        <optional>
          <ref name="metadata"/>
        </optional>
46 47 48 49 50 51 52 53 54 55
        <optional>
          <ref name="cpu"/>
        </optional>
        <optional>
          <ref name="sysinfo"/>
        </optional>
        <ref name="os"/>
        <ref name="clock"/>
        <ref name="resources"/>
        <ref name="features"/>
56
        <ref name="events"/>
57 58 59
        <optional>
          <ref name="pm"/>
        </optional>
Q
Qiaowei Ren 已提交
60 61 62
        <optional>
          <ref name="perf"/>
        </optional>
63 64 65
        <optional>
          <ref name="idmap"/>
        </optional>
66 67 68
        <optional>
          <ref name="devices"/>
        </optional>
69
        <zeroOrMore>
70
          <ref name="seclabel"/>
71
        </zeroOrMore>
72 73 74
        <optional>
          <ref name='qemucmdline'/>
        </optional>
75 76 77
        <optional>
          <ref name='qemucapabilities'/>
        </optional>
I
ik.nitk 已提交
78 79 80
        <optional>
          <ref name='lxcsharens'/>
        </optional>
81 82 83
        <optional>
          <ref name='keywrap'/>
        </optional>
84
        <optional>
85
          <ref name='launchSecurity'/>
86
        </optional>
87 88 89
        <optional>
          <ref name='bhyvecmdline'/>
        </optional>
90 91 92 93 94
      </interleave>
    </element>
  </define>
  <define name="seclabel">
    <element name="seclabel">
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
      <optional>
        <attribute name='model'>
          <text/>
        </attribute>
      </optional>
      <choice>
        <group>
          <!-- with dynamic label (default), relabel must be yes, baselabel
               is optional, and label and imagelabel are output-only -->
          <optional>
            <attribute name='type'>
              <value>dynamic</value>
            </attribute>
          </optional>
          <optional>
            <attribute name='relabel'>
              <value>yes</value>
            </attribute>
          </optional>
          <interleave>
            <optional>
              <element name='label'>
                <text/>
              </element>
            </optional>
            <optional>
              <element name='imagelabel'>
                <text/>
              </element>
            </optional>
            <optional>
              <element name='baselabel'>
                <text/>
              </element>
            </optional>
          </interleave>
        </group>
        <group>
          <!-- with static label, relabel can be either format (default
               no), label is required, imagelabel is output-only, and no
               baselabel is present -->
          <attribute name='type'>
            <value>static</value>
          </attribute>
          <optional>
            <attribute name='relabel'>
141
              <ref name="virYesNo"/>
142 143 144 145 146 147 148 149 150 151 152 153 154
            </attribute>
          </optional>
          <interleave>
            <element name='label'>
              <text/>
            </element>
            <optional>
              <element name='imagelabel'>
                <text/>
              </element>
            </optional>
          </interleave>
        </group>
155
        <group>
E
Eric Blake 已提交
156
          <!-- with none, relabel must be no if present -->
157 158 159
          <attribute name='type'>
            <value>none</value>
          </attribute>
E
Eric Blake 已提交
160 161 162 163 164
          <optional>
            <attribute name='relabel'>
              <value>no</value>
            </attribute>
          </optional>
165
        </group>
166
      </choice>
167 168
    </element>
  </define>
169 170 171
  <define name="devSeclabel">
    <element name="seclabel">
      <!-- A per-device seclabel override is more limited, either
172 173 174 175 176 177 178
           relabel=no or a <label> must be present on input;
           output also can include labelskip=yes.  -->
      <optional>
        <attribute name='model'>
          <text/>
        </attribute>
      </optional>
179 180
      <choice>
        <group>
181 182 183 184 185
          <attribute name='relabel'>
            <value>no</value>
          </attribute>
        </group>
        <group>
186 187 188 189 190
          <attribute name='labelskip'>
            <value>yes</value>
          </attribute>
        </group>
        <group>
191 192 193 194 195
          <optional>
            <attribute name='relabel'>
              <value>yes</value>
            </attribute>
          </optional>
196
          <oneOrMore>
197 198 199
            <element name='label'>
              <text/>
            </element>
200
          </oneOrMore>
201 202 203 204
        </group>
      </choice>
    </element>
  </define>
205 206 207 208
  <define name="hvs">
    <attribute name="type">
      <choice>
        <value>qemu</value>
209 210 211
        <value>kqemu</value>
        <value>kvm</value>
        <value>xen</value>
212
        <value>lxc</value>
M
Michal Privoznik 已提交
213
        <value>uml</value> <!-- NOT USED ANYMORE -->
214 215
        <value>openvz</value>
        <value>test</value>
216 217 218
        <value>vmware</value>
        <value>hyperv</value>
        <value>vbox</value>
C
Cole Robinson 已提交
219
        <value>phyp</value> <!-- NOT USED ANYMORE -->
220
        <value>vz</value>
221
        <value>bhyve</value>
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
      </choice>
    </attribute>
  </define>
  <define name="os">
    <choice>
      <ref name="osxen"/>
      <ref name="oshvm"/>
      <ref name="osexe"/>
    </choice>
  </define>
  <define name="osxen">
    <choice>
      <group>
        <optional>
          <ref name="bootloader"/>
        </optional>
        <element name="os">
          <ref name="ostypexen"/>
          <ref name="osbootkernel"/>
        </element>
      </group>
      <group>
        <ref name="bootloader"/>
        <optional>
          <element name="os">
            <ref name="ostypexen"/>
            <optional>
              <ref name="osbootkernel"/>
            </optional>
          </element>
        </optional>
      </group>
    </choice>
  </define>
  <define name="oshvm">
257 258 259
    <optional>
      <ref name="bootloader"/>
    </optional>
260 261
    <element name="os">
      <interleave>
262 263 264 265 266 267 268 269
        <optional>
          <attribute name="firmware">
            <choice>
              <value>bios</value>
              <value>efi</value>
            </choice>
          </attribute>
        </optional>
270
        <ref name="ostypehvm"/>
271 272
        <optional>
          <element name="loader">
273 274 275 276 277 278 279 280
            <optional>
              <attribute name="readonly">
                <choice>
                  <value>yes</value>
                  <value>no</value>
                </choice>
              </attribute>
            </optional>
281 282 283 284 285 286 287 288
            <optional>
              <attribute name="secure">
                <choice>
                  <value>yes</value>
                  <value>no</value>
                </choice>
              </attribute>
            </optional>
289 290 291 292 293 294 295 296
            <optional>
              <attribute name="type">
                <choice>
                  <value>rom</value>
                  <value>pflash</value>
                </choice>
              </attribute>
            </optional>
297 298 299
            <optional>
              <ref name="absFilePath"/>
            </optional>
300 301 302 303
          </element>
        </optional>
        <optional>
          <element name="nvram">
304 305 306 307 308 309 310 311
            <optional>
              <attribute name="template">
                <ref name="absFilePath"/>
              </attribute>
            </optional>
            <optional>
              <ref name="absFilePath"/>
            </optional>
312 313
          </element>
        </optional>
O
Osier Yang 已提交
314
        <optional>
315
          <ref name="osbootkernel"/>
O
Osier Yang 已提交
316
        </optional>
317 318 319
        <zeroOrMore>
          <ref name="osbootdev"/>
        </zeroOrMore>
320 321 322
        <optional>
          <element name="bootmenu">
            <attribute name="enable">
323
              <ref name="virYesNo"/>
324
            </attribute>
325 326 327 328 329
            <optional>
              <attribute name="timeout">
                <ref name="unsignedShort"/>
              </attribute>
            </optional>
330 331 332 333 334 335 336 337
          </element>
        </optional>
        <optional>
          <ref name="smbios"/>
        </optional>
        <optional>
          <ref name="bios"/>
        </optional>
J
Ján Tomko 已提交
338 339 340
        <optional>
          <ref name="acpiTable"/>
        </optional>
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
      </interleave>
    </element>
  </define>
  <define name="ostypexen">
    <element name="type">
      <optional>
        <attribute name="arch">
          <choice>
            <value>i686</value>
            <value>x86_64</value>
            <value>ia64</value>
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="machine">
          <choice>
            <value>xenpv</value>
359
            <value>xenfv</value>
360
            <value>xenpvh</value>
361 362 363 364 365 366
          </choice>
        </attribute>
      </optional>
      <choice>
        <value>xen</value>
        <value>linux</value>
367
        <value>xenpvh</value>
368 369 370 371 372 373
      </choice>
    </element>
  </define>
  <define name="ostypehvm">
    <element name="type">
      <optional>
374 375 376
        <attribute name="arch">
          <ref name="archnames"/>
        </attribute>
377 378 379 380 381 382 383 384
      </optional>
      <optional>
        <attribute name="machine">
          <data type="string">
            <param name="pattern">[a-zA-Z0-9_\.\-]+</param>
          </data>
        </attribute>
      </optional>
385 386
      <value>hvm</value>
    </element>
387
  </define>
388

389 390 391
  <define name="osexe">
    <element name="os">
      <element name="type">
392
        <optional>
393 394 395
          <attribute name="arch">
            <ref name="archnames"/>
          </attribute>
396
        </optional>
397 398 399 400 401 402 403 404
        <value>exe</value>
      </element>
      <interleave>
        <optional>
          <element name="init">
            <ref name="absFilePath"/>
          </element>
        </optional>
405 406 407 408 409
        <zeroOrMore>
          <element name="initarg">
            <text/>
          </element>
        </zeroOrMore>
410 411 412 413 414 415 416 417 418 419
        <zeroOrMore>
          <element name="initenv">
            <attribute name="name">
              <data type='string'>
                <param name='pattern'>[a-zA-Z_]+[a-zA-Z0-9_]*</param>
              </data>
            </attribute>
            <text/>
          </element>
        </zeroOrMore>
420 421 422 423 424
        <optional>
          <element name="initdir">
            <ref name="absFilePath"/>
          </element>
        </optional>
425 426 427 428 429 430 431 432 433 434 435 436 437 438
        <optional>
          <element name="inituser">
            <choice>
              <ref name="unsignedInt"/>
              <ref name="genericName"/>
            </choice>
          </element>
          <element name="initgroup">
            <choice>
              <ref name="unsignedInt"/>
              <ref name="genericName"/>
            </choice>
          </element>
        </optional>
439 440 441
      </interleave>
    </element>
  </define>
442

443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
  <define name="keywrap">
    <element name="keywrap">
      <oneOrMore>
        <element name="cipher">
          <attribute name="name">
            <choice>
              <value>aes</value>
              <value>dea</value>
            </choice>
          </attribute>
          <attribute name="state">
            <ref name='virOnOff'/>
          </attribute>
        </element>
      </oneOrMore>
    </element>
Q
Qiaowei Ren 已提交
459 460
  </define>

461 462
  <define name="launchSecurity">
    <element name="launchSecurity">
463 464 465 466 467 468 469
      <attribute name="type">
        <value>sev</value>
      </attribute>
      <interleave>
        <element name="cbitpos">
          <data type='unsignedInt'/>
        </element>
470
        <element name="reducedPhysBits">
471 472 473 474 475 476 477 478 479 480 481
          <data type='unsignedInt'/>
        </element>
        <element name="policy">
          <ref name='hexuint'/>
        </element>
        <optional>
          <element name="handle">
            <ref name='unsignedInt'/>
          </element>
        </optional>
        <optional>
482
          <element name="dhCert">
483 484 485 486 487 488 489 490 491 492 493 494
            <data type="string"/>
          </element>
        </optional>
        <optional>
          <element name="session">
            <data type="string"/>
          </element>
        </optional>
      </interleave>
    </element>
  </define>

Q
Qiaowei Ren 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508
  <!--
      Enable or disable perf events for the domain. For each
      of the events the following rules apply:
      on: the event will be forcefully enabled
      off: the event will be forcefully disabled
      not specified: the event will be disabled by default
  -->
  <define name="perf">
    <element name="perf">
      <oneOrMore>
        <element name="event">
          <attribute name="name">
            <choice>
              <value>cmt</value>
509 510
              <value>mbmt</value>
              <value>mbml</value>
Q
Qiaowei Ren 已提交
511 512 513 514
              <value>cpu_cycles</value>
              <value>instructions</value>
              <value>cache_references</value>
              <value>cache_misses</value>
515
              <value>branch_instructions</value>
516
              <value>branch_misses</value>
517
              <value>bus_cycles</value>
518
              <value>stalled_cycles_frontend</value>
519
              <value>stalled_cycles_backend</value>
520
              <value>ref_cpu_cycles</value>
521
              <value>cpu_clock</value>
522
              <value>task_clock</value>
523
              <value>page_faults</value>
524
              <value>context_switches</value>
525
              <value>cpu_migrations</value>
526
              <value>page_faults_min</value>
527
              <value>page_faults_maj</value>
528
              <value>alignment_faults</value>
529
              <value>emulation_faults</value>
Q
Qiaowei Ren 已提交
530 531 532 533 534 535 536 537
            </choice>
          </attribute>
          <attribute name="enabled">
            <ref name="virYesNo"/>
          </attribute>
        </element>
      </oneOrMore>
    </element>
538 539
  </define>

540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
  <!--
      The Identifiers can be:
      - an optional id attribute with a number on the domain element
      - a mandatory name
      - an optional uuid
    -->
  <define name="ids">
    <optional>
      <attribute name="id">
        <ref name="unsignedInt"/>
      </attribute>
    </optional>
    <interleave>
      <element name="name">
        <ref name="domainName"/>
      </element>
      <optional>
        <element name="uuid">
          <ref name="UUID"/>
        </element>
      </optional>
561 562 563 564 565 566 567 568
      <optional>
        <element name="genid">
          <choice>
            <ref name="UUID"/>
            <empty/>
          </choice>
        </element>
      </optional>
569 570
    </interleave>
  </define>
571
  <define name="idmap">
E
Eric Blake 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
    <element name="idmap">
      <interleave>
        <zeroOrMore>
          <element name="uid">
            <attribute name="start">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="target">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="count">
              <ref name="unsignedInt"/>
            </attribute>
            <empty/>
          </element>
        </zeroOrMore>
        <zeroOrMore>
          <element name="gid">
            <attribute name="start">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="target">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="count">
              <ref name="unsignedInt"/>
            </attribute>
M
Michal Privoznik 已提交
599
            <empty/>
E
Eric Blake 已提交
600 601 602 603
          </element>
        </zeroOrMore>
      </interleave>
    </element>
604
  </define>
605 606 607 608 609 610 611
  <!--
      Resources usage defines the amount of memory (maximum and possibly
      current usage) and number of virtual CPUs used by that domain.
      We can't check here the rule that currentMemory <= memory
    -->
  <define name="resources">
    <interleave>
612 613 614 615 616 617 618 619 620 621
      <optional>
        <element name="memory">
          <ref name='scaledInteger'/>
          <optional>
            <attribute name="dumpCore">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
        </element>
      </optional>
622 623 624 625 626 627 628 629
      <optional>
        <element name="maxMemory">
          <ref name="scaledInteger"/>
          <attribute name="slots">
            <ref name="unsignedInt"/>
          </attribute>
        </element>
      </optional>
630 631
      <optional>
        <element name="currentMemory">
E
Eric Blake 已提交
632
          <ref name='scaledInteger'/>
633 634 635 636
        </element>
      </optional>
      <optional>
        <element name="memoryBacking">
637 638 639
          <interleave>
            <optional>
              <element name="hugepages">
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
                <zeroOrMore>
                  <element name="page">
                    <attribute name="size">
                      <ref name="unsignedLong"/>
                    </attribute>
                    <optional>
                      <attribute name='unit'>
                        <ref name='unit'/>
                      </attribute>
                    </optional>
                    <optional>
                      <attribute name="nodeset">
                        <ref name='cpuset'/>
                      </attribute>
                    </optional>
                    <empty/>
                  </element>
                </zeroOrMore>
658 659 660 661 662 663 664
              </element>
            </optional>
            <optional>
              <element name="nosharepages">
                <empty/>
              </element>
            </optional>
665 666 667 668 669
            <optional>
              <element name="locked">
                <empty/>
              </element>
            </optional>
670 671 672 673 674 675
            <optional>
              <element name="source">
                <attribute name="type">
                  <choice>
                    <value>file</value>
                    <value>anonymous</value>
M
Marc-André Lureau 已提交
676
                    <value>memfd</value>
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
                  </choice>
                </attribute>
              </element>
            </optional>
            <optional>
              <element name="access">
                <attribute name="mode">
                  <choice>
                    <value>shared</value>
                    <value>private</value>
                  </choice>
                </attribute>
              </element>
            </optional>
            <optional>
              <element name="allocation">
                <attribute name="mode">
                  <choice>
                    <value>immediate</value>
                    <value>ondemand</value>
                  </choice>
                </attribute>
              </element>
            </optional>
701 702 703 704 705
            <optional>
              <element name="discard">
                <empty/>
              </element>
            </optional>
706
          </interleave>
707 708 709 710 711
        </element>
      </optional>

      <optional>
        <element name="vcpu">
O
Osier Yang 已提交
712 713 714 715 716 717 718 719
          <optional>
            <attribute name="placement">
              <choice>
                <value>static</value>
                <value>auto</value>
              </choice>
            </attribute>
          </optional>
720 721 722 723 724 725 726 727 728 729 730 731 732 733
          <optional>
            <attribute name="cpuset">
              <ref name="cpuset"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="current">
              <ref name="countCPU"/>
            </attribute>
          </optional>
          <ref name="countCPU"/>
        </element>
      </optional>

734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
      <optional>
        <element name="vcpus">
          <zeroOrMore>
            <element name="vcpu">
              <attribute name="id">
                <ref name="unsignedInt"/>
              </attribute>
              <attribute name="enabled">
                <ref name="virYesNo"/>
              </attribute>
              <optional>
                <attribute name="hotpluggable">
                  <ref name="virYesNo"/>
                </attribute>
              </optional>
              <optional>
                <attribute name="order">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
            </element>
          </zeroOrMore>
        </element>
      </optional>

759 760 761 762 763 764
      <optional>
        <element name="iothreads">
          <ref name="unsignedInt"/>
        </element>
      </optional>

765 766 767 768 769 770 771 772 773 774 775 776
      <optional>
        <element name="iothreadids">
          <zeroOrMore>
            <element name="iothread">
              <attribute name="id">
                <ref name="unsignedInt"/>
              </attribute>
            </element>
          </zeroOrMore>
        </element>
      </optional>

777
      <optional>
778 779 780 781 782 783 784 785 786 787 788 789 790 791
        <ref name="blkiotune"/>
      </optional>

      <optional>
        <ref name="memtune"/>
      </optional>

      <optional>
        <ref name="cputune"/>
      </optional>

      <optional>
        <ref name="numatune"/>
      </optional>
792 793 794 795

      <optional>
        <ref name="respartition"/>
      </optional>
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
    </interleave>
  </define>

  <!-- The Blkio cgroup related tunables would go in the blkiotune -->
  <define name="blkiotune">
    <element name="blkiotune">
      <interleave>
        <!-- I/O weight the VM can use -->
        <optional>
          <element name="weight">
            <ref name="weight"/>
          </element>
        </optional>
        <zeroOrMore>
          <element name="device">
            <interleave>
              <element name="path">
                <ref name="absFilePath"/>
              </element>
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
              <optional>
                <element name="weight">
                  <ref name="weight"/>
                </element>
              </optional>
              <optional>
                <element name="read_iops_sec">
                  <data type='unsignedInt'/>
                </element>
              </optional>
              <optional>
                <element name="write_iops_sec">
                  <data type='unsignedInt'/>
                </element>
              </optional>
              <optional>
                <element name="read_bytes_sec">
                  <data type='unsignedLong'/>
                </element>
              </optional>
              <optional>
                <element name="write_bytes_sec">
                  <data type='unsignedLong'/>
                </element>
              </optional>
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
            </interleave>
          </element>
        </zeroOrMore>
      </interleave>
    </element>
  </define>

  <!-- All the memory/swap related tunables would go in the memtune -->
  <define name="memtune">
    <element name="memtune">
      <!-- Maximum memory the VM can use -->
      <optional>
        <element name="hard_limit">
          <ref name='scaledInteger'/>
        </element>
      </optional>
      <!-- Minimum memory ascertained for the VM during contention -->
      <optional>
        <element name="soft_limit">
          <ref name='scaledInteger'/>
        </element>
      </optional>
      <!-- Minimum amount of memory required to start the VM -->
      <optional>
        <element name="min_guarantee">
          <ref name='scaledInteger'/>
        </element>
      </optional>
      <!-- Maximum swap area the VM can use -->
      <optional>
        <element name="swap_hard_limit">
          <ref name='scaledInteger'/>
        </element>
      </optional>
    </element>
  </define>

  <!-- All the cpu related tunables would go in the cputune -->
  <define name="cputune">
    <element name="cputune">
E
Eric Blake 已提交
880 881 882 883 884 885
      <interleave>
        <optional>
          <element name="shares">
            <ref name="cpushares"/>
          </element>
        </optional>
886 887 888 889 890
        <optional>
          <element name="global_period">
            <ref name="cpuperiod"/>
          </element>
        </optional>
891 892 893 894 895
        <optional>
          <element name="global_quota">
            <ref name="cpuquota"/>
          </element>
        </optional>
E
Eric Blake 已提交
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
        <optional>
          <element name="period">
            <ref name="cpuperiod"/>
          </element>
        </optional>
        <optional>
          <element name="quota">
            <ref name="cpuquota"/>
          </element>
        </optional>
        <optional>
          <element name="emulator_period">
            <ref name="cpuperiod"/>
          </element>
        </optional>
        <optional>
          <element name="emulator_quota">
            <ref name="cpuquota"/>
          </element>
        </optional>
916 917 918 919 920 921 922 923 924 925
        <optional>
          <element name="iothread_period">
            <ref name="cpuperiod"/>
          </element>
        </optional>
        <optional>
          <element name="iothread_quota">
            <ref name="cpuquota"/>
          </element>
        </optional>
E
Eric Blake 已提交
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
        <zeroOrMore>
          <element name="vcpupin">
            <attribute name="vcpu">
              <ref name="vcpuid"/>
            </attribute>
            <attribute name="cpuset">
              <ref name="cpuset"/>
            </attribute>
          </element>
        </zeroOrMore>
        <optional>
          <element name="emulatorpin">
            <attribute name="cpuset">
              <ref name="cpuset"/>
            </attribute>
          </element>
        </optional>
        <zeroOrMore>
          <element name="iothreadpin">
            <attribute name="iothread">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="cpuset">
              <ref name="cpuset"/>
            </attribute>
          </element>
        </zeroOrMore>
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
        <zeroOrMore>
          <element name="vcpusched">
            <optional>
              <attribute name="vcpus">
                <ref name='cpuset'/>
              </attribute>
            </optional>
            <ref name="schedparam"/>
          </element>
        </zeroOrMore>
        <zeroOrMore>
          <element name="iothreadsched">
            <optional>
              <attribute name="iothreads">
                <ref name='cpuset'/>
              </attribute>
            </optional>
            <ref name="schedparam"/>
          </element>
        </zeroOrMore>
973 974 975 976 977
        <optional>
          <element name="emulatorsched">
            <ref name="schedparam"/>
          </element>
        </optional>
978 979 980 981 982
        <zeroOrMore>
          <element name="cachetune">
            <attribute name="vcpus">
              <ref name='cpuset'/>
            </attribute>
983 984 985 986 987
            <oneOrMore>
              <choice>
                <element name="cache">
                  <attribute name="id">
                    <ref name='unsignedInt'/>
988
                  </attribute>
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
                  <attribute name="level">
                    <ref name='unsignedInt'/>
                  </attribute>
                  <attribute name="type">
                    <choice>
                      <value>both</value>
                      <value>code</value>
                      <value>data</value>
                    </choice>
                  </attribute>
                  <attribute name="size">
                    <ref name='unsignedLong'/>
                  </attribute>
                  <optional>
                    <attribute name='unit'>
                      <ref name='unit'/>
                    </attribute>
                  </optional>
                </element>
                <element name="monitor">
                  <attribute name="level">
                    <ref name='unsignedInt'/>
                  </attribute>
                  <attribute name="vcpus">
                    <ref name='cpuset'/>
                  </attribute>
                </element>
              </choice>
            </oneOrMore>
1018 1019
          </element>
        </zeroOrMore>
1020 1021 1022 1023 1024 1025
        <zeroOrMore>
          <element name="memorytune">
            <attribute name="vcpus">
              <ref name='cpuset'/>
            </attribute>
            <oneOrMore>
H
Huaqiang 已提交
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
              <choice>
                <element name="node">
                  <attribute name="id">
                    <ref name='unsignedInt'/>
                  </attribute>
                  <attribute name="bandwidth">
                    <ref name='unsignedInt'/>
                  </attribute>
                </element>
                <element name="monitor">
                  <attribute name="vcpus">
                    <ref name='cpuset'/>
                  </attribute>
                </element>
              </choice>
1041 1042 1043
            </oneOrMore>
          </element>
        </zeroOrMore>
E
Eric Blake 已提交
1044
      </interleave>
1045 1046
    </element>
  </define>
1047

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
  <define name="schedparam">
    <choice>
      <group>
        <attribute name="scheduler">
          <choice>
            <value>batch</value>
            <value>idle</value>
          </choice>
        </attribute>
      </group>
      <group>
        <attribute name="scheduler">
          <choice>
            <value>fifo</value>
            <value>rr</value>
          </choice>
        </attribute>
        <attribute name="priority">
          <ref name="unsignedShort"/>
        </attribute>
      </group>
    </choice>
  </define>

1072 1073 1074
  <!-- All the NUMA related tunables would go in the numatune -->
  <define name="numatune">
    <element name="numatune">
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
      <interleave>
        <optional>
          <element name="memory">
            <optional>
              <attribute name="mode">
                <choice>
                  <value>strict</value>
                  <value>preferred</value>
                  <value>interleave</value>
                </choice>
              </attribute>
            </optional>
            <choice>
              <group>
                <optional>
                  <attribute name='placement'>
                    <value>static</value>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='nodeset'>
                    <ref name='cpuset'/>
                  </attribute>
                </optional>
              </group>
              <attribute name='placement'>
                <value>auto</value>
              </attribute>
            </choice>
          </element>
        </optional>
        <zeroOrMore>
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
          <element name="memnode">
            <attribute name="cellid">
              <ref name="unsignedInt"/>
            </attribute>
            <attribute name="mode">
              <choice>
                <value>strict</value>
                <value>preferred</value>
                <value>interleave</value>
              </choice>
            </attribute>
            <attribute name='nodeset'>
              <ref name='cpuset'/>
            </attribute>
          </element>
1122 1123
        </zeroOrMore>
      </interleave>
1124
    </element>
1125
  </define>
1126

1127 1128 1129 1130 1131 1132 1133 1134
  <define name="respartition">
    <element name="resource">
      <element name="partition">
        <ref name="absFilePath"/>
      </element>
    </element>
  </define>

1135 1136 1137 1138
  <define name="clock">
    <optional>
      <element name="clock">
        <choice>
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
          <group>
            <attribute name="offset">
              <choice>
                <value>localtime</value>
                <value>utc</value>
              </choice>
            </attribute>
            <optional>
              <attribute name='adjustment'>
                <choice>
                  <ref name='timeDelta'/>
                  <value>reset</value>
                </choice>
              </attribute>
            </optional>
          </group>
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
          <group>
            <attribute name="offset">
              <value>timezone</value>
            </attribute>
            <optional>
              <attribute name="timezone">
                <ref name="timeZone"/>
              </attribute>
            </optional>
          </group>
          <group>
            <attribute name="offset">
              <value>variable</value>
            </attribute>
            <optional>
              <attribute name="adjustment">
                <ref name="timeDelta"/>
              </attribute>
            </optional>
1174 1175 1176 1177 1178 1179 1180 1181
            <optional>
              <attribute name="basis">
                <choice>
                  <value>utc</value>
                  <value>localtime</value>
                </choice>
              </attribute>
            </optional>
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
          </group>
        </choice>
        <zeroOrMore>
          <ref name="timer"/>
        </zeroOrMore>
      </element>
    </optional>
  </define>
  <define name="timer">
    <element name="timer">
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
      <choice>
        <group>
          <attribute name="name">
            <choice>
              <value>platform</value>
              <value>rtc</value>
            </choice>
          </attribute>
          <optional>
            <attribute name="track">
              <choice>
                <value>boot</value>
                <value>guest</value>
                <value>wall</value>
              </choice>
            </attribute>
          </optional>
          <optional>
            <ref name="tickpolicy"/>
          </optional>
        </group>
        <group>
          <attribute name="name">
            <value>tsc</value>
          </attribute>
          <optional>
            <ref name="tickpolicy"/>
          </optional>
          <optional>
            <attribute name="frequency">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="mode">
              <choice>
                <value>auto</value>
                <value>native</value>
                <value>emulate</value>
                <value>paravirt</value>
                <value>smpsafe</value>
              </choice>
            </attribute>
          </optional>
        </group>
        <group>
          <attribute name="name">
            <choice>
              <value>hpet</value>
              <value>pit</value>
1242
              <value>armvtimer</value>
1243 1244 1245 1246 1247 1248 1249 1250
            </choice>
          </attribute>
          <optional>
            <ref name="tickpolicy"/>
          </optional>
        </group>
        <group>
          <attribute name="name">
1251 1252 1253 1254
            <choice>
              <value>kvmclock</value>
              <value>hypervclock</value>
            </choice>
1255 1256 1257
          </attribute>
        </group>
      </choice>
1258 1259
      <optional>
        <attribute name="present">
1260
          <ref name="virYesNo"/>
1261 1262 1263 1264 1265
        </attribute>
      </optional>
      <empty/>
    </element>
  </define>
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275

  <define name="tickpolicy">
    <choice>
      <group>
        <attribute name="tickpolicy">
          <choice>
            <value>delay</value>
            <value>merge</value>
            <value>discard</value>
          </choice>
1276
        </attribute>
1277 1278 1279 1280
      </group>
      <group>
        <attribute name="tickpolicy">
          <value>catchup</value>
1281
        </attribute>
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
        <optional>
          <element name="catchup">
            <optional>
              <attribute name="threshold">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="slew">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="limit">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </element>
        </optional>
      </group>
    </choice>
1303 1304 1305 1306 1307 1308 1309 1310
  </define>
<!--
      A bootloader may be used to extract the OS information instead of
      defining the OS parameter in the instance. It points just to the
      binary or script used to extract the data from the first disk device.
    -->
  <define name="bootloader">
    <interleave>
1311 1312 1313
      <optional>
        <element name="bootloader">
          <choice>
1314
            <text/>
1315 1316 1317 1318
            <empty/>
          </choice>
        </element>
      </optional>
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
      <optional>
        <element name="bootloader_args">
          <text/>
        </element>
      </optional>
    </interleave>
  </define>
  <define name="osbootkernel">
    <interleave>
      <optional>
        <element name="kernel">
          <ref name="absFilePath"/>
        </element>
      </optional>
      <optional>
        <element name="initrd">
          <ref name="absFilePath"/>
        </element>
      </optional>
      <optional>
        <element name="root">
          <ref name="absFilePath"/>
        </element>
      </optional>
      <optional>
        <element name="cmdline">
          <text/>
        </element>
      </optional>
1348 1349 1350 1351 1352
      <optional>
        <element name="dtb">
          <ref name="absFilePath"/>
        </element>
      </optional>
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
    </interleave>
  </define>
  <define name="osbootdev">
    <element name="boot">
      <attribute name="dev">
        <choice>
          <value>hd</value>
          <value>fd</value>
          <value>cdrom</value>
          <value>network</value>
        </choice>
      </attribute>
      <empty/>
    </element>
  </define>
  <define name="diskspec">
L
Lei Li 已提交
1369 1370
    <interleave>
      <optional>
1371
        <ref name="diskDriver"/>
L
Lei Li 已提交
1372
      </optional>
1373 1374 1375
      <optional>
        <ref name='diskMirror'/>
      </optional>
L
Lei Li 已提交
1376 1377 1378 1379 1380 1381 1382
      <optional>
        <ref name="diskAuth"/>
      </optional>
      <ref name="target"/>
      <optional>
        <ref name="deviceBoot"/>
      </optional>
1383 1384 1385 1386 1387 1388 1389 1390
      <optional>
        <element name="backenddomain">
          <attribute name="name">
            <ref name="domainName"/>
          </attribute>
          <empty/>
        </element>
      </optional>
L
Lei Li 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
      <optional>
        <element name="readonly">
          <empty/>
        </element>
      </optional>
      <optional>
        <element name="shareable">
          <empty/>
        </element>
      </optional>
      <optional>
        <element name="transient">
          <empty/>
        </element>
      </optional>
      <optional>
        <element name="serial">
          <ref name="diskSerial"/>
        </element>
      </optional>
      <optional>
        <ref name="encryption"/>
      </optional>
      <optional>
        <ref name="diskIoTune"/>
      </optional>
1417 1418 1419
      <optional>
        <ref name="alias"/>
      </optional>
L
Lei Li 已提交
1420 1421 1422
      <optional>
        <ref name="address"/>
      </optional>
J
J.B. Joret 已提交
1423 1424 1425
      <optional>
        <ref name="geometry"/>
      </optional>
1426
      <optional>
V
Viktor Mihajlovski 已提交
1427
        <ref name="diskBlockIo"/>
1428
      </optional>
O
Osier Yang 已提交
1429 1430 1431 1432 1433
      <optional>
        <element name="wwn">
          <ref name="wwn"/>
        </element>
      </optional>
1434 1435 1436
      <optional>
        <element name="vendor">
          <data type="string">
1437 1438
            <!-- All printable characters -->
            <param name="pattern">[&#x20;-&#x7E;]{0,8}</param>
1439 1440 1441 1442 1443 1444
          </data>
        </element>
      </optional>
      <optional>
        <element name="product">
          <data type="string">
1445 1446
            <!-- All printable characters -->
            <param name="pattern">[&#x20;-&#x7E;]{0,16}</param>
1447 1448 1449
          </data>
        </element>
      </optional>
L
Lei Li 已提交
1450
    </interleave>
1451
  </define>
1452 1453 1454 1455 1456 1457 1458 1459 1460
  <define name="snapshot">
    <attribute name="snapshot">
      <choice>
        <value>no</value>
        <value>internal</value>
        <value>external</value>
      </choice>
    </attribute>
  </define>
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483

  <define name="lease">
    <element name="lease">
      <interleave>
        <element name="lockspace">
          <text/>
        </element>
        <element name="key">
          <text/>
        </element>
        <element name="target">
          <attribute name="path">
            <text/>
          </attribute>
          <optional>
            <attribute name="offset">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
        </element>
      </interleave>
    </element>
  </define>
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494

  <define name="startupPolicy">
    <attribute name="startupPolicy">
      <choice>
        <value>mandatory</value>
        <value>requisite</value>
        <value>optional</value>
      </choice>
    </attribute>
  </define>

1495 1496 1497 1498 1499 1500 1501
  <!--
      A disk description can be either of type file or block
      The name of the attribute on the source element depends on the type

    -->
  <define name="disk">
    <element name="disk">
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
      <choice>
        <group>
          <optional>
            <attribute name="device">
              <choice>
                <value>floppy</value>
                <value>disk</value>
                <value>cdrom</value>
              </choice>
            </attribute>
          </optional>
1513 1514 1515 1516
          <interleave>
            <ref name="diskSource"/>
            <ref name="diskSpecsExtra"/>
          </interleave>
1517 1518 1519
        </group>
        <group>
          <attribute name="device">
1520
            <value>lun</value>
1521 1522
          </attribute>
          <optional>
1523
            <ref name="rawIO"/>
1524 1525
          </optional>
          <optional>
1526
            <ref name="sgIO"/>
1527
          </optional>
1528 1529 1530 1531
          <interleave>
            <choice>
              <ref name="diskSourceNetwork"/>
              <ref name="diskSourceBlock"/>
1532
              <ref name="diskSourceVolume"/>
1533 1534 1535
            </choice>
            <ref name="diskSpecsExtra"/>
          </interleave>
1536 1537
        </group>
      </choice>
1538 1539 1540 1541 1542 1543 1544 1545 1546
      <optional>
        <attribute name="model">
          <choice>
            <value>virtio</value>
            <value>virtio-transitional</value>
            <value>virtio-non-transitional</value>
          </choice>
        </attribute>
      </optional>
1547 1548 1549
      <optional>
        <ref name="snapshot"/>
      </optional>
1550 1551 1552
    </element>
  </define>

1553 1554 1555 1556 1557 1558 1559
  <define name="diskSpecsExtra">
    <interleave>
      <ref name="storageSourceExtra"/>
      <ref name="diskBackingChain"/>
    </interleave>
  </define>

1560 1561 1562 1563 1564 1565 1566 1567 1568
  <define name="diskBackingChain">
    <choice>
      <ref name="diskBackingStore"/>
      <ref name="diskBackingStoreLast"/>
    </choice>
  </define>

  <define name="diskBackingStore">
    <element name="backingStore">
1569 1570 1571 1572 1573
      <optional>
        <attribute name="index">
          <ref name="positiveInteger"/>
        </attribute>
      </optional>
1574 1575 1576 1577 1578
      <interleave>
        <ref name="diskSource"/>
        <ref name="diskBackingChain"/>
        <ref name="diskFormat"/>
      </interleave>
1579 1580 1581
    </element>
  </define>

1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
  <define name="diskFormat">
    <element name="format">
      <attribute name="type">
        <ref name="storageFormat"/>
      </attribute>
      <empty/>
    </element>
  </define>

  <define name="diskBackingStoreLast">
    <optional>
      <element name="backingStore">
        <empty/>
      </element>
    </optional>
  </define>

1599 1600 1601 1602 1603 1604 1605 1606 1607
  <define name="diskSourceSlice">
    <attribute name='offset'>
      <ref name="positiveInteger"/>
    </attribute>
    <attribute name='size'>
      <ref name="positiveInteger"/>
    </attribute>
  </define>

1608 1609 1610 1611 1612 1613
  <define name="diskSourceCommon">
    <optional>
      <attribute name="index">
        <ref name="positiveInteger"/>
      </attribute>
    </optional>
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
    <optional>
      <element name='slices'>
        <element name='slice'>
          <attribute name='type'>
            <value>storage</value>
          </attribute>
          <ref name="diskSourceSlice"/>
        </element>
      </element>
    </optional>
1624 1625
  </define>

1626 1627 1628 1629 1630 1631 1632
  <define name="diskSource">
    <choice>
      <ref name="diskSourceFile"/>
      <ref name="diskSourceBlock"/>
      <ref name="diskSourceDir"/>
      <ref name="diskSourceNetwork"/>
      <ref name="diskSourceVolume"/>
1633
      <ref name="diskSourceNvme"/>
1634 1635 1636 1637 1638 1639 1640 1641 1642
    </choice>
  </define>

  <define name="diskSourceFile">
    <optional>
      <attribute name="type">
        <value>file</value>
      </attribute>
    </optional>
1643 1644 1645 1646 1647 1648 1649
    <optional>
      <element name="source">
        <optional>
          <attribute name="file">
            <ref name="absFilePath"/>
          </attribute>
        </optional>
1650
        <ref name="diskSourceCommon"/>
1651 1652 1653
        <optional>
          <ref name="storageStartupPolicy"/>
        </optional>
1654 1655 1656
        <optional>
          <ref name="encryption"/>
        </optional>
1657 1658 1659 1660 1661
        <zeroOrMore>
          <ref name='devSeclabel'/>
        </zeroOrMore>
      </element>
    </optional>
1662 1663 1664 1665 1666 1667
  </define>

  <define name="diskSourceBlock">
    <attribute name="type">
      <value>block</value>
    </attribute>
1668 1669 1670 1671 1672 1673 1674
    <optional>
      <element name="source">
        <optional>
          <attribute name="dev">
            <ref name="absFilePath"/>
          </attribute>
        </optional>
1675
        <ref name="diskSourceCommon"/>
1676 1677 1678
        <optional>
          <ref name="storageStartupPolicy"/>
        </optional>
1679 1680 1681
        <optional>
          <ref name="encryption"/>
        </optional>
1682 1683 1684
        <optional>
          <ref name="reservations"/>
        </optional>
1685 1686 1687 1688 1689
        <zeroOrMore>
          <ref name='devSeclabel'/>
        </zeroOrMore>
      </element>
    </optional>
1690 1691 1692 1693 1694 1695
  </define>

  <define name="diskSourceDir">
    <attribute name="type">
      <value>dir</value>
    </attribute>
1696 1697 1698 1699 1700
    <optional>
      <element name="source">
        <attribute name="dir">
          <ref name="absFilePath"/>
        </attribute>
1701
        <ref name="diskSourceCommon"/>
1702 1703 1704
        <optional>
          <ref name="storageStartupPolicy"/>
        </optional>
1705 1706 1707
        <optional>
          <ref name="encryption"/>
        </optional>
1708 1709 1710
        <empty/>
      </element>
    </optional>
1711 1712
  </define>

1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
  <define name="diskSourceNetworkHost">
    <element name="host">
      <choice>
        <group>
          <optional>
            <attribute name="transport">
              <choice>
                <value>tcp</value>
                <value>rdma</value>
              </choice>
            </attribute>
          </optional>
          <attribute name="name">
            <choice>
              <ref name="dnsName"/>
              <ref name="ipAddr"/>
            </choice>
          </attribute>
          <optional>
            <attribute name="port">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
        </group>
        <group>
          <attribute name="transport">
            <value>unix</value>
          </attribute>
          <attribute name="socket">
            <ref name="absFilePath"/>
          </attribute>
        </group>
      </choice>
    </element>
  </define>

1749
  <define name="diskSourceNetworkProtocolRBD">
1750 1751
    <element name="source">
      <interleave>
1752
        <attribute name="protocol">
M
Michal Privoznik 已提交
1753
          <value>rbd</value>
1754
        </attribute>
1755
        <ref name="diskSourceCommon"/>
1756 1757 1758 1759
        <optional>
          <attribute name="name"/>
        </optional>
        <zeroOrMore>
1760
          <ref name="diskSourceNetworkHost"/>
1761
        </zeroOrMore>
1762 1763 1764 1765 1766 1767 1768 1769
        <optional>
          <element name="snapshot">
            <attribute name="name">
              <ref name="genericName"/>
            </attribute>
            <empty/>
          </element>
        </optional>
1770 1771 1772 1773 1774 1775 1776 1777
        <optional>
          <element name="config">
            <attribute name="file">
              <ref name="absFilePath"/>
            </attribute>
            <empty/>
          </element>
        </optional>
1778 1779 1780
        <optional>
          <ref name="diskAuth"/>
        </optional>
1781 1782 1783
        <optional>
          <ref name="encryption"/>
        </optional>
1784
        <empty/>
1785 1786
      </interleave>
    </element>
1787
  </define>
1788

1789 1790 1791 1792 1793 1794
  <define name="diskSourceNetworkProtocolISCSI">
    <element name="source">
      <attribute name="protocol">
        <value>iscsi</value>
      </attribute>
      <attribute name="name"/>
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
      <interleave>
        <ref name="diskSourceCommon"/>
        <ref name="diskSourceNetworkHost"/>
        <optional>
          <ref name="diskAuth"/>
        </optional>
        <optional>
          <ref name="encryption"/>
        </optional>
        <optional>
          <ref name="initiatorinfo"/>
        </optional>
      </interleave>
1808 1809 1810
    </element>
  </define>

1811 1812 1813 1814 1815 1816 1817 1818 1819
  <define name="diskSourceNetworkProtocolHTTP">
    <element name="source">
      <attribute name="protocol">
        <choice>
          <value>http</value>
          <value>https</value>
        </choice>
      </attribute>
      <attribute name="name"/>
1820
      <ref name="diskSourceCommon"/>
1821
      <ref name="diskSourceNetworkHost"/>
1822 1823 1824
      <optional>
        <ref name="encryption"/>
      </optional>
1825 1826 1827
    </element>
  </define>

1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
  <define name="diskSourceNetworkProtocolSimple">
    <element name="source">
      <attribute name="protocol">
        <choice>
          <value>sheepdog</value>
          <value>ftp</value>
          <value>ftps</value>
          <value>tftp</value>
        </choice>
      </attribute>
      <attribute name="name"/>
1839
      <ref name="diskSourceCommon"/>
1840
      <ref name="diskSourceNetworkHost"/>
1841 1842 1843
      <optional>
        <ref name="encryption"/>
      </optional>
1844 1845 1846
    </element>
  </define>

1847
  <define name="diskSourceNetworkProtocolNBD">
1848
    <element name="source">
1849
      <attribute name="protocol">
M
Michal Privoznik 已提交
1850
        <value>nbd</value>
1851 1852 1853 1854
      </attribute>
      <optional>
        <attribute name="name"/>
      </optional>
1855 1856 1857 1858 1859
      <optional>
        <attribute name="tls">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
1860
      <ref name="diskSourceCommon"/>
1861
      <ref name="diskSourceNetworkHost"/>
1862 1863 1864
      <optional>
        <ref name="encryption"/>
      </optional>
1865 1866 1867 1868 1869 1870
    </element>
  </define>

  <define name="diskSourceNetworkProtocolGluster">
    <element name="source">
      <attribute name="protocol">
M
Michal Privoznik 已提交
1871
        <value>gluster</value>
1872 1873
      </attribute>
      <attribute name="name"/>
1874
      <ref name="diskSourceCommon"/>
1875 1876 1877
      <oneOrMore>
        <ref name="diskSourceNetworkHost"/>
      </oneOrMore>
1878 1879 1880
      <optional>
        <ref name="encryption"/>
      </optional>
1881 1882 1883
    </element>
  </define>

1884 1885 1886 1887 1888 1889 1890 1891
  <define name="diskSourceNetworkProtocolVxHS">
    <element name="source">
      <attribute name="protocol">
        <choice>
          <value>vxhs</value>
        </choice>
      </attribute>
      <attribute name="name"/>
1892
      <ref name="diskSourceCommon"/>
1893 1894 1895 1896 1897
      <optional>
        <attribute name="tls">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
1898 1899 1900 1901
      <ref name="diskSourceNetworkHost"/>
    </element>
  </define>

1902 1903 1904 1905 1906
  <define name="diskSourceNetwork">
    <attribute name="type">
      <value>network</value>
    </attribute>
    <choice>
1907 1908
      <ref name="diskSourceNetworkProtocolNBD"/>
      <ref name="diskSourceNetworkProtocolGluster"/>
1909
      <ref name="diskSourceNetworkProtocolRBD"/>
1910
      <ref name="diskSourceNetworkProtocolISCSI"/>
1911
      <ref name="diskSourceNetworkProtocolHTTP"/>
1912
      <ref name="diskSourceNetworkProtocolSimple"/>
1913
      <ref name="diskSourceNetworkProtocolVxHS"/>
1914 1915 1916
    </choice>
  </define>

1917 1918 1919
  <define name="diskSourceVolume">
    <attribute name="type">
      <value>volume</value>
1920
    </attribute>
1921 1922 1923
    <optional>
      <element name="source">
        <attribute name="pool">
1924
          <ref name="poolName"/>
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
        </attribute>
        <attribute name="volume">
          <ref name="volName"/>
        </attribute>
        <optional>
          <attribute name="mode">
            <choice>
              <value>host</value>
              <value>direct</value>
            </choice>
1935
          </attribute>
1936
        </optional>
1937
        <ref name="diskSourceCommon"/>
1938 1939 1940
        <optional>
          <ref name="storageStartupPolicy"/>
        </optional>
1941 1942 1943
        <optional>
          <ref name="encryption"/>
        </optional>
1944 1945 1946 1947 1948
        <zeroOrMore>
          <ref name='devSeclabel'/>
        </zeroOrMore>
      </element>
    </optional>
1949
  </define>
1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980

  <define name="diskSourceNvme">
    <attribute name="type">
      <value>nvme</value>
    </attribute>
    <optional>
      <element name="source">
        <attribute name="type">
          <value>pci</value>
        </attribute>
        <attribute name="namespace">
          <ref name="uint32"/>
        </attribute>
        <optional>
          <attribute name="managed">
            <ref name="virYesNo"/>
          </attribute>
        </optional>
        <element name="address">
          <ref name="pciaddress"/>
        </element>
        <ref name="diskSourceCommon"/>
        <optional>
          <ref name="storageStartupPolicy"/>
        </optional>
        <optional>
          <ref name="encryption"/>
        </optional>
      </element>
    </optional>
  </define>
1981

1982 1983 1984 1985 1986
  <define name="diskTarget">
    <data type="string">
      <param name="pattern">(ioemu:)?(fd|hd|sd|vd|xvd|ubd)[a-zA-Z0-9_]+</param>
    </data>
  </define>
1987 1988 1989
  <define name="target">
    <element name="target">
      <attribute name="dev">
1990
        <ref name="diskTarget"/>
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
      </attribute>
      <optional>
        <attribute name="bus">
          <choice>
            <value>ide</value>
            <value>fdc</value>
            <value>scsi</value>
            <value>virtio</value>
            <value>xen</value>
            <value>usb</value>
M
Michal Privoznik 已提交
2001
            <value>uml</value> <!-- NOT USED ANYMORE -->
J
Jim Fehlig 已提交
2002
            <value>sata</value>
2003
            <value>sd</value>
2004 2005 2006
          </choice>
        </attribute>
      </optional>
2007 2008 2009 2010 2011 2012 2013 2014
      <optional>
        <attribute name="tray">
          <choice>
            <value>open</value>
            <value>closed</value>
          </choice>
        </attribute>
      </optional>
2015 2016
      <optional>
        <attribute name="removable">
2017
          <ref name="virOnOff"/>
2018 2019
        </attribute>
      </optional>
2020 2021
    </element>
  </define>
J
J.B. Joret 已提交
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
  <define name="geometry">
    <element name="geometry">
      <attribute name="cyls">
        <data type="integer"/>
      </attribute>
      <attribute name="heads">
        <data type="integer"/>
      </attribute>
      <attribute name="secs">
        <data type="integer"/>
      </attribute>
      <optional>
        <attribute name="trans">
          <choice>
            <value>auto</value>
            <value>none</value>
            <value>lba</value>
          </choice>
        </attribute>
      </optional>
    </element>
  </define>
V
Viktor Mihajlovski 已提交
2044 2045
  <define name="diskBlockIo">
    <element name="blockio">
2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
      <optional>
        <attribute name="logical_block_size">
          <data type="integer"/>
        </attribute>
      </optional>
      <optional>
        <attribute name="physical_block_size">
          <data type="integer"/>
        </attribute>
      </optional>
    </element>
  </define>
2058
  <!--
2059
      Disk may use a special driver for access.
2060
    -->
2061
  <define name="diskDriver">
2062
    <element name="driver">
2063 2064 2065 2066 2067 2068
      <optional>
        <ref name="driverFormat"/>
      </optional>
      <optional>
        <ref name="driverCache"/>
      </optional>
2069 2070 2071
      <optional>
        <ref name="driverErrorPolicy"/>
      </optional>
2072 2073 2074
      <optional>
        <ref name="driverRerrorPolicy"/>
      </optional>
2075 2076 2077 2078 2079 2080 2081 2082 2083
      <optional>
        <ref name="driverIO"/>
      </optional>
      <optional>
        <ref name="ioeventfd"/>
      </optional>
      <optional>
        <ref name="event_idx"/>
      </optional>
O
Osier Yang 已提交
2084 2085 2086
      <optional>
        <ref name="copy_on_read"/>
      </optional>
O
Osier Yang 已提交
2087 2088 2089
      <optional>
        <ref name="discard"/>
      </optional>
2090 2091 2092
      <optional>
        <ref name="driverIOThread"/>
      </optional>
2093 2094 2095
      <optional>
        <ref name="detect_zeroes"/>
      </optional>
L
Lin Ma 已提交
2096 2097 2098 2099 2100
      <optional>
        <attribute name='queues'>
          <ref name="positiveInteger"/>
        </attribute>
      </optional>
J
Ján Tomko 已提交
2101
      <ref name="virtioOptions"/>
2102 2103 2104 2105
      <empty/>
    </element>
  </define>
  <define name="driverFormat">
2106 2107 2108 2109 2110
    <optional>
      <attribute name="name">
        <ref name="genericName"/>
      </attribute>
    </optional>
2111
    <optional>
2112 2113
      <attribute name='type'>
        <choice>
2114
          <ref name='storageFormat'/>
2115 2116
          <value>aio</value> <!-- back-compat for 'raw' -->
        </choice>
2117 2118 2119
      </attribute>
    </optional>
  </define>
2120

2121 2122 2123
  <define name="driverCache">
    <attribute name="cache">
      <choice>
2124
        <value>default</value>
2125 2126 2127 2128
        <value>none</value>
        <value>writeback</value>
        <value>writethrough</value>
        <value>directsync</value>
2129
        <value>unsafe</value>
2130 2131 2132 2133 2134 2135 2136
      </choice>
    </attribute>
  </define>
  <define name="driverErrorPolicy">
    <attribute name="error_policy">
      <choice>
        <value>stop</value>
2137
        <value>report</value>
2138 2139 2140 2141 2142
        <value>ignore</value>
        <value>enospace</value>
      </choice>
    </attribute>
  </define>
2143 2144 2145 2146 2147 2148 2149 2150 2151
  <define name="driverRerrorPolicy">
    <attribute name="rerror_policy">
      <choice>
        <value>stop</value>
        <value>report</value>
        <value>ignore</value>
      </choice>
    </attribute>
  </define>
2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
  <define name="driverIO">
    <attribute name="io">
      <choice>
        <value>threads</value>
        <value>native</value>
      </choice>
    </attribute>
  </define>
  <define name="ioeventfd">
    <attribute name="ioeventfd">
2162
      <ref name="virOnOff"/>
2163 2164 2165 2166
    </attribute>
  </define>
  <define name="event_idx">
    <attribute name="event_idx">
2167
      <ref name="virOnOff"/>
2168 2169
    </attribute>
  </define>
O
Osier Yang 已提交
2170 2171
  <define name="copy_on_read">
    <attribute name='copy_on_read'>
2172
      <ref name="virOnOff"/>
O
Osier Yang 已提交
2173
    </attribute>
M
Michal Privoznik 已提交
2174
  </define>
O
Osier Yang 已提交
2175 2176 2177
  <define name="discard">
    <attribute name='discard'>
      <choice>
O
Osier Yang 已提交
2178 2179
        <value>unmap</value>
        <value>ignore</value>
O
Osier Yang 已提交
2180 2181
      </choice>
    </attribute>
O
Osier Yang 已提交
2182
  </define>
2183 2184 2185 2186 2187
  <define name="driverIOThread">
    <attribute name='iothread'>
      <ref name="unsignedInt"/>
    </attribute>
  </define>
2188 2189 2190 2191 2192 2193 2194 2195 2196
  <define name="detect_zeroes">
    <attribute name='detect_zeroes'>
      <choice>
        <value>off</value>
        <value>on</value>
        <value>unmap</value>
      </choice>
    </attribute>
  </define>
2197 2198
  <define name="controller">
    <element name="controller">
2199 2200 2201 2202 2203
      <optional>
        <attribute name="index">
          <ref name="unsignedInt"/>
        </attribute>
      </optional>
2204 2205 2206 2207 2208 2209 2210 2211
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <choice>
2212
          <!-- fdc/sata/ccid have only the common attributes -->
2213
          <group>
2214 2215 2216 2217 2218 2219 2220
            <attribute name="type">
              <choice>
                <value>fdc</value>
                <value>sata</value>
                <value>ccid</value>
              </choice>
            </attribute>
2221 2222 2223 2224 2225
          </group>
          <!-- scsi has an optional attribute "model" -->
          <group>
            <attribute name="type">
              <value>scsi</value>
2226
            </attribute>
2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
            <optional>
              <attribute name="model">
                <choice>
                  <value>auto</value>
                  <value>buslogic</value>
                  <value>lsilogic</value>
                  <value>lsisas1068</value>
                  <value>vmpvscsi</value>
                  <value>ibmvscsi</value>
                  <value>virtio-scsi</value>
                  <value>lsisas1078</value>
2238 2239
                  <value>virtio-transitional</value>
                  <value>virtio-non-transitional</value>
2240 2241 2242 2243
                </choice>
              </attribute>
            </optional>
          </group>
2244 2245
          <!-- usb has an optional attribute "model",
               and optional subelements "master" and "ports" -->
2246 2247 2248
          <group>
            <attribute name="type">
              <value>usb</value>
2249
            </attribute>
2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
            <optional>
              <attribute name="model">
                <choice>
                  <value>piix3-uhci</value>
                  <value>piix4-uhci</value>
                  <value>ehci</value>
                  <value>ich9-ehci1</value>
                  <value>ich9-uhci1</value>
                  <value>ich9-uhci2</value>
                  <value>ich9-uhci3</value>
                  <value>vt82c686b-uhci</value>
                  <value>pci-ohci</value>
                  <value>nec-xhci</value>
                  <value>none</value>
2264 2265
                  <value>qusb1</value>
                  <value>qusb2</value>
2266
                  <value>qemu-xhci</value>
2267 2268 2269 2270 2271 2272
                </choice>
              </attribute>
            </optional>
            <optional>
              <ref name="usbmaster"/>
            </optional>
2273 2274 2275 2276 2277
            <optional>
              <attribute name="ports">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
2278
          </group>
2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293
          <!-- ide has an optional attribute "model" -->
          <group>
            <attribute name="type">
              <value>ide</value>
            </attribute>
            <optional>
              <attribute name="model">
                <choice>
                  <value>piix3</value>
                  <value>piix4</value>
                  <value>ich6</value>
                </choice>
              </attribute>
            </optional>
          </group>
J
Ján Tomko 已提交
2294 2295 2296 2297 2298
          <!-- pci has an optional attribute "model" -->
          <group>
            <attribute name="type">
              <value>pci</value>
            </attribute>
2299 2300 2301 2302
            <optional>
              <element name="model">
                <attribute name="name">
                  <choice>
2303 2304
                    <!-- implementations of 'pci-root' -->
                    <value>spapr-pci-host-bridge</value>
2305 2306 2307 2308
                    <!-- implementations of 'pci-bridge' -->
                    <value>pci-bridge</value>
                    <!-- implementations of 'dmi-to-pci-bridge' -->
                    <value>i82801b11-bridge</value>
2309 2310
                    <!-- implementations of 'pcie-to-pci-bridge' -->
                    <value>pcie-pci-bridge</value>
2311 2312
                    <!-- implementations of 'pcie-root-port' -->
                    <value>ioh3420</value>
2313
                    <value>pcie-root-port</value>
2314 2315
                    <!-- implementations of 'pcie-switch-upstream-port' -->
                    <value>x3130-upstream</value>
2316 2317
                    <!-- implementations of 'pcie-switch-downstream-port' -->
                    <value>xio3130-downstream</value>
2318 2319
                    <!-- implementations of 'pci-expander-bus' -->
                    <value>pxb</value>
2320 2321
                    <!-- implementations of 'pcie-expander-bus' -->
                    <value>pxb-pcie</value>
2322 2323 2324 2325 2326
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
2327 2328 2329 2330
            <optional>
              <element name="target">
                <optional>
                  <attribute name='chassisNr'>
2331
                    <ref name='uint8'/>
2332 2333
                  </attribute>
                </optional>
2334 2335
                <optional>
                  <attribute name="chassis">
2336
                    <ref name='uint8'/>
2337 2338 2339 2340
                  </attribute>
                </optional>
                <optional>
                  <attribute name="port">
2341
                    <ref name='uint8'/>
2342 2343
                  </attribute>
                </optional>
2344 2345 2346 2347 2348
                <optional>
                  <attribute name='busNr'>
                    <ref name='uint8'/>
                  </attribute>
                </optional>
2349 2350 2351 2352 2353
                <optional>
                  <attribute name='index'>
                    <ref name='uint8'/>
                  </attribute>
                </optional>
2354 2355 2356 2357 2358
                <optional>
                  <element name='node'>
                    <ref name='unsignedInt'/>
                  </element>
                </optional>
2359 2360
              </element>
            </optional>
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
            <!-- *-root controllers have an optional element "pcihole64"-->
            <choice>
              <group>
                <attribute name="model">
                  <choice>
                    <value>pci-root</value>
                    <value>pcie-root</value>
                  </choice>
                </attribute>
                <optional>
                  <element name="pcihole64">
                    <ref name="scaledInteger"/>
                  </element>
                </optional>
              </group>
              <group>
                <attribute name="model">
                  <choice>
                    <value>pci-bridge</value>
                    <value>dmi-to-pci-bridge</value>
2381
                    <value>pcie-to-pci-bridge</value>
2382
                    <value>pcie-root-port</value>
2383
                    <value>pcie-switch-upstream-port</value>
2384
                    <value>pcie-switch-downstream-port</value>
2385
                    <value>pci-expander-bus</value>
2386
                    <value>pcie-expander-bus</value>
2387 2388 2389 2390
                  </choice>
                </attribute>
              </group>
            </choice>
J
Ján Tomko 已提交
2391
          </group>
2392 2393 2394 2395 2396
          <!-- virtio-serial has optional "ports" and "vectors" -->
          <group>
            <attribute name="type">
              <value>virtio-serial</value>
            </attribute>
2397 2398 2399 2400 2401 2402 2403 2404 2405
            <optional>
              <attribute name="model">
                <choice>
                  <value>virtio</value>
                  <value>virtio-transitional</value>
                  <value>virtio-non-transitional</value>
                </choice>
              </attribute>
            </optional>
2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
            <optional>
              <attribute name="ports">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="vectors">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </group>
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
          <!-- xenbus has an optional attribute "maxGrantFrames" -->
          <group>
            <attribute name="type">
              <value>xenbus</value>
            </attribute>
            <optional>
              <attribute name="maxGrantFrames">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </group>
2428
        </choice>
2429 2430 2431 2432 2433 2434 2435
        <optional>
          <element name="driver">
            <optional>
              <attribute name="queues">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
            <optional>
              <attribute name="cmd_per_lun">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="max_sectors">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
2446 2447 2448
            <optional>
              <ref name="ioeventfd"/>
            </optional>
2449 2450 2451
            <optional>
              <ref name="driverIOThread"/>
            </optional>
2452
            <ref name="virtioOptions"/>
2453 2454
          </element>
        </optional>
2455
      </interleave>
2456 2457 2458 2459 2460 2461 2462 2463 2464
    </element>
  </define>
  <define name="filesystem">
    <element name="filesystem">
      <choice>
        <group>
          <attribute name="type">
            <value>file</value>
          </attribute>
2465 2466 2467
          <optional>
            <ref name="fsDriver"/>
          </optional>
2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480
          <interleave>
            <element name="source">
              <attribute name="file">
                <ref name="absFilePath"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>block</value>
          </attribute>
2481 2482 2483
          <optional>
            <ref name="fsDriver"/>
          </optional>
2484 2485 2486 2487 2488 2489 2490 2491 2492 2493
          <interleave>
            <element name="source">
              <attribute name="dev">
                <ref name="absFilePath"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
        <group>
2494 2495 2496 2497 2498 2499
          <!-- type='mount' is default -->
          <optional>
            <attribute name="type">
              <value>mount</value>
            </attribute>
          </optional>
2500 2501 2502
          <optional>
            <ref name="fsDriver"/>
          </optional>
2503 2504 2505
          <interleave>
            <element name="source">
              <attribute name="dir">
2506
                <ref name="absDirPath"/>
2507 2508 2509 2510 2511
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
2512 2513 2514 2515 2516 2517
        <group>
          <optional>
            <attribute name="type">
              <value>bind</value>
            </attribute>
          </optional>
2518 2519 2520
          <optional>
            <ref name="fsDriver"/>
          </optional>
2521 2522 2523
          <interleave>
            <element name="source">
              <attribute name="dir">
2524
                <ref name="absDirPath"/>
2525 2526 2527 2528 2529
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
2530 2531 2532 2533
        <group>
          <attribute name="type">
            <value>template</value>
          </attribute>
2534 2535 2536
          <optional>
            <ref name="fsDriver"/>
          </optional>
2537 2538 2539 2540 2541 2542 2543 2544 2545
          <interleave>
            <element name="source">
              <attribute name="name">
                <ref name="genericName"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
2546 2547 2548 2549
        <group>
          <attribute name="type">
            <value>ram</value>
          </attribute>
2550 2551 2552
          <optional>
            <ref name="fsDriver"/>
          </optional>
2553 2554 2555 2556 2557 2558
          <interleave>
            <element name="source">
              <attribute name="usage">
                <ref name="unsignedLong"/>
              </attribute>
              <optional>
2559
                <attribute name='units'>
2560 2561 2562 2563 2564 2565 2566
                  <ref name='unit'/>
                </attribute>
              </optional>
              <empty/>
            </element>
          </interleave>
        </group>
2567
      </choice>
2568 2569
      <interleave>
        <element name="target">
2570
          <attribute name="dir"/>
2571 2572
          <empty/>
        </element>
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593
        <optional>
          <attribute name="accessmode">
            <choice>
              <value>passthrough</value>
              <value>mapped</value>
              <value>squash</value>
            </choice>
          </attribute>
        </optional>
        <optional>
          <element name='readonly'>
            <empty/>
          </element>
        </optional>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605
      <interleave>
        <optional>
          <element name="space_hard_limit">
            <ref name='scaledInteger'/>
          </element>
        </optional>
        <optional>
          <element name="space_soft_limit">
            <ref name='scaledInteger'/>
          </element>
        </optional>
      </interleave>
2606 2607 2608 2609 2610 2611 2612 2613 2614
      <optional>
        <attribute name="model">
          <choice>
            <value>virtio</value>
            <value>virtio-transitional</value>
            <value>virtio-non-transitional</value>
          </choice>
        </attribute>
      </optional>
2615 2616
    </element>
  </define>
2617 2618 2619 2620 2621 2622
  <define name="fsDriver">
    <element name="driver">
      <!-- Annoying inconsistency. 'disk' uses 'name'
           for this kind of info, and 'type' for the
           storage format. We need the latter too, so
           had to invent a new attribute name -->
2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
      <choice>
        <group>
          <optional>
            <attribute name="type">
              <choice>
                <value>path</value>
                <value>handle</value>
                <value>loop</value>
                <value>nbd</value>
                <value>ploop</value>
              </choice>
            </attribute>
          </optional>
          <optional>
            <attribute name="format">
              <ref name="storageFormat"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="wrpolicy">
              <value>immediate</value>
            </attribute>
          </optional>
          <ref name='virtioOptions'/>
        </group>
2648 2649 2650 2651 2652 2653
        <group>
          <attribute name="type">
            <value>virtiofs</value>
          </attribute>
          <ref name='virtioOptions'/>
        </group>
2654 2655
        <empty/>
      </choice>
2656 2657 2658
    </element>
  </define>

2659 2660 2661 2662 2663 2664 2665 2666 2667
  <define name="interface-network-attributes">
    <attribute name="network">
      <text/>
    </attribute>
    <optional>
      <attribute name="portgroup">
        <ref name="deviceName"/>
      </attribute>
    </optional>
2668 2669 2670 2671 2672
    <optional>
      <attribute name="portid">
        <ref name="UUID"/>
      </attribute>
    </optional>
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685
  </define>

  <define name="interface-bridge-attributes">
    <attribute name="bridge">
      <ref name="deviceName"/>
    </attribute>
    <optional>
      <attribute name="macTableManager">
        <ref name="macTableManager"/>
      </attribute>
    </optional>
  </define>

2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701
  <!--
      An interface description can either be of type bridge in which case
      it will use a bridging source, or of type ethernet which uses a device
      source and a device target instead. They both share a set of interface
      options. FIXME
    -->
  <define name="interface">
    <element name="interface">
      <choice>
        <group>
          <attribute name="type">
            <value>bridge</value>
          </attribute>
          <interleave>
            <optional>
              <element name="source">
2702 2703 2704 2705
                <ref name="interface-bridge-attributes"/>
                <optional>
                  <ref name="interface-network-attributes"/>
                </optional>
2706 2707 2708
                <empty/>
              </element>
            </optional>
2709 2710 2711
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
            <ref name="interface-options"/>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>ethernet</value>
          </attribute>
          <interleave>
            <optional>
              <element name="source">
2722
                <ref name="interface-ip-info"/>
2723 2724 2725 2726 2727
              </element>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
M
Michele Paolino 已提交
2728 2729 2730 2731 2732
        <group>
          <attribute name="type">
            <value>vhostuser</value>
          </attribute>
          <interleave>
2733
            <ref name="unixSocketSource"/>
M
Michele Paolino 已提交
2734 2735 2736
            <ref name="interface-options"/>
          </interleave>
        </group>
2737 2738 2739 2740 2741 2742
        <group>
          <attribute name="type">
            <value>network</value>
          </attribute>
          <interleave>
            <element name="source">
2743
              <ref name='interface-network-attributes'/>
2744
              <optional>
2745
                <ref name="interface-bridge-attributes"/>
2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768
              </optional>
              <empty/>
            </element>
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>direct</value>
          </attribute>
          <interleave>
            <element name="source">
              <attribute name="dev">
                <ref name="deviceName"/>
              </attribute>
              <optional>
                <attribute name="mode">
                  <ref name="bridgeMode"/>
                </attribute>
              </optional>
2769 2770 2771
              <optional>
                <ref name='interface-network-attributes'/>
              </optional>
2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
              <empty/>
            </element>
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>user</value>
          </attribute>
          <interleave>
            <ref name="interface-options"/>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>internal</value>
          </attribute>
          <interleave>
            <element name="source">
              <attribute name="name">
                <ref name="deviceName"/>
              </attribute>
              <empty/>
            </element>
            <ref name="interface-options"/>
          </interleave>
        </group>
2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818
        <group>
          <attribute name="type">
            <choice>
              <value>mcast</value>
              <value>client</value>
            </choice>
          </attribute>
          <interleave>
            <element name="source">
              <attribute name="address">
                <ref name="ipv4Addr"/>
              </attribute>
              <attribute name="port">
                <ref name="PortNumber"/>
              </attribute>
              <empty/>
            </element>
2819
            <ref name="interface-options"/>
2820 2821
          </interleave>
        </group>
2822 2823
        <group>
          <attribute name="type">
M
Michal Privoznik 已提交
2824
            <value>udp</value>
2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846
          </attribute>
          <interleave>
            <element name="source">
              <attribute name="address">
                <ref name="ipv4Addr"/>
              </attribute>
              <attribute name="port">
                <ref name="PortNumber"/>
              </attribute>
              <element name="local">
                <attribute name="address">
                  <ref name="ipv4Addr"/>
                </attribute>
                <attribute name="port">
                  <ref name="PortNumber"/>
                </attribute>
                <empty/>
              </element>
            </element>
            <ref name="interface-options"/>
          </interleave>
        </group>
2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862
        <group>
          <attribute name="type">
            <value>server</value>
          </attribute>
          <interleave>
            <element name="source">
              <optional>
                <attribute name="address">
                  <ref name="ipv4Addr"/>
                </attribute>
              </optional>
              <attribute name="port">
                <ref name="PortNumber"/>
              </attribute>
              <empty/>
            </element>
2863
            <ref name="interface-options"/>
2864 2865
          </interleave>
        </group>
2866 2867 2868 2869 2870 2871
        <group>
          <attribute name="type">
            <value>hostdev</value>
          </attribute>
          <optional>
            <attribute name="managed">
2872
              <ref name="virYesNo"/>
2873 2874 2875 2876
            </attribute>
          </optional>
          <interleave>
            <element name="source">
2877 2878
              <optional>
                <attribute name="missing">
2879
                  <ref name="virYesNo"/>
2880 2881
                </attribute>
              </optional>
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904
              <choice>
                <group>
                  <ref name="usbproduct"/>
                  <optional>
                    <ref name="usbaddress"/>
                  </optional>
                </group>
                <element name="address">
                  <choice>
                    <group>
                      <attribute name="type">
                        <value>pci</value>
                      </attribute>
                      <ref name="pciaddress"/>
                    </group>
                    <group>
                      <attribute name="type">
                        <value>usb</value>
                      </attribute>
                      <attribute name="bus">
                        <ref name="usbAddr"/>
                      </attribute>
                      <attribute name="device">
2905
                        <ref name="usbAddr"/>
2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917
                      </attribute>
                    </group>
                  </choice>
                </element>
              </choice>
            </element>
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
2918
      </choice>
2919 2920 2921 2922 2923
      <optional>
        <attribute name="trustGuestRxFilters">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
2924 2925 2926 2927 2928 2929 2930 2931 2932
    </element>
  </define>
  <!--
      The interface options possible are:
        - the MAC address
        - the IP address bound to the interface
        - the name of the script used to set up the binding
        - the target device used
        - boot order
2933
        - link state
2934 2935 2936
    -->
  <define name="interface-options">
    <interleave>
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947
      <optional>
        <element name="link">
          <attribute name="state">
            <choice>
              <value>up</value>
              <value>down</value>
            </choice>
          </attribute>
          <empty/>
        </element>
      </optional>
2948 2949 2950
      <optional>
        <ref name="mtu"/>
      </optional>
2951 2952 2953
      <optional>
        <ref name="coalesce"/>
      </optional>
2954 2955 2956 2957 2958
      <optional>
        <element name="target">
          <attribute name="dev">
            <ref name="deviceName"/>
          </attribute>
2959 2960 2961 2962 2963
          <optional>
            <attribute name="managed">
              <ref name="virYesNo"/>
            </attribute>
          </optional>
2964
          <empty/>
2965 2966
        </element>
      </optional>
2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983
      <optional>
        <element name="guest">
          <interleave>
            <optional>
              <attribute name="dev">
                <ref name="deviceName"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="actual">
                <ref name="deviceName"/>
              </attribute>
            </optional>
          </interleave>
          <empty/>
        </element>
      </optional>
2984 2985 2986
      <optional>
        <element name="mac">
          <attribute name="address">
2987
            <ref name="uniMacAddr"/>
2988 2989 2990 2991
          </attribute>
          <empty/>
        </element>
      </optional>
2992
      <ref name="interface-ip-info"/>
2993 2994 2995 2996 2997 2998 2999 3000
      <optional>
        <element name="script">
          <attribute name="path">
            <ref name="filePath"/>
          </attribute>
          <empty/>
        </element>
      </optional>
3001 3002 3003 3004 3005 3006 3007 3008
      <optional>
        <element name="backenddomain">
          <attribute name="name">
            <ref name="domainName"/>
          </attribute>
          <empty/>
        </element>
      </optional>
3009 3010
      <optional>
        <element name="model">
E
Eric Blake 已提交
3011 3012 3013 3014 3015
          <attribute name="type">
            <data type="string">
              <param name='pattern'>[a-zA-Z0-9\-_]+</param>
            </data>
          </attribute>
3016 3017 3018
          <empty/>
        </element>
      </optional>
3019 3020
      <optional>
        <element name="backend">
3021
          <optional>
M
Michal Privoznik 已提交
3022 3023 3024
            <attribute name='tap'>
              <ref name='absFilePath'/>
            </attribute>
3025 3026
          </optional>
          <optional>
M
Michal Privoznik 已提交
3027 3028 3029
            <attribute name='vhost'>
              <ref name='absFilePath'/>
            </attribute>
3030
          </optional>
3031 3032
        </element>
      </optional>
3033 3034
      <optional>
        <element name="driver">
3035 3036 3037 3038 3039 3040
          <choice>
            <group>
              <attribute name="name">
                <choice>
                  <value>kvm</value>
                  <value>vfio</value>
3041
                  <value>xen</value>
3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
                </choice>
              </attribute>
            </group>
            <group>
              <optional>
                <attribute name="name">
                  <choice>
                    <value>qemu</value>
                    <value>vhost</value>
                  </choice>
                </attribute>
              </optional>
3054 3055 3056 3057 3058
              <optional>
                <attribute name='queues'>
                  <ref name="positiveInteger"/>
                </attribute>
              </optional>
3059 3060
              <optional>
                <attribute name='rx_queue_size'>
3061 3062 3063 3064 3065
                  <ref name='positiveInteger'/>
                </attribute>
              </optional>
              <optional>
                <attribute name='tx_queue_size'>
3066 3067 3068
                  <ref name='positiveInteger'/>
                </attribute>
              </optional>
3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084
              <optional>
                <attribute name="txmode">
                  <choice>
                    <value>iothread</value>
                    <value>timer</value>
                  </choice>
                </attribute>
              </optional>
              <optional>
                <ref name="ioeventfd"/>
              </optional>
              <optional>
                <ref name="event_idx"/>
              </optional>
            </group>
          </choice>
3085
          <ref name="virtioOptions"/>
3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118
          <interleave>
            <optional>
              <element name='host'>
                <optional>
                  <attribute name='csum'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='gso'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='tso4'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='tso6'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='ecn'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='ufo'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
3119 3120 3121 3122 3123
                <optional>
                  <attribute name='mrg_rxbuf'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155
              </element>
            </optional>
            <optional>
              <element name='guest'>
                <optional>
                  <attribute name='csum'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='tso4'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='tso6'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='ecn'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name='ufo'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
              </element>
            </optional>
          </interleave>
3156 3157
        </element>
      </optional>
3158 3159 3160
      <optional>
        <ref name="alias"/>
      </optional>
3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181
      <optional>
        <ref name="address"/>
      </optional>
      <optional>
        <element name="filterref">
          <ref name="filterref-node-attributes"/>
        </element>
      </optional>
      <optional>
        <element name="tune">
          <optional>
            <!-- size of send buffer for network tap devices -->
            <element name="sndbuf">
              <ref name="unsignedInt"/>
            </element>
          </optional>
        </element>
      </optional>
      <optional>
        <ref name="deviceBoot"/>
      </optional>
3182 3183 3184
      <optional>
        <ref name="rom"/>
      </optional>
3185 3186 3187
      <optional>
        <ref name="bandwidth"/>
      </optional>
3188 3189 3190
      <optional>
        <ref name="vlan"/>
      </optional>
3191 3192 3193
      <optional>
        <ref name="portOptions"/>
      </optional>
3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212
      <optional>
        <element name="teaming">
          <choice>
            <group>
              <attribute name="type">
                <value>persistent</value>
              </attribute>
            </group>
            <group>
              <attribute name="type">
                <value>transient</value>
              </attribute>
              <attribute name="persistent">
                <ref name="aliasName"/>
              </attribute>
            </group>
          </choice>
        </element>
      </optional>
3213 3214
    </interleave>
  </define>
3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234

  <!--
      All ip-related info for either the host or guest side of an interface
  -->
  <define name="interface-ip-info">
    <zeroOrMore>
      <element name="ip">
        <attribute name="address">
          <ref name="ipAddr"/>
        </attribute>
        <optional>
          <attribute name="family">
            <ref name="addr-family"/>
          </attribute>
        </optional>
        <optional>
          <attribute name="prefix">
            <ref name="ipPrefix"/>
          </attribute>
        </optional>
3235 3236 3237 3238 3239
        <optional>
          <attribute name="peer">
            <ref name="ipAddr"/>
          </attribute>
        </optional>
3240 3241 3242 3243 3244 3245 3246
        <empty/>
      </element>
    </zeroOrMore>
    <zeroOrMore>
      <ref name="route"/>
    </zeroOrMore>
  </define>
3247 3248 3249 3250 3251 3252 3253 3254 3255
  <!--
      An emulator description is just a path to the binary used for the task
    -->
  <define name="emulator">
    <element name="emulator">
      <ref name="absFilePath"/>
    </element>
  </define>
  <!--
3256
      A graphic description (SPICE, VNC, SDL, ...)
3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276
    -->
  <define name="graphic">
    <element name="graphics">
      <choice>
        <group>
          <attribute name="type">
            <value>sdl</value>
          </attribute>
          <optional>
            <attribute name="display">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="xauth">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="fullscreen">
3277
              <ref name="virYesNo"/>
3278 3279
            </attribute>
          </optional>
3280 3281 3282 3283 3284 3285 3286 3287
          <optional>
            <element name="gl">
              <attribute name="enable">
                <ref name="virYesNo"/>
              </attribute>
              <empty/>
            </element>
          </optional>
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301
        </group>
        <group>
          <attribute name="type">
            <value>vnc</value>
          </attribute>
          <choice>
            <group>
              <optional>
                <attribute name="port">
                  <ref name="PortNumber"/>
                </attribute>
              </optional>
              <optional>
                <attribute name="autoport">
3302
                  <ref name="virYesNo"/>
3303 3304
                </attribute>
              </optional>
M
Martin Kletzander 已提交
3305 3306 3307 3308 3309
              <optional>
                <attribute name="websocket">
                  <ref name="PortNumber"/>
                </attribute>
              </optional>
3310 3311 3312 3313 3314
              <optional>
                <attribute name="listen">
                  <ref name="addrIPorName"/>
                </attribute>
              </optional>
3315 3316 3317 3318 3319 3320 3321 3322 3323
              <optional>
                <attribute name='sharePolicy'>
                  <choice>
                    <value>allow-exclusive</value>
                    <value>force-shared</value>
                    <value>ignore</value>
                  </choice>
                </attribute>
              </optional>
3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349
            </group>
            <group>
              <optional>
                <attribute name="socket">
                  <ref name="absFilePath"/>
                </attribute>
              </optional>
            </group>
          </choice>
          <optional>
            <attribute name="passwd">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="keymap">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="passwdValidTo">
              <data type="dateTime"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="connected">
M
Michal Privoznik 已提交
3350
              <value>keep</value>
3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370
            </attribute>
          </optional>
          <ref name="listenElements"/>
        </group>
        <group>
          <attribute name="type">
            <value>spice</value>
          </attribute>
          <optional>
            <attribute name="port">
              <ref name="PortNumber"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="tlsPort">
              <ref name="PortNumber"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="autoport">
3371
              <ref name="virYesNo"/>
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402
            </attribute>
          </optional>
          <optional>
            <attribute name="listen">
              <ref name="addrIPorName"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="passwd">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="keymap">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="passwdValidTo">
              <data type="dateTime"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="connected">
              <choice>
                <value>fail</value>
                <value>disconnect</value>
                <value>keep</value>
              </choice>
            </attribute>
          </optional>
3403 3404 3405 3406 3407 3408 3409 3410 3411
          <optional>
            <attribute name="defaultMode">
              <choice>
                <value>any</value>
                <value>secure</value>
                <value>insecure</value>
              </choice>
            </attribute>
          </optional>
3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424
          <interleave>
            <ref name="listenElements"/>
            <zeroOrMore>
              <element name="channel">
                <attribute name="name">
                  <choice>
                    <value>main</value>
                    <value>display</value>
                    <value>inputs</value>
                    <value>cursor</value>
                    <value>playback</value>
                    <value>record</value>
                    <value>smartcard</value>
3425
                    <value>usbredir</value>
3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479
                  </choice>
                </attribute>
                <attribute name="mode">
                  <choice>
                    <value>any</value>
                    <value>secure</value>
                    <value>insecure</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </zeroOrMore>
            <optional>
              <element name="image">
                <attribute name="compression">
                  <choice>
                    <value>auto_glz</value>
                    <value>auto_lz</value>
                    <value>quic</value>
                    <value>glz</value>
                    <value>lz</value>
                    <value>off</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
            <optional>
              <element name="jpeg">
                <attribute name="compression">
                  <choice>
                    <value>auto</value>
                    <value>never</value>
                    <value>always</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
            <optional>
              <element name="zlib">
                <attribute name="compression">
                  <choice>
                    <value>auto</value>
                    <value>never</value>
                    <value>always</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
            <optional>
              <element name="playback">
                <attribute name="compression">
3480
                  <ref name="virOnOff"/>
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499
                </attribute>
                <empty/>
              </element>
            </optional>
            <optional>
              <element name="streaming">
                <attribute name="mode">
                  <choice>
                    <value>filter</value>
                    <value>all</value>
                    <value>off</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
            <optional>
              <element name="clipboard">
                <attribute name="copypaste">
3500
                  <ref name="virYesNo"/>
3501 3502 3503 3504
                </attribute>
                <empty/>
              </element>
            </optional>
P
Peng Zhou 已提交
3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515
            <optional>
              <element name="mouse">
                <attribute name="mode">
                  <choice>
                    <value>server</value>
                    <value>client</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
3516 3517 3518
            <optional>
              <element name="filetransfer">
                <attribute name="enable">
3519
                  <ref name="virYesNo"/>
3520 3521 3522 3523
                </attribute>
                <empty/>
              </element>
            </optional>
3524 3525 3526 3527 3528
            <optional>
              <element name="gl">
                <attribute name="enable">
                  <ref name="virYesNo"/>
                </attribute>
3529 3530 3531 3532 3533
                <optional>
                  <attribute name="rendernode">
                    <ref name="absFilePath"/>
                  </attribute>
                </optional>
3534 3535 3536
                <empty/>
              </element>
            </optional>
3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>rdp</value>
          </attribute>
          <optional>
            <attribute name="port">
              <ref name="PortNumber"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="autoport">
3550
              <ref name="virYesNo"/>
3551 3552 3553 3554
            </attribute>
          </optional>
          <optional>
            <attribute name="replaceUser">
3555
              <ref name="virYesNo"/>
3556 3557 3558 3559
            </attribute>
          </optional>
          <optional>
            <attribute name="multiUser">
3560
              <ref name="virYesNo"/>
3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580
            </attribute>
          </optional>
          <optional>
            <attribute name="listen">
              <ref name="addrIPorName"/>
            </attribute>
          </optional>
          <ref name="listenElements"/>
        </group>
        <group>
          <attribute name="type">
            <value>desktop</value>
          </attribute>
          <optional>
            <attribute name="display">
              <text/>
            </attribute>
          </optional>
          <optional>
            <attribute name="fullscreen">
3581
              <ref name="virYesNo"/>
3582 3583 3584
            </attribute>
          </optional>
        </group>
3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598
        <group>
          <attribute name="type">
            <value>egl-headless</value>
          </attribute>
          <optional>
            <element name="gl">
              <optional>
                <attribute name="rendernode">
                  <ref name="absFilePath"/>
                </attribute>
              </optional>
            </element>
          </optional>
        </group>
3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610
      </choice>
    </element>
  </define>

  <define name="listenElements">
    <zeroOrMore>
      <element name="listen">
        <choice>
          <group>
            <attribute name="type">
              <value>address</value>
            </attribute>
3611 3612 3613 3614 3615
            <optional>
              <attribute name="address">
                <ref name="addrIPorName"/>
              </attribute>
            </optional>
3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629
          </group>
          <group>
            <attribute name="type">
              <value>network</value>
            </attribute>
            <attribute name="network">
              <text/>
            </attribute>
            <optional>
              <attribute name="address">
                <ref name="addrIPorName"/>
              </attribute>
            </optional>
          </group>
3630 3631 3632 3633 3634 3635 3636 3637 3638 3639
          <group>
            <attribute name="type">
              <value>socket</value>
            </attribute>
            <optional>
              <attribute name="socket">
                <ref name="absFilePath"/>
              </attribute>
            </optional>
          </group>
P
Pavel Hrdina 已提交
3640 3641 3642 3643 3644
          <group>
            <attribute name="type">
              <value>none</value>
            </attribute>
          </group>
3645 3646 3647 3648 3649 3650
        </choice>
      </element>
    </zeroOrMore>
  </define>
  <!--
     A video adapter description, allowing configuration of device
3651 3652
     model, number of virtual heads, video ram size, and for qxl
     both ram bar sizes.
3653 3654 3655
   -->
  <define name="video">
    <element name="video">
J
Ján Tomko 已提交
3656 3657
      <optional>
        <element name="driver">
3658 3659 3660
          <optional>
            <ref name="virtioOptions"/>
          </optional>
3661 3662 3663 3664 3665 3666 3667 3668
          <optional>
            <attribute name="name">
              <choice>
                <value>qemu</value>
                <value>vhostuser</value>
              </choice>
            </attribute>
          </optional>
3669 3670 3671 3672 3673 3674 3675 3676 3677
          <optional>
            <attribute name="vgaconf">
              <choice>
                <value>io</value>
                <value>on</value>
                <value>off</value>
              </choice>
            </attribute>
          </optional>
J
Ján Tomko 已提交
3678 3679
        </element>
      </optional>
3680 3681
      <optional>
        <element name="model">
3682 3683 3684 3685 3686 3687 3688 3689
          <choice>
            <attribute name="type">
              <choice>
                <value>vga</value>
                <value>cirrus</value>
                <value>vmvga</value>
                <value>xen</value>
                <value>vbox</value>
M
Marc-André Lureau 已提交
3690
                <value>virtio</value>
F
Fabian Freyer 已提交
3691
                <value>gop</value>
3692
                <value>none</value>
3693
                <value>bochs</value>
3694
                <value>ramfb</value>
3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705
              </choice>
            </attribute>
            <group>
              <attribute name="type">
                <value>qxl</value>
              </attribute>
              <optional>
                <attribute name="ram">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3706 3707 3708 3709 3710
              <optional>
                <attribute name="vgamem">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3711 3712 3713 3714 3715
              <optional>
                <attribute name="vram64">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3716 3717
            </group>
          </choice>
3718 3719 3720 3721 3722 3723 3724 3725 3726 3727
          <optional>
            <attribute name="vram">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="heads">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
3728 3729
          <optional>
            <attribute name="primary">
3730
              <ref name="virYesNo"/>
3731 3732
            </attribute>
          </optional>
3733 3734 3735 3736
          <optional>
            <element name="acceleration">
              <optional>
                <attribute name="accel3d">
3737
                  <ref name="virYesNo"/>
3738 3739 3740 3741
                </attribute>
              </optional>
              <optional>
                <attribute name="accel2d">
3742
                  <ref name="virYesNo"/>
3743 3744
                </attribute>
              </optional>
3745 3746 3747 3748 3749
              <optional>
                <attribute name="rendernode">
                  <ref name="absFilePath"/>
                </attribute>
              </optional>
3750 3751
            </element>
          </optional>
3752 3753 3754 3755 3756 3757 3758 3759 3760 3761
          <optional>
            <element name="resolution">
              <attribute name="x">
                <ref name="unsignedInt"/>
              </attribute>
              <attribute name="y">
                <ref name="unsignedInt"/>
              </attribute>
            </element>
          </optional>
3762 3763
        </element>
      </optional>
3764 3765 3766
      <optional>
        <ref name="alias"/>
      </optional>
3767 3768 3769 3770 3771 3772
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <!--
3773 3774
      When a certain event happens, multiple policies can be applied
      depends on what happened:
3775
    -->
3776
  <define name="events">
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792
    <interleave>
      <optional>
        <element name="on_reboot">
          <ref name="offOptions"/>
        </element>
      </optional>
      <optional>
        <element name="on_poweroff">
          <ref name="offOptions"/>
        </element>
      </optional>
      <optional>
        <element name="on_crash">
          <ref name="crashOptions"/>
        </element>
      </optional>
3793 3794 3795 3796 3797
      <optional>
        <element name="on_lockfailure">
          <ref name="lockfailureOptions"/>
        </element>
      </optional>
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838
    </interleave>
  </define>
  <!--
      Options when a domain terminates:
      destroy: The domain is cleaned up
      restart: A new domain is started in place of the old one
      preserve: The domain will remain in memory until it is destroyed manually
      rename-restart: a variant of the previous one but where the old domain is
                      renamed before being saved to allow a restart
    -->
  <define name="offOptions">
    <choice>
      <value>destroy</value>
      <value>restart</value>
      <value>preserve</value>
      <value>rename-restart</value>
    </choice>
  </define>
  <!--
      Options when a domain crashes:
      destroy: The domain is cleaned up
      restart: A new domain is started in place of the old one
      preserve: The domain will remain in memory until it is destroyed manually
      rename-restart: a variant of the previous one but where the old domain is
                      renamed before being saved to allow a restart
      coredump-destroy: The crashed domain's core will be dumped, and then the
                        domain will be terminated completely and all resources
                        released
      coredump-restart: The crashed domain's core will be dumped, and then the
                        domain will be restarted with the same configuration
    -->
  <define name="crashOptions">
    <choice>
      <value>destroy</value>
      <value>restart</value>
      <value>preserve</value>
      <value>rename-restart</value>
      <value>coredump-destroy</value>
      <value>coredump-restart</value>
    </choice>
  </define>
3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855
  <!--
      Options when resource locks are lost:
      poweroff: power off the domain
      restart: power off the domain and start it up again to reacquire the
               locks
      pause: pause the execution of the domain so that it can be manually
             resumed when lock issues are solved
      ignore: keep the domain running
  -->
  <define name="lockfailureOptions">
    <choice>
      <value>poweroff</value>
      <value>restart</value>
      <value>pause</value>
      <value>ignore</value>
    </choice>
  </define>
3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882
  <!--
      Control ACPI sleep states (dis)allowed for the domain
      For each of the states the following rules apply:
      on: the state will be forcefully enabled
      off: the state will be forcefully disabled
      not specified: hypervisor will be left to decide its defaults
  -->
  <define name="pm">
    <element name="pm">
      <interleave>
        <optional>
          <element name="suspend-to-mem">
            <ref name="suspendChoices"/>
          </element>
        </optional>
        <optional>
          <element name="suspend-to-disk">
            <ref name="suspendChoices"/>
          </element>
        </optional>
      </interleave>
      <empty/>
    </element>
  </define>
  <define name="suspendChoices">
    <optional>
      <attribute name="enabled">
3883
        <ref name="virYesNo"/>
3884 3885 3886
      </attribute>
    </optional>
  </define>
3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902
  <!--
      Specific setup for a qemu emulated character device.  Note: this
      definition doesn't fully specify the constraints on this node.
    -->
  <define name="qemucdev">
    <ref name="qemucdevSrcType"/>
    <optional>
      <attribute name="tty">
        <ref name="absFilePath"/>
      </attribute>
    </optional>
    <interleave>
      <ref name="qemucdevSrcDef"/>
      <optional>
        <ref name="qemucdevTgtDef"/>
      </optional>
3903 3904 3905
      <optional>
        <ref name="alias"/>
      </optional>
3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916
      <optional>
        <ref name="address"/>
      </optional>
    </interleave>
  </define>

  <define name="qemucdevConsoleTgtType">
    <attribute name="type">
      <choice>
        <value>xen</value>
        <value>serial</value>
M
Michal Privoznik 已提交
3917
        <value>uml</value> <!-- NOT USED ANYMORE -->
3918
        <value>virtio</value>
3919 3920
        <value>lxc</value>
        <value>openvz</value>
3921 3922
        <value>sclp</value>
        <value>sclplm</value>
3923 3924 3925 3926
      </choice>
    </attribute>
  </define>

G
Guannan Ren 已提交
3927 3928 3929 3930 3931
  <define name='qemucdevSerialTgtType'>
    <attribute name='type'>
      <choice>
        <value>isa-serial</value>
        <value>usb-serial</value>
M
Michal Privoznik 已提交
3932
        <value>pci-serial</value>
3933
        <value>spapr-vio-serial</value>
3934
        <value>system-serial</value>
3935
        <value>sclp-serial</value>
G
Guannan Ren 已提交
3936 3937 3938 3939
      </choice>
    </attribute>
  </define>

3940 3941 3942 3943 3944 3945 3946
  <define name='qemucdevSerialTgtModel'>
    <element name='model'>
      <attribute name='name'>
        <choice>
          <value>isa-serial</value>
          <value>usb-serial</value>
          <value>pci-serial</value>
3947
          <value>spapr-vty</value>
3948
          <value>pl011</value>
3949
          <value>16550a</value>
3950 3951
          <value>sclpconsole</value>
          <value>sclplmconsole</value>
3952 3953 3954 3955 3956
        </choice>
      </attribute>
    </element>
  </define>

3957 3958 3959
  <define  name="qemucdevTgtDef">
    <element name="target">
      <interleave>
G
Guannan Ren 已提交
3960 3961 3962 3963 3964 3965 3966 3967
        <choice>
          <optional>
            <ref name="qemucdevConsoleTgtType"/>
          </optional>
          <optional>
            <ref name="qemucdevSerialTgtType"/>
          </optional>
        </choice>
3968 3969 3970
        <optional>
          <attribute name="port"/>
        </optional>
3971 3972 3973
        <optional>
          <ref name="qemucdevSerialTgtModel"/>
        </optional>
3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990
      </interleave>
    </element>
  </define>

  <define name="qemucdevSrcTypeChoice">
    <choice>
      <value>dev</value>
      <value>file</value>
      <value>pipe</value>
      <value>unix</value>
      <value>tcp</value>
      <value>udp</value>
      <value>null</value>
      <value>stdio</value>
      <value>vc</value>
      <value>pty</value>
      <value>spicevmc</value>
3991
      <value>spiceport</value>
3992
      <value>nmdm</value>
3993 3994 3995
    </choice>
  </define>

3996 3997 3998
  <define name="usbdevfilter">
    <element name="usbdev">
      <attribute name="allow">
3999
        <ref name="virYesNo"/>
4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035
      </attribute>
      <optional>
        <attribute name="class">
          <choice>
            <ref name="usbClass"/>
            <ref name="usbIdDefault"/>
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="vendor">
          <choice>
            <ref name="usbId"/>
            <ref name="usbIdDefault"/>
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="product">
          <choice>
            <ref name="usbId"/>
            <ref name="usbIdDefault"/>
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="version">
          <choice>
            <ref name="usbVersion"/>
            <ref name="usbIdDefault"/>
          </choice>
        </attribute>
      </optional>
    </element>
  </define>

4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055
  <define name="qemucdevSrcType">
    <attribute name="type">
      <ref name="qemucdevSrcTypeChoice"/>
    </attribute>
  </define>
  <define name="qemucdevSrcDef">
    <zeroOrMore>
      <element name="source">
        <optional>
          <attribute name="mode"/>
        </optional>
        <optional>
          <attribute name="path"/>
        </optional>
        <optional>
          <attribute name="host"/>
        </optional>
        <optional>
          <attribute name="service"/>
        </optional>
4056 4057 4058
        <optional>
          <attribute name="channel"/>
        </optional>
4059 4060 4061 4062 4063 4064
        <optional>
          <attribute name="master"/>
        </optional>
        <optional>
          <attribute name="slave"/>
        </optional>
4065 4066 4067 4068 4069
        <optional>
          <attribute name="append">
            <ref name="virOnOff"/>
          </attribute>
        </optional>
4070 4071 4072 4073 4074
        <optional>
          <attribute name="tls">
            <ref name="virYesNo"/>
          </attribute>
        </optional>
4075
        <optional>
4076
          <ref name="reconnect"/>
4077
        </optional>
4078
        <zeroOrMore>
4079
          <ref name='devSeclabel'/>
4080
        </zeroOrMore>
4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096
      </element>
    </zeroOrMore>
    <optional>
      <element name="protocol">
        <optional>
          <attribute name="type">
            <choice>
              <value>raw</value>
              <value>telnet</value>
              <value>telnets</value>
              <value>tls</value>
            </choice>
          </attribute>
        </optional>
      </element>
    </optional>
4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108
    <optional>
      <element name="log">
        <attribute name="file">
          <ref name="absFilePath"/>
        </attribute>
        <optional>
          <attribute name="append">
            <ref name="virOnOff"/>
          </attribute>
        </optional>
      </element>
    </optional>
4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124
  </define>
  <!--
      The description for a console
      just a tty device
    -->
  <define name="console">
    <element name="console">
      <choice>
        <group>
          <optional>
            <attribute name="tty">
              <ref name="absFilePath"/>
            </attribute>
          </optional>
          <empty/>
        </group>
M
Michal Privoznik 已提交
4125
        <ref name="qemucdev"/>
4126 4127 4128
      </choice>
    </element>
  </define>
4129 4130 4131 4132 4133 4134
  <define name="codec">
    <element name="codec">
      <attribute name="type">
        <choice>
          <value>duplex</value>
          <value>micro</value>
F
Filip Alac 已提交
4135
          <value>output</value>
4136 4137 4138 4139
        </choice>
      </attribute>
    </element>
  </define>
4140 4141 4142 4143 4144 4145 4146 4147 4148
  <define name="sound">
    <element name="sound">
      <attribute name="model">
        <choice>
          <value>sb16</value>
          <value>es1370</value>
          <value>pcspk</value>
          <value>ac97</value>
          <value>ich6</value>
4149
          <value>ich9</value>
4150
          <value>usb</value>
4151 4152
        </choice>
      </attribute>
4153 4154 4155 4156 4157 4158 4159 4160
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <zeroOrMore>
M
Michal Privoznik 已提交
4161
          <ref name="codec"/>
4162 4163
        </zeroOrMore>
      </interleave>
4164 4165 4166 4167 4168 4169 4170 4171
    </element>
  </define>
  <define name="watchdog">
    <element name="watchdog">
      <attribute name="model">
        <choice>
          <value>i6300esb</value>
          <value>ib700</value>
4172
          <value>diag288</value>
4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183
        </choice>
      </attribute>
      <optional>
        <attribute name="action">
          <choice>
            <value>reset</value>
            <value>shutdown</value>
            <value>poweroff</value>
            <value>pause</value>
            <value>none</value>
            <value>dump</value>
4184
            <value>inject-nmi</value>
4185 4186 4187
          </choice>
        </attribute>
      </optional>
4188 4189 4190
      <optional>
        <ref name="alias"/>
      </optional>
4191 4192 4193 4194 4195
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
L
Li Zhang 已提交
4196 4197 4198 4199 4200 4201 4202
  <define name="nvram">
    <element name="nvram">
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
4203 4204 4205

  <define name="shmem">
    <element name="shmem">
4206 4207 4208 4209 4210
      <attribute name="name">
        <data type="string">
          <param name="pattern">[^/]*</param>
        </data>
      </attribute>
4211
      <interleave>
4212 4213 4214 4215 4216
        <optional>
          <element name="model">
            <attribute name="type">
              <choice>
                <value>ivshmem</value>
4217 4218
                <value>ivshmem-plain</value>
                <value>ivshmem-doorbell</value>
4219 4220 4221 4222
              </choice>
            </attribute>
          </element>
        </optional>
4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248
        <optional>
          <element name="size">
            <ref name="scaledInteger"/>
          </element>
        </optional>
        <optional>
          <element name="server">
            <optional>
              <attribute name="path">
                <ref name="absFilePath"/>
              </attribute>
            </optional>
          </element>
        </optional>
        <optional>
          <element name="msi">
            <optional>
              <ref name="ioeventfd"/>
            </optional>
            <optional>
              <attribute name="vectors">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </element>
        </optional>
4249 4250 4251
        <optional>
          <ref name="alias"/>
        </optional>
4252 4253 4254 4255 4256 4257 4258
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
    </element>
  </define>

4259 4260 4261 4262 4263
  <define name="memballoon">
    <element name="memballoon">
      <attribute name="model">
        <choice>
          <value>virtio</value>
4264 4265
          <value>virtio-transitional</value>
          <value>virtio-non-transitional</value>
4266 4267 4268 4269
          <value>xen</value>
          <value>none</value>
        </choice>
      </attribute>
4270 4271 4272 4273 4274
      <optional>
        <attribute name="autodeflate">
          <ref name="virOnOff"/>
        </attribute>
      </optional>
4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <optional>
          <element name="stats">
            <attribute name="period">
              <ref name='positiveInteger'/>
            </attribute>
          </element>
        </optional>
4289 4290 4291 4292 4293
        <optional>
          <element name="driver">
            <ref name="virtioOptions"/>
          </element>
        </optional>
4294
      </interleave>
4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323
    </element>
  </define>
  <define name="parallel">
    <element name="parallel">
      <ref name="qemucdev"/>
    </element>
  </define>
  <define name="serial">
    <element name="serial">
      <ref name="qemucdev"/>
    </element>
  </define>
  <define name="guestfwdTarget">
    <element name="target">
      <attribute name="type">
        <value>guestfwd</value>
      </attribute>
      <attribute name="address"/>
      <attribute name="port"/>
    </element>
  </define>
  <define name="virtioTarget">
    <element name="target">
      <attribute name="type">
        <value>virtio</value>
      </attribute>
      <optional>
        <attribute name="name"/>
      </optional>
4324 4325 4326 4327 4328 4329 4330 4331
      <optional>
        <attribute name="state">
          <choice>
            <value>connected</value>
            <value>disconnected</value>
          </choice>
        </attribute>
      </optional>
4332 4333
    </element>
  </define>
J
Joao Martins 已提交
4334 4335 4336 4337 4338 4339 4340 4341 4342 4343
  <define name="xenTarget">
    <element name="target">
      <attribute name="type">
        <value>xen</value>
      </attribute>
      <optional>
        <attribute name="name"/>
      </optional>
    </element>
  </define>
4344 4345 4346 4347 4348 4349 4350 4351
  <define name="channel">
    <element name="channel">
      <ref name="qemucdevSrcType"/>
      <interleave>
        <ref name="qemucdevSrcDef"/>
        <choice>
          <ref name="guestfwdTarget"/>
          <ref name="virtioTarget"/>
J
Joao Martins 已提交
4352
          <ref name="xenTarget"/>
4353
        </choice>
4354 4355 4356
        <optional>
          <ref name="alias"/>
        </optional>
4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
    </element>
  </define>
  <define name="smartcard">
    <element name="smartcard">
      <choice>
        <group>
          <attribute name="mode">
            <value>host</value>
          </attribute>
          <!-- might need to add optional database element here later -->
        </group>
        <group>
          <attribute name="mode">
            <value>host-certificates</value>
          </attribute>
          <ref name='certificate'/>
          <ref name='certificate'/>
          <ref name='certificate'/>
          <optional>
            <element name="database">
              <ref name="absDirPath"/>
            </element>
          </optional>
        </group>
        <group>
          <attribute name="mode">
            <value>passthrough</value>
          </attribute>
          <ref name="qemucdevSrcType"/>
          <interleave>
            <ref name="qemucdevSrcDef"/>
            <optional>
              <ref name="qemucdevTgtDef"/>
            </optional>
          </interleave>
        </group>
      </choice>
4398 4399 4400
      <optional>
        <ref name="alias"/>
      </optional>
4401 4402 4403 4404 4405 4406 4407 4408 4409 4410
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <define name="certificate">
    <element name="certificate">
      <text/>
    </element>
  </define>
4411 4412 4413 4414 4415

  <define name="tpm">
    <element name="tpm">
      <optional>
        <attribute name="model">
4416 4417 4418
          <choice>
            <value>tpm-tis</value>
            <value>tpm-crb</value>
4419
            <value>tpm-spapr</value>
4420
          </choice>
4421 4422 4423 4424 4425 4426
        </attribute>
      </optional>
      <ref name="tpm-backend"/>
      <optional>
        <ref name="alias"/>
      </optional>
4427 4428 4429
      <optional>
        <ref name="address"/>
      </optional>
4430 4431 4432 4433 4434
    </element>
  </define>

  <define name="tpm-backend">
    <element name="backend">
M
Michal Privoznik 已提交
4435 4436 4437 4438 4439 4440 4441
      <choice>
        <group>
          <attribute name="type">
            <value>passthrough</value>
          </attribute>
          <ref name="tpm-passthrough-device"/>
        </group>
4442 4443 4444 4445
        <group>
          <attribute name="type">
             <value>emulator</value>
          </attribute>
4446
          <ref name="tpm-backend-emulator-encryption"/>
4447
        </group>
M
Michal Privoznik 已提交
4448
      </choice>
4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460
      <choice>
        <group>
          <optional>
            <attribute name="version">
              <choice>
                <value>1.2</value>
                <value>2.0</value>
              </choice>
           </attribute>
          </optional>
        </group>
      </choice>
4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472
    </element>
  </define>

  <define name="tpm-passthrough-device">
    <optional>
      <element name="device">
        <optional>
          <attribute name="path">
            <ref name="filePath"/>
          </attribute>
        </optional>
      </element>
M
Michal Privoznik 已提交
4473
    </optional>
4474 4475
  </define>

4476 4477 4478 4479 4480 4481 4482 4483 4484 4485
  <define name="tpm-backend-emulator-encryption">
    <optional>
      <element name="encryption">
        <attribute name="secret">
          <ref name="UUID"/>
        </attribute>
      </element>
    </optional>
  </define>

J
Ján Tomko 已提交
4486 4487 4488 4489
  <define name="vsock">
    <element name="vsock">
      <optional>
        <attribute name="model">
4490 4491 4492 4493 4494
          <choice>
            <value>virtio</value>
            <value>virtio-transitional</value>
            <value>virtio-non-transitional</value>
          </choice>
J
Ján Tomko 已提交
4495 4496 4497 4498
        </attribute>
      </optional>
      <interleave>
        <optional>
4499
          <element name="cid">
J
Ján Tomko 已提交
4500 4501 4502 4503 4504 4505
            <optional>
              <attribute name="auto">
                <ref name="virYesNo"/>
              </attribute>
            </optional>
            <optional>
4506
              <attribute name="address">
J
Ján Tomko 已提交
4507 4508 4509 4510 4511 4512 4513 4514
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </element>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
4515 4516 4517
        <optional>
          <ref name="alias"/>
        </optional>
J
Ján Tomko 已提交
4518 4519 4520
      </interleave>
    </element>
  </define>
J
Ján Tomko 已提交
4521 4522 4523
  <define name="iommu">
    <element name="iommu">
      <attribute name="model">
4524 4525 4526 4527
        <choice>
          <value>intel</value>
          <value>smmuv3</value>
        </choice>
J
Ján Tomko 已提交
4528
      </attribute>
4529 4530 4531 4532 4533 4534 4535
      <optional>
        <element name="driver">
          <optional>
            <attribute name="intremap">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
4536 4537 4538 4539 4540
          <optional>
            <attribute name="caching_mode">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
4541 4542 4543 4544 4545
          <optional>
            <attribute name="eim">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
J
Ján Tomko 已提交
4546 4547 4548 4549 4550
          <optional>
            <attribute name="iotlb">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
4551 4552
        </element>
      </optional>
J
Ján Tomko 已提交
4553 4554 4555
    </element>
  </define>

4556 4557
  <define name="input">
    <element name="input">
4558 4559 4560 4561 4562 4563 4564 4565 4566
      <interleave>
        <optional>
          <element name="driver">
            <ref name="virtioOptions"/>
          </element>
        </optional>
        <choice>
          <group>
            <attribute name="type">
4567
              <choice>
4568 4569 4570
                <value>tablet</value>
                <value>mouse</value>
                <value>keyboard</value>
4571 4572
              </choice>
            </attribute>
4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586
            <optional>
              <attribute name="bus">
                <choice>
                  <value>ps2</value>
                  <value>usb</value>
                  <value>xen</value>
                  <value>virtio</value>
                </choice>
              </attribute>
            </optional>
          </group>
          <group>
            <attribute name="type">
              <value>passthrough</value>
4587
            </attribute>
4588 4589 4590 4591 4592 4593 4594 4595 4596 4597
            <attribute name="bus">
              <value>virtio</value>
            </attribute>
            <element name="source">
              <attribute name="evdev">
                <ref name="absFilePath"/>
              </attribute>
            </element>
          </group>
        </choice>
4598 4599 4600 4601 4602 4603 4604 4605 4606
        <optional>
          <attribute name="model">
            <choice>
              <value>virtio</value>
              <value>virtio-transitional</value>
              <value>virtio-non-transitional</value>
            </choice>
          </attribute>
        </optional>
4607 4608 4609 4610 4611 4612 4613
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
4614 4615 4616 4617 4618
    </element>
  </define>
  <define name="hub">
    <element name="hub">
      <attribute name="type">
M
Michal Privoznik 已提交
4619
        <value>usb</value>
4620
      </attribute>
4621 4622 4623 4624 4625 4626 4627 4628
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
4629 4630 4631 4632 4633
    </element>
  </define>
  <define name="redirdev">
    <element name="redirdev">
      <attribute name="bus">
M
Michal Privoznik 已提交
4634
        <value>usb</value>
4635 4636 4637 4638
      </attribute>
      <attribute name="type">
        <ref name="qemucdevSrcTypeChoice"/>
      </attribute>
4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650
      <interleave>
        <ref name="qemucdevSrcDef"/>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <optional>
          <ref name="deviceBoot"/>
        </optional>
      </interleave>
4651 4652
    </element>
  </define>
4653 4654 4655 4656 4657 4658 4659
  <define name="redirfilter">
    <element name="redirfilter">
      <zeroOrMore>
        <ref name="usbdevfilter"/>
      </zeroOrMore>
    </element>
  </define>
4660

4661 4662
  <define name="hostdev">
    <element name="hostdev">
O
Osier Yang 已提交
4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683
      <interleave>
        <choice>
          <group>
            <ref name="hostdevsubsys"/>
          </group>
          <group>
            <ref name="hostdevcaps"/>
          </group>
        </choice>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="deviceBoot"/>
        </optional>
        <optional>
          <ref name="rom"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
O
Osier Yang 已提交
4684 4685 4686 4687 4688
        <optional>
          <element name="readonly">
            <empty/>
          </element>
        </optional>
4689 4690 4691 4692 4693
        <optional>
          <element name="shareable">
            <empty/>
          </element>
        </optional>
O
Osier Yang 已提交
4694
      </interleave>
4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705
    </element>
  </define>

  <define name="hostdevsubsys">
    <optional>
      <attribute name="mode">
        <value>subsystem</value>
      </attribute>
    </optional>
    <optional>
      <attribute name="managed">
4706
        <ref name="virYesNo"/>
4707 4708 4709 4710 4711
      </attribute>
    </optional>
    <choice>
      <ref name="hostdevsubsyspci"/>
      <ref name="hostdevsubsysusb"/>
H
Han Cheng 已提交
4712
      <ref name="hostdevsubsysscsi"/>
4713
      <ref name="hostdevsubsyshost"/>
4714
      <ref name="hostdevsubsysmdev"/>
4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728
    </choice>
  </define>

  <define name="hostdevcaps">
    <attribute name="mode">
      <value>capabilities</value>
    </attribute>
    <choice>
      <group>
        <ref name="hostdevcapsstorage"/>
      </group>
      <group>
        <ref name="hostdevcapsmisc"/>
      </group>
4729 4730 4731
      <group>
        <ref name="hostdevcapsnet"/>
      </group>
4732 4733 4734 4735 4736 4737 4738 4739
    </choice>
  </define>


  <define name="hostdevsubsyspci">
    <attribute name="type">
      <value>pci</value>
    </attribute>
4740
    <interleave>
4741
      <optional>
4742 4743 4744 4745 4746
        <element name="driver">
          <attribute name="name">
            <choice>
              <value>kvm</value>
              <value>vfio</value>
4747
              <value>xen</value>
4748 4749 4750 4751
            </choice>
          </attribute>
          <empty/>
        </element>
4752
      </optional>
4753 4754 4755 4756 4757 4758 4759
      <element name="source">
        <optional>
          <ref name="startupPolicy"/>
        </optional>
        <element name="address">
          <ref name="pciaddress"/>
        </element>
4760
      </element>
4761
    </interleave>
4762
  </define>
4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783

  <define name="hostdevsubsysusb">
    <attribute name="type">
      <value>usb</value>
    </attribute>
    <element name="source">
      <optional>
        <ref name="startupPolicy"/>
      </optional>
      <choice>
        <group>
          <ref name="usbproduct"/>
          <optional>
            <ref name="usbaddress"/>
          </optional>
        </group>
        <ref name="usbaddress"/>
      </choice>
    </element>
  </define>

H
Han Cheng 已提交
4784 4785 4786 4787
  <define name="hostdevsubsysscsi">
    <attribute name="type">
      <value>scsi</value>
    </attribute>
O
Osier Yang 已提交
4788
    <optional>
M
Michal Privoznik 已提交
4789
      <ref name="sgIO"/>
O
Osier Yang 已提交
4790
    </optional>
4791 4792 4793
    <optional>
      <ref name="rawIO"/>
    </optional>
H
Han Cheng 已提交
4794
    <element name="source">
J
John Ferlan 已提交
4795 4796 4797 4798
      <choice>
        <group>  <!-- scsi_host adapter -->
          <optional>
            <attribute name="protocol">
M
Michal Privoznik 已提交
4799
              <value>adapter</value>   <!-- scsi_host, default, optional -->
J
John Ferlan 已提交
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810
            </attribute>
          </optional>
          <interleave>
            <ref name="sourceinfoadapter"/>
            <element name="address">
              <ref name="scsiaddress"/>
            </element>
          </interleave>
        </group>
        <group>  <!-- iscsi adapter -->
          <attribute name="protocol">
M
Michal Privoznik 已提交
4811
            <value>iscsi</value>     <!-- iscsi, required -->
J
John Ferlan 已提交
4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835
          </attribute>
          <attribute name="name">
            <text/>
          </attribute>
          <interleave>
            <oneOrMore>
              <element name='host'>
                <attribute name='name'>
                  <text/>
                </attribute>
                <optional>
                  <attribute name='port'>
                    <ref name="PortNumber"/>
                  </attribute>
                </optional>
                <empty/>
              </element>
            </oneOrMore>
            <optional>
              <ref name='diskAuth'/>
            </optional>
          </interleave>
        </group>
      </choice>
H
Han Cheng 已提交
4836 4837 4838
    </element>
  </define>

4839 4840 4841 4842
  <define name="hostdevsubsyshost">
    <attribute name="type">
      <value>scsi_host</value>
    </attribute>
4843 4844 4845 4846 4847 4848 4849 4850 4851
    <optional>
      <attribute name="model">
        <choice>
          <value>virtio</value>
          <value>virtio-transitional</value>
          <value>virtio-non-transitional</value>
        </choice>
      </attribute>
    </optional>
4852 4853 4854 4855
    <element name="source">
      <choice>
        <group>
          <attribute name="protocol">
M
Michal Privoznik 已提交
4856
            <value>vhost</value>     <!-- vhost, required -->
4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867
          </attribute>
          <attribute name="wwpn">
            <data type="string">
              <param name="pattern">(naa\.)[0-9a-fA-F]{16}</param>
            </data>
          </attribute>
        </group>
      </choice>
    </element>
  </define>

4868 4869 4870 4871 4872
  <define name="hostdevsubsysmdev">
    <attribute name="type">
      <value>mdev</value>
    </attribute>
    <attribute name="model">
4873 4874 4875
      <choice>
        <value>vfio-pci</value>
        <value>vfio-ccw</value>
B
Boris Fiuczynski 已提交
4876
        <value>vfio-ap</value>
4877
      </choice>
4878
    </attribute>
4879 4880 4881 4882 4883
    <optional>
      <attribute name="ramfb">
        <ref name="virOnOff"/>
      </attribute>
    </optional>
4884 4885 4886 4887 4888
    <optional>
      <attribute name="display">
        <ref name="virOnOff"/>
      </attribute>
    </optional>
4889 4890 4891 4892 4893
    <element name="source">
      <ref name="mdevaddress"/>
    </element>
  </define>

4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915
  <define name="hostdevcapsstorage">
    <attribute name="type">
      <value>storage</value>
    </attribute>
    <element name="source">
      <element name="block">
        <ref name="absFilePath"/>
      </element>
    </element>
  </define>

  <define name="hostdevcapsmisc">
    <attribute name="type">
      <value>misc</value>
    </attribute>
    <element name="source">
      <element name="char">
        <ref name="absFilePath"/>
      </element>
    </element>
  </define>

4916 4917 4918 4919
  <define name="hostdevcapsnet">
    <attribute name="type">
      <value>net</value>
    </attribute>
4920 4921 4922 4923 4924
    <interleave>
      <element name="source">
        <element name="interface">
          <ref name="deviceName"/>
        </element>
4925
      </element>
4926
      <ref name="interface-ip-info"/>
4927
    </interleave>
4928 4929
  </define>

4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947
  <define name="usbproduct">
    <element name="vendor">
      <attribute name="id">
        <ref name="usbId"/>
      </attribute>
    </element>
    <element name="product">
      <attribute name="id">
        <ref name="usbId"/>
      </attribute>
    </element>
  </define>
  <define name="usbaddress">
    <element name="address">
      <attribute name="bus">
        <ref name="usbAddr"/>
      </attribute>
      <attribute name="device">
4948
        <ref name="usbAddr"/>
4949 4950 4951
      </attribute>
    </element>
  </define>
H
Han Cheng 已提交
4952 4953 4954 4955 4956
  <define name="scsiaddress">
    <attribute name="bus">
      <ref name="driveBus"/>
    </attribute>
    <attribute name="target">
4957
      <ref name="driveSCSITarget"/>
H
Han Cheng 已提交
4958 4959
    </attribute>
    <attribute name="unit">
4960
      <ref name="driveSCSIUnit"/>
H
Han Cheng 已提交
4961 4962
    </attribute>
  </define>
4963 4964 4965 4966
  <define name="usbportaddress">
    <attribute name="bus">
      <ref name="usbAddr"/>
    </attribute>
J
Ján Tomko 已提交
4967 4968 4969 4970 4971
    <optional>
      <attribute name="port">
        <ref name="usbPort"/>
      </attribute>
    </optional>
4972
  </define>
4973 4974 4975 4976 4977 4978 4979
  <define name="spaprvioaddress">
    <optional>
      <attribute name="reg">
        <ref name="spaprvioReg"/>
      </attribute>
    </optional>
  </define>
4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992
  <define name="ccwaddress">
    <optional>
      <attribute name="cssid">
        <ref name="ccwCssidRange"/>
      </attribute>
      <attribute name="ssid">
        <ref name="ccwSsidRange"/>
      </attribute>
      <attribute name="devno">
        <ref name="ccwDevnoRange"/>
      </attribute>
    </optional>
  </define>
4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003
  <define name="driveaddress">
    <optional>
      <attribute name="controller">
        <ref name="driveController"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="bus">
        <ref name="driveBus"/>
      </attribute>
    </optional>
5004 5005 5006 5007 5008
    <optional>
      <attribute name="target">
        <ref name="driveTarget"/>
      </attribute>
    </optional>
5009 5010 5011 5012 5013
    <optional>
      <attribute name="unit">
        <ref name="driveUnit"/>
      </attribute>
    </optional>
5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025
  </define>
  <define name="virtioserialaddress">
    <attribute name="controller">
      <ref name="driveController"/>
    </attribute>
    <optional>
      <attribute name="bus">
        <ref name="driveBus"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="port">
5026
        <ref name="virtioserialPort"/>
5027 5028 5029 5030 5031 5032 5033 5034 5035
      </attribute>
    </optional>
  </define>
  <define name="ccidaddress">
    <attribute name="controller">
      <ref name="driveController"/>
    </attribute>
    <optional>
      <attribute name="slot">
5036
        <ref name="ccidSlot"/>
5037 5038 5039
      </attribute>
    </optional>
  </define>
5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051
  <define name="dimmaddress">
    <optional>
      <attribute name="slot">
        <ref name="unsignedInt"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="base">
        <ref name="hexuint"/>
      </attribute>
    </optional>
  </define>
5052 5053 5054 5055 5056 5057 5058
  <define name="mdevaddress">
    <element name="address">
      <attribute name="uuid">
        <ref name="UUID"/>
      </attribute>
    </element>
  </define>
5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083
  <define name="devices">
    <element name="devices">
      <interleave>
        <optional>
          <ref name="emulator"/>
        </optional>
        <zeroOrMore>
          <choice>
            <ref name="disk"/>
            <ref name="controller"/>
            <ref name="lease"/>
            <ref name="filesystem"/>
            <ref name="interface"/>
            <ref name="input"/>
            <ref name="sound"/>
            <ref name="hostdev"/>
            <ref name="graphic"/>
            <ref name="video"/>
            <ref name="console"/>
            <ref name="parallel"/>
            <ref name="serial"/>
            <ref name="channel"/>
            <ref name="smartcard"/>
            <ref name="hub"/>
            <ref name="redirdev"/>
5084
            <ref name="redirfilter"/>
5085
            <ref name="rng"/>
5086
            <ref name="tpm"/>
5087
            <ref name="shmem"/>
5088
            <ref name="memorydev"/>
5089 5090 5091 5092 5093 5094 5095 5096
          </choice>
        </zeroOrMore>
        <optional>
          <ref name="watchdog"/>
        </optional>
        <optional>
          <ref name="memballoon"/>
        </optional>
L
Li Zhang 已提交
5097 5098 5099
        <optional>
          <ref name="nvram"/>
        </optional>
D
Dmitry Andreev 已提交
5100
        <zeroOrMore>
H
Hu Tao 已提交
5101
          <ref name="panic"/>
D
Dmitry Andreev 已提交
5102
        </zeroOrMore>
J
Ján Tomko 已提交
5103 5104 5105
        <optional>
          <ref name="iommu"/>
        </optional>
J
Ján Tomko 已提交
5106 5107 5108
        <optional>
          <ref name="vsock"/>
        </optional>
5109 5110 5111 5112
      </interleave>
    </element>
  </define>
  <!--
M
Michal Privoznik 已提交
5113
      A set of optional features: PAE, APIC, ACPI, GIC,
5114
      HyperV Enlightenment, KVM features, paravirtual spinlocks and HAP support
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126
    -->
  <define name="features">
    <optional>
      <element name="features">
        <interleave>
          <optional>
            <element name="pae">
              <empty/>
            </element>
          </optional>
          <optional>
            <element name="apic">
5127 5128
              <optional>
                <attribute name="eoi">
5129
                  <ref name="virOnOff"/>
5130 5131
                </attribute>
              </optional>
5132 5133 5134 5135 5136 5137 5138 5139 5140
            </element>
          </optional>
          <optional>
            <element name="acpi">
              <empty/>
            </element>
          </optional>
          <optional>
            <element name="hap">
5141 5142 5143 5144 5145
              <optional>
                <attribute name="state">
                  <ref name="virOnOff"/>
                </attribute>
              </optional>
5146 5147
            </element>
          </optional>
5148 5149 5150
          <optional>
            <ref name="hyperv"/>
          </optional>
5151 5152 5153 5154 5155
          <optional>
            <element name="viridian">
              <empty/>
            </element>
          </optional>
5156 5157 5158
          <optional>
            <ref name="kvm"/>
          </optional>
5159 5160 5161 5162 5163
          <optional>
            <element name="privnet">
              <empty/>
            </element>
          </optional>
5164 5165 5166 5167 5168 5169 5170 5171
          <optional>
            <element name="pvspinlock">
              <optional>
                <ref name="featurestate"/>
              </optional>
              <empty/>
            </element>
          </optional>
5172 5173 5174
          <optional>
            <ref name="capabilities"/>
          </optional>
5175 5176 5177
          <optional>
            <ref name="pmu"/>
          </optional>
5178 5179 5180 5181 5182 5183 5184 5185 5186
          <optional>
            <element name="vmport">
              <optional>
                <attribute name="state">
                  <ref name="virOnOff"/>
                </attribute>
              </optional>
            </element>
          </optional>
M
Michal Privoznik 已提交
5187 5188 5189 5190
          <optional>
            <element name="gic">
              <optional>
                <attribute name="version">
5191 5192 5193 5194 5195
                  <choice>
                    <value>host</value>
                    <value>2</value>
                    <value>3</value>
                  </choice>
M
Michal Privoznik 已提交
5196 5197 5198 5199
                </attribute>
              </optional>
            </element>
          </optional>
M
Michal Privoznik 已提交
5200 5201 5202 5203 5204 5205
          <optional>
            <element name="smm">
              <optional>
                <attribute name="state">
                  <ref name="virOnOff"/>
                </attribute>
5206 5207 5208 5209 5210
                <optional>
                  <element name="tseg">
                    <ref name="scaledInteger"/>
                  </element>
                </optional>
M
Michal Privoznik 已提交
5211 5212 5213
              </optional>
            </element>
          </optional>
5214 5215 5216
          <optional>
            <ref name="ioapic"/>
          </optional>
5217 5218 5219
          <optional>
            <ref name="hpt"/>
          </optional>
M
Marc-André Lureau 已提交
5220 5221 5222
          <optional>
            <ref name="vmcoreinfo"/>
          </optional>
5223 5224 5225 5226 5227
          <optional>
            <element name="htm">
              <ref name="featurestate"/>
            </element>
          </optional>
5228 5229 5230 5231 5232
          <optional>
            <element name="nested-hv">
              <ref name="featurestate"/>
            </element>
          </optional>
5233 5234 5235
          <optional>
            <ref name="msrs"/>
          </optional>
5236 5237 5238 5239 5240
          <optional>
            <element name="ccf-assist">
              <ref name="featurestate"/>
            </element>
          </optional>
5241 5242 5243 5244 5245 5246 5247 5248 5249
        </interleave>
      </element>
    </optional>
  </define>
  <!--
      CPU specification
      -->
  <define name="cpu">
    <element name="cpu">
5250 5251 5252 5253 5254 5255
      <optional>
        <ref name="cpuMode"/>
      </optional>
      <optional>
        <ref name="cpuMatch"/>
      </optional>
5256 5257 5258
      <optional>
        <ref name="cpuCheck"/>
      </optional>
5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274
      <interleave>
        <optional>
          <ref name="cpuModel"/>
        </optional>
        <optional>
          <ref name="cpuVendor"/>
        </optional>
        <optional>
          <ref name="cpuTopology"/>
        </optional>
        <zeroOrMore>
          <ref name="cpuFeature"/>
        </zeroOrMore>
        <optional>
          <ref name="cpuNuma"/>
        </optional>
5275 5276 5277
        <optional>
          <ref name="cpuCache"/>
        </optional>
5278
      </interleave>
5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323
    </element>
  </define>

  <!--
      System information specification:
       Placeholder for system specific informations likes the ones
       contained in the SMBIOS area.
       Only a limited subset of entries can be modified there, so we
       fully enumerate each case here.
       The DMTF spec doesn't specify any string subset, just 0 terminated
       byte strings, but better be safe and restrict at least the names
       to avoid problems with space normalization in attribute values,
       the value is kept as the element body for maximum flexibility.
       A priori we allow only type 0 and type 1 string updates
      -->
  <define name="sysinfo">
    <element name="sysinfo">
      <attribute name="type">
        <value>smbios</value>
      </attribute>
      <interleave>
        <optional>
          <element name="bios">
            <oneOrMore>
              <element name="entry">
                <attribute name="name">
                  <ref name="sysinfo-bios-name"/>
                </attribute>
                <ref name="sysinfo-value"/>
              </element>
            </oneOrMore>
          </element>
        </optional>
        <optional>
          <element name="system">
            <oneOrMore>
              <element name="entry">
                <attribute name="name">
                  <ref name="sysinfo-system-name"/>
                </attribute>
                <ref name="sysinfo-value"/>
              </element>
            </oneOrMore>
          </element>
        </optional>
5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335
        <zeroOrMore>
          <element name="baseBoard">
            <oneOrMore>
              <element name="entry">
                <attribute name="name">
                  <ref name="sysinfo-baseBoard-name"/>
                </attribute>
                <ref name="sysinfo-value"/>
              </element>
            </oneOrMore>
          </element>
        </zeroOrMore>
5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347
        <optional>
          <element name="chassis">
            <oneOrMore>
              <element name="entry">
                <attribute name="name">
                  <ref name="sysinfo-chassis-name"/>
                </attribute>
                <ref name="sysinfo-value"/>
              </element>
            </oneOrMore>
          </element>
        </optional>
5348 5349 5350 5351 5352 5353 5354 5355 5356
        <optional>
          <element name="oemStrings">
            <oneOrMore>
              <element name="entry">
                <ref name="sysinfo-value"/>
              </element>
            </oneOrMore>
          </element>
        </optional>
5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381
      </interleave>
    </element>
  </define>

  <define name="sysinfo-bios-name">
    <choice>
      <value>vendor</value>
      <value>version</value>
      <value>date</value>
      <value>release</value>
    </choice>
  </define>

  <define name="sysinfo-system-name">
    <choice>
      <value>manufacturer</value>
      <value>product</value>
      <value>version</value>
      <value>serial</value>
      <value>uuid</value>
      <value>sku</value>
      <value>family</value>
    </choice>
  </define>

5382 5383 5384 5385 5386 5387 5388 5389 5390
  <define name="sysinfo-baseBoard-name">
    <choice>
      <value>manufacturer</value>
      <value>product</value>
      <value>version</value>
      <value>serial</value>
      <value>asset</value>
      <value>location</value>
    </choice>
5391 5392 5393 5394 5395 5396 5397 5398 5399 5400
  </define>

  <define name="sysinfo-chassis-name">
    <choice>
      <value>manufacturer</value>
      <value>version</value>
      <value>serial</value>
      <value>asset</value>
      <value>sku</value>
    </choice>
5401 5402
  </define>

5403
  <define name="sysinfo-value">
P
Peter Krempa 已提交
5404
    <data type="string"/>
5405 5406
  </define>

J
Ján Tomko 已提交
5407 5408 5409 5410 5411
  <define name="acpiTable">
    <element name="acpi">
      <zeroOrMore>
        <element name="table">
          <attribute name="type">
M
Michal Privoznik 已提交
5412
            <value>slic</value>
J
Ján Tomko 已提交
5413 5414 5415 5416 5417 5418 5419
          </attribute>
          <ref name="absFilePath"/>
        </element>
      </zeroOrMore>
    </element>
  </define>

5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434
  <define name="smbios">
    <element name="smbios">
      <attribute name="mode">
        <choice>
          <value>emulate</value>
          <value>host</value>
          <value>sysinfo</value>
        </choice>
      </attribute>
      <empty/>
    </element>
  </define>

  <define name="bios">
    <element name="bios">
5435 5436
      <optional>
        <attribute name="useserial">
5437
          <ref name="virYesNo"/>
5438 5439 5440 5441 5442 5443 5444
        </attribute>
      </optional>
      <optional>
        <attribute name="rebootTimeout">
          <ref name="rebootTimeoutDelay"/>
        </attribute>
      </optional>
5445 5446 5447
    </element>
  </define>

5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459
  <define name="ioapic">
    <element name="ioapic">
      <attribute name="driver">
        <choice>
          <value>qemu</value>
          <value>kvm</value>
        </choice>
      </attribute>
      <empty/>
    </element>
  </define>

5460 5461
  <define name="hpt">
    <element name="hpt">
5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475
      <optional>
        <attribute name="resizing">
          <choice>
            <value>enabled</value>
            <value>disabled</value>
            <value>required</value>
          </choice>
        </attribute>
      </optional>
      <optional>
        <element name="maxpagesize">
          <ref name='scaledInteger'/>
        </element>
      </optional>
5476 5477 5478
    </element>
  </define>

M
Marc-André Lureau 已提交
5479 5480
  <define name="vmcoreinfo">
    <element name="vmcoreinfo">
5481 5482 5483 5484 5485
      <optional>
        <attribute name="state">
          <ref name="virOnOff"/>
        </attribute>
      </optional>
M
Marc-André Lureau 已提交
5486 5487 5488
    </element>
  </define>

5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499
  <define name="msrs">
    <element name="msrs">
      <attribute name="unknown">
        <choice>
          <value>ignore</value>
          <value>fault</value>
        </choice>
      </attribute>
    </element>
  </define>

5500 5501 5502 5503 5504 5505 5506 5507
  <define name="address">
    <element name="address">
      <choice>
        <group>
          <attribute name="type">
            <value>pci</value>
          </attribute>
          <ref name="pciaddress"/>
5508
          <ref name="zpciaddress"/>
5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533
        </group>
        <group>
          <attribute name="type">
            <value>drive</value>
          </attribute>
          <ref name="driveaddress"/>
        </group>
        <group>
          <attribute name="type">
            <value>virtio-serial</value>
          </attribute>
          <ref name="virtioserialaddress"/>
        </group>
        <group>
          <attribute name="type">
            <value>ccid</value>
          </attribute>
          <ref name="ccidaddress"/>
        </group>
        <group>
          <attribute name="type">
            <value>usb</value>
          </attribute>
          <ref name="usbportaddress"/>
        </group>
5534 5535 5536 5537 5538 5539
        <group>
          <attribute name="type">
            <value>spapr-vio</value>
          </attribute>
          <ref name="spaprvioaddress"/>
        </group>
5540 5541 5542 5543 5544 5545
        <group>
          <attribute name="type">
            <value>ccw</value>
          </attribute>
          <ref name="ccwaddress"/>
        </group>
H
Hu Tao 已提交
5546 5547 5548 5549 5550 5551
        <group>
          <attribute name="type">
            <value>isa</value>
          </attribute>
          <ref name="isaaddress"/>
        </group>
5552 5553 5554 5555 5556
        <group>
          <attribute name="type">
            <value>virtio-mmio</value>
          </attribute>
        </group>
5557 5558 5559 5560 5561 5562
        <group>
          <attribute name="type">
            <value>dimm</value>
          </attribute>
          <ref name="dimmaddress"/>
        </group>
5563 5564 5565 5566 5567
        <group>
          <attribute name="type">
            <value>unassigned</value>
          </attribute>
        </group>
5568 5569 5570 5571
      </choice>
    </element>
  </define>

5572 5573
  <define name="rom">
    <element name="rom">
5574 5575 5576 5577 5578
      <optional>
        <attribute name="enabled">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
5579 5580
      <optional>
        <attribute name="bar">
5581
          <ref name="virOnOff"/>
5582 5583 5584 5585 5586 5587 5588
        </attribute>
      </optional>
      <optional>
        <attribute name="file">
          <ref name="absFilePath"/>
        </attribute>
      </optional>
5589 5590 5591 5592
      <empty/>
    </element>
  </define>

5593 5594 5595 5596 5597
  <define name="memorydev">
    <element name="memory">
      <attribute name="model">
        <choice>
          <value>dimm</value>
M
Michal Privoznik 已提交
5598
          <value>nvdimm</value>
5599 5600
        </choice>
      </attribute>
5601 5602 5603 5604 5605 5606 5607 5608
      <optional>
        <attribute name="access">
          <choice>
            <value>shared</value>
            <value>private</value>
          </choice>
        </attribute>
      </optional>
5609 5610 5611 5612 5613
      <optional>
        <attribute name="discard">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
5614 5615 5616 5617 5618 5619 5620 5621
      <interleave>
        <optional>
          <ref name="memorydev-source"/>
        </optional>
        <ref name="memorydev-target"/>
        <optional>
          <ref name="address"/>
        </optional>
5622 5623 5624
        <optional>
          <ref name="alias"/>
        </optional>
5625 5626 5627 5628 5629 5630
      </interleave>
    </element>
  </define>

  <define name="memorydev-source">
    <element name="source">
M
Michal Privoznik 已提交
5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646
      <choice>
        <group>
          <interleave>
            <optional>
              <element name="pagesize">
                <ref name="scaledInteger"/>
              </element>
            </optional>
            <optional>
              <element name="nodemask">
                <ref name="cpuset"/>
              </element>
            </optional>
          </interleave>
        </group>
        <group>
5647 5648 5649 5650 5651 5652 5653 5654 5655
          <interleave>
            <element name="path">
              <ref name="absFilePath"/>
            </element>
            <optional>
              <element name="alignsize">
                <ref name="scaledInteger"/>
              </element>
            </optional>
5656 5657 5658 5659 5660
            <optional>
              <element name="pmem">
                <empty/>
              </element>
            </optional>
5661
          </interleave>
M
Michal Privoznik 已提交
5662 5663
        </group>
      </choice>
5664 5665 5666 5667 5668 5669 5670 5671 5672
    </element>
  </define>

  <define name="memorydev-target">
    <element name="target">
      <interleave>
        <element name="size">
          <ref name="scaledInteger"/>
        </element>
5673 5674 5675 5676 5677
        <optional>
          <element name="node">
            <ref name="unsignedInt"/>
          </element>
        </optional>
5678 5679 5680 5681 5682 5683 5684
        <optional>
          <element name="label">
            <element name="size">
              <ref name="scaledInteger"/>
            </element>
          </element>
        </optional>
5685 5686 5687 5688 5689
        <optional>
          <element name="readonly">
            <empty/>
          </element>
        </optional>
5690 5691 5692 5693
      </interleave>
    </element>
  </define>

5694 5695 5696
  <define name="rng">
    <element name="rng">
      <attribute name="model">
5697 5698 5699 5700 5701
        <choice>
          <value>virtio</value>
          <value>virtio-transitional</value>
          <value>virtio-non-transitional</value>
        </choice>
5702
      </attribute>
5703 5704
      <interleave>
        <ref name="rng-backend"/>
5705 5706 5707 5708 5709
        <optional>
          <element name="driver">
            <ref name="virtioOptions"/>
          </element>
        </optional>
5710 5711 5712
        <optional>
          <ref name="rng-rate"/>
        </optional>
5713 5714 5715 5716 5717 5718
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
5719
      </interleave>
5720 5721 5722 5723 5724 5725 5726 5727 5728 5729
    </element>
  </define>

  <define name="rng-backend">
    <element name="backend">
      <choice>
        <group>
          <attribute name="model">
            <value>random</value>
          </attribute>
5730
          <choice>
5731
            <ref name='absFilePath'/>
5732
            <empty/>
5733
          </choice>
5734 5735 5736 5737 5738 5739 5740 5741
        </group>
        <group>
          <attribute name="model">
            <value>egd</value>
          </attribute>
          <ref name="qemucdevSrcType"/>
          <ref name="qemucdevSrcDef"/>
        </group>
H
Han Han 已提交
5742 5743 5744 5745 5746 5747
        <group>
          <attribute name="model">
            <value>builtin</value>
          </attribute>
          <empty/>
        </group>
5748 5749 5750 5751
      </choice>
    </element>
  </define>

5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765
  <define name="rng-rate">
    <element name="rate">
      <attribute name="bytes">
        <ref name="positiveInteger"/>
      </attribute>
      <optional>
        <attribute name="period">
          <ref name="positiveInteger"/>
        </attribute>
      </optional>
      <empty/>
    </element>
  </define>

5766 5767 5768 5769 5770
  <define name="virtioOptions">
    <optional>
      <attribute name="iommu">
        <ref name="virOnOff"/>
      </attribute>
5771 5772
    </optional>
    <optional>
5773 5774 5775 5776 5777 5778
      <attribute name="ats">
        <ref name="virOnOff"/>
      </attribute>
    </optional>
  </define>

5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792
  <define name="usbmaster">
    <element name="master">
      <attribute name="startport">
        <ref name="usbPort"/>
      </attribute>
      <empty/>
    </element>
  </define>

  <define name="deviceBoot">
    <element name="boot">
      <attribute name="order">
        <ref name="positiveInteger"/>
      </attribute>
5793 5794 5795 5796 5797 5798 5799
      <optional>
        <attribute name="loadparm">
          <data type="string">
            <param name="pattern">[a-zA-Z0-9.\s]{1,8}</param>
          </data>
        </attribute>
      </optional>
5800 5801 5802
      <empty/>
    </element>
  </define>
E
Eric Blake 已提交
5803

5804 5805
  <define name='diskMirror'>
    <element name='mirror'>
E
Eric Blake 已提交
5806
      <choice>
5807
        <group> <!-- old format, for block copy back-compat -->
E
Eric Blake 已提交
5808 5809 5810 5811 5812 5813 5814 5815
          <attribute name='file'>
            <ref name='absFilePath'/>
          </attribute>
          <optional>
            <attribute name='format'>
              <ref name='storageFormat'/>
            </attribute>
          </optional>
E
Eric Blake 已提交
5816 5817
          <optional>
            <attribute name='job'>
M
Michal Privoznik 已提交
5818
              <value>copy</value>
E
Eric Blake 已提交
5819 5820
            </attribute>
          </optional>
5821 5822 5823 5824 5825 5826 5827 5828
          <optional>
            <interleave>
              <ref name='diskSourceFile'/>
              <optional>
                <ref name="diskFormat"/>
              </optional>
            </interleave>
          </optional>
E
Eric Blake 已提交
5829
        </group>
5830
        <group> <!-- preferred format -->
E
Eric Blake 已提交
5831 5832 5833 5834 5835 5836
          <attribute name='job'>
            <choice>
              <value>copy</value>
              <value>active-commit</value>
            </choice>
          </attribute>
E
Eric Blake 已提交
5837 5838 5839 5840 5841 5842 5843 5844
          <interleave>
            <ref name="diskSource"/>
            <optional>
              <ref name="diskFormat"/>
            </optional>
          </interleave>
        </group>
      </choice>
5845 5846
      <optional>
        <attribute name='ready'>
5847 5848 5849 5850 5851
          <choice>
            <value>yes</value>
            <value>abort</value>
            <value>pivot</value>
          </choice>
5852 5853
        </attribute>
      </optional>
5854
      <ref name="diskBackingChain"/>
5855 5856
    </element>
  </define>
5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870
  <define name="diskAuth">
    <element name="auth">
      <attribute name="username">
        <ref name="genericName"/>
      </attribute>
      <ref name="diskAuthSecret"/>
    </element>
  </define>

  <define name='diskAuthSecret'>
    <element name='secret'>
      <attribute name='type'>
        <choice>
          <value>ceph</value>
5871
          <value>iscsi</value>
5872 5873 5874 5875 5876 5877
        </choice>
      </attribute>
      <choice>
        <attribute name='uuid'>
          <ref name="UUID"/>
        </attribute>
5878 5879
        <attribute name='usage'>
          <ref name='genericName'/>
5880 5881 5882 5883
        </attribute>
      </choice>
    </element>
  </define>
5884

L
Lei Li 已提交
5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925
  <define name='diskIoTune'>
    <element name="iotune">
      <interleave>
        <choice>
          <element name="total_bytes_sec">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_bytes_sec">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_bytes_sec">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
        <choice>
          <element name="total_iops_sec">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_iops_sec">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_iops_sec">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968
        <choice>
          <element name="total_bytes_sec_max">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_bytes_sec_max">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_bytes_sec_max">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
        <choice>
          <element name="total_iops_sec_max">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_iops_sec_max">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_iops_sec_max">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
        <optional>
          <element name="size_iops_sec">
            <data type="unsignedLong"/>
          </element>
        </optional>
5969 5970 5971 5972 5973
        <optional>
          <element name="group_name">
            <text/>
          </element>
        </optional>
5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011
        <choice>
          <element name="total_bytes_sec_max_length">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_bytes_sec_max_length">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_bytes_sec_max_length">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
        <choice>
          <element name="total_iops_sec_max_length">
            <data type="unsignedLong"/>
          </element>
          <group>
            <interleave>
              <optional>
                <element name="read_iops_sec_max_length">
                  <data type="unsignedLong"/>
                </element>
              </optional>
              <optional>
                <element name="write_iops_sec_max_length">
                  <data type="unsignedLong"/>
                </element>
              </optional>
            </interleave>
          </group>
        </choice>
L
Lei Li 已提交
6012 6013 6014 6015
      </interleave>
    </element>
  </define>

6016 6017 6018 6019 6020 6021
  <!-- Optional HyperV Enlightenment features -->
  <define name="hyperv">
    <element name="hyperv">
      <interleave>
        <optional>
          <element name="relaxed">
6022
            <ref name="featurestate"/>
6023 6024
          </element>
        </optional>
6025 6026
        <optional>
          <element name="vapic">
6027
            <ref name="featurestate"/>
6028 6029 6030 6031
          </element>
        </optional>
        <optional>
          <element name="spinlocks">
6032
            <ref name="featurestate"/>
6033 6034 6035 6036 6037
            <optional>
              <attribute name="retries">
                <data type="unsignedInt"/>
              </attribute>
            </optional>
6038 6039
          </element>
        </optional>
6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056
        <optional>
          <element name="vpindex">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="runtime">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="synic">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="stimer">
6057
            <ref name="stimer"/>
6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076
          </element>
        </optional>
        <optional>
          <element name="reset">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="vendor_id">
            <ref name="featurestate"/>
            <optional>
              <attribute name="value">
                <data type="string">
                  <param name='pattern'>[^,]{0,12}</param>
                </data>
              </attribute>
            </optional>
          </element>
        </optional>
6077 6078 6079 6080 6081
        <optional>
          <element name="frequencies">
            <ref name="featurestate"/>
          </element>
        </optional>
6082 6083 6084 6085 6086
        <optional>
          <element name="reenlightenment">
            <ref name="featurestate"/>
          </element>
        </optional>
6087 6088 6089 6090 6091
        <optional>
          <element name="tlbflush">
            <ref name="featurestate"/>
          </element>
        </optional>
6092 6093 6094 6095 6096
        <optional>
          <element name="ipi">
            <ref name="featurestate"/>
          </element>
        </optional>
6097 6098 6099 6100 6101
        <optional>
          <element name="evmcs">
            <ref name="featurestate"/>
          </element>
        </optional>
6102 6103 6104 6105
      </interleave>
    </element>
  </define>

6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119
  <!-- Hyper-V stimer features -->
  <define name="stimer">
    <interleave>
      <optional>
        <ref name="featurestate"/>
      </optional>
      <optional>
        <element name="direct">
          <ref name="featurestate"/>
        </element>
      </optional>
    </interleave>
  </define>

6120 6121 6122 6123 6124 6125 6126 6127 6128
  <!-- Optional KVM features -->
  <define name="kvm">
    <element name="kvm">
      <interleave>
        <optional>
          <element name="hidden">
            <ref name="featurestate"/>
          </element>
        </optional>
6129 6130 6131 6132 6133
        <optional>
          <element name="hint-dedicated">
            <ref name="featurestate"/>
          </element>
        </optional>
6134 6135 6136 6137
      </interleave>
    </element>
  </define>

6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331
  <!-- Optional capabilities features -->
  <define name="capabilities">
    <element name="capabilities">
      <ref name="capabilitiespolicy"/>
      <interleave>
        <optional>
          <element name="audit_control">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="audit_write">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="block_suspend">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="chown">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="dac_override">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="dac_read_search">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="fowner">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="fsetid">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="ipc_lock">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="ipc_owner">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="kill">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="lease">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="linux_immutable">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="mac_admin">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="mac_override">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="mknod">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="net_admin">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="net_bind_service">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="net_broadcast">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="net_raw">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="setgid">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="setfcap">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="setpcap">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="setuid">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_admin">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_boot">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_chroot">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_module">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_nice">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_pacct">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_ptrace">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_rawio">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_resource">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_time">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="sys_tty_config">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="syslog">
            <ref name="featurestate"/>
          </element>
        </optional>
        <optional>
          <element name="wake_alarm">
            <ref name="featurestate"/>
          </element>
        </optional>
      </interleave>
    </element>
  </define>

6332 6333 6334 6335 6336 6337 6338 6339
  <define name="pmu">
    <element name="pmu">
      <optional>
        <ref name="featurestate"/>
      </optional>
    </element>
  </define>

6340
  <define name="featurestate">
6341
    <attribute name="state">
6342
      <ref name="virOnOff"/>
6343 6344 6345
    </attribute>
  </define>

6346 6347 6348 6349 6350 6351 6352 6353 6354 6355
  <define name="capabilitiespolicy">
    <attribute name="policy">
      <choice>
        <value>default</value>
        <value>allow</value>
        <value>deny</value>
      </choice>
    </attribute>
  </define>

6356 6357
  <!--
       Optional hypervisor extensions in their own namespace:
J
Ján Tomko 已提交
6358
         QEMU
6359 6360 6361
    -->
  <define name="qemucmdline">
    <element name="commandline" ns="http://libvirt.org/schemas/domain/qemu/1.0">
6362 6363 6364
      <interleave>
        <zeroOrMore>
          <element name="arg">
6365
            <attribute name='value'/>
6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379
          </element>
        </zeroOrMore>
        <zeroOrMore>
          <element name="env">
            <attribute name='name'>
              <ref name="filter-param-name"/>
            </attribute>
            <optional>
              <attribute name='value'/>
            </optional>
            <empty/>
          </element>
        </zeroOrMore>
      </interleave>
6380 6381 6382
    </element>
  </define>

6383 6384
  <define name="qemucapabilities">
    <element name="capabilities" ns="http://libvirt.org/schemas/domain/qemu/1.0">
6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396
      <interleave>
        <zeroOrMore>
          <element name="add">
            <attribute name="capability"/>
          </element>
        </zeroOrMore>
        <zeroOrMore>
          <element name="del">
            <attribute name="capability"/>
          </element>
        </zeroOrMore>
      </interleave>
6397 6398 6399 6400
    </element>
  </define>


I
ik.nitk 已提交
6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439
  <!--
       Optional hypervisor extensions in their own namespace:
       LXC
    -->
  <define name="lxcsharens">
    <element name="namespace" ns="http://libvirt.org/schemas/domain/lxc/1.0">
      <zeroOrMore>
        <element name="sharenet">
          <attribute name="type">
            <choice>
              <value>netns</value>
              <value>name</value>
              <value>pid</value>
            </choice>
          </attribute>
          <attribute name='value'/>
        </element>
        <element name="shareipc">
          <attribute name="type">
            <choice>
              <value>name</value>
              <value>pid</value>
            </choice>
          </attribute>
          <attribute name='value'/>
        </element>
        <element name="shareuts">
          <attribute name="type">
            <choice>
              <value>name</value>
              <value>pid</value>
            </choice>
          </attribute>
          <attribute name='value'/>
        </element>
      </zeroOrMore>
    </element>
  </define>

6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453
  <!--
       Optional hypervisor extensions in their own namespace:
         Bhyve
    -->
  <define name="bhyvecmdline">
    <element name="commandline" ns="http://libvirt.org/schemas/domain/bhyve/1.0">
      <zeroOrMore>
        <element name="arg">
          <attribute name='value'/>
        </element>
      </zeroOrMore>
    </element>
  </define>

6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486
  <!--
       Type library
    -->
  <define name="countCPU">
    <data type="unsignedShort">
      <param name="pattern">[0-9]+</param>
      <param name="minInclusive">1</param>
    </data>
  </define>
  <define name="vcpuid">
    <data type="unsignedShort">
      <param name="pattern">[0-9]+</param>
    </data>
  </define>
  <define name="cpushares">
    <data type="unsignedInt">
      <param name="pattern">[0-9]+</param>
    </data>
  </define>
  <define name="cpuperiod">
    <data type="unsignedLong">
      <param name="pattern">[0-9]+</param>
      <param name="minInclusive">1000</param>
      <param name="maxInclusive">1000000</param>
    </data>
  </define>
  <define name="cpuquota">
    <data type="long">
      <param name="pattern">-?[0-9]+</param>
      <param name="maxInclusive">18446744073709551</param>
      <param name='minInclusive'>-1</param>
    </data>
  </define>
6487 6488 6489 6490 6491
  <define name="rebootTimeoutDelay">
    <data type="short">
      <param name="minInclusive">-1</param>
    </data>
  </define>
6492
  <!-- weight currently is in range [100, 1000] -->
6493 6494 6495 6496 6497 6498 6499 6500 6501
  <define name="weight">
    <data type="unsignedInt">
      <param name="pattern">[0-9]+</param>
      <param name="minInclusive">100</param>
      <param name="maxInclusive">1000</param>
    </data>
  </define>
  <define name="domainName">
    <data type="string">
E
Eric Blake 已提交
6502 6503 6504
      <!-- Use literal newline instead of \n for bug in libxml2 2.7.6 -->
      <param name="pattern">[^
]+</param>
6505 6506 6507 6508
    </data>
  </define>
  <define name="diskSerial">
    <data type="string">
6509
      <param name="pattern">[A-Za-z0-9_\.\+\- ]+</param>
6510 6511 6512 6513 6514 6515 6516 6517
    </data>
  </define>
  <define name="bridgeMode">
    <data type="string">
      <param name="pattern">(vepa|bridge|private|passthrough)</param>
    </data>
  </define>
  <define name="addrIPorName">
6518 6519 6520 6521
    <choice>
      <ref name="ipAddr"/>
      <ref name="dnsName"/>
    </choice>
6522
  </define>
6523 6524 6525 6526 6527
  <define name="usbIdDefault">
    <data type="string">
      <param name="pattern">-1</param>
    </data>
  </define>
6528 6529 6530 6531 6532
  <define name="usbId">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,4}</param>
    </data>
  </define>
6533 6534 6535 6536 6537
  <define name="usbVersion">
    <data type="string">
      <param name="pattern">[0-9]{1,2}.[0-9]{1,2}</param>
    </data>
  </define>
6538 6539 6540 6541 6542
  <define name="usbAddr">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,3}</param>
    </data>
  </define>
6543 6544 6545 6546 6547
  <define name="usbClass">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,2}</param>
    </data>
  </define>
6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562
  <define name="usbPort">
    <data type="string">
      <param name="pattern">((0x)?[0-9a-fA-F]{1,3}\.){0,3}(0x)?[0-9a-fA-F]{1,3}</param>
    </data>
  </define>
  <define name="driveController">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
  <define name="driveBus">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
6563 6564 6565 6566 6567
  <define name="driveTarget">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
6568 6569 6570 6571 6572
  <define name="driveSCSITarget">
    <data type="string">
      <param name="pattern">[0-9]{1,10}</param>
    </data>
  </define>
6573 6574
  <define name="driveUnit">
    <data type="string">
H
Han Han 已提交
6575
      <param name="pattern">[0-9]{1,5}</param>
6576 6577
    </data>
  </define>
6578 6579 6580 6581 6582
  <define name="driveSCSIUnit">
    <data type="string">
      <param name="pattern">[0-9]{1,20}</param>
    </data>
  </define>
6583 6584 6585 6586 6587 6588 6589 6590 6591 6592
  <define name="timeDelta">
    <data type="string">
      <param name="pattern">(-|\+)?[0-9]+</param>
    </data>
  </define>
  <define name="timeZone">
    <data type="string">
      <param name="pattern">[a-zA-Z0-9_\.\+\-/]+</param>
    </data>
  </define>
6593 6594
  <define name="spaprvioReg">
    <data type="string">
6595
      <param name="pattern">(0x)?[0-9a-fA-F]{1,8}</param>
6596 6597
    </data>
  </define>
6598 6599
  <define name='aliasName'>
    <data type="string">
6600
      <param name="pattern">[a-zA-Z0-9_\-.]+</param>
6601 6602
    </data>
  </define>
6603 6604 6605 6606 6607 6608 6609 6610 6611 6612
  <define name="virtioserialPort">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
  <define name="ccidSlot">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
6613 6614 6615 6616 6617 6618 6619 6620
  <define name='alias'>
    <element name='alias'>
      <attribute name='name'>
        <ref name='aliasName'/>
      </attribute>
    </element>
    <empty/>
  </define>
H
Hu Tao 已提交
6621 6622
  <define name="panic">
    <element name="panic">
6623 6624 6625 6626 6627 6628
      <optional>
        <attribute name="model">
          <choice>
            <value>isa</value>
            <value>pseries</value>
            <value>hyperv</value>
6629
            <value>s390</value>
6630 6631 6632
          </choice>
        </attribute>
      </optional>
6633 6634 6635 6636 6637 6638 6639 6640
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
H
Hu Tao 已提交
6641 6642
    </element>
  </define>
6643 6644 6645 6646 6647
  <define name="rawIO">
    <attribute name="rawio">
      <ref name="virYesNo"/>
    </attribute>
  </define>
6648 6649 6650 6651 6652 6653 6654 6655
  <define name="sgIO">
    <attribute name="sgio">
      <choice>
        <value>filtered</value>
        <value>unfiltered</value>
      </choice>
    </attribute>
  </define>
6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783

  <define name="coalesce">
    <element name="coalesce">
      <interleave>
        <optional>
          <element name="rx">
            <optional>
              <element name="frames">
                <optional>
                  <attribute name="max">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <!--
                    This is how we'd add more Rx-related settings for
                    frames, like irq, high, and low

                <optional>
                  <attribute name="irq">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="high">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="low">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>

              -->
              </element>
            </optional>
            <!--
                This is how we'd add more Rx-related settings, like
                usecs

            <optional>
              <element name="usecs">
                <optional>
                  <attribute name="max">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="irq">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="high">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="low">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
              </element>
            </optional>
              -->
          </element>
        </optional>
        <!--
            This is how you would add more coalesce settings, like
            Tx-related ones

        <optional>
          <element name="tx">
            <optional>
              <element name="frames">
                <optional>
                  <attribute name="max">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="irq">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="high">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="low">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
              </element>
            </optional>
            <optional>
              <element name="usecs">
                <optional>
                  <attribute name="max">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="irq">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="high">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
                <optional>
                  <attribute name="low">
                    <ref name="unsignedInt"/>
                  </attribute>
                </optional>
              </element>
            </optional>
          </element>
        </optional>
        -->
      </interleave>
    </element>
  </define>

6784
</grammar>