domaincommon.rng 145.1 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 7 8
  <include href='networkcommon.rng'/>

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

17 18 19 20 21 22 23 24 25 26
  <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>

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

358 359 360
  <define name="osexe">
    <element name="os">
      <element name="type">
361
        <optional>
362 363 364
          <attribute name="arch">
            <ref name="archnames"/>
          </attribute>
365
        </optional>
366 367 368 369 370 371 372 373
        <value>exe</value>
      </element>
      <interleave>
        <optional>
          <element name="init">
            <ref name="absFilePath"/>
          </element>
        </optional>
374 375 376 377 378
        <zeroOrMore>
          <element name="initarg">
            <text/>
          </element>
        </zeroOrMore>
379 380 381
      </interleave>
    </element>
  </define>
382

383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
  <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 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  </define>

  <!--
      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>
415 416
              <value>mbmt</value>
              <value>mbml</value>
Q
Qiaowei Ren 已提交
417 418 419 420 421 422 423 424
            </choice>
          </attribute>
          <attribute name="enabled">
            <ref name="virYesNo"/>
          </attribute>
        </element>
      </oneOrMore>
    </element>
425 426
  </define>

427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
  <!--
      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>
    </interleave>
  </define>
450
  <define name="idmap">
E
Eric Blake 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
    <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>
          <empty/>
          </element>
        </zeroOrMore>
      </interleave>
    </element>
483
  </define>
484 485 486 487 488 489 490
  <!--
      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>
491 492 493 494 495 496 497 498 499 500
      <optional>
        <element name="memory">
          <ref name='scaledInteger'/>
          <optional>
            <attribute name="dumpCore">
              <ref name="virOnOff"/>
            </attribute>
          </optional>
        </element>
      </optional>
501 502 503 504 505 506 507 508
      <optional>
        <element name="maxMemory">
          <ref name="scaledInteger"/>
          <attribute name="slots">
            <ref name="unsignedInt"/>
          </attribute>
        </element>
      </optional>
509 510
      <optional>
        <element name="currentMemory">
E
Eric Blake 已提交
511
          <ref name='scaledInteger'/>
512 513 514 515
        </element>
      </optional>
      <optional>
        <element name="memoryBacking">
516 517 518
          <interleave>
            <optional>
              <element name="hugepages">
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
                <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>
537 538 539 540 541 542 543
              </element>
            </optional>
            <optional>
              <element name="nosharepages">
                <empty/>
              </element>
            </optional>
544 545 546 547 548
            <optional>
              <element name="locked">
                <empty/>
              </element>
            </optional>
549
          </interleave>
550 551 552 553 554
        </element>
      </optional>

      <optional>
        <element name="vcpu">
O
Osier Yang 已提交
555 556 557 558 559 560 561 562
          <optional>
            <attribute name="placement">
              <choice>
                <value>static</value>
                <value>auto</value>
              </choice>
            </attribute>
          </optional>
563 564 565 566 567 568 569 570 571 572 573 574 575 576
          <optional>
            <attribute name="cpuset">
              <ref name="cpuset"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="current">
              <ref name="countCPU"/>
            </attribute>
          </optional>
          <ref name="countCPU"/>
        </element>
      </optional>

577 578 579 580 581 582
      <optional>
        <element name="iothreads">
          <ref name="unsignedInt"/>
        </element>
      </optional>

583 584 585 586 587 588 589 590 591 592 593 594
      <optional>
        <element name="iothreadids">
          <zeroOrMore>
            <element name="iothread">
              <attribute name="id">
                <ref name="unsignedInt"/>
              </attribute>
            </element>
          </zeroOrMore>
        </element>
      </optional>

595
      <optional>
596 597 598 599 600 601 602 603 604 605 606 607 608 609
        <ref name="blkiotune"/>
      </optional>

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

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

      <optional>
        <ref name="numatune"/>
      </optional>
610 611 612 613

      <optional>
        <ref name="respartition"/>
      </optional>
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
    </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>
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
              <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>
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
            </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 已提交
698 699 700 701 702 703
      <interleave>
        <optional>
          <element name="shares">
            <ref name="cpushares"/>
          </element>
        </optional>
704 705 706 707 708
        <optional>
          <element name="global_period">
            <ref name="cpuperiod"/>
          </element>
        </optional>
709 710 711 712 713
        <optional>
          <element name="global_quota">
            <ref name="cpuquota"/>
          </element>
        </optional>
E
Eric Blake 已提交
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 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 759 760
        <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>
        <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>
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
        <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>
E
Eric Blake 已提交
781
      </interleave>
782 783
    </element>
  </define>
784

785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
  <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>

809 810 811
  <!-- All the NUMA related tunables would go in the numatune -->
  <define name="numatune">
    <element name="numatune">
812 813 814 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 840 841 842 843
      <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>
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
          <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>
859 860
        </zeroOrMore>
      </interleave>
861
    </element>
862
  </define>
863

864 865 866 867 868 869 870 871
  <define name="respartition">
    <element name="resource">
      <element name="partition">
        <ref name="absFilePath"/>
      </element>
    </element>
  </define>

872 873 874 875
  <define name="clock">
    <optional>
      <element name="clock">
        <choice>
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
          <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>
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
          <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>
911 912 913 914 915 916 917 918
            <optional>
              <attribute name="basis">
                <choice>
                  <value>utc</value>
                  <value>localtime</value>
                </choice>
              </attribute>
            </optional>
919 920 921 922 923 924 925 926 927 928
          </group>
        </choice>
        <zeroOrMore>
          <ref name="timer"/>
        </zeroOrMore>
      </element>
    </optional>
  </define>
  <define name="timer">
    <element name="timer">
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
      <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>
            </choice>
          </attribute>
          <optional>
            <ref name="tickpolicy"/>
          </optional>
        </group>
        <group>
          <attribute name="name">
987 988 989 990
            <choice>
              <value>kvmclock</value>
              <value>hypervclock</value>
            </choice>
991 992 993
          </attribute>
        </group>
      </choice>
994 995
      <optional>
        <attribute name="present">
996
          <ref name="virYesNo"/>
997 998 999 1000 1001
        </attribute>
      </optional>
      <empty/>
    </element>
  </define>
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011

  <define name="tickpolicy">
    <choice>
      <group>
        <attribute name="tickpolicy">
          <choice>
            <value>delay</value>
            <value>merge</value>
            <value>discard</value>
          </choice>
1012
        </attribute>
1013 1014 1015 1016
      </group>
      <group>
        <attribute name="tickpolicy">
          <value>catchup</value>
1017
        </attribute>
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
        <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>
1039 1040 1041 1042 1043 1044 1045 1046
  </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>
1047 1048 1049 1050 1051 1052 1053 1054
      <optional>
        <element name="bootloader">
          <choice>
            <ref name="absFilePath"/>
            <empty/>
          </choice>
        </element>
      </optional>
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
      <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>
1084 1085 1086 1087 1088
      <optional>
        <element name="dtb">
          <ref name="absFilePath"/>
        </element>
      </optional>
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
    </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 已提交
1105 1106
    <interleave>
      <optional>
1107
        <ref name="diskDriver"/>
L
Lei Li 已提交
1108
      </optional>
1109 1110 1111
      <optional>
        <ref name='diskMirror'/>
      </optional>
L
Lei Li 已提交
1112 1113 1114 1115 1116 1117 1118
      <optional>
        <ref name="diskAuth"/>
      </optional>
      <ref name="target"/>
      <optional>
        <ref name="deviceBoot"/>
      </optional>
1119 1120 1121 1122 1123 1124 1125 1126
      <optional>
        <element name="backenddomain">
          <attribute name="name">
            <ref name="domainName"/>
          </attribute>
          <empty/>
        </element>
      </optional>
L
Lei Li 已提交
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
      <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>
1153 1154 1155
      <optional>
        <ref name="alias"/>
      </optional>
L
Lei Li 已提交
1156 1157 1158
      <optional>
        <ref name="address"/>
      </optional>
J
J.B. Joret 已提交
1159 1160 1161
      <optional>
        <ref name="geometry"/>
      </optional>
1162
      <optional>
V
Viktor Mihajlovski 已提交
1163
        <ref name="diskBlockIo"/>
1164
      </optional>
O
Osier Yang 已提交
1165 1166 1167 1168 1169
      <optional>
        <element name="wwn">
          <ref name="wwn"/>
        </element>
      </optional>
1170 1171 1172
      <optional>
        <element name="vendor">
          <data type="string">
1173 1174
            <!-- All printable characters -->
            <param name="pattern">[&#x20;-&#x7E;]{0,8}</param>
1175 1176 1177 1178 1179 1180
          </data>
        </element>
      </optional>
      <optional>
        <element name="product">
          <data type="string">
1181 1182
            <!-- All printable characters -->
            <param name="pattern">[&#x20;-&#x7E;]{0,16}</param>
1183 1184 1185
          </data>
        </element>
      </optional>
L
Lei Li 已提交
1186
    </interleave>
1187
  </define>
1188 1189 1190 1191 1192 1193 1194 1195 1196
  <define name="snapshot">
    <attribute name="snapshot">
      <choice>
        <value>no</value>
        <value>internal</value>
        <value>external</value>
      </choice>
    </attribute>
  </define>
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219

  <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>
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230

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

1231 1232 1233 1234 1235 1236 1237
  <!--
      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">
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
      <choice>
        <group>
          <optional>
            <attribute name="device">
              <choice>
                <value>floppy</value>
                <value>disk</value>
                <value>cdrom</value>
              </choice>
            </attribute>
          </optional>
1249 1250 1251 1252
          <interleave>
            <ref name="diskSource"/>
            <ref name="diskSpecsExtra"/>
          </interleave>
1253 1254 1255
        </group>
        <group>
          <attribute name="device">
1256
            <value>lun</value>
1257 1258
          </attribute>
          <optional>
1259
            <ref name="rawIO"/>
1260 1261
          </optional>
          <optional>
1262
            <ref name="sgIO"/>
1263
          </optional>
1264 1265 1266 1267
          <interleave>
            <choice>
              <ref name="diskSourceNetwork"/>
              <ref name="diskSourceBlock"/>
1268
              <ref name="diskSourceVolume"/>
1269 1270 1271
            </choice>
            <ref name="diskSpecsExtra"/>
          </interleave>
1272 1273
        </group>
      </choice>
1274 1275 1276
      <optional>
        <ref name="snapshot"/>
      </optional>
1277 1278 1279
    </element>
  </define>

1280 1281 1282 1283 1284 1285 1286
  <define name="diskSpecsExtra">
    <interleave>
      <ref name="storageSourceExtra"/>
      <ref name="diskBackingChain"/>
    </interleave>
  </define>

1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
  <define name="diskBackingChain">
    <choice>
      <ref name="diskBackingStore"/>
      <ref name="diskBackingStoreLast"/>
    </choice>
  </define>

  <define name="diskBackingStore">
    <element name="backingStore">
      <attribute name="index">
        <ref name="positiveInteger"/>
      </attribute>
      <interleave>
        <ref name="diskSource"/>
        <ref name="diskBackingChain"/>
        <ref name="diskFormat"/>
      </interleave>
1304 1305 1306
    </element>
  </define>

1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
  <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>

1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
  <define name="diskSource">
    <choice>
      <ref name="diskSourceFile"/>
      <ref name="diskSourceBlock"/>
      <ref name="diskSourceDir"/>
      <ref name="diskSourceNetwork"/>
      <ref name="diskSourceVolume"/>
    </choice>
  </define>

  <define name="diskSourceFile">
    <optional>
      <attribute name="type">
        <value>file</value>
      </attribute>
    </optional>
    <interleave>
      <optional>
        <element name="source">
          <optional>
            <attribute name="file">
              <ref name="absFilePath"/>
1346
            </attribute>
1347 1348 1349 1350
          </optional>
          <optional>
            <ref name="storageStartupPolicy"/>
          </optional>
1351
          <zeroOrMore>
1352
            <ref name='devSeclabel'/>
1353
          </zeroOrMore>
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
        </element>
      </optional>
    </interleave>
  </define>

  <define name="diskSourceBlock">
    <attribute name="type">
      <value>block</value>
    </attribute>
    <interleave>
      <optional>
        <element name="source">
          <optional>
            <attribute name="dev">
              <ref name="absFilePath"/>
1369
            </attribute>
1370 1371 1372 1373
          </optional>
          <optional>
            <ref name="storageStartupPolicy"/>
          </optional>
1374
          <zeroOrMore>
1375
            <ref name='devSeclabel'/>
1376
          </zeroOrMore>
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 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 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
        </element>
      </optional>
    </interleave>
  </define>

  <define name="diskSourceDir">
    <attribute name="type">
      <value>dir</value>
    </attribute>
    <interleave>
      <optional>
        <element name="source">
          <attribute name="dir">
            <ref name="absFilePath"/>
          </attribute>
          <optional>
            <ref name="storageStartupPolicy"/>
          </optional>
          <empty/>
        </element>
      </optional>
    </interleave>
  </define>

  <define name="diskSourceNetwork">
    <attribute name="type">
      <value>network</value>
    </attribute>
    <interleave>
      <element name="source">
        <attribute name="protocol">
          <choice>
            <value>nbd</value>
            <value>rbd</value>
            <value>sheepdog</value>
            <value>gluster</value>
            <value>iscsi</value>
            <value>http</value>
            <value>https</value>
            <value>ftp</value>
            <value>ftps</value>
            <value>tftp</value>
          </choice>
        </attribute>
        <optional>
          <attribute name="name"/>
        </optional>
        <zeroOrMore>
          <element name="host">
            <choice>
              <group>
                <optional>
                  <attribute name="transport">
                    <choice>
                      <value>tcp</value>
                      <value>rdma</value>
                    </choice>
1434
                  </attribute>
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
                </optional>
                <attribute name="name">
                  <choice>
                    <ref name="dnsName"/>
                    <ref name="ipAddr"/>
                  </choice>
                </attribute>
                <optional>
                  <attribute name="port">
                    <ref name="unsignedInt"/>
1445
                  </attribute>
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
                </optional>
              </group>
              <group>
                <attribute name="transport">
                  <value>unix</value>
                </attribute>
                <attribute name="socket">
                  <ref name="absFilePath"/>
                </attribute>
              </group>
            </choice>
          </element>
        </zeroOrMore>
1459 1460 1461 1462 1463 1464 1465 1466
        <optional>
          <element name="snapshot">
            <attribute name="name">
              <ref name="genericName"/>
            </attribute>
            <empty/>
          </element>
        </optional>
1467 1468 1469 1470 1471 1472 1473 1474
        <optional>
          <element name="config">
            <attribute name="file">
              <ref name="absFilePath"/>
            </attribute>
            <empty/>
          </element>
        </optional>
1475 1476 1477
        <empty/>
      </element>
    </interleave>
1478
  </define>
1479

1480 1481 1482
  <define name="diskSourceVolume">
    <attribute name="type">
      <value>volume</value>
1483
    </attribute>
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
    <interleave>
      <optional>
        <element name="source">
          <attribute name="pool">
            <ref name="genericName"/>
          </attribute>
          <attribute name="volume">
            <ref name="volName"/>
          </attribute>
          <optional>
            <attribute name="mode">
1495
              <choice>
1496 1497
                <value>host</value>
                <value>direct</value>
1498 1499
              </choice>
            </attribute>
1500 1501 1502 1503
          </optional>
          <optional>
            <ref name="storageStartupPolicy"/>
          </optional>
1504
          <zeroOrMore>
1505
            <ref name='devSeclabel'/>
1506
          </zeroOrMore>
1507 1508 1509
        </element>
      </optional>
    </interleave>
1510
  </define>
1511

1512 1513 1514 1515 1516
  <define name="diskTarget">
    <data type="string">
      <param name="pattern">(ioemu:)?(fd|hd|sd|vd|xvd|ubd)[a-zA-Z0-9_]+</param>
    </data>
  </define>
1517 1518 1519
  <define name="target">
    <element name="target">
      <attribute name="dev">
1520
        <ref name="diskTarget"/>
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
      </attribute>
      <optional>
        <attribute name="bus">
          <choice>
            <value>ide</value>
            <value>fdc</value>
            <value>scsi</value>
            <value>virtio</value>
            <value>xen</value>
            <value>usb</value>
            <value>uml</value>
J
Jim Fehlig 已提交
1532
            <value>sata</value>
1533
            <value>sd</value>
1534 1535 1536
          </choice>
        </attribute>
      </optional>
1537 1538 1539 1540 1541 1542 1543 1544
      <optional>
        <attribute name="tray">
          <choice>
            <value>open</value>
            <value>closed</value>
          </choice>
        </attribute>
      </optional>
1545 1546
      <optional>
        <attribute name="removable">
1547
          <ref name="virOnOff"/>
1548 1549
        </attribute>
      </optional>
1550 1551
    </element>
  </define>
J
J.B. Joret 已提交
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
  <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 已提交
1574 1575
  <define name="diskBlockIo">
    <element name="blockio">
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
      <optional>
        <attribute name="logical_block_size">
          <data type="integer"/>
        </attribute>
      </optional>
      <optional>
        <attribute name="physical_block_size">
          <data type="integer"/>
        </attribute>
      </optional>
    </element>
  </define>
1588
  <!--
1589
      Disk may use a special driver for access.
1590
    -->
1591
  <define name="diskDriver">
1592
    <element name="driver">
1593 1594 1595 1596 1597 1598
      <optional>
        <ref name="driverFormat"/>
      </optional>
      <optional>
        <ref name="driverCache"/>
      </optional>
1599 1600 1601
      <optional>
        <ref name="driverErrorPolicy"/>
      </optional>
1602 1603 1604
      <optional>
        <ref name="driverRerrorPolicy"/>
      </optional>
1605 1606 1607 1608 1609 1610 1611 1612 1613
      <optional>
        <ref name="driverIO"/>
      </optional>
      <optional>
        <ref name="ioeventfd"/>
      </optional>
      <optional>
        <ref name="event_idx"/>
      </optional>
O
Osier Yang 已提交
1614 1615 1616
      <optional>
        <ref name="copy_on_read"/>
      </optional>
O
Osier Yang 已提交
1617 1618 1619
      <optional>
        <ref name="discard"/>
      </optional>
1620 1621 1622
      <optional>
        <ref name="driverIOThread"/>
      </optional>
1623 1624 1625
      <optional>
        <ref name="detect_zeroes"/>
      </optional>
1626 1627 1628 1629 1630 1631 1632 1633
      <empty/>
    </element>
  </define>
  <define name="driverFormat">
    <attribute name="name">
      <ref name="genericName"/>
    </attribute>
    <optional>
1634 1635
      <attribute name='type'>
        <choice>
1636
          <ref name='storageFormat'/>
1637 1638
          <value>aio</value> <!-- back-compat for 'raw' -->
        </choice>
1639 1640 1641
      </attribute>
    </optional>
  </define>
1642

1643 1644 1645
  <define name="driverCache">
    <attribute name="cache">
      <choice>
1646
        <value>default</value>
1647 1648 1649 1650
        <value>none</value>
        <value>writeback</value>
        <value>writethrough</value>
        <value>directsync</value>
1651
        <value>unsafe</value>
1652 1653 1654 1655 1656 1657 1658
      </choice>
    </attribute>
  </define>
  <define name="driverErrorPolicy">
    <attribute name="error_policy">
      <choice>
        <value>stop</value>
1659
        <value>report</value>
1660 1661 1662 1663 1664
        <value>ignore</value>
        <value>enospace</value>
      </choice>
    </attribute>
  </define>
1665 1666 1667 1668 1669 1670 1671 1672 1673
  <define name="driverRerrorPolicy">
    <attribute name="rerror_policy">
      <choice>
        <value>stop</value>
        <value>report</value>
        <value>ignore</value>
      </choice>
    </attribute>
  </define>
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
  <define name="driverIO">
    <attribute name="io">
      <choice>
        <value>threads</value>
        <value>native</value>
      </choice>
    </attribute>
  </define>
  <define name="ioeventfd">
    <attribute name="ioeventfd">
1684
      <ref name="virOnOff"/>
1685 1686 1687 1688
    </attribute>
  </define>
  <define name="event_idx">
    <attribute name="event_idx">
1689
      <ref name="virOnOff"/>
1690 1691
    </attribute>
  </define>
O
Osier Yang 已提交
1692 1693
  <define name="copy_on_read">
    <attribute name='copy_on_read'>
1694
      <ref name="virOnOff"/>
O
Osier Yang 已提交
1695
    </attribute>
O
Osier Yang 已提交
1696 1697 1698 1699
    </define>
  <define name="discard">
    <attribute name='discard'>
      <choice>
O
Osier Yang 已提交
1700 1701
        <value>unmap</value>
        <value>ignore</value>
O
Osier Yang 已提交
1702 1703
      </choice>
    </attribute>
O
Osier Yang 已提交
1704
  </define>
1705 1706 1707 1708 1709
  <define name="driverIOThread">
    <attribute name='iothread'>
      <ref name="unsignedInt"/>
    </attribute>
  </define>
1710 1711 1712 1713 1714 1715 1716 1717 1718
  <define name="detect_zeroes">
    <attribute name='detect_zeroes'>
      <choice>
        <value>off</value>
        <value>on</value>
        <value>unmap</value>
      </choice>
    </attribute>
  </define>
1719 1720
  <define name="controller">
    <element name="controller">
1721 1722 1723 1724 1725
      <optional>
        <attribute name="index">
          <ref name="unsignedInt"/>
        </attribute>
      </optional>
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <choice>
          <!-- fdc/ide/sata/ccid have only the common attributes -->
          <group>
1736 1737 1738 1739 1740 1741 1742 1743
            <attribute name="type">
              <choice>
                <value>fdc</value>
                <value>ide</value>
                <value>sata</value>
                <value>ccid</value>
              </choice>
            </attribute>
1744 1745 1746 1747 1748
          </group>
          <!-- scsi has an optional attribute "model" -->
          <group>
            <attribute name="type">
              <value>scsi</value>
1749
            </attribute>
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
            <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>
                </choice>
              </attribute>
            </optional>
          </group>
1765 1766
          <!-- usb has an optional attribute "model",
               and optional subelements "master" and "ports" -->
1767 1768 1769
          <group>
            <attribute name="type">
              <value>usb</value>
1770
            </attribute>
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
            <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>
                </choice>
              </attribute>
            </optional>
            <optional>
              <ref name="usbmaster"/>
            </optional>
1791 1792 1793 1794 1795
            <optional>
              <attribute name="ports">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
1796
          </group>
J
Ján Tomko 已提交
1797 1798 1799 1800 1801
          <!-- pci has an optional attribute "model" -->
          <group>
            <attribute name="type">
              <value>pci</value>
            </attribute>
1802 1803 1804 1805 1806 1807 1808 1809
            <optional>
              <element name="model">
                <attribute name="name">
                  <choice>
                    <!-- implementations of 'pci-bridge' -->
                    <value>pci-bridge</value>
                    <!-- implementations of 'dmi-to-pci-bridge' -->
                    <value>i82801b11-bridge</value>
1810 1811
                    <!-- implementations of 'pcie-root-port' -->
                    <value>ioh3420</value>
1812 1813
                    <!-- implementations of 'pcie-switch-upstream-port' -->
                    <value>x3130-upstream</value>
1814 1815
                    <!-- implementations of 'pcie-switch-downstream-port' -->
                    <value>xio3130-downstream</value>
1816 1817
                    <!-- implementations of 'pci-expander-bus' -->
                    <value>pxb</value>
1818 1819
                    <!-- implementations of 'pcie-expander-bus' -->
                    <value>pxb-pcie</value>
1820 1821 1822 1823 1824
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
1825 1826 1827 1828
            <optional>
              <element name="target">
                <optional>
                  <attribute name='chassisNr'>
1829
                    <ref name='uint8'/>
1830 1831
                  </attribute>
                </optional>
1832 1833
                <optional>
                  <attribute name="chassis">
1834
                    <ref name='uint8'/>
1835 1836 1837 1838
                  </attribute>
                </optional>
                <optional>
                  <attribute name="port">
1839
                    <ref name='uint8'/>
1840 1841
                  </attribute>
                </optional>
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
                <optional>
                  <attribute name='busNr'>
                    <ref name='uint8'/>
                  </attribute>
                </optional>
                <optional>
                  <element name='node'>
                    <ref name='unsignedInt'/>
                  </element>
                </optional>
1852 1853
              </element>
            </optional>
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
            <!-- *-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>
1874
                    <value>pcie-root-port</value>
1875
                    <value>pcie-switch-upstream-port</value>
1876
                    <value>pcie-switch-downstream-port</value>
1877
                    <value>pci-expander-bus</value>
1878
                    <value>pcie-expander-bus</value>
1879 1880 1881 1882
                  </choice>
                </attribute>
              </group>
            </choice>
J
Ján Tomko 已提交
1883
          </group>
1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
          <!-- virtio-serial has optional "ports" and "vectors" -->
          <group>
            <attribute name="type">
              <value>virtio-serial</value>
            </attribute>
            <optional>
              <attribute name="ports">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="vectors">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
          </group>
        </choice>
1901 1902 1903 1904 1905 1906 1907
        <optional>
          <element name="driver">
            <optional>
              <attribute name="queues">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
            <optional>
              <attribute name="cmd_per_lun">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
            <optional>
              <attribute name="max_sectors">
                <ref name="unsignedInt"/>
              </attribute>
            </optional>
1918 1919 1920
            <optional>
              <ref name="ioeventfd"/>
            </optional>
1921 1922 1923
            <optional>
              <ref name="driverIOThread"/>
            </optional>
1924 1925
          </element>
        </optional>
1926
      </interleave>
1927 1928 1929 1930 1931 1932 1933 1934 1935
    </element>
  </define>
  <define name="filesystem">
    <element name="filesystem">
      <choice>
        <group>
          <attribute name="type">
            <value>file</value>
          </attribute>
1936 1937 1938
          <optional>
            <ref name="fsDriver"/>
          </optional>
1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
          <interleave>
            <element name="source">
              <attribute name="file">
                <ref name="absFilePath"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>block</value>
          </attribute>
1952 1953 1954
          <optional>
            <ref name="fsDriver"/>
          </optional>
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
          <interleave>
            <element name="source">
              <attribute name="dev">
                <ref name="absFilePath"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
        <group>
1965 1966 1967 1968 1969 1970
          <!-- type='mount' is default -->
          <optional>
            <attribute name="type">
              <value>mount</value>
            </attribute>
          </optional>
1971 1972 1973
          <optional>
            <ref name="fsDriver"/>
          </optional>
1974 1975 1976
          <interleave>
            <element name="source">
              <attribute name="dir">
1977
                <ref name="absDirPath"/>
1978 1979 1980 1981 1982
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
1983 1984 1985 1986 1987 1988
        <group>
          <optional>
            <attribute name="type">
              <value>bind</value>
            </attribute>
          </optional>
1989 1990 1991
          <optional>
            <ref name="fsDriver"/>
          </optional>
1992 1993 1994
          <interleave>
            <element name="source">
              <attribute name="dir">
1995
                <ref name="absDirPath"/>
1996 1997 1998 1999 2000
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
2001 2002 2003 2004
        <group>
          <attribute name="type">
            <value>template</value>
          </attribute>
2005 2006 2007
          <optional>
            <ref name="fsDriver"/>
          </optional>
2008 2009 2010 2011 2012 2013 2014 2015 2016
          <interleave>
            <element name="source">
              <attribute name="name">
                <ref name="genericName"/>
              </attribute>
              <empty/>
            </element>
          </interleave>
        </group>
2017 2018 2019 2020
        <group>
          <attribute name="type">
            <value>ram</value>
          </attribute>
2021 2022 2023
          <optional>
            <ref name="fsDriver"/>
          </optional>
2024 2025 2026 2027 2028 2029
          <interleave>
            <element name="source">
              <attribute name="usage">
                <ref name="unsignedLong"/>
              </attribute>
              <optional>
2030
                <attribute name='units'>
2031 2032 2033 2034 2035 2036 2037
                  <ref name='unit'/>
                </attribute>
              </optional>
              <empty/>
            </element>
          </interleave>
        </group>
2038
      </choice>
2039 2040
      <interleave>
        <element name="target">
2041
          <attribute name="dir"/>
2042 2043
          <empty/>
        </element>
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
        <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>
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076
      <interleave>
        <optional>
          <element name="space_hard_limit">
            <ref name='scaledInteger'/>
          </element>
        </optional>
        <optional>
          <element name="space_soft_limit">
            <ref name='scaledInteger'/>
          </element>
        </optional>
      </interleave>
2077 2078
    </element>
  </define>
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
  <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 -->
      <optional>
        <attribute name="type">
          <choice>
            <value>path</value>
            <value>handle</value>
            <value>loop</value>
2091
            <value>nbd</value>
D
Dmitry Guryanov 已提交
2092
            <value>ploop</value>
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
          </choice>
        </attribute>
      </optional>
      <optional>
        <attribute name="format">
          <ref name="storageFormat"/>
        </attribute>
      </optional>
      <optional>
        <attribute name="wrpolicy">
          <value>immediate</value>
        </attribute>
      </optional>
      <empty/>
    </element>
  </define>

2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131
  <!--
      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">
                <attribute name="bridge">
                  <ref name="deviceName"/>
                </attribute>
                <empty/>
              </element>
            </optional>
2132 2133 2134
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
2135 2136 2137 2138 2139 2140 2141 2142 2143 2144
            <ref name="interface-options"/>
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>ethernet</value>
          </attribute>
          <interleave>
            <optional>
              <element name="source">
2145
                <ref name="interface-ip-info"/>
2146 2147 2148 2149 2150
              </element>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
M
Michele Paolino 已提交
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175
        <group>
          <attribute name="type">
            <value>vhostuser</value>
          </attribute>
          <interleave>
              <element name="source">
                <attribute name="type">
                  <choice>
                    <value>unix</value>
                  </choice>
                </attribute>
                <attribute name="path">
                  <ref name="absFilePath"/>
                </attribute>
                <attribute name="mode">
                  <choice>
                    <value>server</value>
                    <value>client</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            <ref name="interface-options"/>
          </interleave>
        </group>
2176 2177 2178 2179 2180 2181 2182
        <group>
          <attribute name="type">
            <value>network</value>
          </attribute>
          <interleave>
            <element name="source">
              <attribute name="network">
2183
                <text/>
2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241
              </attribute>
              <optional>
                <attribute name="portgroup">
                  <ref name="deviceName"/>
                </attribute>
              </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>
              <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>
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
        <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>
2259
            <ref name="interface-options"/>
2260 2261
          </interleave>
        </group>
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288
        <group>
          <attribute name="type">
            <choice>
              <value>udp</value>
            </choice>
          </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>
2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
        <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>
2305
            <ref name="interface-options"/>
2306 2307
          </interleave>
        </group>
2308 2309 2310 2311 2312 2313
        <group>
          <attribute name="type">
            <value>hostdev</value>
          </attribute>
          <optional>
            <attribute name="managed">
2314
              <ref name="virYesNo"/>
2315 2316 2317 2318
            </attribute>
          </optional>
          <interleave>
            <element name="source">
2319 2320
              <optional>
                <attribute name="missing">
2321
                  <ref name="virYesNo"/>
2322 2323
                </attribute>
              </optional>
2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359
              <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">
                        <ref name="usbPort"/>
                      </attribute>
                    </group>
                  </choice>
                </element>
              </choice>
            </element>
            <optional>
              <ref name="virtualPortProfile"/>
            </optional>
            <ref name="interface-options"/>
          </interleave>
        </group>
2360
      </choice>
2361 2362 2363 2364 2365
      <optional>
        <attribute name="trustGuestRxFilters">
          <ref name="virYesNo"/>
        </attribute>
      </optional>
2366 2367 2368 2369 2370 2371 2372 2373 2374
    </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
2375
        - link state
2376 2377 2378
    -->
  <define name="interface-options">
    <interleave>
2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389
      <optional>
        <element name="link">
          <attribute name="state">
            <choice>
              <value>up</value>
              <value>down</value>
            </choice>
          </attribute>
          <empty/>
        </element>
      </optional>
2390 2391 2392 2393 2394
      <optional>
        <element name="target">
          <attribute name="dev">
            <ref name="deviceName"/>
          </attribute>
2395
          <empty/>
2396 2397
        </element>
      </optional>
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414
      <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>
2415 2416 2417
      <optional>
        <element name="mac">
          <attribute name="address">
2418
            <ref name="uniMacAddr"/>
2419 2420 2421 2422
          </attribute>
          <empty/>
        </element>
      </optional>
2423
      <ref name="interface-ip-info"/>
2424 2425 2426 2427 2428 2429 2430 2431
      <optional>
        <element name="script">
          <attribute name="path">
            <ref name="filePath"/>
          </attribute>
          <empty/>
        </element>
      </optional>
2432 2433 2434 2435 2436 2437 2438 2439
      <optional>
        <element name="backenddomain">
          <attribute name="name">
            <ref name="domainName"/>
          </attribute>
          <empty/>
        </element>
      </optional>
2440 2441
      <optional>
        <element name="model">
E
Eric Blake 已提交
2442 2443 2444 2445 2446
          <attribute name="type">
            <data type="string">
              <param name='pattern'>[a-zA-Z0-9\-_]+</param>
            </data>
          </attribute>
2447 2448 2449
          <empty/>
        </element>
      </optional>
2450 2451
      <optional>
        <element name="backend">
2452
          <optional>
2453 2454 2455
           <attribute name='tap'>
             <ref name='absFilePath'/>
           </attribute>
2456 2457
          </optional>
          <optional>
2458 2459 2460
           <attribute name='vhost'>
             <ref name='absFilePath'/>
           </attribute>
2461
          </optional>
2462 2463
        </element>
      </optional>
2464 2465
      <optional>
        <element name="driver">
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483
          <choice>
            <group>
              <attribute name="name">
                <choice>
                  <value>kvm</value>
                  <value>vfio</value>
                </choice>
              </attribute>
            </group>
            <group>
              <optional>
                <attribute name="name">
                  <choice>
                    <value>qemu</value>
                    <value>vhost</value>
                  </choice>
                </attribute>
              </optional>
2484 2485 2486 2487 2488
              <optional>
                <attribute name='queues'>
                  <ref name="positiveInteger"/>
                </attribute>
              </optional>
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
              <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>
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537
          <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>
2538 2539 2540 2541 2542
                <optional>
                  <attribute name='mrg_rxbuf'>
                    <ref name="virOnOff"/>
                  </attribute>
                </optional>
2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574
              </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>
2575 2576
        </element>
      </optional>
2577 2578 2579
      <optional>
        <ref name="alias"/>
      </optional>
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600
      <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>
2601 2602 2603
      <optional>
        <ref name="rom"/>
      </optional>
2604 2605 2606
      <optional>
        <ref name="bandwidth"/>
      </optional>
2607 2608 2609
      <optional>
        <ref name="vlan"/>
      </optional>
2610 2611
    </interleave>
  </define>
2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631

  <!--
      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>
2632 2633 2634 2635 2636
        <optional>
          <attribute name="peer">
            <ref name="ipAddr"/>
          </attribute>
        </optional>
2637 2638 2639 2640 2641 2642 2643
        <empty/>
      </element>
    </zeroOrMore>
    <zeroOrMore>
      <ref name="route"/>
    </zeroOrMore>
  </define>
2644 2645 2646 2647 2648 2649 2650 2651 2652
  <!--
      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>
  <!--
2653
      A graphic description (SPICE, VNC, SDL, ...)
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673
    -->
  <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">
2674
              <ref name="virYesNo"/>
2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
            </attribute>
          </optional>
        </group>
        <group>
          <attribute name="type">
            <value>vnc</value>
          </attribute>
          <choice>
            <group>
              <optional>
                <attribute name="port">
                  <ref name="PortNumber"/>
                </attribute>
              </optional>
              <optional>
                <attribute name="autoport">
2691
                  <ref name="virYesNo"/>
2692 2693
                </attribute>
              </optional>
M
Martin Kletzander 已提交
2694 2695 2696 2697 2698
              <optional>
                <attribute name="websocket">
                  <ref name="PortNumber"/>
                </attribute>
              </optional>
2699 2700 2701 2702 2703
              <optional>
                <attribute name="listen">
                  <ref name="addrIPorName"/>
                </attribute>
              </optional>
2704 2705 2706 2707 2708 2709 2710 2711 2712
              <optional>
                <attribute name='sharePolicy'>
                  <choice>
                    <value>allow-exclusive</value>
                    <value>force-shared</value>
                    <value>ignore</value>
                  </choice>
                </attribute>
              </optional>
2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761
            </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">
              <choice>
                <value>keep</value>
              </choice>
            </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">
2762
              <ref name="virYesNo"/>
2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793
            </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>
2794 2795 2796 2797 2798 2799 2800 2801 2802
          <optional>
            <attribute name="defaultMode">
              <choice>
                <value>any</value>
                <value>secure</value>
                <value>insecure</value>
              </choice>
            </attribute>
          </optional>
2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815
          <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>
2816
                    <value>usbredir</value>
2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870
                  </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">
2871
                  <ref name="virOnOff"/>
2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
                </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">
2891
                  <ref name="virYesNo"/>
2892 2893 2894 2895
                </attribute>
                <empty/>
              </element>
            </optional>
P
Peng Zhou 已提交
2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906
            <optional>
              <element name="mouse">
                <attribute name="mode">
                  <choice>
                    <value>server</value>
                    <value>client</value>
                  </choice>
                </attribute>
                <empty/>
              </element>
            </optional>
2907 2908 2909
            <optional>
              <element name="filetransfer">
                <attribute name="enable">
2910
                  <ref name="virYesNo"/>
2911 2912 2913 2914
                </attribute>
                <empty/>
              </element>
            </optional>
2915 2916 2917 2918 2919 2920 2921 2922
            <optional>
              <element name="gl">
                <attribute name="enable">
                  <ref name="virYesNo"/>
                </attribute>
                <empty/>
              </element>
            </optional>
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935
          </interleave>
        </group>
        <group>
          <attribute name="type">
            <value>rdp</value>
          </attribute>
          <optional>
            <attribute name="port">
              <ref name="PortNumber"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="autoport">
2936
              <ref name="virYesNo"/>
2937 2938 2939 2940
            </attribute>
          </optional>
          <optional>
            <attribute name="replaceUser">
2941
              <ref name="virYesNo"/>
2942 2943 2944 2945
            </attribute>
          </optional>
          <optional>
            <attribute name="multiUser">
2946
              <ref name="virYesNo"/>
2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966
            </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">
2967
              <ref name="virYesNo"/>
2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982
            </attribute>
          </optional>
        </group>
      </choice>
    </element>
  </define>

  <define name="listenElements">
    <zeroOrMore>
      <element name="listen">
        <choice>
          <group>
            <attribute name="type">
              <value>address</value>
            </attribute>
2983 2984 2985 2986 2987
            <optional>
              <attribute name="address">
                <ref name="addrIPorName"/>
              </attribute>
            </optional>
2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001
          </group>
          <group>
            <attribute name="type">
              <value>network</value>
            </attribute>
            <attribute name="network">
              <text/>
            </attribute>
            <optional>
              <attribute name="address">
                <ref name="addrIPorName"/>
              </attribute>
            </optional>
          </group>
3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
          <group>
            <attribute name="type">
              <value>socket</value>
            </attribute>
            <optional>
              <attribute name="socket">
                <ref name="absFilePath"/>
              </attribute>
            </optional>
          </group>
P
Pavel Hrdina 已提交
3012 3013 3014 3015 3016
          <group>
            <attribute name="type">
              <value>none</value>
            </attribute>
          </group>
3017 3018 3019 3020 3021 3022
        </choice>
      </element>
    </zeroOrMore>
  </define>
  <!--
     A video adapter description, allowing configuration of device
3023 3024
     model, number of virtual heads, video ram size, and for qxl
     both ram bar sizes.
3025 3026 3027 3028 3029
   -->
  <define name="video">
    <element name="video">
      <optional>
        <element name="model">
3030 3031 3032 3033 3034 3035 3036 3037
          <choice>
            <attribute name="type">
              <choice>
                <value>vga</value>
                <value>cirrus</value>
                <value>vmvga</value>
                <value>xen</value>
                <value>vbox</value>
M
Marc-André Lureau 已提交
3038
                <value>virtio</value>
3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
              </choice>
            </attribute>
            <group>
              <attribute name="type">
                <value>qxl</value>
              </attribute>
              <optional>
                <attribute name="ram">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3050 3051 3052 3053 3054
              <optional>
                <attribute name="vgamem">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3055 3056 3057 3058 3059
              <optional>
                <attribute name="vram64">
                  <ref name="unsignedInt"/>
                </attribute>
              </optional>
3060 3061
            </group>
          </choice>
3062 3063 3064 3065 3066 3067 3068 3069 3070 3071
          <optional>
            <attribute name="vram">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
          <optional>
            <attribute name="heads">
              <ref name="unsignedInt"/>
            </attribute>
          </optional>
3072 3073
          <optional>
            <attribute name="primary">
3074
              <ref name="virYesNo"/>
3075 3076
            </attribute>
          </optional>
3077 3078 3079 3080
          <optional>
            <element name="acceleration">
              <optional>
                <attribute name="accel3d">
3081
                  <ref name="virYesNo"/>
3082 3083 3084 3085
                </attribute>
              </optional>
              <optional>
                <attribute name="accel2d">
3086
                  <ref name="virYesNo"/>
3087 3088 3089 3090 3091 3092
                </attribute>
              </optional>
            </element>
          </optional>
        </element>
      </optional>
3093 3094 3095
      <optional>
        <ref name="alias"/>
      </optional>
3096 3097 3098 3099 3100 3101
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <!--
3102 3103
      When a certain event happens, multiple policies can be applied
      depends on what happened:
3104
    -->
3105
  <define name="events">
3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121
    <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>
3122 3123 3124 3125 3126
      <optional>
        <element name="on_lockfailure">
          <ref name="lockfailureOptions"/>
        </element>
      </optional>
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 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167
    </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>
3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184
  <!--
      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>
3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211
  <!--
      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">
3212
        <ref name="virYesNo"/>
3213 3214 3215
      </attribute>
    </optional>
  </define>
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231
  <!--
      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>
3232 3233 3234
      <optional>
        <ref name="alias"/>
      </optional>
3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247
      <optional>
        <ref name="address"/>
      </optional>
    </interleave>
  </define>

  <define name="qemucdevConsoleTgtType">
    <attribute name="type">
      <choice>
        <value>xen</value>
        <value>serial</value>
        <value>uml</value>
        <value>virtio</value>
3248 3249
        <value>lxc</value>
        <value>openvz</value>
3250 3251
        <value>sclp</value>
        <value>sclplm</value>
3252 3253 3254 3255
      </choice>
    </attribute>
  </define>

G
Guannan Ren 已提交
3256 3257 3258 3259 3260
  <define name='qemucdevSerialTgtType'>
    <attribute name='type'>
      <choice>
        <value>isa-serial</value>
        <value>usb-serial</value>
M
Michal Privoznik 已提交
3261
        <value>pci-serial</value>
G
Guannan Ren 已提交
3262 3263 3264 3265
      </choice>
    </attribute>
  </define>

3266 3267 3268
  <define  name="qemucdevTgtDef">
    <element name="target">
      <interleave>
G
Guannan Ren 已提交
3269 3270 3271 3272 3273 3274 3275 3276
        <choice>
          <optional>
            <ref name="qemucdevConsoleTgtType"/>
          </optional>
          <optional>
            <ref name="qemucdevSerialTgtType"/>
          </optional>
        </choice>
3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296
        <optional>
          <attribute name="port"/>
        </optional>
      </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>
3297
      <value>spiceport</value>
3298
      <value>nmdm</value>
3299 3300 3301
    </choice>
  </define>

3302 3303 3304
  <define name="usbdevfilter">
    <element name="usbdev">
      <attribute name="allow">
3305
        <ref name="virYesNo"/>
3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341
      </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>

3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364
  <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>
        <optional>
          <attribute name="wiremode"/>
        </optional>
3365 3366 3367
        <optional>
          <attribute name="channel"/>
        </optional>
3368 3369 3370 3371 3372 3373
        <optional>
          <attribute name="master"/>
        </optional>
        <optional>
          <attribute name="slave"/>
        </optional>
3374 3375 3376 3377 3378
        <optional>
          <attribute name="append">
            <ref name="virOnOff"/>
          </attribute>
        </optional>
3379
        <zeroOrMore>
3380
          <ref name='devSeclabel'/>
3381
        </zeroOrMore>
3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397
      </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>
3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409
    <optional>
      <element name="log">
        <attribute name="file">
          <ref name="absFilePath"/>
        </attribute>
        <optional>
          <attribute name="append">
            <ref name="virOnOff"/>
          </attribute>
        </optional>
      </element>
    </optional>
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
  </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>
        <choice>
          <ref name="qemucdev"/>
        </choice>
      </choice>
    </element>
  </define>
3432 3433 3434 3435 3436 3437 3438 3439 3440 3441
  <define name="codec">
    <element name="codec">
      <attribute name="type">
        <choice>
          <value>duplex</value>
          <value>micro</value>
        </choice>
      </attribute>
    </element>
  </define>
3442 3443 3444 3445 3446 3447 3448 3449 3450
  <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>
3451
          <value>ich9</value>
3452
          <value>usb</value>
3453 3454
        </choice>
      </attribute>
3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <zeroOrMore>
          <choice>
            <ref name="codec"/>
          </choice>
        </zeroOrMore>
      </interleave>
3468 3469 3470 3471 3472 3473 3474 3475
    </element>
  </define>
  <define name="watchdog">
    <element name="watchdog">
      <attribute name="model">
        <choice>
          <value>i6300esb</value>
          <value>ib700</value>
3476
          <value>diag288</value>
3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487
        </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>
3488
            <value>inject-nmi</value>
3489 3490 3491
          </choice>
        </attribute>
      </optional>
3492 3493 3494
      <optional>
        <ref name="alias"/>
      </optional>
3495 3496 3497 3498 3499
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
L
Li Zhang 已提交
3500 3501 3502 3503 3504 3505 3506
  <define name="nvram">
    <element name="nvram">
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544

  <define name="shmem">
    <element name="shmem">
      <attribute name="name"/>
      <interleave>
        <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>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
    </element>
  </define>

3545 3546 3547 3548 3549 3550 3551 3552 3553
  <define name="memballoon">
    <element name="memballoon">
      <attribute name="model">
        <choice>
          <value>virtio</value>
          <value>xen</value>
          <value>none</value>
        </choice>
      </attribute>
3554 3555 3556 3557 3558
      <optional>
        <attribute name="autodeflate">
          <ref name="virOnOff"/>
        </attribute>
      </optional>
3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573
      <interleave>
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
        <optional>
          <element name="stats">
            <attribute name="period">
              <ref name='positiveInteger'/>
            </attribute>
          </element>
        </optional>
      </interleave>
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
    </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>
3603 3604 3605 3606 3607 3608 3609 3610
      <optional>
        <attribute name="state">
          <choice>
            <value>connected</value>
            <value>disconnected</value>
          </choice>
        </attribute>
      </optional>
3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621
    </element>
  </define>
  <define name="channel">
    <element name="channel">
      <ref name="qemucdevSrcType"/>
      <interleave>
        <ref name="qemucdevSrcDef"/>
        <choice>
          <ref name="guestfwdTarget"/>
          <ref name="virtioTarget"/>
        </choice>
3622 3623 3624
        <optional>
          <ref name="alias"/>
        </optional>
3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665
        <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>
3666 3667 3668
      <optional>
        <ref name="alias"/>
      </optional>
3669 3670 3671 3672 3673 3674 3675 3676 3677 3678
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <define name="certificate">
    <element name="certificate">
      <text/>
    </element>
  </define>
3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720

  <define name="tpm">
    <element name="tpm">
      <optional>
        <attribute name="model">
          <choice>
            <value>tpm-tis</value>
          </choice>
        </attribute>
      </optional>
      <ref name="tpm-backend"/>
      <optional>
        <ref name="alias"/>
      </optional>
    </element>
  </define>

  <define name="tpm-backend">
    <element name="backend">
       <choice>
         <group>
           <attribute name="type">
              <value>passthrough</value>
           </attribute>
           <ref name="tpm-passthrough-device"/>
         </group>
       </choice>
    </element>
  </define>

  <define name="tpm-passthrough-device">
    <optional>
      <element name="device">
        <optional>
          <attribute name="path">
            <ref name="filePath"/>
          </attribute>
        </optional>
      </element>
   </optional>
  </define>

J
Ján Tomko 已提交
3721 3722 3723 3724 3725 3726 3727 3728
  <define name="iommu">
    <element name="iommu">
      <attribute name="model">
        <value>intel</value>
      </attribute>
    </element>
  </define>

3729 3730
  <define name="input">
    <element name="input">
3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755
      <choice>
        <group>
          <attribute name="type">
            <choice>
              <value>tablet</value>
              <value>mouse</value>
              <value>keyboard</value>
            </choice>
          </attribute>
          <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>
          </attribute>
          <attribute name="bus">
3756
            <value>virtio</value>
3757 3758 3759 3760 3761 3762 3763 3764
          </attribute>
          <element name="source">
            <attribute name="evdev">
              <ref name="absFilePath"/>
            </attribute>
          </element>
        </group>
      </choice>
3765 3766 3767
      <optional>
        <ref name="alias"/>
      </optional>
3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <define name="hub">
    <element name="hub">
      <attribute name="type">
        <choice>
          <value>usb</value>
        </choice>
      </attribute>
3780 3781 3782
      <optional>
        <ref name="alias"/>
      </optional>
3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
  <define name="redirdev">
    <element name="redirdev">
      <attribute name="bus">
        <choice>
          <value>usb</value>
        </choice>
      </attribute>
      <attribute name="type">
        <ref name="qemucdevSrcTypeChoice"/>
      </attribute>
      <ref name="qemucdevSrcDef"/>
3799 3800 3801
      <optional>
        <ref name="alias"/>
      </optional>
3802 3803 3804
      <optional>
        <ref name="address"/>
      </optional>
3805 3806 3807
      <optional>
        <ref name="deviceBoot"/>
      </optional>
3808 3809
    </element>
  </define>
3810 3811 3812 3813 3814 3815 3816
  <define name="redirfilter">
    <element name="redirfilter">
      <zeroOrMore>
        <ref name="usbdevfilter"/>
      </zeroOrMore>
    </element>
  </define>
3817

3818 3819
  <define name="hostdev">
    <element name="hostdev">
O
Osier Yang 已提交
3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840
      <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 已提交
3841 3842 3843 3844 3845
        <optional>
          <element name="readonly">
            <empty/>
          </element>
        </optional>
3846 3847 3848 3849 3850
        <optional>
          <element name="shareable">
            <empty/>
          </element>
        </optional>
O
Osier Yang 已提交
3851
      </interleave>
3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862
    </element>
  </define>

  <define name="hostdevsubsys">
    <optional>
      <attribute name="mode">
        <value>subsystem</value>
      </attribute>
    </optional>
    <optional>
      <attribute name="managed">
3863
        <ref name="virYesNo"/>
3864 3865 3866 3867 3868
      </attribute>
    </optional>
    <choice>
      <ref name="hostdevsubsyspci"/>
      <ref name="hostdevsubsysusb"/>
H
Han Cheng 已提交
3869
      <ref name="hostdevsubsysscsi"/>
3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883
    </choice>
  </define>

  <define name="hostdevcaps">
    <attribute name="mode">
      <value>capabilities</value>
    </attribute>
    <choice>
      <group>
        <ref name="hostdevcapsstorage"/>
      </group>
      <group>
        <ref name="hostdevcapsmisc"/>
      </group>
3884 3885 3886
      <group>
        <ref name="hostdevcapsnet"/>
      </group>
3887 3888 3889 3890 3891 3892 3893 3894
    </choice>
  </define>


  <define name="hostdevsubsyspci">
    <attribute name="type">
      <value>pci</value>
    </attribute>
3895
    <interleave>
3896
      <optional>
3897 3898 3899 3900 3901
        <element name="driver">
          <attribute name="name">
            <choice>
              <value>kvm</value>
              <value>vfio</value>
3902
              <value>xen</value>
3903 3904 3905 3906
            </choice>
          </attribute>
          <empty/>
        </element>
3907
      </optional>
3908 3909 3910 3911 3912 3913 3914
      <element name="source">
        <optional>
          <ref name="startupPolicy"/>
        </optional>
        <element name="address">
          <ref name="pciaddress"/>
        </element>
3915
      </element>
3916
    </interleave>
3917
  </define>
3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938

  <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 已提交
3939 3940 3941 3942
  <define name="hostdevsubsysscsi">
    <attribute name="type">
      <value>scsi</value>
    </attribute>
O
Osier Yang 已提交
3943
    <optional>
3944
        <ref name="sgIO"/>
O
Osier Yang 已提交
3945
    </optional>
3946 3947 3948
    <optional>
      <ref name="rawIO"/>
    </optional>
H
Han Cheng 已提交
3949
    <element name="source">
J
John Ferlan 已提交
3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994
      <choice>
        <group>  <!-- scsi_host adapter -->
          <optional>
            <attribute name="protocol">
              <choice>
                <value>adapter</value>   <!-- scsi_host, default, optional -->
              </choice>
            </attribute>
          </optional>
          <interleave>
            <ref name="sourceinfoadapter"/>
            <element name="address">
              <ref name="scsiaddress"/>
            </element>
          </interleave>
        </group>
        <group>  <!-- iscsi adapter -->
          <attribute name="protocol">
            <choice>
              <value>iscsi</value>     <!-- iscsi, required -->
            </choice>
          </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 已提交
3995 3996 3997
    </element>
  </define>

3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019
  <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>

4020 4021 4022 4023
  <define name="hostdevcapsnet">
    <attribute name="type">
      <value>net</value>
    </attribute>
4024 4025 4026 4027 4028
    <interleave>
      <element name="source">
        <element name="interface">
          <ref name="deviceName"/>
        </element>
4029
      </element>
4030
      <ref name="interface-ip-info"/>
4031
    </interleave>
4032 4033
  </define>

4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055
  <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">
        <ref name="usbPort"/>
      </attribute>
    </element>
  </define>
H
Han Cheng 已提交
4056 4057 4058 4059 4060
  <define name="scsiaddress">
    <attribute name="bus">
      <ref name="driveBus"/>
    </attribute>
    <attribute name="target">
4061
      <ref name="driveSCSITarget"/>
H
Han Cheng 已提交
4062 4063
    </attribute>
    <attribute name="unit">
4064
      <ref name="driveSCSIUnit"/>
H
Han Cheng 已提交
4065 4066
    </attribute>
  </define>
4067 4068 4069 4070 4071 4072 4073 4074
  <define name="usbportaddress">
    <attribute name="bus">
      <ref name="usbAddr"/>
    </attribute>
    <attribute name="port">
      <ref name="usbPort"/>
    </attribute>
  </define>
4075 4076 4077 4078 4079 4080 4081
  <define name="spaprvioaddress">
    <optional>
      <attribute name="reg">
        <ref name="spaprvioReg"/>
      </attribute>
    </optional>
  </define>
4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094
  <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>
4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105
  <define name="driveaddress">
    <optional>
      <attribute name="controller">
        <ref name="driveController"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="bus">
        <ref name="driveBus"/>
      </attribute>
    </optional>
4106 4107 4108 4109 4110
    <optional>
      <attribute name="target">
        <ref name="driveTarget"/>
      </attribute>
    </optional>
4111 4112 4113 4114 4115
    <optional>
      <attribute name="unit">
        <ref name="driveUnit"/>
      </attribute>
    </optional>
4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141
  </define>
  <define name="virtioserialaddress">
    <attribute name="controller">
      <ref name="driveController"/>
    </attribute>
    <optional>
      <attribute name="bus">
        <ref name="driveBus"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="port">
        <ref name="driveUnit"/>
      </attribute>
    </optional>
  </define>
  <define name="ccidaddress">
    <attribute name="controller">
      <ref name="driveController"/>
    </attribute>
    <optional>
      <attribute name="slot">
        <ref name="driveUnit"/>
      </attribute>
    </optional>
  </define>
4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153
  <define name="dimmaddress">
    <optional>
      <attribute name="slot">
        <ref name="unsignedInt"/>
      </attribute>
    </optional>
    <optional>
      <attribute name="base">
        <ref name="hexuint"/>
      </attribute>
    </optional>
  </define>
4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178
  <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"/>
4179
            <ref name="redirfilter"/>
4180
            <ref name="rng"/>
4181
            <ref name="tpm"/>
4182
            <ref name="shmem"/>
4183
            <ref name="memorydev"/>
4184 4185 4186 4187 4188 4189 4190 4191
          </choice>
        </zeroOrMore>
        <optional>
          <ref name="watchdog"/>
        </optional>
        <optional>
          <ref name="memballoon"/>
        </optional>
L
Li Zhang 已提交
4192 4193 4194
        <optional>
          <ref name="nvram"/>
        </optional>
D
Dmitry Andreev 已提交
4195
        <zeroOrMore>
H
Hu Tao 已提交
4196
          <ref name="panic"/>
D
Dmitry Andreev 已提交
4197
        </zeroOrMore>
J
Ján Tomko 已提交
4198 4199 4200
        <optional>
          <ref name="iommu"/>
        </optional>
4201 4202 4203 4204
      </interleave>
    </element>
  </define>
  <!--
M
Michal Privoznik 已提交
4205
      A set of optional features: PAE, APIC, ACPI, GIC,
4206
      HyperV Enlightenment, KVM features, paravirtual spinlocks and HAP support
4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218
    -->
  <define name="features">
    <optional>
      <element name="features">
        <interleave>
          <optional>
            <element name="pae">
              <empty/>
            </element>
          </optional>
          <optional>
            <element name="apic">
4219 4220
              <optional>
                <attribute name="eoi">
4221
                  <ref name="virOnOff"/>
4222 4223
                </attribute>
              </optional>
4224 4225 4226 4227 4228 4229 4230 4231 4232
            </element>
          </optional>
          <optional>
            <element name="acpi">
              <empty/>
            </element>
          </optional>
          <optional>
            <element name="hap">
4233 4234 4235 4236 4237
              <optional>
                <attribute name="state">
                  <ref name="virOnOff"/>
                </attribute>
              </optional>
4238 4239
            </element>
          </optional>
4240 4241 4242
          <optional>
            <ref name="hyperv"/>
          </optional>
4243 4244 4245 4246 4247
          <optional>
            <element name="viridian">
              <empty/>
            </element>
          </optional>
4248 4249 4250
          <optional>
            <ref name="kvm"/>
          </optional>
4251 4252 4253 4254 4255
          <optional>
            <element name="privnet">
              <empty/>
            </element>
          </optional>
4256 4257 4258 4259 4260 4261 4262 4263
          <optional>
            <element name="pvspinlock">
              <optional>
                <ref name="featurestate"/>
              </optional>
              <empty/>
            </element>
          </optional>
4264 4265 4266
          <optional>
            <ref name="capabilities"/>
          </optional>
4267 4268 4269
          <optional>
            <ref name="pmu"/>
          </optional>
4270 4271 4272 4273 4274 4275 4276 4277 4278
          <optional>
            <element name="vmport">
              <optional>
                <attribute name="state">
                  <ref name="virOnOff"/>
                </attribute>
              </optional>
            </element>
          </optional>
M
Michal Privoznik 已提交
4279 4280 4281 4282
          <optional>
            <element name="gic">
              <optional>
                <attribute name="version">
4283 4284 4285 4286 4287
                  <choice>
                    <value>host</value>
                    <value>2</value>
                    <value>3</value>
                  </choice>
M
Michal Privoznik 已提交
4288 4289 4290 4291
                </attribute>
              </optional>
            </element>
          </optional>
4292 4293 4294 4295 4296 4297 4298 4299 4300
        </interleave>
      </element>
    </optional>
  </define>
  <!--
      CPU specification
      -->
  <define name="cpu">
    <element name="cpu">
4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323
      <optional>
        <ref name="cpuMode"/>
      </optional>
      <optional>
        <ref name="cpuMatch"/>
      </optional>
      <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>
      </interleave>
4324 4325 4326
    </element>
  </define>

4327 4328 4329 4330 4331 4332 4333 4334 4335 4336
  <define name="cpuMode">
    <attribute name="mode">
      <choice>
        <value>custom</value>
        <value>host-model</value>
        <value>host-passthrough</value>
      </choice>
    </attribute>
  </define>

4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348
  <define name="cpuMatch">
    <attribute name="match">
      <choice>
        <value>minimum</value>
        <value>exact</value>
        <value>strict</value>
      </choice>
    </attribute>
  </define>

  <define name="cpuModel">
    <element name="model">
4349 4350 4351 4352 4353 4354 4355 4356
      <optional>
        <attribute name="fallback">
          <choice>
            <value>allow</value>
            <value>forbid</value>
          </choice>
        </attribute>
      </optional>
4357 4358 4359 4360 4361 4362 4363
      <optional>
        <attribute name="vendor_id">
          <data type="string">
            <param name='pattern'>[^,]{12}</param>
          </data>
        </attribute>
      </optional>
4364 4365 4366 4367
      <choice>
        <text/>
        <empty/>
      </choice>
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 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408
    </element>
  </define>

  <define name="cpuVendor">
    <element name="vendor">
      <text/>
    </element>
  </define>

  <define name="cpuFeature">
    <element name="feature">
      <attribute name="policy">
        <choice>
          <value>force</value>
          <value>require</value>
          <value>optional</value>
          <value>disable</value>
          <value>forbid</value>
        </choice>
      </attribute>
      <attribute name="name">
        <ref name="featureName"/>
      </attribute>
      <empty/>
    </element>
  </define>

  <define name="cpuTopology">
    <element name="topology">
      <attribute name="sockets">
        <ref name="positiveInteger"/>
      </attribute>
      <attribute name="cores">
        <ref name="positiveInteger"/>
      </attribute>
      <attribute name="threads">
        <ref name="positiveInteger"/>
      </attribute>
    </element>
  </define>

4409 4410 4411 4412 4413 4414 4415 4416 4417 4418
  <define name="cpuNuma">
    <element name="numa">
      <oneOrMore>
        <ref name="numaCell"/>
      </oneOrMore>
    </element>
  </define>

  <define name="numaCell">
    <element name="cell">
4419 4420 4421 4422 4423
      <optional>
        <attribute name="id">
          <ref name="unsignedInt"/>
        </attribute>
      </optional>
4424 4425 4426 4427 4428 4429
      <attribute name="cpus">
        <ref name="cpuset"/>
      </attribute>
      <attribute name="memory">
        <ref name="memoryKB"/>
      </attribute>
4430 4431 4432 4433 4434
      <optional>
        <attribute name="unit">
          <ref name="unit"/>
        </attribute>
      </optional>
4435 4436 4437 4438 4439 4440 4441 4442
      <optional>
        <attribute name="memAccess">
          <choice>
            <value>shared</value>
            <value>private</value>
          </choice>
        </attribute>
      </optional>
4443 4444 4445
    </element>
  </define>

4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487
  <!--
      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>
4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499
        <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>
4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524
      </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>

4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535
  <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>
  </define>

4536 4537 4538 4539 4540 4541
  <define name="sysinfo-value">
    <data type="string">
      <param name='pattern'>[a-zA-Z0-9/\-_\. \(\)]+</param>
    </data>
  </define>

J
Ján Tomko 已提交
4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556
  <define name="acpiTable">
    <element name="acpi">
      <zeroOrMore>
        <element name="table">
          <attribute name="type">
            <choice>
              <value>slic</value>
            </choice>
          </attribute>
          <ref name="absFilePath"/>
        </element>
      </zeroOrMore>
    </element>
  </define>

4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571
  <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">
4572 4573
      <optional>
        <attribute name="useserial">
4574
          <ref name="virYesNo"/>
4575 4576 4577 4578 4579 4580 4581
        </attribute>
      </optional>
      <optional>
        <attribute name="rebootTimeout">
          <ref name="rebootTimeoutDelay"/>
        </attribute>
      </optional>
4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617
    </element>
  </define>

  <define name="address">
    <element name="address">
      <choice>
        <group>
          <attribute name="type">
            <value>pci</value>
          </attribute>
          <ref name="pciaddress"/>
        </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>
4618 4619 4620 4621 4622 4623
        <group>
          <attribute name="type">
            <value>spapr-vio</value>
          </attribute>
          <ref name="spaprvioaddress"/>
        </group>
4624 4625 4626 4627 4628 4629
        <group>
          <attribute name="type">
            <value>ccw</value>
          </attribute>
          <ref name="ccwaddress"/>
        </group>
H
Hu Tao 已提交
4630 4631 4632 4633 4634 4635
        <group>
          <attribute name="type">
            <value>isa</value>
          </attribute>
          <ref name="isaaddress"/>
        </group>
4636 4637 4638 4639 4640
        <group>
          <attribute name="type">
            <value>virtio-mmio</value>
          </attribute>
        </group>
4641 4642 4643 4644 4645 4646
        <group>
          <attribute name="type">
            <value>dimm</value>
          </attribute>
          <ref name="dimmaddress"/>
        </group>
4647 4648 4649 4650
      </choice>
    </element>
  </define>

4651 4652
  <define name="rom">
    <element name="rom">
4653 4654
      <optional>
        <attribute name="bar">
4655
          <ref name="virOnOff"/>
4656 4657 4658 4659 4660 4661 4662
        </attribute>
      </optional>
      <optional>
        <attribute name="file">
          <ref name="absFilePath"/>
        </attribute>
      </optional>
4663 4664 4665 4666
      <empty/>
    </element>
  </define>

4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708
  <define name="memorydev">
    <element name="memory">
      <attribute name="model">
        <choice>
          <value>dimm</value>
        </choice>
      </attribute>
      <interleave>
        <optional>
          <ref name="memorydev-source"/>
        </optional>
        <ref name="memorydev-target"/>
        <optional>
          <ref name="address"/>
        </optional>
      </interleave>
    </element>
  </define>

  <define name="memorydev-source">
    <element name="source">
      <interleave>
        <optional>
          <element name="pagesize">
            <ref name="scaledInteger"/>
          </element>
        </optional>
        <optional>
          <element name="nodemask">
            <ref name="cpuset"/>
          </element>
        </optional>
      </interleave>
    </element>
  </define>

  <define name="memorydev-target">
    <element name="target">
      <interleave>
        <element name="size">
          <ref name="scaledInteger"/>
        </element>
4709 4710 4711 4712 4713
        <optional>
          <element name="node">
            <ref name="unsignedInt"/>
          </element>
        </optional>
4714 4715 4716 4717
      </interleave>
    </element>
  </define>

4718 4719 4720 4721 4722 4723 4724
  <define name="rng">
    <element name="rng">
      <attribute name="model">
        <choice>
          <value>virtio</value>
        </choice>
      </attribute>
4725 4726 4727 4728 4729
      <interleave>
        <ref name="rng-backend"/>
        <optional>
          <ref name="rng-rate"/>
        </optional>
4730 4731 4732 4733 4734 4735
        <optional>
          <ref name="alias"/>
        </optional>
        <optional>
          <ref name="address"/>
        </optional>
4736
      </interleave>
4737 4738 4739 4740 4741 4742 4743 4744 4745 4746
    </element>
  </define>

  <define name="rng-backend">
    <element name="backend">
      <choice>
        <group>
          <attribute name="model">
            <value>random</value>
          </attribute>
4747
          <choice>
4748
            <ref name='absFilePath'/>
4749
            <empty/>
4750
          </choice>
4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762
        </group>
        <group>
          <attribute name="model">
            <value>egd</value>
          </attribute>
          <ref name="qemucdevSrcType"/>
          <ref name="qemucdevSrcDef"/>
        </group>
      </choice>
    </element>
  </define>

4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776
  <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>

4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789
  <define name="usbmaster">
    <element name="master">
      <attribute name="startport">
        <ref name="usbPort"/>
      </attribute>
      <empty/>
    </element>
  </define>

  <define name="filterref-node-attributes">
    <attribute name="filter">
      <data type="NCName"/>
    </attribute>
4790
    <zeroOrMore>
4791 4792 4793 4794 4795 4796 4797 4798
      <element name="parameter">
        <attribute name="name">
          <ref name="filter-param-name"/>
        </attribute>
        <attribute name="value">
          <ref name="filter-param-value"/>
        </attribute>
      </element>
4799
    </zeroOrMore>
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809
  </define>

  <define name="deviceBoot">
    <element name="boot">
      <attribute name="order">
        <ref name="positiveInteger"/>
      </attribute>
      <empty/>
    </element>
  </define>
E
Eric Blake 已提交
4810

4811 4812
  <define name='diskMirror'>
    <element name='mirror'>
E
Eric Blake 已提交
4813
      <choice>
4814
        <group> <!-- old format, for block copy back-compat -->
E
Eric Blake 已提交
4815 4816 4817 4818 4819 4820 4821 4822
          <attribute name='file'>
            <ref name='absFilePath'/>
          </attribute>
          <optional>
            <attribute name='format'>
              <ref name='storageFormat'/>
            </attribute>
          </optional>
E
Eric Blake 已提交
4823 4824 4825 4826 4827 4828 4829
          <optional>
            <attribute name='job'>
              <choice>
                <value>copy</value>
              </choice>
            </attribute>
          </optional>
4830 4831 4832 4833 4834 4835 4836 4837
          <optional>
            <interleave>
              <ref name='diskSourceFile'/>
              <optional>
                <ref name="diskFormat"/>
              </optional>
            </interleave>
          </optional>
E
Eric Blake 已提交
4838
        </group>
4839
        <group> <!-- preferred format -->
E
Eric Blake 已提交
4840 4841 4842 4843 4844 4845
          <attribute name='job'>
            <choice>
              <value>copy</value>
              <value>active-commit</value>
            </choice>
          </attribute>
E
Eric Blake 已提交
4846 4847 4848 4849 4850 4851 4852 4853
          <interleave>
            <ref name="diskSource"/>
            <optional>
              <ref name="diskFormat"/>
            </optional>
          </interleave>
        </group>
      </choice>
4854 4855
      <optional>
        <attribute name='ready'>
4856 4857 4858 4859 4860
          <choice>
            <value>yes</value>
            <value>abort</value>
            <value>pivot</value>
          </choice>
4861 4862 4863 4864
        </attribute>
      </optional>
    </element>
  </define>
4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
  <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>
4879
          <value>iscsi</value>
4880 4881 4882 4883 4884 4885
        </choice>
      </attribute>
      <choice>
        <attribute name='uuid'>
          <ref name="UUID"/>
        </attribute>
4886 4887
        <attribute name='usage'>
          <ref name='genericName'/>
4888 4889 4890 4891
        </attribute>
      </choice>
    </element>
  </define>
4892

L
Lei Li 已提交
4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933
  <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>
4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976
        <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>
L
Lei Li 已提交
4977 4978 4979 4980
      </interleave>
    </element>
  </define>

4981 4982 4983 4984 4985 4986
  <!-- Optional HyperV Enlightenment features -->
  <define name="hyperv">
    <element name="hyperv">
      <interleave>
        <optional>
          <element name="relaxed">
4987
            <ref name="featurestate"/>
4988 4989
          </element>
        </optional>
4990 4991
        <optional>
          <element name="vapic">
4992
            <ref name="featurestate"/>
4993 4994 4995 4996
          </element>
        </optional>
        <optional>
          <element name="spinlocks">
4997
            <ref name="featurestate"/>
4998 4999 5000 5001 5002
            <optional>
              <attribute name="retries">
                <data type="unsignedInt"/>
              </attribute>
            </optional>
5003 5004
          </element>
        </optional>
5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041
        <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">
            <ref name="featurestate"/>
          </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>
5042 5043 5044 5045
      </interleave>
    </element>
  </define>

5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058
  <!-- Optional KVM features -->
  <define name="kvm">
    <element name="kvm">
      <interleave>
        <optional>
          <element name="hidden">
            <ref name="featurestate"/>
          </element>
        </optional>
      </interleave>
    </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 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252
  <!-- 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>

5253 5254 5255 5256 5257 5258 5259 5260
  <define name="pmu">
    <element name="pmu">
      <optional>
        <ref name="featurestate"/>
      </optional>
    </element>
  </define>

5261
  <define name="featurestate">
5262
    <attribute name="state">
5263
      <ref name="virOnOff"/>
5264 5265 5266
    </attribute>
  </define>

5267 5268 5269 5270 5271 5272 5273 5274 5275 5276
  <define name="capabilitiespolicy">
    <attribute name="policy">
      <choice>
        <value>default</value>
        <value>allow</value>
        <value>deny</value>
      </choice>
    </attribute>
  </define>

5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301
  <!--
       Optional hypervisor extensions in their own namespace:
         QEmu
    -->
  <define name="qemucmdline">
    <element name="commandline" ns="http://libvirt.org/schemas/domain/qemu/1.0">
      <zeroOrMore>
        <element name="arg">
          <attribute name='value'/>
        </element>
      </zeroOrMore>
      <zeroOrMore>
        <element name="env">
          <attribute name='name'>
            <ref name="filter-param-name"/>
          </attribute>
          <optional>
            <attribute name='value'/>
          </optional>
          <empty/>
        </element>
      </zeroOrMore>
    </element>
  </define>

I
ik.nitk 已提交
5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340
  <!--
       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>

5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373
  <!--
       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>
5374 5375 5376 5377 5378
  <define name="rebootTimeoutDelay">
    <data type="short">
      <param name="minInclusive">-1</param>
    </data>
  </define>
5379
  <!-- weight currently is in range [100, 1000] -->
5380 5381 5382 5383 5384 5385 5386
  <define name="weight">
    <data type="unsignedInt">
      <param name="pattern">[0-9]+</param>
      <param name="minInclusive">100</param>
      <param name="maxInclusive">1000</param>
    </data>
  </define>
E
Eric Blake 已提交
5387
  <!-- Memory as an attribute is in KiB, no way to express a unit -->
5388
  <define name="memoryKB">
5389
    <data type="unsignedLong"/>
5390 5391 5392
  </define>
  <define name="domainName">
    <data type="string">
E
Eric Blake 已提交
5393 5394 5395
      <!-- Use literal newline instead of \n for bug in libxml2 2.7.6 -->
      <param name="pattern">[^
]+</param>
5396 5397 5398 5399
    </data>
  </define>
  <define name="diskSerial">
    <data type="string">
5400
      <param name="pattern">[A-Za-z0-9_\.\+\- ]+</param>
5401 5402 5403 5404 5405 5406 5407 5408
    </data>
  </define>
  <define name="bridgeMode">
    <data type="string">
      <param name="pattern">(vepa|bridge|private|passthrough)</param>
    </data>
  </define>
  <define name="addrIPorName">
5409 5410 5411 5412
    <choice>
      <ref name="ipAddr"/>
      <ref name="dnsName"/>
    </choice>
5413
  </define>
5414 5415 5416 5417 5418
  <define name="usbIdDefault">
    <data type="string">
      <param name="pattern">-1</param>
    </data>
  </define>
5419 5420 5421 5422 5423
  <define name="usbId">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,4}</param>
    </data>
  </define>
5424 5425 5426 5427 5428
  <define name="usbVersion">
    <data type="string">
      <param name="pattern">[0-9]{1,2}.[0-9]{1,2}</param>
    </data>
  </define>
5429 5430 5431 5432 5433
  <define name="usbAddr">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,3}</param>
    </data>
  </define>
5434 5435 5436 5437 5438
  <define name="usbClass">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,2}</param>
    </data>
  </define>
5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453
  <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>
5454 5455 5456 5457 5458
  <define name="driveTarget">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
5459 5460 5461 5462 5463
  <define name="driveSCSITarget">
    <data type="string">
      <param name="pattern">[0-9]{1,10}</param>
    </data>
  </define>
5464 5465 5466 5467 5468
  <define name="driveUnit">
    <data type="string">
      <param name="pattern">[0-9]{1,2}</param>
    </data>
  </define>
5469 5470 5471 5472 5473
  <define name="driveSCSIUnit">
    <data type="string">
      <param name="pattern">[0-9]{1,20}</param>
    </data>
  </define>
5474 5475
  <define name="featureName">
    <data type="string">
5476
      <param name='pattern'>[a-zA-Z0-9\-_\.]+</param>
5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498
    </data>
  </define>
  <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>
  <define name="filter-param-name">
    <data type="string">
      <param name="pattern">[a-zA-Z0-9_]+</param>
    </data>
  </define>
  <define name="filter-param-value">
    <data type="string">
      <param name="pattern">[a-zA-Z0-9_\.:]+</param>
    </data>
  </define>
5499 5500 5501 5502 5503
  <define name="spaprvioReg">
    <data type="string">
      <param name="pattern">(0x)?[0-9a-fA-F]{1,16}</param>
    </data>
  </define>
5504 5505
  <define name='aliasName'>
    <data type="string">
5506
      <param name="pattern">[a-zA-Z0-9_\-.]+</param>
5507 5508 5509 5510 5511 5512 5513 5514 5515 5516
    </data>
  </define>
  <define name='alias'>
    <element name='alias'>
      <attribute name='name'>
        <ref name='aliasName'/>
      </attribute>
    </element>
    <empty/>
  </define>
5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546
  <define name="ccwCssidRange">
    <choice>
      <data type="string">
        <param name="pattern">0x[0-9a-eA-E][0-9a-fA-F]?</param>
      </data>
      <data type="string">
        <param name="pattern">0x[fF][0-9a-eA-E]?</param>
      </data>
      <data type="int">
        <param name="minInclusive">0</param>
        <param name="maxInclusive">254</param>
      </data>
    </choice>
  </define>
  <define name="ccwSsidRange">
    <data type="string">
      <param name="pattern">(0x)?[0-3]</param>
    </data>
  </define>
  <define name="ccwDevnoRange">
    <choice>
      <data type="string">
        <param name="pattern">0x[0-9a-fA-F]{1,4}</param>
      </data>
      <data type="int">
        <param name="minInclusive">0</param>
        <param name="maxInclusive">65535</param>
      </data>
    </choice>
  </define>
H
Hu Tao 已提交
5547 5548
  <define name="panic">
    <element name="panic">
5549 5550 5551 5552 5553 5554
      <optional>
        <attribute name="model">
          <choice>
            <value>isa</value>
            <value>pseries</value>
            <value>hyperv</value>
5555
            <value>s390</value>
5556 5557 5558
          </choice>
        </attribute>
      </optional>
H
Hu Tao 已提交
5559 5560 5561 5562 5563
      <optional>
        <ref name="address"/>
      </optional>
    </element>
  </define>
5564 5565 5566 5567 5568
  <define name="rawIO">
    <attribute name="rawio">
      <ref name="virYesNo"/>
    </attribute>
  </define>
5569 5570 5571 5572 5573 5574 5575 5576
  <define name="sgIO">
    <attribute name="sgio">
      <choice>
        <value>filtered</value>
        <value>unfiltered</value>
      </choice>
    </attribute>
  </define>
5577
</grammar>